diff --git a/app.py b/app.py
index 7335f51dfe5eb70c779c689c991fa4e92f96111a..434b595838d98a0a8afea18bb0e08f748b87d25b 100644
--- a/app.py
+++ b/app.py
@@ -1,11 +1,17 @@
 from flask import Flask, Response
 from flask.json import jsonify
 
-from src.main import assemble_wikidata_groundtruth, assemble_dbpedia_groundtruth, assemble_wikidata_triples
+from src.main import assemble_wikidata_groundtruth, assemble_dbpedia_groundtruth, assemble_wikidata_triples, \
+    assemble_dbpedia_triples
 
 app = Flask(__name__)
 
 
+@app.route('/dbpedia/n3')
+def dbpedia_n3():
+    return jsonify(assemble_dbpedia_triples())
+
+
 @app.route('/wikidata/n3')
 def wikidata_n3():
     return jsonify(assemble_wikidata_triples())
diff --git a/src/dbpedia/__init__.py b/src/dbpedia/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/src/dbpedia/keys.py b/src/dbpedia/keys.py
new file mode 100644
index 0000000000000000000000000000000000000000..ef9f52946434e020f7f6f375b7bd822dc983cbbc
--- /dev/null
+++ b/src/dbpedia/keys.py
@@ -0,0 +1,17 @@
+from enum import Enum
+
+
+class ResultKeys(Enum):
+    movie = 'Movie'
+    title = 'Title'
+    director = 'Director'
+    author = 'Author'
+    cast = 'Cast'
+    published = 'Published'
+    subject = 'Subject'
+    genre = 'Genre'
+    duration = 'Duration'
+    description = 'Description'
+    distributor = 'Distributor'
+    production_companies = 'ProductionCompanies'
+    line_separator = '|'
diff --git a/src/main.py b/src/main.py
index c87cba02c9cf8e76052f1e1dc734f10d204cdc8c..7201a6eacc0aa9088a3b336ff8d812c345a86070 100644
--- a/src/main.py
+++ b/src/main.py
@@ -8,6 +8,7 @@ from src.lib.reader import FileReader
 from src.lib.ntriple import NTriple
 from src.lib.writer import FileWriter
 from src.wikidata.keys import ResultKeys
+from src.dbpedia.keys import ResultKeys
 
 
 def assemble_wikidata_groundtruth() -> Dict:
@@ -42,7 +43,7 @@ def assemble_wikidata_triples() -> List:
     """
     This method assembles the N-Triples of wikidata.
 
-    :return:
+    :return: List of all triples.
     """
 
     data = FileReader(source='static/wikidata_groundtruth.txt').as_json()
@@ -73,7 +74,8 @@ def assemble_wikidata_triples() -> List:
                     triples += [NTriple(subject=movie, predicate=wdt + 'P161', value=cast).as_string()]
 
         if ResultKeys.published.value in result.keys():
-            for published in Decapper(result[ResultKeys.published.value]).unpack().split(ResultKeys.line_separator.value):
+            for published in Decapper(result[ResultKeys.published.value]).unpack().split(
+                    ResultKeys.line_separator.value):
                 if published:
                     triples += [NTriple(subject=movie, predicate=wdt + 'P577', value=published).as_string()]
 
@@ -88,12 +90,94 @@ def assemble_wikidata_triples() -> List:
                     triples += [NTriple(subject=movie, predicate=wdt + 'P2047', value=duration).as_string()]
 
         if ResultKeys.description.value in result.keys():
-            for description in Decapper(result[ResultKeys.description.value]).unpack().split(ResultKeys.line_separator.value):
+            for description in Decapper(result[ResultKeys.description.value]).unpack().split(
+                    ResultKeys.line_separator.value):
                 if description:
                     triples += [NTriple(subject=movie, predicate=schema + 'description', value=description).as_string()]
 
         if ResultKeys.production_company.value in result.keys():
-            for production_company in Decapper(result[ResultKeys.production_company.value]).unpack().split(ResultKeys.line_separator.value):
+            for production_company in Decapper(result[ResultKeys.production_company.value]).unpack().split(
+                    ResultKeys.line_separator.value):
                 if production_company:
                     triples += [NTriple(subject=movie, predicate=wdt + 'P272', value=production_company).as_string()]
     return triples
+
+
+def assemble_dbpedia_triples() -> List:
+    """
+    This method assembles the N-Triples of dbpedia.
+
+    :return: List of all triples.
+    """
+
+    data = FileReader(source='static/dbpedia_groundtruth.txt').as_json()
+    foaf = 'http://xmlns.com/foaf/0.1/'
+    dbo = 'http://dbpedia.org/ontology/'
+    dct = 'http://purl.org/dc/terms/'
+    dbp = 'http://dbpedia.org/property/'
+
+    triples: List[String] = []
+    for result in data:
+        movie = Decapper(result[ResultKeys.movie.value]).unpack()
+
+        if ResultKeys.title.value in result.keys():
+            for title in Decapper(result[ResultKeys.title.value]).unpack().split(ResultKeys.line_separator.value):
+                if title:
+                    triples += [NTriple(subject=movie, predicate=foaf + 'name', value=title).as_string()]
+
+        if ResultKeys.director.value in result.keys():
+            for director in Decapper(result[ResultKeys.director.value]).unpack().split(ResultKeys.line_separator.value):
+                if director:
+                    triples += [NTriple(subject=movie, predicate=dbo + 'director', value=director).as_string()]
+
+        if ResultKeys.author.value in result.keys():
+            for author in Decapper(result[ResultKeys.author.value]).unpack().split(ResultKeys.line_separator.value):
+                if author:
+                    triples += [NTriple(subject=movie, predicate=dbo + 'author', value=author).as_string()]
+
+        if ResultKeys.cast.value in result.keys():
+            for cast in Decapper(result[ResultKeys.cast.value]).unpack().split(ResultKeys.line_separator.value):
+                if cast:
+                    triples += [NTriple(subject=movie, predicate=dbo + 'starring', value=cast).as_string()]
+
+        if ResultKeys.published.value in result.keys():
+            for published in Decapper(result[ResultKeys.published.value]).unpack().split(
+                    ResultKeys.line_separator.value):
+                if published:
+                    triples += [NTriple(subject=movie, predicate=dbo + 'releaseDate', value=published).as_string()]
+
+        if ResultKeys.subject.value in result.keys():
+            for subject in Decapper(result[ResultKeys.subject.value]).unpack().split(ResultKeys.line_separator.value):
+                if subject:
+                    triples += [NTriple(subject=movie, predicate=dct + 'subject', value=subject).as_string()]
+
+        if ResultKeys.genre.value in result.keys():
+            for genre in Decapper(result[ResultKeys.genre.value]).unpack().split(ResultKeys.line_separator.value):
+                if genre:
+                    triples += [NTriple(subject=movie, predicate=dbo + 'genre', value=genre).as_string()]
+
+        if ResultKeys.duration.value in result.keys():
+            for duration in Decapper(result[ResultKeys.duration.value]).unpack().split(ResultKeys.line_separator.value):
+                if duration:
+                    triples += [NTriple(subject=movie, predicate=dbo + 'runtime', value=duration).as_string()]
+
+        if ResultKeys.description.value in result.keys():
+            for description in Decapper(result[ResultKeys.description.value]).unpack().split(
+                    ResultKeys.line_separator.value):
+                if description:
+                    triples += [NTriple(subject=movie, predicate=dbo + 'abstract', value=description).as_string()]
+
+        if ResultKeys.distributor in result.keys():
+            for distributor in Decapper(result[ResultKeys.distributor.value]).unpack().split(
+                    ResultKeys.line_separator.value):
+                if distributor:
+                    triples += [NTriple(subject=movie, predicate=dbo + 'distributor',
+                                        value=distributor).as_string()]
+
+        if ResultKeys.production_companies in result.keys():
+            for production_companies in Decapper(result[ResultKeys.production_companies.value]).unpack().split(
+                    ResultKeys.line_separator.value):
+                if production_companies:
+                    triples += [NTriple(subject=movie, predicate=dbp + 'productionCompanies',
+                                        value=production_companies).as_string()]
+    return triples
diff --git a/static/dbpedia_groundtruth.sparql b/static/dbpedia_groundtruth.sparql
index 6bbc349d2c18439516084f2ca29e619a8a60fc21..09aed6276d5834d8919af55316c8d0da24f03f5c 100644
--- a/static/dbpedia_groundtruth.sparql
+++ b/static/dbpedia_groundtruth.sparql
@@ -4,8 +4,9 @@ PREFIX dbo: <http://dbpedia.org/ontology/>
 PREFIX dct: <http://purl.org/dc/terms/>
 PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
 PREFIX foaf: <http://xmlns.com/foaf/0.1/>
+PREFIX dbp:	<http://dbpedia.org/property/>
 
-SELECT ?movie
+SELECT DISTINCT (?movie AS ?Movie)
 
 (GROUP_CONCAT(DISTINCT ?name;separator="|") AS ?Title)
 (GROUP_CONCAT(DISTINCT ?director;separator="|") AS ?Director)
diff --git a/static/dbpedia_groundtruth.txt b/static/dbpedia_groundtruth.txt
index c966bb3cfcf740518bbfadacae7257460b91a272..7d54f60adedd466839b8a446739d91f5409746f7 100644
--- a/static/dbpedia_groundtruth.txt
+++ b/static/dbpedia_groundtruth.txt
@@ -1 +1 @@
-[{"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Zero_Effect"}, "Title": {"type": "literal", "value": "Zero Effect"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jake_Kasdan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Angela_Featherstone|http://dbpedia.org/resource/Ben_Stiller|http://dbpedia.org/resource/Bill_Pullman|http://dbpedia.org/resource/Kim_Dickens|http://dbpedia.org/resource/Ryan_O'Neal"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_thriller_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "Zero Effect is a 1998 mystery film written and directed by Jake Kasdan (son of writer-director Lawrence Kasdan). It stars Bill Pullman as \"the world's most private detective\", Daryl Zero, and Ben Stiller as his assistant Steve Arlo. The plot of the film is loosely based on the Arthur Conan Doyle short story \"A Scandal in Bohemia\". The film was shot in Portland, Oregon. It was scored by The Greyboy Allstars. It was screened in the Un Certain Regard section at the 1998 Cannes Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Castle_Rock_Entertainment"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kingsman:_The_Secret_Service"}, "Title": {"type": "literal", "value": "Kingsman: The Secret Service"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Matthew_Vaughn"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films|http://dbpedia.org/resource/Category:Spy_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "129"}, "Description": {"type": "literal", "value": "Kingsman: The Secret Service is a British-American spy action-comedy film  directed by Matthew Vaughn, and based on the comic book The Secret Service, created by Dave Gibbons and Mark Millar. The screenplay was written by Vaughn and Jane Goldman. It follows the recruitment and training of a potential secret agent, Gary \"Eggsy\" Unwin (Taron Egerton), into a secret spy organisation. Eggsy joins a mission to tackle a global threat from Richmond Valentine (Samuel L. Jackson), a wealthy megalomaniac. The film also stars Colin Firth, Mark Strong, and Michael Caine. Kingsman: The Secret Service premiered at the annual film marathon Butt-Numb-A-Thon on 13 December 2014, and was theatrically released in the United Kingdom on 29 January 2015. The film received positive reviews, and has grossed over $414 million worldwide, becoming Vaughn's most commercially successful film to date. A sequel, titled The Golden Circle, is scheduled for a 16 June 2017 release."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Marv_Films|http://dbpedia.org/resource/Shangri-La_Entertainment|http://dbpedia.org/resource/TSG_Entertainment"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Waiting_Alone"}, "Title": {"type": "literal", "value": "Waiting Alone"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dayyan_Eng"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gong_Beibi|http://dbpedia.org/resource/Li_Bingbing|http://dbpedia.org/resource/Xia_Yu_(actor)|http://dbpedia.org/resource/Yuan_Quan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "Waiting Alone (Chinese: \u72ec\u81ea\u7b49\u5f85; pinyin: D\u00faz\u00ec D\u011bngd\u00e0i) is a 2004 Chinese romantic comedy film written & directed by Chinese-American filmmaker Dayyan Eng (Chinese: \u4f0d\u4ed5\u8d24; pinyin: W\u01d4 Sh\u00ecx\u00edan), depicting the lives of a group of hip, affluent, twenty-something Beijing residents. The film features Chinese movie stars Xia Yu, Gong Beibi and Li Bingbing. It also features cameos of some of Hong Kong's best known actors, including Chow Yun-fat. Excellent reviews and strong word-of-mouth made this independent film a hit in China where it was embraced by young audiences. In 2005, Waiting Alone was nominated for three Chinese Academy Awards (Golden Rooster Awards) including Best Picture; the first time a nomination was awarded to a foreign director in this category. Waiting Alone was acquired for international distribution in 2006 by Arclight Films."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hacks_(2002_film)"}, "Title": {"type": "literal", "value": "Hacks"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Glenn_Rockowitz"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jim_Gaffigan|http://dbpedia.org/resource/Michael_Rispoli|http://dbpedia.org/resource/Victor_Varnado"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Hacks is a 2002 independent film written and directed by Glenn Rockowitz. This film is a mockumentary shot in black and white but struggles to sit within any conventionally defined genre."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jump_(2009_film)"}, "Title": {"type": "literal", "value": "Jump"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Stephen_Fung"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Daniel_Wu|http://dbpedia.org/resource/Leon_Jay_Williams|http://dbpedia.org/resource/Zhang_Yuqi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:Hong_Kong_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "Jump is a 2009 Hong Kong comedy-drama film written and produced by Stephen Chow and directed by Stephen Fung. The film stars Kitty Zhang, Leon Jay Williams and Daniel Wu with action choreography by Yuen Cheung-yan. Edison Chen was originally the lead actor of the film, but due to his 2008 photo scandal, he was replaced by Williams."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Mansion_(TV_series)"}, "Title": {"type": "literal", "value": "The Mansion"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dan_Ilic"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Charlie_Pickering|http://dbpedia.org/resource/Justin_Kennedy|http://dbpedia.org/resource/Kate_McLennan|http://dbpedia.org/resource/Michael_Chamberlin_(comedian)"}, "Published": {"type": "literal", "value": "2008-04-03"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Australian_comedy_television_series|http://dbpedia.org/resource/Category:The_Comedy_Channel_shows"}, "Genre": {"type": "literal", "value": "http://dbpedia.org/resource/Situation_comedy"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Mansion is an Australian television comedy based upon news and current affairs. Hosted by Michael Chamberlin and Charlie Pickering and featuring Kate McLennan and Justin Kennedy, It premiered on The Comedy Channel on Thursday 3 April 2008 at 8:30 pm. The fictional backstory of The Mansion is that its previous host of The Mansion was one of the word's richest and most sexually potent news magnates, Jebediah McNews. The series finale of the Mansion aired on 19 June 2008 with a 'best of' episode airing on 26 June."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_League_of_Gentlemen's_Apocalypse"}, "Title": {"type": "literal", "value": "The League of Gentlemen's Apocalypse"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Steve_Bendelack"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Mark_Gatiss|http://dbpedia.org/resource/Michael_Sheen|http://dbpedia.org/resource/Peter_Kay|http://dbpedia.org/resource/Reece_Shearsmith|http://dbpedia.org/resource/Simon_Pegg|http://dbpedia.org/resource/Steve_Pemberton|http://dbpedia.org/resource/Victoria_Wood"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:British_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "The League of Gentlemen's Apocalypse is a feature film spin-off of the British television comedy series The League of Gentlemen. Starring Mark Gatiss, Steve Pemberton and Reece Shearsmith, the film was written by the cast with Jeremy Dyson, and directed by Steve Bendelack. Also featuring in guest roles are Michael Sheen, Victoria Wood, David Warner, Alan Morrissey, Bruno Langley, Bernard Hill, Simon Pegg and Peter Kay. The film was due for a UK release on 22 April 2005, but the release date was moved back to 3 June. Over 20 minutes of footage was deleted in the final cut."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Don_Jon"}, "Title": {"type": "literal", "value": "Don Jon"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Joseph_Gordon-Levitt"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Don Jon is a 2013 American romantic comedy-drama film written and directed by Joseph Gordon-Levitt. The film stars Gordon-Levitt, Scarlett Johansson and Julianne Moore, with Rob Brown, Glenne Headly, Brie Larson and Tony Danza in supporting roles. The film premiered at the Sundance Film Festival on January 18, 2013, and had its wide release in the United States on September 27, 2013."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Relativity_Media"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Best_Man_(1999_film)"}, "Title": {"type": "literal", "value": "The Best Man"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Malcolm_D._Lee"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Harold_Perrineau|http://dbpedia.org/resource/Melissa_De_Sousa|http://dbpedia.org/resource/Monica_Calhoun|http://dbpedia.org/resource/Morris_Chestnut|http://dbpedia.org/resource/Nia_Long|http://dbpedia.org/resource/Sanaa_Lathan|http://dbpedia.org/resource/Taye_Diggs|http://dbpedia.org/resource/Terrence_Howard"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy-drama_films|http://dbpedia.org/resource/Category:1990s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "The Best Man is a 1999 American romantic comedy-drama film, written and directed by Malcolm D. Lee. It was produced by 40 Acres and a Mule Filmworks, with Lee's cousin, Spike Lee, serving as producer. The film stars Taye Diggs and Nia Long. A Christmas-themed sequel, The Best Man Holiday, was released on November 15, 2013 with a reunited cast."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Animal"}, "Title": {"type": "literal", "value": "The Animal"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Luke_Greenfield"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Colleen_Haskell|http://dbpedia.org/resource/Ed_Asner|http://dbpedia.org/resource/Guy_Torry|http://dbpedia.org/resource/John_C._McGinley|http://dbpedia.org/resource/Rob_Schneider"}, "Published": {"type": "literal", "value": "2001-06-01"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "The Animal is a 2001 comedy film, starring Rob Schneider, Colleen Haskell, Michael Caton, and John C. McGinley. Schneider plays Marvin Mange, a man who is critically injured but unknown to him he is put back together by a mad scientist who transplants animal parts, resulting in strange permanent changes to his behavior."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Rams_(film)"}, "Title": {"type": "literal", "value": "Rams"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Gr\u00edmur_H\u00e1konarson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Sigur\u00f0ur_Sigurj\u00f3nsson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Tragicomedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Rams (Icelandic: Hr\u00fatar) is a 2015 Icelandic drama film written and directed by Gr\u00edmur H\u00e1konarson. It was screened in the Un Certain Regard section at the 2015 Cannes Film Festival where it won the Prix Un Certain Regard. It was screened in the Contemporary World Cinema section of the 2015 Toronto International Film Festival. It was selected as the Icelandic entry for the Best Foreign Language Film at the 88th Academy Awards but it was not nominated."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/English_Vinglish"}, "Title": {"type": "literal", "value": "English Vinglish"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Gauri_Shinde"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "133"}, "Description": {"type": "literal", "value": "English Vinglish is a 2012 Indian comedy-drama film, written and directed by Gauri Shinde. The film's narrative revolves around a housewife who enrolls in an English-speaking course to stop her husband and daughter mocking her lack of English skills, and gains self-respect in the process. The protagonist, played by Sridevi, was inspired by Shinde's mother. English Vinglish was originally made in Hindi; later it was re-shot in Tamil and released along with a Telugu dubbed version on 5 October 2012. The film marked Sridevi's return to filmmaking after a 15-year hiatus; it features French actor Mehdi Nebbou, Adil Hussain, and Priya Anand. Amitabh Bachchan and Ajith Kumar had cameo appearances in the Hindi and Tamil versions respectively. Before its theatrical release, English Vinglish was premiered at the 2012 Toronto International Film Festival, where both the film and Sridevi's performance received positive response. Prior to its release, the film was screened for the Indian press and critics. It received critical acclaim and several critics hailed it as a \"must watch film\". Soon after its release, the film was declared a hit in India and overseas. English Vinglish swept all the Best Debut Director awards of 2012 for Gauri Shinde. The film was also shortlisted as India's official entry for the Academy Awards in Best Foreign Language Film category. The film earned global acclaim at several international festivals across the world and Sridevi was hailed as the 'Meryl Streep of India' and the \"female Rajinikanth in Japan\"."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Eros_International"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Working_(TV_series)"}, "Title": {"type": "literal", "value": "Working"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Tsao|http://dbpedia.org/resource/David_Owen_Trainor|http://dbpedia.org/resource/Fred_Savage|http://dbpedia.org/resource/James_Widdoes|http://dbpedia.org/resource/Linda_Day|http://dbpedia.org/resource/Robert_Berlinger|http://dbpedia.org/resource/Steve_Zuckerman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Arden_Myrin|http://dbpedia.org/resource/Fred_Savage"}, "Published": {"type": "literal", "value": "1997-10-08"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_American_comedy_television_series"}, "Genre": {"type": "literal", "value": "http://dbpedia.org/resource/Situation_comedy"}, "Duration": {"type": "literal", "value": "30"}, "Description": {"type": "literal", "value": "Working is an American sitcom that aired on NBC from 1997 to 1999. The series was created and executive produced by Michael Davidoff and Bill Rosenthal."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Potta_Potti"}, "Title": {"type": "literal", "value": "Potta Potti 50/50"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Yuvaraj_Dhayalan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Sadagoppan_Ramesh"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Potta Potti  is a 2011 Indian Tamil Sports-Comedy film written and directed by newcomer Yuvaraj Dhayalan, featuring cricketer Sadagoppan Ramesh in the starring role alongside several newcomers. The film, initially titled Pattai Patti, released on 5 August 2011 to generally positive reviews."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_Hart:_Laugh_at_My_Pain"}, "Title": {"type": "literal", "value": "Laugh at My Pain"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tim_Story"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Hart"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Comedy_Central_films|http://dbpedia.org/resource/Category:Stand-up_comedy_concert_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Laugh at My Pain is a 2011 stand-up comedy documentary film, starring comedian Kevin Hart. It features Hart performing a stand-up special at the Nokia Theater at L.A. Live in Los Angeles, among other material. Taraji P. Henson and Larry King appear, among others."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/AMC_Theatres"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Expelled_(film)"}, "Title": {"type": "literal", "value": "Expelled"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alex_Goyette"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cameron_Dallas|http://dbpedia.org/resource/Lia_Marie_Johnson|http://dbpedia.org/resource/Matt_Shively|http://dbpedia.org/resource/Teala_Dunn"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Expelled is an American teen comedy feature-length film, written and directed by Alex Goyette. The film stars Cameron Dallas, Matt Shively, Lia Marie Johnson, Marcus Johns, Andrea Russett, Kristina Hayes and Teala Dunn. Majority of the cast are popular online internet personalities. The film was released in a limited release on December 12, 2014 before being released on video on demand December 16, 2014 by 20th Century Fox Home Entertainment."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox_Home_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Alpha_and_Omega_(film)"}, "Title": {"type": "literal", "value": "Alpha and Omega"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Anthony_Bell_(director)|http://dbpedia.org/resource/Ben_Gluck"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Christina_Ricci|http://dbpedia.org/resource/Danny_Glover|http://dbpedia.org/resource/Dennis_Hopper|http://dbpedia.org/resource/Hayden_Panettiere|http://dbpedia.org/resource/Justin_Long"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Alpha and Omega is a 2010 American 3D computer-animated adventure comedy-drama film directed by Anthony Bell and Ben Gluck. Starring Justin Long, Hayden Panettiere, Dennis Hopper, Danny Glover, Christina Ricci, the film was written by Christopher Denk and Steve Moore, based on a story by Moore and Gluck. The film was released nationwide in 2-D and 3-D on September 17, 2010 by Lionsgate Films. The film was dedicated to the memory of Dennis Hopper, as this was his final performance prior to his death. A direct-to-DVD sequel, entitled A Howl-iday Adventure, was released on October 8, 2013. Another sequel, The Great Wolf Games, was released on March 25, 2014. The Legend of the Saw Tooth Cave was released on September 23, 2014. Family Vacation was released to DVD on August 4, 2015. Dino Digs was released on DVD and Digital HD on May 10, 2016. Two more sequels are planned."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lionsgate_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Juno_(film)"}, "Title": {"type": "literal", "value": "Juno"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jason_Reitman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Allison_Janney|http://dbpedia.org/resource/Ellen_Page|http://dbpedia.org/resource/J._K._Simmons|http://dbpedia.org/resource/Jason_Bateman|http://dbpedia.org/resource/Jennifer_Garner|http://dbpedia.org/resource/Michael_Cera"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "Juno is a 2007 American comedy-drama independent film directed by Jason Reitman and written by Diablo Cody. Ellen Page stars as the title character, an independent-minded teenager confronting an unplanned pregnancy and the subsequent events that put pressures of adult life onto her. Michael Cera, Jennifer Garner, Jason Bateman, Allison Janney, and J. K. Simmons also star. Filming spanned from early February to March 2007 in Vancouver, British Columbia. It premiered on September 8 at the 2007 Toronto International Film Festival, receiving a standing ovation. Juno won the Academy Award for Best Original Screenplay and earned three other Oscar nominations, including Best Picture and Best Actress for Page. The film's soundtrack, featuring several songs performed by Kimya Dawson in various guises, was the first chart-topping soundtrack since Dreamgirls and 20th Century Fox's first number one soundtrack since Titanic. Juno earned back its initial budget of $6.5 million in twenty days, the first nineteen of which were when the film was in limited release. It went on to earn $231 million. Juno received acclaim from critics, many of whom placed the film on their top ten lists for the year. It has received criticism and praise from members of both the pro-life and pro-choice communities regarding its treatment of abortion."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Searchlight_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Janji_Joni"}, "Title": {"type": "literal", "value": "Janji Joni"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Joko_Anwar"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Mariana_Renata|http://dbpedia.org/resource/Nicholas_Saputra|http://dbpedia.org/resource/Rachel_Maryam_Sayidina"}, "Published": {"type": "literal", "value": "2005-04-27"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "Janji Joni (English: Joni's Promise) is a 2005 Indonesian romantic comedy film directed by Joko Anwar, starring Nicholas Saputra, Mariana Renata, and Rachel Maryam."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Outsourced_(film)"}, "Title": {"type": "literal", "value": "Outsourced"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/John_Jeffcoat"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Arjun_Mathur|http://dbpedia.org/resource/Asif_Basra|http://dbpedia.org/resource/Ayesha_Dharker|http://dbpedia.org/resource/Josh_Hamilton_(actor)|http://dbpedia.org/resource/Siddarth_Jadhav"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "Outsourced is a romantic comedy film, directed by John Jeffcoat, released in 2006."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/ShadowCatcher_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Year_of_the_Carnivore"}, "Title": {"type": "literal", "value": "Year of the Carnivore"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sook-Yin_Lee"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ali_Liebert|http://dbpedia.org/resource/Cristin_Milioti|http://dbpedia.org/resource/Luke_Camilleri|http://dbpedia.org/resource/Mark_Rendall|http://dbpedia.org/resource/Will_Sasso"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films|http://dbpedia.org/resource/Category:Canadian_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Year of the Carnivore is a 2009 Canadian romantic comedy film about a grocery store detective with a crush on a man who rejects her because she has too little sexual experience. Year of the Carnivore is Sook-Yin Lee's feature directorial debut and it premiered at the Toronto International Film Festival as a Canada First selection."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/E1_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Chlorine_(2013_film)"}, "Title": {"type": "literal", "value": "Chlorine"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jay_Alaimo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Flora_Cross|http://dbpedia.org/resource/Kyra_Sedgwick|http://dbpedia.org/resource/Rhys_Coiro|http://dbpedia.org/resource/Ryan_Donowho|http://dbpedia.org/resource/Tom_Sizemore|http://dbpedia.org/resource/Vincent_D'Onofrio"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Chlorine is a 2013 American comedy-drama film directed and written by Jay Alaimo. Filming mainly took place in Madison, New Jersey and Wayne, New Jersey."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Gravitas_Ventures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ee_Adutha_Kaalathu"}, "Title": {"type": "literal", "value": "Ee Adutha Kaalathu"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Arun_Kumar_Aravind"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anoop_Menon|http://dbpedia.org/resource/Indrajith_Sukumaran|http://dbpedia.org/resource/Jagathy_Sreekumar|http://dbpedia.org/resource/Murali_Gopy|http://dbpedia.org/resource/Mythili|http://dbpedia.org/resource/Nishan_K._P._Nanaiah|http://dbpedia.org/resource/Tanu_Roy"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "160"}, "Description": {"type": "literal", "value": "Ee Adutha Kaalathu (Malayalam: \u0d08 \u0d05\u0d1f\u0d41\u0d24\u0d4d\u0d24 \u0d15\u0d3e\u0d32\u0d24\u0d4d\u0d24\u0d4d, English translation: In Recent Times) is a 2012 Indian black comedy film written by Murali Gopy and directed by Arun Kumar Aravind. The film marks the second directorial venture by Arun Kumar Aravind, after his notable directorial debut Cocktail (2010). Kerala State Award winning cinematographer Shehnad Jalal handled the camera. The narrative is patterned like a Rubik's Cube; it's a brainy entertainer that mixes various genres. It features the lives of six different persons from different strata of the social life of the city, interconnected due to unexpected events beyond their control. Bengali model and theater artiste Tanushree Ghosh makes her debut in Malayalam cinema with this film. The cast includes Indrajith, Murali Gopy, Anoop Menon, Nishan, Jagathy Sreekumar and Mythili. The music is composed by Gopi Sundar and the lyrics are by Rafeeq Ahmed. The film was released on 24 February 2012 in Kerala to positive reviews. The film is considered a path-breaker for its bold and realistic narration and the innovative style of weaving story threads together. It was screened at the Malayalam Cinema Today category of the 17th International Film Festival of Kerala, where it won the NETPAC Award for Best Malayalam Film. Discussions are underway for the Hindi remake of the movie. MalluDeals.com gave Ee Adutha Kalathu the ranking of No 2 among the Top 10 Malayalam Movies of 2012."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Hooligan_Factory"}, "Title": {"type": "literal", "value": "The Hooligan Factory"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nick_Nevern"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jason_Maza|http://dbpedia.org/resource/Josef_Altin|http://dbpedia.org/resource/Keith-Lee_Castle|http://dbpedia.org/resource/Leo_Gregory|http://dbpedia.org/resource/Nick_Nevern|http://dbpedia.org/resource/Ray_Fearon|http://dbpedia.org/resource/Steven_O'Donnell_(actor)|http://dbpedia.org/resource/Tom_Burke_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "The Hooligan Factory is a 2014 Football hooliganism spoof film directed, co-written and starring Nick Nevern. The film heavily parodies titles from the British hooligan genre films and focuses mainly on The Firm, along with The Football Factory, Rise of the Footsoldier, I.D., Green Street and Cass."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/11:14"}, "Title": {"type": "literal", "value": "11:14"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Greg_Marcks"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Barbara_Hershey|http://dbpedia.org/resource/Ben_Foster|http://dbpedia.org/resource/Blake_Heron|http://dbpedia.org/resource/Clark_Gregg|http://dbpedia.org/resource/Henry_Thomas|http://dbpedia.org/resource/Hilary_Swank|http://dbpedia.org/resource/Patrick_Swayze|http://dbpedia.org/resource/Rachael_Leigh_Cook|http://dbpedia.org/resource/Shawn_Hatosy"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "11:14 is a 2003 American indie black comedy. The film was edited in a way that the various scenes of the movie all take place around the pivotal time of 11:14 PM."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/New_Line_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/One_by_Two_(2014_film)"}, "Title": {"type": "literal", "value": "One By Two"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Devika_Bhagat"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Abhay_Deol|http://dbpedia.org/resource/Preeti_Desai"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "149"}, "Description": {"type": "literal", "value": "One By Two is a 2014 Hindi romantic comedy directed by Devika Bhagat. It released on 31 January 2014 at multiplexes, showing on approximately 500 screens in India. The film features real life couple Abhay Deol and Preeti Desai. This is the story of Amit and Samara who meet each other while living in Mumbai The music of the film has been composed by Shankar-Ehsaan-Loy. The film was heavily panned by critics."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Race_Gurram"}, "Title": {"type": "literal", "value": "Race Gurram"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Surender_Reddy"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Allu_Arjun|http://dbpedia.org/resource/Prakash_Raj|http://dbpedia.org/resource/Ravi_Kishan|http://dbpedia.org/resource/Saloni_Aswani|http://dbpedia.org/resource/Shaam|http://dbpedia.org/resource/Shruti_Haasan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "163"}, "Description": {"type": "literal", "value": "Race Gurram (English: Race Horse) is a 2014 Telugu action-comedy film directed by Surender Reddy and produced by Nallamalupu Srinivas under his banner Sri Lakshmi Narasimha Productions. The film features an ensemble cast of Allu Arjun and Shruti Haasan in the lead roles while S. Thaman composed the music. This was Allu Arjun and Shruti Haasan's first collaboration. Principal photography began on 13 May 2013 in Hyderabad. The film's \"talkie part\" was completed on 24 December 2013, with the entire shoot completed on 22 February 2014. The film had a worldwide release on 11 April 2014 The dubbed Malayalam version of the film titled Lucky: The Racer released on 25 April 2014. It was also dubbed into Hindi as Main Hoon Lucky: the Racer. Upon release, the film received positive reviews from critics, eventually becoming the fifth highest grossing Telugu film of all time and became the highest grosser of 2014 as it collected around \u20b9104 crore (US$15 million) with a distributor's share of \u20b959.4 crore (US$8.8 million). It won the Filmfare Awards for Best Actor, Best Actress and Best Playback Singer - Male. Race gurram released in 1150 theatres worldwide and it collected \u20b9104 crore (US$15 million) in its lifetime. Race Gurram was the highest grossing Telugu film of 2014 which topped Yevadu record and eventually went on to become the fifth highest grossing Telugu film of all time."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tenaliraman_(film)"}, "Title": {"type": "literal", "value": "Tenaliraman"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Yuvaraj_Dhayalan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Meenakshi_Dixit|http://dbpedia.org/resource/Vadivelu"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "146"}, "Description": {"type": "literal", "value": "Tenaliraman (previously titled Jagajala Pujabala Tenaliraman) is a 2014 Tamil historical fiction political satire comedy film directed by Yuvaraj Dhayalan of Potta Potti fame. Vadivelu stars in this film in dual roles. Meenakshi Dixit plays the heroine in the film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/AGS_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dedh_Ishqiya"}, "Title": {"type": "literal", "value": "Dedh Ishqiya"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Abhishek_Chaubey"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Arshad_Warsi|http://dbpedia.org/resource/Huma_Qureshi_(actress)|http://dbpedia.org/resource/Madhuri_Dixit|http://dbpedia.org/resource/Naseeruddin_Shah"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_black_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "148"}, "Description": {"type": "literal", "value": "Dedh Ishqiya is a 2014 Indian black comedy film directed by Abhishek Chaubey starring Madhuri Dixit, Arshad Warsi, Naseeruddin Shah, and Huma Qureshi in the lead roles. Produced by Raman Maroo of Shemaroo Entertainment and by Vishal Bharadwaj, it is a sequel of Ishqiya (2010). It was released worldwide on 10 January 2014."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Shemaroo_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Book_of_Life_(2014_film)"}, "Title": {"type": "literal", "value": "The Book of Life"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jorge_Gutierrez_(animator)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Channing_Tatum|http://dbpedia.org/resource/Christina_Applegate|http://dbpedia.org/resource/Diego_Luna|http://dbpedia.org/resource/Ice_Cube|http://dbpedia.org/resource/Kate_del_Castillo|http://dbpedia.org/resource/Ron_Perlman|http://dbpedia.org/resource/Zoe_Saldana"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "The Book of Life is a 2014 American 3D computer-animated fantasy adventure musical comedy film produced by Reel FX Creative Studios and distributed by 20th Century Fox. Co-written and directed by Jorge R. Gutierrez, it was produced by Aaron Berger, Brad Booker, Guillermo del Toro and Carina Schulze. The film stars the voices of Diego Luna, Zoe Saldana, Channing Tatum, Christina Applegate, Ice Cube, Ron Perlman, and Kate del Castillo. Based on an original idea by Gutierrez, the story follows a bullfighter who embarks on an afterlife adventure to fulfill the expectations of his family and friends. The film premiered in Los Angeles on October 12, 2014 and was theatrically released in the United States on October 17, 2014. It received a Golden Globe nomination for Best Animated Feature Film. The film grossed $99.8 million on a $50 million budget."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Killers_(2010_film)"}, "Title": {"type": "literal", "value": "Killers"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Robert_Luketic"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_criminal_comedy_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Killers is a 2010 American romantic action comedy film directed by Robert Luketic and starring Katherine Heigl and Ashton Kutcher. The film was released on June 4, 2010. The film centers on a young woman (Heigl) who meets a man (Kutcher) who turns out to be an assassin."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lions_Gate_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dylan_Dog:_Dead_of_Night"}, "Title": {"type": "literal", "value": "Dylan Dog: Dead of Night"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Munroe"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anita_Briem|http://dbpedia.org/resource/Brandon_Routh|http://dbpedia.org/resource/Peter_Stormare|http://dbpedia.org/resource/Sam_Huntington|http://dbpedia.org/resource/Taye_Diggs"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "Dylan Dog: Dead of Night is a 2011 American science fiction mystery action horror comedy thriller film based on Tiziano Sclavi's Italian comic book Dylan Dog, starring Brandon Routh as the eponymous and self-aware detective. The film was released in Italy on March 16, 2011, and in the United States on April 29, 2011. The film earned $4,634,062 on a $20 million budget."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Freestyle_Releasing"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Haunting_Me"}, "Title": {"type": "literal", "value": "Haunting Me"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Poj_Arnon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Haunting Me (Thai: \u0e2b\u0e2d\u0e41\u0e15\u0e4b\u0e27\u0e41\u0e15\u0e01; rtgs: Ho Taeo Taek) is a 2007 Thai horror-comedy film directed by Poj Arnon."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Five_Star_Production"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dedication_(film)"}, "Title": {"type": "literal", "value": "Dedication"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Justin_Theroux"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Billy_Crudup|http://dbpedia.org/resource/Mandy_Moore|http://dbpedia.org/resource/Tom_Wilkinson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Dedication is a 2007 American romantic comedy film starring Billy Crudup and Mandy Moore. Written by David Bromberg, this film is actor Justin Theroux's directorial debut. The film premiered at the 2007 Sundance Film Festival. It was produced by Plum Pictures."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/First_Look_International|http://dbpedia.org/resource/The_Weinstein_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Hitman's_Bodyguard"}, "Title": {"type": "literal", "value": "The Hitman's Bodyguard"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Patrick_Hughes_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gary_Oldman|http://dbpedia.org/resource/Ryan_Reynolds|http://dbpedia.org/resource/Salma_Hayek|http://dbpedia.org/resource/Samuel_L._Jackson|http://dbpedia.org/resource/\u00c9lodie_Yung"}, "Published": {"type": "literal", "value": "2017-08-18"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Hitman's Bodyguard is an upcoming American action comedy film directed by Patrick Hughes and written by Tom O'Connor. The film stars Ryan Reynolds, Samuel L. Jackson, Gary Oldman, \u00c9lodie Yung, and Salma Hayek."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lionsgate"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ustad_Hotel"}, "Title": {"type": "literal", "value": "Ustad Hotel"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Anwar_Rasheed"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Assim_Jamal|http://dbpedia.org/resource/Dulquer_Salmaan|http://dbpedia.org/resource/Nithya_Menen|http://dbpedia.org/resource/Siddique_(actor)|http://dbpedia.org/resource/Thilakan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "151"}, "Description": {"type": "literal", "value": "Ustad Hotel is a 2012 Indian Malayalam-language drama film directed by Anwar Rasheed, written by Anjali Menon and produced by Listin Stephen under the banner of Magic Frames and was distributed by Central Pictures. The film stars Dulquer Salmaan, Thilakan, Siddique, Mamukkoya, Nithya Menen and Lena Abhilash, along with Asif Ali and Jishnu in cameo roles. The film is about a young man named Faizal (known as Feyzee), who studies in Switzerland as a chef against his rich father's wishes. As the relation between father and son deteriorates, Feyzee is forced to work as a cook in a restaurant at Kozhikode (Calicut) run by his grandfather Karim. A strong bond develops between Karim, an elderly Sufi Muslim, and his educated grandson who eventually decides to work permanently in the restaurant. The film also discusses issues of poverty, underprivilege and tensions between rich and poor in India. Food and its nuances becomes a central character in the film. Ustad Hotel was released on 13 July 2012. The film was one of the highest grossing Malayalam films of 2012 The film was named number-one in the list of \"Top 10 Malayalam films of 2012\" compiled by Oneindia.in. The film won three National Film Awards: the film won the award for Best Popular Film while Anjali Menon won the award for Best Dialogues and Thilakan got a Special Mention. This boxoffice hit film is being dubbed in Telugu as Jathaga under the banner of SK Pictures"}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Horrible_Bosses"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Seth_Gordon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Horrible Bosses is a 2011 American black comedy film directed by Seth Gordon, written by Michael Markowitz, John Francis Daley and Jonathan Goldstein, based on a story by Markowitz. It stars Jason Bateman, Charlie Day, Jason Sudeikis, Jennifer Aniston, Colin Farrell, Kevin Spacey, and Jamie Foxx. The plot follows three friends, played by Bateman, Day, and Sudeikis, who decide to murder their respective overbearing, abusive bosses, portrayed by Spacey, Aniston and Farrell. Markowitz's script was bought by New Line Cinema in 2005 and the film spent six years in various states of pre-production, with a variety of actors attached to different roles. By 2010, Goldstein and Daley had rewritten the script, and the film finally went into production. The film premiered in Los Angeles on June 30, 2011, and received a wide release on July 8, 2011. The film exceeded financial expectations, accruing over $28 million in the first three days, making it the number two film in the United States during its opening weekend, and going on to become the highest-grossing black comedy film of all time in unadjusted dollars, breaking the record previously set by The War of the Roses in 1990. The film grossed over $209 million worldwide during its theatrical run. The film opened to positive critical reception, with several critics praising the ensemble cast, with each lead being singled out for their performances across reviews. The plot received a more mixed response; some reviewers felt that its dark, humorous premise was explored well, while others felt the jokes were racist, homophobic, and misogynistic. A sequel, Horrible Bosses 2, was released on November 26, 2014."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Age_of_Panic"}, "Title": {"type": "literal", "value": "Age of Panic"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Justine_Triet"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Vincent_Macaigne"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Age of Panic (French: La Bataille de Solf\u00e9rino) is a 2013 French dramedy film written and directed by Justine Triet. Much of the film was shot on the streets of Paris during the 6 May 2012 national elections."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Love_Is_the_Only_Answer"}, "Title": {"type": "literal", "value": "Love Is the Only Answer"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Patrick_Kong"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alex_Fong_(singer)|http://dbpedia.org/resource/Charmaine_Sheh|http://dbpedia.org/resource/Him_Law"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Hong_Kong_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Love Is the Only Answer (Chinese: \u4eba\u7d04\u96e2\u5a5a\u5f8c) is a 2011 Hong Kong comedy film directed by Patrick Kong."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Breakup_Guru"}, "Title": {"type": "literal", "value": "The Breakup Guru"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Deng_Chao"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Deng_Chao|http://dbpedia.org/resource/Yang_Mi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Chinese_comedy-drama_films|http://dbpedia.org/resource/Category:Chinese_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "The Breakup Guru (Chinese: \u5206\u624b\u5927\u5e08) is a 2014 Chinese romantic-comedy-drama film directed by Deng Chao and Yu Baimei and also starring Deng Chao and Yang Mi. The film was released on June 27, 2014."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_First_Turn-On!"}, "Title": {"type": "literal", "value": "The First Turn-On!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lloyd_Kaufman|http://dbpedia.org/resource/Michael_Herz_(producer)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Sheila_Kennedy|http://dbpedia.org/resource/Vincent_D'Onofrio"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1980s_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "The First Turn-On! is a 1983 comedy film directed by Lloyd Kaufman and Michael Herz of Troma Entertainment. It was the last in a series of four \"sexy comedies\" that helped establish Troma as a film studio, starting with 1979's Squeeze Play!, 1981's Waitress! and 1982's Stuck on You!. The First Turn-On! is usually considered by Troma fans to be the best of the company's \"sexy comedies\"."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Troma_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sorority_Row"}, "Title": {"type": "literal", "value": "Sorority Row"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Stewart_Hendler"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Audrina_Patridge|http://dbpedia.org/resource/Briana_Evigan|http://dbpedia.org/resource/Carrie_Fisher|http://dbpedia.org/resource/Jamie_Chung|http://dbpedia.org/resource/Julian_Morris|http://dbpedia.org/resource/Leah_Pipes|http://dbpedia.org/resource/Margo_Harshman|http://dbpedia.org/resource/Matt_Lanter|http://dbpedia.org/resource/Rumer_Willis"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Sorority Row is a 2009 American slasher film directed by Stewart Hendler and starring Briana Evigan, Leah Pipes, Rumer Willis, and Carrie Fisher. Based on the script for the 1983 horror film The House on Sorority Row by Mark Rosman and Bobby Fine, the film is a re-imagining that focuses on a group of sorority sisters who are stalked and murdered on the night of their graduation after covering up the accidental death of a fellow sorority sister. The film was released theatrically in the United States on September 11, 2009, by Summit Entertainment and grossed $27.2 million worldwide against a budget of $12.5 million."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Summit_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Get_Married_(film)"}, "Title": {"type": "literal", "value": "Get Married"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Hanung_Bramantyo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Meriam_Bellina|http://dbpedia.org/resource/Nirina_Zubir"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Get Married is a 2007 Indonesian romantic comedy directed by Hanung Bramantyo. Starring Nirina Zubir, Aming, Deddy Mahendra Desta, Ringgo Agus Rahman, Richard Kevin, Jaja Mihardja, and Meriam Bellina, it tells of a young tomboy who is forced to find a husband."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Starvision_Plus"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Without_a_Paddle:_Nature's_Calling"}, "Title": {"type": "literal", "value": "Without a Paddle: Nature's Calling"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ellory_Elkayem"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kristopher_Turner|http://dbpedia.org/resource/Oliver_James_(entertainer)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "Without a Paddle: Nature's Calling is a 2009 direct-to-video sequel to the 2004 film Without a Paddle. There is no connection to the first film and none of the original actors return. It was released on DVD on January 13, 2009."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Famous_Productions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/All_the_Best:_Fun_Begins"}, "Title": {"type": "literal", "value": "All The Best: Fun Begins"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rohit_Shetty"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ajay_Devgn|http://dbpedia.org/resource/Bipasha_Basu|http://dbpedia.org/resource/Fardeen_Khan|http://dbpedia.org/resource/Mugdha_Godse|http://dbpedia.org/resource/Sanjay_Dutt"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Action_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "144"}, "Description": {"type": "literal", "value": "All The Best: Fun Begins is a Bollywood comedy film directed by Rohit Shetty, and starring Ajay Devgan, Sanjay Dutt, Fardeen Khan, Bipasha Basu and Mugdha Godse. The film was released on 16 October 2009, and received positive response from critics, The plot is loosely based on Marathi comedy play Pati Sagle Uchapati which itself is based on the English comedy play Right Bed Wrong Husband. The English play has been an inspiration for Tamil films- Veettuku Veedu and Vishwanathan Ramamoorthy as well as Kannada films- Galate Samsara and Housefull. The film was subsequently remade with slight changes in the story in Malayalam in 2010 as Best of Luck which went on to be remade in Kannada in 2015 as Ond Chance Kodi."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Past_Perfect_(film)"}, "Title": {"type": "literal", "value": "Past Perfect"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Maria_Sole_Tognazzi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Valentina_Cervi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Italian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Past Perfect (Italian: Passato prossimo) is a 2003 Italian comedy film directed by Maria Sole Tognazzi. It was entered into the 25th Moscow International Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Grilled_(film)"}, "Title": {"type": "literal", "value": "Grilled"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jason_Ensler"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Barry_Newman|http://dbpedia.org/resource/Burt_Reynolds|http://dbpedia.org/resource/Juliette_Lewis|http://dbpedia.org/resource/Kevin_James|http://dbpedia.org/resource/Michael_Rapaport|http://dbpedia.org/resource/Ray_Romano|http://dbpedia.org/resource/Sofia_Vergara"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "Grilled is a 2006 comedy film starring Ray Romano and Kevin James. It was released direct-to-video in the United States on July 11, 2006."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/New_Line_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Infidel_(2010_film)"}, "Title": {"type": "literal", "value": "The Infidel"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Josh_Appignanesi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films|http://dbpedia.org/resource/Category:Jewish_comedy_and_humor"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "The Infidel is a 2010 British comedy film directed by Josh Appignanesi and written by David Baddiel. The film stars Omid Djalili, Richard Schiff, Yigal Naor and Matt Lucas and revolves around a British Muslim who goes through an identity crisis when he discovers he was adopted as a child, having been born to a Jewish family."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Gagamboy"}, "Title": {"type": "literal", "value": "Gagamboy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Erik_Matti"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aubrey_Miles|http://dbpedia.org/resource/Jay_Manalo|http://dbpedia.org/resource/Vhong_Navarro"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Philippine_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Gagamboy is a 2004 Filipino science fiction action comedy film directed by Erik Matti and starring Vhong Navarro. It is of the same ilk as the Spider-Man films, with a mutated spider that causes Gagamboy to gain his superpowers."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Regal_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/JK_Enum_Nanbanin_Vaazhkai"}, "Title": {"type": "literal", "value": "JK Enum Nanbanin Vaazhkkai / Rajadhi Raja"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Cheran_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Nithya_Menen|http://dbpedia.org/resource/Prakash_Raj|http://dbpedia.org/resource/Sharwanand"}, "Published": {"type": "literal", "value": "2015-03-06|2016-06-24"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "139"}, "Description": {"type": "literal", "value": "JK Enum Nanbanin Vaazhkai (English: My friend JK's Life) is a 2015 Tamil film written and directed by Cheran, which was simultaneously made and later released in Telugu as Rajadhi Raja. It stars Sharwanand and Nithya Menen in the lead roles while Prakash Raj and Santhanam play supporting roles. The film featured songs by G. V. Prakash Kumar and film scored by Siddharth Vipin. After failing to have a theatrical release in late 2013, the Tamil version of the film had a straight-to-video release in March 2015, becoming the first venture in a new initiative launched by Cheran known as C2H. The Telugu version of the film had been indefinitely placed on hold, but was later released in June 2016, with the makers trying to profit from Sharwanand's popularity."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Club_Sandwich_(film)"}, "Title": {"type": "literal", "value": "Club Sandwich"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Fernando_Eimbcke"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Lucio_Gim\u00e9nez_Cacho"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Mexican_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "Club Sandwich is a 2013 Mexican comedy film written and directed by Fernando Eimbcke. It was screened in the Contemporary World Cinema section at the 2013 Toronto International Film Festival. It won the Golden Shell at the 2013 San Sebasti\u00e1n film festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Don_Verdean"}, "Title": {"type": "literal", "value": "Don Verdean"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jared_Hess"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amy_Ryan|http://dbpedia.org/resource/Danny_McBride|http://dbpedia.org/resource/Jemaine_Clement|http://dbpedia.org/resource/Leslie_Bibb|http://dbpedia.org/resource/Sam_Rockwell|http://dbpedia.org/resource/Will_Forte"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Don Verdean is a 2015 American comedy film directed by Jared Hess and written by Jared Hess and Jerusha Hess. The film stars Sam Rockwell, Amy Ryan, Jemaine Clement, Danny McBride, and Will Forte. The film was released in a limited release and through video on demand on December 11, 2015, by Lionsgate Premiere."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lionsgate_Premiere"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/A_Fool"}, "Title": {"type": "literal", "value": "A Fool"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chen_Jianbin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chen_Jianbin|http://dbpedia.org/resource/Jiang_Qinqin|http://dbpedia.org/resource/Jin_Shijia"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Chinese_adventure_comedy_films|http://dbpedia.org/resource/Category:Chinese_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "A Fool (Chinese: \u4e00\u4e2a\u52fa\u5b50) is a 2015 Chinese adventure comedy-drama film directed by Chen Jianbin. It was released on November 20, 2015."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Catfish_in_Black_Bean_Sauce"}, "Title": {"type": "literal", "value": "Catfish in Black Bean Sauce"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chi_Muoi_Lo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chi_Muoi_Lo|http://dbpedia.org/resource/Mary_Alice|http://dbpedia.org/resource/Paul_Winfield|http://dbpedia.org/resource/Sanaa_Lathan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "119"}, "Description": {"type": "literal", "value": "Catfish in Black Bean Sauce is a 1999 comedy-drama film about a Vietnamese brother and sister raised by an African American couple. The film stars Chi Muoi Lo, Paul Winfield, Sanaa Lathan, and Mary Alice."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Big_Nothing"}, "Title": {"type": "literal", "value": "Big Nothing"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jean-Baptiste_Andrea"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alice_Eve|http://dbpedia.org/resource/David_Schwimmer|http://dbpedia.org/resource/Natascha_McElhone|http://dbpedia.org/resource/Simon_Pegg"}, "Published": {"type": "literal", "value": "2006-12-01"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films|http://dbpedia.org/resource/Category:British_black_comedy_films|http://dbpedia.org/resource/Category:British_criminal_comedy_films|http://dbpedia.org/resource/Category:French_black_comedy_films|http://dbpedia.org/resource/Category:French_criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Big Nothing is a 2006 British-American-French black comedy crime film directed by Jean-Baptiste Andrea starring David Schwimmer and Simon Pegg. It was released in December 2006, and had its premiere at  Cardiff Film Festival in November 2006. Big Nothing was filmed on the Isle of Man and in Wales at Barry in the Vale of Glamorgan and at Caerwent and other areas of Monmouthshire. Other scenes were at Squamish, British Columbia, Canada."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Path\u00e9"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hank_and_Mike"}, "Title": {"type": "literal", "value": "Hank and Mike"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Matthiew_Klinck"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Klein_(actor)|http://dbpedia.org/resource/Joe_Mantegna|http://dbpedia.org/resource/Paolo_Mancini|http://dbpedia.org/resource/Thomas_Michael"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Hank and Mike is a 2008 comedy film directed by Matthiew Klinck, from a screenplay written by Paolo Mancini and Thomas Michael. The film tells the story of two blue-collar Easter Bunnies who get fired and try their hand at an assortment of odd jobs. The film premiered in 2008 at the NATPE NextGen Film Festival and was slated for general audience release on October 24, 2008 in the United States. The film was released in Canada on March 27, 2009."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sarah_Silverman:_Jesus_Is_Magic"}, "Title": {"type": "literal", "value": "Jesus Is Magic"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Liam_Lynch_(musician)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bob_Odenkirk|http://dbpedia.org/resource/Brian_Posehn|http://dbpedia.org/resource/Laura_Silverman|http://dbpedia.org/resource/Sarah_Silverman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Stand-up_comedy_concert_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "72"}, "Description": {"type": "literal", "value": "Sarah Silverman: Jesus Is Magic is a 2005 comedy written by and starring Sarah Silverman, directed by Liam Lynch and distributed by Roadside Attractions. The movie is a concert film consisting of 72 minutes of clips taken from Silverman's previous stand-up show of the same name, interspersed with flashbacks and comedic sketches. Silverman addresses a number of topics, including religion, AIDS, the Holocaust, race, sexism, political parties, people with disabilities, homeless people, and dwarves. Silverman also performs several original songs in the film. The film was released November 11, 2005 in eight theatres. Receiving positive reviews, it made just under $125,000 during opening weekend. Its performance led to an expanded release in as many as 57 theatres, resulting in a box office take of more than $1.2 million. The movie was released on DVD on June 6, 2006 in the United States, June 13 in Canada, and October 13, 2008 in the United Kingdom. A soundtrack CD was also released featuring most of the musical numbers, excerpts from Silverman's stand-up comedy, and several additional songs which did not appear in the film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Roadside_Attractions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Recep_\u0130vedik_3"}, "Title": {"type": "literal", "value": "Recep \u0130vedik 3"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Togan_G\u00f6kbakar"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Turkish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Recep \u0130vedik 3 is a 2010 Turkish comedy film, directed by Togan G\u00f6kbakar, which stars \u015eahan G\u00f6kbakar as an oafish character who is attempting to combat depression following the death of his grandmother. The film, which was released nationwide in Turkey on February 12, 2010, was the highest grossing Turkish film of 2010. The film's titular comic character was created by \u015eahan G\u00f6kbakar for his Turkish comedy television show Dikkat \u015eahan \u00c7\u0131kabilir, which ran from 2005 to 2006. The series subsequently generated several sequel films, starting with Recep \u0130vedik (2008), to which this is the second sequel."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Passport_to_Love"}, "Title": {"type": "literal", "value": "Passport to Love"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Victor_Vu"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kathy_Uyen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:Vietnamese_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "Passport to Love (Vietnamese: Chuy\u1ec7n T\u00ecnh Xa X\u1ee9) is a 2009 Vietnamese romantic comedy directed by Victor Vu. Produced by Infocus Media Group and Wonderboy Entertainment, the film was released on February 13, 2009 in Vietnam. The film won Audience Choice and Best Supporting Actress at Vietnam's 2008 Golden Kite Awards."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Good_Morning_President"}, "Title": {"type": "literal", "value": "Good Morning President"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jang_Jin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Go_Doo-shim|http://dbpedia.org/resource/Jang_Dong-gun|http://dbpedia.org/resource/Lee_Soon-jae"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:South_Korean_comedy_films|http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "132"}, "Description": {"type": "literal", "value": "Good Morning President (Hangul: \uad7f\ubaa8\ub2dd \ud504\ub808\uc9c0\ub358\ud2b8; RR: Gutmoning peurejideonteu) is a 2009 South Korean film written and directed by Jang Jin that takes viewers to the private quarters of the Blue House during the terms of three fictional presidents (played by Lee Soon-jae, Jang Dong-gun and Go Doo-shim), each trapped between political and ethical choices. It was chosen as the opening film of the 14th Busan International Film Festival and was released in theaters on October 22, 2009."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/CJ_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Ape_(2005_film)"}, "Title": {"type": "literal", "value": "The Ape"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Franco"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Brian_Lally|http://dbpedia.org/resource/James_Franco"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "The Ape is a 2005 American comedy film starring James Franco in his directorial debut. Franco also serves as a writer and executive producer."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Rabbit_Bandini_Productions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tucker_&_Dale_vs._Evil"}, "Title": {"type": "literal", "value": "Tucker & Dale vs. Evil"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Eli_Craig"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alan_Tudyk|http://dbpedia.org/resource/Chelan_Simmons|http://dbpedia.org/resource/Jesse_Moss_(actor)|http://dbpedia.org/resource/Katrina_Bowden|http://dbpedia.org/resource/Tyler_Labine"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Tucker & Dale vs. Evil is a 2010 Canadian-American comedy horror film written and directed by Eli Craig, and starring Alan Tudyk, Tyler Labine, Katrina Bowden, Jesse Moss, and Chelan Simmons. Tudyk and Labine play a pair of well-meaning hillbillies who are mistaken for killers by a group of clueless college students. The film premiered at the 2010 Sundance Film Festival and received a limited release in the United States. It has an 84% approval rating at Rotten Tomatoes and a 65/100 rating on Metacritic."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Magnet_Releasing"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Broken_Record_(film)"}, "Title": {"type": "literal", "value": "Broken Record"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_S._McEwan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/John_Gaffney_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "11"}, "Description": {"type": "literal", "value": "Broken Record is a short comedy film following a pair of removal men in East Kilbride who stumble upon an old trunk in a locked cupboard. The film was produced by Pentagram Productions UK and marked the directorial debut for Andy S. McEwan."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Road_Trip_(film)"}, "Title": {"type": "literal", "value": "Road Trip"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Todd_Phillips"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amy_Smart|http://dbpedia.org/resource/Anthony_Rapp|http://dbpedia.org/resource/Breckin_Meyer|http://dbpedia.org/resource/DJ_Qualls|http://dbpedia.org/resource/Fred_Ward|http://dbpedia.org/resource/Paulo_Costanzo|http://dbpedia.org/resource/Rachel_Blanchard|http://dbpedia.org/resource/Seann_William_Scott|http://dbpedia.org/resource/Tom_Green"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Road Trip is a 2000 American comedy film directed by Todd Phillips, written by Scot Armstrong and Phillips. The film stars Breckin Meyer, Seann William Scott, Paulo Costanzo, and DJ Qualls as four college friends who embark on an 1800-mile road trip to retrieve an illicit tape mistakenly mailed to a girlfriend."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/DreamWorks"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Almanya:_Welcome_to_Germany"}, "Title": {"type": "literal", "value": "Almanya: Welcome to Germany"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Yasemin_\u015eamdereli"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:German_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Almanya: Welcome to Germany (German: Almanya \u2013 Willkommen in Deutschland) (Almanya is Turkish for Germany) is a 2011 German comedy film directed by Yasemin \u015eamdereli. The film premiered at the 61st Berlin International Film Festival in the section competition and won the Deutscher Filmpreis 2011 in the categories Best Script and Best Film. The  tragic comedy dramatizes the question of identity and belonging for former  Turkish guest workers in Germany and their descendants. The film opened in German cinemas on 10 March and was the fourth most successful German film of 2011 with 1.5 million viewers."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Catfight_(film)"}, "Title": {"type": "literal", "value": "Catfight"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Onur_Tukel"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alicia_Silverstone|http://dbpedia.org/resource/Anne_Heche|http://dbpedia.org/resource/Sandra_Oh"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Action_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Catfight is an upcoming American action comedy film directed and written by Onur Tukel. The film stars Sandra Oh, Anne Heche, and Alicia Silverstone. It has been selected to be screened in the Special Presentations section at the 2016 Toronto International Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Screen_Gems"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Six_Shooter_(film)"}, "Title": {"type": "literal", "value": "Six Shooter"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Martin_McDonagh"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Brendan_Gleeson|http://dbpedia.org/resource/R\u00faaidhr\u00ed_Conroy"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "27"}, "Description": {"type": "literal", "value": "Six Shooter is an Irish / British 2004 live action short film starring Brendan Gleeson and R\u00faaidhr\u00ed Conroy. The film earned several awards, including the Academy Award for Best Live Action Short Film."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tan_de_repente"}, "Title": {"type": "literal", "value": "Tan de repente"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Diego_Lerman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Tan de repente (Suddenly) is a 2002 Argentine and Dutch black-and-white comedy drama film directed by Diego Lerman and written by Lerman, Mar\u00eda Meira, and Eloisa Solaas, based on the novel La prueba, written by C\u00e9sar Aira. The drama features Tatiana Saphir, Carla Crespo, Veronica Hassan, among others. A young, naive clerk at a lingerie store learns about love and her own identity."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Footloose_(2011_film)"}, "Title": {"type": "literal", "value": "Footloose"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Craig_Brewer"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andie_MacDowell|http://dbpedia.org/resource/Dennis_Quaid|http://dbpedia.org/resource/Julianne_Hough|http://dbpedia.org/resource/Kenny_Wormald"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "113"}, "Description": {"type": "literal", "value": "Footloose is a 2011 American musical dance film directed by Craig Brewer. It is a remake of the 1984 film of the same name and stars Kenny Wormald, Julianne Hough, Andie MacDowell, and Dennis Quaid. The film follows a young man who moves from Boston to a small southern town and protests the town's ban against dancing. Filming took place from September to November 2010 in Georgia. It was released in Australia and New Zealand on October 6, 2011, and in North America on October 14, 2011. It grossed $15.5 million in its opening weekend and $63 million worldwide from a $24 million budget. It was met with generally positive reaction from critics."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kadhalum_Kadandhu_Pogum"}, "Title": {"type": "literal", "value": "Kadhalum Kadanthu Pogum"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nalan_Kumarasamy"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Madonna_Sebastian|http://dbpedia.org/resource/Vijay_Sethupathi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy-drama_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "136"}, "Description": {"type": "literal", "value": "Kadhalum Kadandhu Pogum (English: Love too shall pass) is a 2016 Indian Tamil-language romantic comedy -drama film written and directed by Nalan Kumarasamy. Produced by C. V. Kumar under Thirukumaran Entertainment banner, the film stars Vijay Sethupathi and Madonna Sebastian in the lead roles. An official remake of the 2010 Korean film My Dear Desperado, the film was released on 11 March 2016 to positive reviews."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Abi_&_Abi_Pictures|http://dbpedia.org/resource/Studio_Green"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Gori_Tere_Pyaar_Mein"}, "Title": {"type": "literal", "value": "Gori Tere Pyaar Mein"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Punit_Malhotra"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Imran_Khan_(Indian_actor)|http://dbpedia.org/resource/Kareena_Kapoor_Khan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "150"}, "Description": {"type": "literal", "value": "Gori Tere Pyaar Mein is a 2013 Indian romantic drama film written and directed by Punit Malhotra. Produced by Karan Johar under the banner of Dharma Productions, the film features Imran Khan and Kareena Kapoor Khan in pivotal roles."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Vance_and_Pepe's_Porn_Start"}, "Title": {"type": "literal", "value": "Vance and Pepe's Porn Start"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mark_Kenneth_Woods"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Mark_Kenneth_Woods|http://dbpedia.org/resource/Michael_Venus_(entertainer)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Black_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "53"}, "Description": {"type": "literal", "value": "Vance and Pepe's Porn Start is a comedic mockumentary which had its debut at the Out On Screen Vancouver Queer Film Festival in August 2011. The DVD was released January 17, 2012 through MKW Productions and had its television broadcast debut on July 29, 2012 on OUTtv in Canada."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/In_Bed_with_Victoria"}, "Title": {"type": "literal", "value": "In Bed with Victoria"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Justine_Triet"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Melvil_Poupaud|http://dbpedia.org/resource/Vincent_Lacoste|http://dbpedia.org/resource/Virginie_Efira"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "In Bed with Victoria (original title: Victoria) is a 2016 French comedy-drama film directed by Justine Triet. It was screened in the International Critics' Week section at the 2016 Cannes Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Why_Him%3F"}, "Title": {"type": "literal", "value": "Why Him?"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/John_Hamburg"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bryan_Cranston|http://dbpedia.org/resource/Griffin_Gluck|http://dbpedia.org/resource/James_Franco|http://dbpedia.org/resource/Keegan-Michael_Key|http://dbpedia.org/resource/Megan_Mullally|http://dbpedia.org/resource/Zoey_Deutch"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Why Him? is an upcoming American romantic comedy film directed by John Hamburg and co-written with Ian Helfer. The film stars James Franco, Bryan Cranston, Zoey Deutch, Megan Mullally, Griffin Gluck, and Keegan-Michael Key. The film will be released on December 23, 2016 by 20th Century Fox."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lilo_&_Stitch"}, "Title": {"type": "literal", "value": "Lilo & Stitch"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Sanders|http://dbpedia.org/resource/Dean_DeBlois"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Daveigh_Chase|http://dbpedia.org/resource/David_Ogden_Stiers|http://dbpedia.org/resource/Jason_Scott_Lee|http://dbpedia.org/resource/Kevin_McDonald|http://dbpedia.org/resource/Kevin_Michael_Richardson|http://dbpedia.org/resource/Tia_Carrere|http://dbpedia.org/resource/Ving_Rhames|http://dbpedia.org/resource/Zoe_Caldwell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films|http://dbpedia.org/resource/Category:Animated_comedy_films|http://dbpedia.org/resource/Category:Comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Lilo & Stitch is a 2002 American animated science fiction comedy-drama film produced by Walt Disney Feature Animation and released by Walt Disney Pictures. The 42nd Disney animated feature film, Lilo & Stitch was written and directed by Dean DeBlois and Chris Sanders, the latter also starring as Stitch, and features the voices of Daveigh Chase, Tia Carrere, David Ogden Stiers, Kevin McDonald, Ving Rhames, Jason Scott Lee, and Kevin Michael Richardson. It was the second of three Disney animated features produced primarily at the Florida animation studio located at Disney's Hollywood Studios (then known as Disney-MGM Studios during production) in Walt Disney World near Orlando, Florida. Lilo & Stitch was released on June 21, 2002 to positive reviews and was nominated for the 2002 Academy Award for Best Animated Feature, which ultimately went to Studio Ghibli's film Spirited Away, which was also distributed in the United States by Walt Disney Pictures and also starred Daveigh Chase in the English version. The success of the film eventually started a franchise: a direct-to-video sequel, Stitch! The Movie, was released on August 26, 2003. This was followed by a television series, Lilo & Stitch: The Series, which ran from September 20, 2003, to July 29, 2006. A second direct-to-video sequel, Lilo & Stitch 2: Stitch Has a Glitch, was released on August 30, 2005. A third sequel, a television film titled Leroy & Stitch, was released on June 27, 2006, as the conclusion to the TV series. An anime that succeeded Lilo & Stitch: The Series, Stitch!, ran from October 8, 2008, to June 19, 2011, in Japan, with TV specials broadcast in 2012 and 2015. Other animation studios produced the sequel films and series; Stitch! The Movie, Lilo & Stitch: The Series and Leroy & Stitch were produced by Walt Disney Television Animation, Stitch Has a Glitch was produced by DisneyToon Studios, and Stitch! was produced by Madhouse and later Shin-Ei Animation."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Chennai_600028"}, "Title": {"type": "literal", "value": "Chennai 600028"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Venkat_Prabhu"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aravind_Akash|http://dbpedia.org/resource/Ilavarasu|http://dbpedia.org/resource/Inigo_Prabhakaran|http://dbpedia.org/resource/Jai_(actor)|http://dbpedia.org/resource/Karthik_(singer)|http://dbpedia.org/resource/Nithin_Sathya|http://dbpedia.org/resource/Premji_Amaren|http://dbpedia.org/resource/Ranjith_(singer)|http://dbpedia.org/resource/Sampath_Raj|http://dbpedia.org/resource/Shiva_(actor)|http://dbpedia.org/resource/Vijay_Vasanth|http://dbpedia.org/resource/Vijayalakshmi_Ahathian"}, "Published": {"type": "literal", "value": "2007-04-27"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Sports_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "141"}, "Description": {"type": "literal", "value": "Chennai 600028 is a 2007 Tamil coming-of-age sports comedy film written and directed by Venkat Prabhu, in his directorial debut. The film stars Jai, Shiva, Premji Amaran, Aravind Akash, Nithin Sathya and newcomers Ajay Raj, Ranjith, Vijay Vasanth, Prasanna, Inigo, Karthik and Arun in the lead along with Vijayalakshmi, daughter of National Film Award-winning director Agathiyan, and Kristine Zedek, making their acting debut as well. The film was produced by S. P. B. Charan along with J. K. Saravana, a Singapore-based award-winning producer. The film's score and soundtrack were composed by Premji Amaran and Yuvan Shankar Raja, respectively. The film is based on street cricket played in India, focussing on various themes as friendship, love and rivalry in a suburban area. Following its theatrical release on 27 April 2007, it received critical acclaim and emerged a surprise sleeper hit, going on to achieve cult status in the subsequent years. The film's title is derived from the pincode for Mandaveli, a suburb of Chennai, where the story takes place. The success of the film gained the relatively unknown actors \u2014 Jai, Shiva, Premji Amaren and Nithin Sathya, newcomers Vijayalakshmi, Vijay Vasanth and the director Venkat Prabhu popularity. Upon release, the film was dubbed into Telugu and released as Kodithe Kottalira. The film was also remade in Bengali as Le Chakka (2010), Sinhalese as Super Six (2012), and in Kannada as Bangalore 560023 (2015). A sequel for the film, Chennai 600028 II: Second Innings, is under production as of 2016."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hysterical_Psycho"}, "Title": {"type": "literal", "value": "Hysterical Psycho"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dan_Fogler"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Noah_Bean"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:American_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "73"}, "Description": {"type": "literal", "value": "Hysterical Psycho is a 2009 American horror comedy film written and directed by Dan Fogler. It stars Randy Baruh, Noah Bean, Kelly Hutchinson, Charissa Camorro, Nicholas DeCegli, and Kate Gersten as a group of friends who encounter \"lunar radiation\" that causes people to go insane."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Masterminds_(2016_film)"}, "Title": {"type": "literal", "value": "Masterminds"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jared_Hess"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jason_Sudeikis|http://dbpedia.org/resource/Kate_McKinnon|http://dbpedia.org/resource/Kristen_Wiig|http://dbpedia.org/resource/Leslie_Jones_(comedian)|http://dbpedia.org/resource/Owen_Wilson|http://dbpedia.org/resource/Zach_Galifianakis"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Comedy_films_based_on_actual_events"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Masterminds is a 2016 American comedy film based on the 1997 Loomis Fargo Robbery in North Carolina. Directed by Jared Hess and written by Chris Bowman, Hubbel Palmer and Emily Spivey, the film stars Zach Galifianakis, Owen Wilson, Kristen Wiig and Jason Sudeikis. It premiered in Los Angeles on September 26, 2016, and was theatrically released in the United States on September 30, 2016, by Relativity Media. The film received mixed reviews from critics and has grossed $19 million."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Relativity_Media"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bolo_Na_Tumi_Amar"}, "Title": {"type": "literal", "value": "Bolo Na Tumi Amar"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/M_B_Manik"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anika_Kabir_Shokh|http://dbpedia.org/resource/Shakib_Khan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Bangladeshi_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "150"}, "Description": {"type": "literal", "value": "Bolo Na Tumi Amar (Bengali: \u09ac\u09b2\u09cb\u09a8\u09be \u09a4\u09c1\u09ae\u09bf \u0986\u09ae\u09be\u09b0; English: Say You are Mine) (earlier titled 'Tomake Chara Bachbo Naa') is a Bengali language comedy-action film set in Bangladesh. It was directed by M B Manik and stars Shakib Khan, Anika Kabir Shokh, Nirob And Thoma Mirza. The film was a box-office success in Bangladesh."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Now_You_Know_(film)"}, "Title": {"type": "literal", "value": "Now You Know"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jeff_Anderson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jeff_Anderson|http://dbpedia.org/resource/Jeremy_Sisto"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Now You Know is a comedy film directed, written by and starring Jeff Anderson. The film was produced by the Lumberyard production company (Alek Petrovic, Eric Nordness and Thomas Stelter). It was released theatrically in the United States on December 13, 2002, and on DVD on November 28, 2006."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Genius_Products"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bunny_and_the_Bull"}, "Title": {"type": "literal", "value": "Bunny and the Bull"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Paul_King_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Edward_Hogg|http://dbpedia.org/resource/Julian_Barratt|http://dbpedia.org/resource/Noel_Fielding|http://dbpedia.org/resource/Richard_Ayoade|http://dbpedia.org/resource/Simon_Farnaby|http://dbpedia.org/resource/Ver\u00f3nica_Echegui"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Bunny and the Bull is a 2009 British comedy film from writer-director Paul King. It stars Edward Hogg and Simon Farnaby in a surreal recreation of a road trip. King has previously worked on British television comedies The Mighty Boosh and Garth Marenghi's Darkplace; the film is made in a similar style and has guest appearances from stars of those series."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Optimum_Releasing"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Exodus_(2007_Hong_Kong_film)"}, "Title": {"type": "literal", "value": "Exodus"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pang_Ho-cheung"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Annie_Liu|http://dbpedia.org/resource/Irene_Wan|http://dbpedia.org/resource/Maggie_Shiu|http://dbpedia.org/resource/Nick_Cheung|http://dbpedia.org/resource/Simon_Yam"}, "Published": {"type": "literal", "value": "2007-09-13"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Black_comedy_films|http://dbpedia.org/resource/Category:Comedy_thriller_films|http://dbpedia.org/resource/Category:Hong_Kong_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Exodus (\u51fa\u57c3\u53ca\u8a18) is a 2007 Hong Kong black comedy thriller film written, produced and directed by Pang Ho-cheung and starring Simon Yam."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/I_Am_Chris_Farley"}, "Title": {"type": "literal", "value": "I Am Chris Farley"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Brent_Hodge|http://dbpedia.org/resource/Derik_Murray"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Sandler|http://dbpedia.org/resource/Bo_Derek|http://dbpedia.org/resource/Bob_Odenkirk|http://dbpedia.org/resource/Chris_Farley|http://dbpedia.org/resource/David_Spade|http://dbpedia.org/resource/Lorne_Michaels|http://dbpedia.org/resource/Mike_Myers|http://dbpedia.org/resource/Molly_Shannon|http://dbpedia.org/resource/Tom_Arnold_(actor)"}, "Published": {"type": "literal", "value": "2015-08-10"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Documentary_films_about_comedy_and_comedians"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "I Am Chris Farley is a 2015 documentary film based on the life of comedian and actor Chris Farley, co-directed by Brent Hodge of Hodgee Films and Derik Murray ,who was also a producer, of Network Entertainment. The production features interviews with numerous actors, comedians and others who worked with Farley during his career."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Spike_TV"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Arahan"}, "Title": {"type": "literal", "value": "Arahan"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ryoo_Seung-wan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ahn_Sung-ki|http://dbpedia.org/resource/Jung_Doo-hong|http://dbpedia.org/resource/Ryoo_Seung-bum|http://dbpedia.org/resource/Yoon_So-yi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Action_comedy_films|http://dbpedia.org/resource/Category:South_Korean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "Arahan (Hangul: \uc544\ub77c\ud55c \uc7a5\ud48d \ub300\uc791\uc804; RR: Arahan jangpung daejakjeon) is a 2004 South Korean film. The film was the third feature film directed by Ryoo Seung-wan and stars the director's brother Ryoo Seung-bum along with Yoon So-yi, Ahn Sung-ki and Jung Doo-hong. The film was a relative commercial success, selling over 2 million tickets domestically, but wasn't as well received by critics as Ryoo Seung-wan's previous films."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Cinema_Service"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Where_Is_Madame_Catherine%3F"}, "Title": {"type": "literal", "value": "Where Is Madame Catherine?"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Marc_Recha"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dominique_Marcas"}, "Published": {"type": "literal", "value": "2003-09-05"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "130"}, "Description": {"type": "literal", "value": "Where Is Madame Catherine? (Catalan: Les mans buides, Spanish: Las manos vac\u00edas, French: Les mains vides) is a 2003 Spanish-French comedy film directed by Marc Recha. It was entered into the Un Certain Regard section at the 2003 Cannes Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bed_&_Breakfast_(2010_film)"}, "Title": {"type": "literal", "value": "Bed & Breakfast"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/M\u00e1rcio_Garcia"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bill_Engvall|http://dbpedia.org/resource/Dean_Cain|http://dbpedia.org/resource/Eric_Roberts|http://dbpedia.org/resource/John_Savage_(actor)|http://dbpedia.org/resource/Julia_Duffy|http://dbpedia.org/resource/Julian_Stone|http://dbpedia.org/resource/Juliana_Paes|http://dbpedia.org/resource/Marcos_Pasquim|http://dbpedia.org/resource/Rodrigo_Lombardi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Bed & Breakfast is a 2010 romantic comedy directed by M\u00e1rcio Garcia and written by Leland Douglas. Produced by B.B. Film Productions and F.J. Productions, the movie was shot in Rio de Janeiro, Brazil and in Los Angeles. The film stars Dean Cain, Juliana Paes, Eric Roberts, John Savage, Bill Engvall, Marcos Pasquim, Rodrigo Lombardi and more. The story is about Ana Vilanova (Juliana Paes), a saleswoman from a large department store in Rio who discovers she has inherited property in the wine county of California. She could never expect what she would find in \u201cWebster\u201d, a small country town."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Main_Hoon_Part-Time_Killer"}, "Title": {"type": "literal", "value": "Main Hoon Rajinikanth"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Faisal_Saif"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adithya_(actor)|http://dbpedia.org/resource/Kavita_Radheshyam"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "127"}, "Description": {"type": "literal", "value": "Main Hoon (Part-Time) Killer previously known as Main Hoon Rajinikanth is a 2015 Indian comedy spoof film in the Hindi language. The film is written and directed by Faisal Saif and produced by Mrs. Saroj under the banner of Varsha Production House. The film marks Bollywood d\u00e9but of South Indian actor Adithya Menon. The film was initially supposed to release in the year 2014, but faced huge opposition and controversy when South-Indian actor Rajinikanth approached Madras High Court to stop the film's release based upon the use of his name in the film's title. Business of Cinema categorized the film as Top 10 banned films of Bollywood along with movies such as Bandit Queen, Black Friday, Kama Sutra: A Tale of Love and Kissa Kursi Ka. After a long-running court battle, filmmaker Faisal Saif finally changed the title of the film falling under producer's pressure and it was released on 22 May 2015 across North India. However, in South India it was not released to avoid any further legal disputes."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/There_Once_Was_a_Husband"}, "Title": {"type": "literal", "value": "There Once Was a Husband"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Fernando_M\u00e9ndez"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Lilia_Michel|http://dbpedia.org/resource/Pedro_Infante|http://dbpedia.org/resource/Rafael_Baled\u00f3n"}, "Published": {"type": "literal", "value": "1953-03-05"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1950s_comedy_films|http://dbpedia.org/resource/Category:Mexican_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "There Once Was a Husband (Spanish: Hab\u00eda una vez un marido) is a 1953 Mexican musical comedy film directed by Fernando M\u00e9ndez and starring Lilia Michel, Rafael Baled\u00f3n and Pedro Infante."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/La_Croisi\u00e8re"}, "Title": {"type": "literal", "value": "La Croisi\u00e8re"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pascale_Pouzadoux"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Antoine_Dul\u00e9ry|http://dbpedia.org/resource/Charlotte_de_Turckheim|http://dbpedia.org/resource/Line_Renaud|http://dbpedia.org/resource/Marilou_Berry"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "La Croisi\u00e8re (or The Cruise) is a 2011 French comedy film directed by Pascale Pouzadoux."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Roll_Bounce"}, "Title": {"type": "literal", "value": "Roll Bounce"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Malcolm_D._Lee"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bow_Wow_(rapper)|http://dbpedia.org/resource/Chi_McBride|http://dbpedia.org/resource/Jurnee_Smollett|http://dbpedia.org/resource/Kellita_Smith|http://dbpedia.org/resource/Meagan_Good|http://dbpedia.org/resource/Mike_Epps|http://dbpedia.org/resource/Nick_Cannon|http://dbpedia.org/resource/Wesley_Jonathan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "Roll Bounce is a 2005 American comedy-drama film written by Norman Vance Jr. and directed by Malcolm D. Lee. The film stars hip hop artist Bow Wow as the leader of a roller skating crew in 1970s Chicago. The film also stars Nick Cannon, Meagan Good, Brandon T. Jackson, Wesley Jonathan, Chi McBride, Kellita Smith, and Jurnee Smollett. (The name of the film is derived from the 1979 song \"Bounce, Rock, Skate, Roll\" by Vaughan Mason & Crew.)"}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Searchlight_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Paradise_(2013_film)"}, "Title": {"type": "literal", "value": "Paradise"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Diablo_Cody"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Holly_Hunter|http://dbpedia.org/resource/Iliza_Shlesinger|http://dbpedia.org/resource/Julianne_Hough|http://dbpedia.org/resource/Kathleen_Rose_Perkins|http://dbpedia.org/resource/Octavia_Spencer|http://dbpedia.org/resource/Russell_Brand"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Paradise (also known as Lamb of God) is an American comedy-drama film written and directed by Diablo Cody, in her directorial debut. It stars Julianne Hough, Russell Brand, Octavia Spencer, Holly Hunter, Iliza Shlesinger and Kathleen Rose Perkins and was released October 18, 2013. The title is a take on the fact that while many tourists visit the Las Vegas Strip they are actually spending most of their time in the town of Paradise rather than in the actual city of Las Vegas. This was the last film by Mandate Pictures before it was shut down."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Image_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Nayaki"}, "Title": {"type": "literal", "value": "Nayaki"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Goverdhan_Reddy"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ganesh_Venkatraman|http://dbpedia.org/resource/Satyam_Rajesh|http://dbpedia.org/resource/Sushma_Raj|http://dbpedia.org/resource/Trisha_(actress)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Nayaki / Nayagi is a 2016 Telugu-Tamil bilingual comedy  horror film, directed by Goverdhan Reddy. The film stars Trisha in the lead role, with Ganesh Venkatraman, Satyam Rajesh and Sushma Raj in supporting roles. The film is produced by Giridhar Mamidipally, who was the former manager of Trisha under Giridhar Production House, and has cinematography by Jagadeesh. Both versions of the film opened to negative reviews in mid-2016."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sri_Thenandal_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Walk_Hard:_The_Dewey_Cox_Story"}, "Title": {"type": "literal", "value": "Walk Hard: The Dewey Cox Story"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jake_Kasdan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Parnell|http://dbpedia.org/resource/Jenna_Fischer|http://dbpedia.org/resource/John_C._Reilly|http://dbpedia.org/resource/Kristen_Wiig|http://dbpedia.org/resource/Margo_Martindale|http://dbpedia.org/resource/Matt_Besser|http://dbpedia.org/resource/Raymond_J._Barry|http://dbpedia.org/resource/Tim_Meadows"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "120|96"}, "Description": {"type": "literal", "value": "Walk Hard: The Dewey Cox Story is a 2007 American music comedy film written and produced by Judd Apatow and Jake Kasdan, directed by Kasdan and starring John C. Reilly. The plot echoes the storyline of 2005's Johnny Cash biopic Walk the Line and 2004's Ray Charles biopic Ray; Walk Hard is also a parody of the biopic genre as a whole. As Walk Hard heavily references the film Walk the Line, the Dewey Cox persona is mostly based on Johnny Cash; but the character also includes elements of the lives and careers of Roy Orbison, Glen Campbell, Bob Dylan, Ray Charles, Jerry Lee Lewis, Donovan, John Lennon, James Brown, Jim Morrison, Conway Twitty, Neil Diamond, and Brian Wilson. The film portrays fictional versions of artists Buddy Holly, The Big Bopper, Elvis Presley, and The Beatles; also, some artists play themselves, including Eddie Vedder and Ghostface Killah. In addition, the film parodies or pays tribute to the musical styles of Bob Dylan, David Bowie, Van Dyke Parks with Brian Wilson, and the seventies punk rock movement. The film was released in the United States and Canada by Columbia Pictures on December 21, 2007."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Apatow_Productions|http://dbpedia.org/resource/Relativity_Media"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Zero_Motivation"}, "Title": {"type": "literal", "value": "Zero Motivation"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Talya_Lavie"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dana_Ivgy"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Israeli_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Zero Motivation (Hebrew title: \u05d0\u05e4\u05e1 \u05d1\u05d9\u05d7\u05e1\u05d9 \u05d0\u05e0\u05d5\u05e9, Zero on interpersonal relations) is a 2014 Israeli comedy-drama film directed by Talya Lavie. The film premiered at the 2014 Tribeca Film Festival where it received two awards. It was nominated for twelve Ophir Awards, and won six of them including prizes for writer/director Talya Lavie (although it was not awarded Best Film). It was the most successful Israeli film of 2014, seen by 590,000 people in Israel alone."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Torrance_Rises"}, "Title": {"type": "literal", "value": "Torrance Rises"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lance_Bangs|http://dbpedia.org/resource/Spike_Jonze"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Rock|http://dbpedia.org/resource/Fatboy_Slim|http://dbpedia.org/resource/Janeane_Garofalo|http://dbpedia.org/resource/Madonna_(entertainer)|http://dbpedia.org/resource/Regis_Philbin|http://dbpedia.org/resource/Sofia_Coppola|http://dbpedia.org/resource/Spike_Jonze|http://dbpedia.org/resource/Will_Smith"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "34"}, "Description": {"type": "literal", "value": "Torrance Rises is a 1999 mockumentary directed by and starring Spike Jonze. The film is based on a dance group in Torrance, California, and traces their journey to the MTV Video Music Awards presentation. The music video for Fatboy Slim's 1999 song \"Praise You\", also directed by Jonze, features a street performance by this group. Torrance Rises also appears in the compilation The Work Of Director Spike Jonze (Palm Pictures)."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Palm_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kambakht"}, "Title": {"type": "literal", "value": "Kambakht"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Hamza_Ali_Abbasi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gohar_Rasheed|http://dbpedia.org/resource/Hamza_Ali_Abbasi|http://dbpedia.org/resource/Humayun_Saeed|http://dbpedia.org/resource/Saba_Qamar|http://dbpedia.org/resource/Shafqat_Cheema|http://dbpedia.org/resource/Sheheryar_Munawar_Siddiqui|http://dbpedia.org/resource/Sohai_Ali_Abro"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Pakistani_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Kambakht (Urdu: \u06a9\u0645\u0628\u062e\u062a\u200e meaning \"cursed\") is an upcoming Pakistani action, comedy film directed by Hamza Ali Abbasi, and produced by Eyad Ibrahim and Sharmeen Khan. The film stars Humayun Saeed, Shafqat Cheema, Agha Haris, Sheheryar Munawar Siddiqui, Saba Qamar and Sohai Ali Abro."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/ARY_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hotel_Transylvania_2"}, "Title": {"type": "literal", "value": "Hotel Transylvania 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Genndy_Tartakovsky"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Samberg|http://dbpedia.org/resource/David_Spade|http://dbpedia.org/resource/Keegan-Michael_Key|http://dbpedia.org/resource/Kevin_James|http://dbpedia.org/resource/Mel_Brooks|http://dbpedia.org/resource/Selena_Gomez|http://dbpedia.org/resource/Steve_Buscemi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Hotel Transylvania 2 is a 2015 American 3D computer animated fantasy-comedy film. It is the second installment in the Hotel Transylvania franchise, and the sequel to the 2012 film Hotel Transylvania, with its director, Genndy Tartakovsky, and writer, Robert Smigel, returning for the film. Produced by Sony Pictures Animation, it was animated by Sony Pictures Imageworks, with an additional funding provided by LStar Capital. Hotel Transylvania 2 takes place seven years after the first film, with the hotel now open to human guests. Mavis and Johnny have a young son named Dennis, whose lack of any vampire abilities worries his grandfather Dracula. When Mavis and Johnny go on a visit to Johnny's parents, Dracula calls his friends to help him make Dennis a vampire. Soon, things turn upside-down when Dracula's old-school human-hating father, Vlad, unexpectedly visits the hotel. Original voices from the first film\u2014Adam Sandler, Andy Samberg, Selena Gomez, Kevin James, Steve Buscemi, David Spade, Fran Drescher, Molly Shannon\u2014returned for the sequel, with Keegan-Michael Key replacing CeeLo Green as Murray. New additions to the cast include Mel Brooks as Count Dracula's father, Vlad; Nick Offerman and Megan Mullally as Jonathan's parents, Mike and Linda; and Asher Blinkoff as Mavis and Johnny's half-human/half-vampire son, Dennis. The film was released on September 25, 2015, by Columbia Pictures and was a box office success. A third film, titled Hotel Transylvania 3, is scheduled to be released on September 21, 2018."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sly_Cooper_(film)"}, "Title": {"type": "literal", "value": "Sly Cooper"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Munroe"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Sly Cooper is an upcoming American-Canadian 3D computer-animated action/adventure comedy film based on the platforming video game series of the same name by Sony Interactive Entertainment, specifically 2002's Sly Cooper and the Thievius Raccoonus. Sony Computer Entertainment, its series developer, is to play a role in the film's production, screenplay, character development, and animation consulting. The film is to be directed and written by Kevin Munroe, and produced by Brad Foxhoven and David Wohl. The film is to star voice actors, including Ian James Corlett replacing Kevin Miller as the title character, Matt Olsen and Chris Murphy reprise their voice roles as Bentley and Murray respectively."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Cinema_Management_Group"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Paternity_Leave_(film)"}, "Title": {"type": "literal", "value": "Paternity Leave"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Matt_Riddlehoover"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Charlie_David|http://dbpedia.org/resource/Chris_Salvatore"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Paternity Leave is a 2015 romantic comedy film directed by Matt Riddlehoover. The film stars Jacob York, Charlie David, and Chris Salvatore. Principal photography of the film began on September 1, 2014 in Nashville, Tennessee. It made its world premiere at the Nashville Film Festival on April 19th, 2015."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Les_Ogres"}, "Title": {"type": "literal", "value": "Les Ogres"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/L\u00e9a_Fehner"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ad\u00e8le_Haenel|http://dbpedia.org/resource/Lola_Due\u00f1as"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "144"}, "Description": {"type": "literal", "value": "Les Ogres is a 2015 French comedy-drama film directed by L\u00e9a Fehner and written by Fehner, Catherine Paill\u00e9 and Brigitte Sy."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/14_Going_on_30"}, "Title": {"type": "literal", "value": "14 Going on 30"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Paul_Schneider_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Daphne_Ashbrook|http://dbpedia.org/resource/Gabriel_Olds|http://dbpedia.org/resource/Patrick_Duffy|http://dbpedia.org/resource/Steven_Eckholdt"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "14 Going on 30 is a 1988 made-for-television film broadcast by American Broadcasting Company and Buena Vista Television, and later distributed by Walt Disney Home Video. It stars Steven Eckholdt as Danny, a fourteen-year-old boy who is infatuated with his teacher Peggy Noble (Daphne Ashbrook). Danny uses a \"growth accelerator\" to make himself appear older than his actual age in an attempt to seduce her. A similar age swap and nearly identical title appears in the 2004 film 13 Going on 30, and the earlier film may have influenced the latter. The TV film was directed by Paul Schneider."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/American_Broadcasting_Company|http://dbpedia.org/resource/Buena_Vista_Television"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Range_15"}, "Title": {"type": "literal", "value": "Range 15"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ross_Patterson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:Zombie_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Range 15 is an  ensemble horror/action comedy indie film with a release date of June 15, 2016. As of January 2016, Range 15 is the 4th highest  crowd sourced film on Indiegogo. The movie is a collaboration between the veteran-run military themed apparel companies, Ranger Up and Article 15 Clothing, and stars many of their staff members. The movie was produced and directed by Ross Patterson."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Battle_of_the_Brides"}, "Title": {"type": "literal", "value": "Battle of the Brides"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Victor_Vu"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Vietnamese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Battle of the Brides also known as C\u00f4 d\u00e2u \u0111\u1ea1i chi\u1ebfn is a 2011 Vietnamese comedy film directed by Victor Vu, produced by Saiga Films and Vietnam Studio, in association with Galaxy Studios, Phuong Nam Phim, Saigon Movies Media and HK Films. Battle of the Brides was released on January 28, 2011 in Vietnam and broke box office records, becoming the country\u2019s highest grossing movie of all time. However, in the United States the movie was a Box office bomb, just grossing only $64,572."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/To_Beat_the_Band"}, "Title": {"type": "literal", "value": "To Beat the Band"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Stoloff|http://dbpedia.org/resource/Kenny_Holmes"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Fred_Keating|http://dbpedia.org/resource/Helen_Broderick|http://dbpedia.org/resource/Hugh_Herbert|http://dbpedia.org/resource/Roger_Pryor_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1930s_musical_comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "67"}, "Description": {"type": "literal", "value": "To Beat the Band is a 1935 American romantic comedy directed by Ben Stoloff using a screenplay by Rian James based on a story by George Marion, Jr.. The film stars Hugh Herbert, Helen Broderick, Roger Pryor, and Fred Keating, and features Johnny Mercer in a small role. It was released by RKO Radio Pictures on November 8, 1935."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Movin'_In"}, "Title": {"type": "literal", "value": "Movin' In"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Griff_Furst"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alex_Yves|http://dbpedia.org/resource/Birgit_Steinegger|http://dbpedia.org/resource/Christy_Carlson_Romano|http://dbpedia.org/resource/Dan_Ponsky|http://dbpedia.org/resource/Dean_Kreyling|http://dbpedia.org/resource/Estelle_Harris|http://dbpedia.org/resource/Griff_Furst|http://dbpedia.org/resource/Marco_Schwab|http://dbpedia.org/resource/Michael_Lawson|http://dbpedia.org/resource/Samantha_Cope|http://dbpedia.org/resource/Sven_Epiney|http://dbpedia.org/resource/Walter_Andreas_Mueller|http://dbpedia.org/resource/Yangzom_Brauen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Movin' In is a 2010 comedy film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/YvesCreations"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Super_Capers"}, "Title": {"type": "literal", "value": "Super Capers: The Origins of Ed and the Missing Bullion"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ray_Griggs_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_West|http://dbpedia.org/resource/Danielle_Harris|http://dbpedia.org/resource/Justin_Whalin|http://dbpedia.org/resource/Michael_Rooker|http://dbpedia.org/resource/Tom_Lister,_Jr.|http://dbpedia.org/resource/Tom_Sizemore"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Action_comedy_films|http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Super Capers: The Origins of Ed and the Missing Bullion is a 2009 action comedy film and a parody of superhero movies, written and directed by Ray Griggs who also starred as one of the misfit superheroes."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lionsgate|http://dbpedia.org/resource/Roadside_Attractions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Saroja_(film)"}, "Title": {"type": "literal", "value": "Saroja"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Venkat_Prabhu"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jayaram|http://dbpedia.org/resource/Kajal_Aggarwal|http://dbpedia.org/resource/Nikita_Thukral|http://dbpedia.org/resource/Prakash_Raj|http://dbpedia.org/resource/Premji_Amaren|http://dbpedia.org/resource/SPB_Charan|http://dbpedia.org/resource/Sampath_Raj|http://dbpedia.org/resource/Shiva_(actor)|http://dbpedia.org/resource/Vaibhav_Reddy|http://dbpedia.org/resource/Vega_Tamotia"}, "Published": {"type": "literal", "value": "2008-09-05"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "148"}, "Description": {"type": "literal", "value": "Saroja (stylised as Sa-Ro-Ja) is a 2008 Tamil language comedy thriller film written and directed by Venkat Prabhu and produced by T. Siva. It stars Shiva, Vaibhav Reddy, Premji Amaren, S. P. B. Charan and Vega Tamotia in the leads and Prakash Raj, Jayaram, Kajal Aggarwal, Sampath Raj, Nikita Thukral and Nagendran in other vital roles. Several other popular Tamil television artists and crew members make special appearances throughout the film. The score and soundtrack were composed by Yuvan Shankar Raja. The film, which is based on the 1993 Hollywood film Judgment Night, follows the journey of four young men who travel from Chennai to Hyderabad to watch a cricket match. Due to a road accident, they are forced to take a diversion off the main road to arrive on time. This leads them to a gang who have kidnapped a schoolgirl, Saroja, the only daughter of a rich millionaire. The film was released on 5 September 2008 to very positive reviews and critically acclaim, while also emerging a high commercial success. Upon release, it was partially re-shot and released in Telugu."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Pyramid_Saimira"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hives_(film)"}, "Title": {"type": "literal", "value": "Hives"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Igor_Seregi|http://dbpedia.org/resource/Michael_Lennox"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Akbar_Kurtha|http://dbpedia.org/resource/Lubos_Vesel\u00fd|http://dbpedia.org/resource/Ozren_Grabaric|http://dbpedia.org/resource/Stefan_Lampadius"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Croatian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Hives (Croatian: Ko\u0161nice) is a 2012 Croatian anthology film. It had its national premiere at the 59th Pula Film Festival (Croatia) and its international premiere at the 60th San Sebasti\u00e1n International Film Festival (Spain)."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Balls_(film)"}, "Title": {"type": "literal", "value": "Balls"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Josef_Fares"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anita_Wall|http://dbpedia.org/resource/Hamadi_Khemiri|http://dbpedia.org/resource/Jan_Fares|http://dbpedia.org/resource/Jessica_Forsberg|http://dbpedia.org/resource/Juan_Rodriguez_(actor)|http://dbpedia.org/resource/Nina_Zanjani|http://dbpedia.org/resource/Torkel_Petersson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Swedish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Balls (Swedish: Farsan) is a 2010 Swedish comedy film that was directed by Josef Fares."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/AB_Svensk_Filmindustri"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hawa_Bodol"}, "Title": {"type": "literal", "value": "Hawa Bodol|\u09b9\u09be\u0993\u09af\u09bc\u09be \u09ac\u09a6\u09b2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Parambrata_Chatterjee"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Neha_Panda|http://dbpedia.org/resource/Parambrata_Chatterjee|http://dbpedia.org/resource/Raima_Sen|http://dbpedia.org/resource/Rudranil_Ghosh"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "150"}, "Description": {"type": "literal", "value": "Hawa Bodol is a 2013 Bengali comedy film directed by Parambrata Chattopadhyay. The film revolves around two childhood friends, who met each other coincidentally after a long time, and somehow their life swapped after a night of endless drinks. The movie is inspired by the 2011 movie The Change-Up."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Battlefield_Baseball"}, "Title": {"type": "literal", "value": "Battlefield Baseball"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Y\u016bdai_Yamaguchi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Atsushi_It\u014d|http://dbpedia.org/resource/Hideo_Sakaki|http://dbpedia.org/resource/Tak_Sakaguchi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:2000s_musical_comedy_films|http://dbpedia.org/resource/Category:Japanese_comedy_films|http://dbpedia.org/resource/Category:Sports_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "Battlefield Baseball (\u5730\u7344\u7532\u5b50\u5712 Jigoku K\u014dshien, \"Hell Stadium\") is a 2003 Japanese film directed by Y\u016bdai Yamaguchi. The film is written by Gatar\u014d Man, based on his manga series of the same name, and stars Tak Sakaguchi, Atsushi It\u014d, and Hideo Sakaki. It was produced by Ryuhei Kitamura. The film is a combination of several genres, mixing martial arts action with the clich\u00e9s of the sports film\u2014particularly skewering baseball, one of Japan's most popular high school sports\u2014and the violence and brutality of a horror film. The film's bizarre\u2014sometimes almost incoherent\u2014plot, blood and gore, and unique comedy have given it something of a \"cult\" popularity in the West. Though the film is ostensibly about high school baseball rivalries, the amount of actual baseball in the film is fairly light. There are many scenes involving bats and balls, however. The film was released on Region 1 DVD by Subversive Cinema."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Shotgun_Wedding_(2013_film)"}, "Title": {"type": "literal", "value": "Shotgun Wedding"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Danny_Roew"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Joel_McKinnon_Miller|http://dbpedia.org/resource/Kim_Shaw|http://dbpedia.org/resource/Mike_Damus"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Shotgun Wedding is an American black comedy film produced by Fox Studios. It premiered on Netflix on April 1, 2013."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Digital_Studio"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jaffa_(2013_film)"}, "Title": {"type": "literal", "value": "Jaffa"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Vennela_Kishore"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ali_(actor)|http://dbpedia.org/resource/Brahmanandam|http://dbpedia.org/resource/Fish_Venkat|http://dbpedia.org/resource/Thagubothu_Ramesh"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "125"}, "Description": {"type": "literal", "value": "Jaffa is a 2013 Telugu black comedy film written and directed by Vennela Kishore. The film stars comedian Brahmanandam as the main protagonist for the first time in his career. The films also stars other comedians like Ali, Thagubothu Ramesh, Fish Venkat and even Kishore. The film is produced by Ramesh Varma, with Anoop Rubens scoring the music. Brahmanandam was supposed to direct the film on a script written by Kishore, but eventually he opted out and handed the project to Kishore, due to hectic schedules. The film, one of the most awaited Telugu films in recent times, was originally scheduled to release in 2012, but after several delays, the film finally released on 29 March 2013 amidst high expectations. Despite receiving negative critical reception, it had recorded as Super Hit at the Box Office."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jos\u00e9phine_s'arrondit"}, "Title": {"type": "literal", "value": "Jos\u00e9phine s'arrondit"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Marilou_Berry"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Marilou_Berry"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Jos\u00e9phine s'arrondit (literally, Jos\u00e9phine gets rounder) is a 2016 French comedy film directed by Marilou Berry. It is the sequel to the 2013 film Jos\u00e9phine."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/UGC_Distribution"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Geography_Club_(film)"}, "Title": {"type": "literal", "value": "Geography Club"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Gary_Entin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Allie_Gonino|http://dbpedia.org/resource/Ana_Gasteyer|http://dbpedia.org/resource/Andrew_Caldwell_(actor)|http://dbpedia.org/resource/Cameron_Deane_Stewart|http://dbpedia.org/resource/Justin_Deeley|http://dbpedia.org/resource/Marin_Hinkle|http://dbpedia.org/resource/Meaghan_Martin|http://dbpedia.org/resource/Nikki_Blonsky|http://dbpedia.org/resource/Scott_Bakula"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "Geography Club is an American comedy-drama film based on the Brent Hartinger novel of the same name. It was written by Edmund Entin, directed by Gary Entin, and stars Cameron Deane Stewart, Justin Deeley, Andrew Caldwell, Meaghan Martin, Allie Gonino, Ally Maki, and Nikki Blonsky."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Shoreline_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Arisan!"}, "Title": {"type": "literal", "value": "Arisan!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nia_Dinata"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aida_Nurmala|http://dbpedia.org/resource/Cut_Mini_Theo|http://dbpedia.org/resource/Surya_Saputra|http://dbpedia.org/resource/Tora_Sudiro"}, "Published": {"type": "literal", "value": "2003-12-10"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:Indonesian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "129"}, "Description": {"type": "literal", "value": "Arisan! is a 2003 Indonesian film that has drawn more than 100,000 viewers. It is the first Indonesian film with a gay theme, and the first Indonesian film to use high-definition color enhancement. It uses a mixture of English, standard Indonesian and Jakartan slang. Arisan! became the second film in Indonesian film history to win all six major awards in Festival Film Indonesia (FFI), including Best Picture, Best Director, Best Actor, Best Actress, Best Supporting Actor, and Best Supporting Actress, after Ibunda in 1986. Arisan! was also the first film in Indonesian film history to include two men kissing, by the characters Sakti and Nino (Tora Sudiro and Surya Saputra). Because of this, the two won Best Actor and Best Supporting Actor at the Festival Film Indonesia (FFI). A television series as a continuation of the movie with the same title has been airing on AnTV."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Garfield:_A_Tail_of_Two_Kitties"}, "Title": {"type": "literal", "value": "Garfield: A Tail of Two Kitties"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tim_Hill_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bill_Murray|http://dbpedia.org/resource/Billy_Connolly|http://dbpedia.org/resource/Breckin_Meyer|http://dbpedia.org/resource/Jennifer_Love_Hewitt|http://dbpedia.org/resource/Tim_Curry"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Garfield: A Tail of Two Kitties is a 2006 American comedy film directed by Tim Hill and written by Joel Cohen and Alec Sokolow. It is the sequel to the 2004 film Garfield: The Movie. The film stars Breckin Meyer, Jennifer Love Hewitt, Billy Connolly, Ian Abercrombie, Roger Rees, Lucy Davis, Oliver Muirhead, Bill Murray, Tim Curry, Bob Hoskins, Rhys Ifans, Vinnie Jones, Joe Pasquale, Richard E. Grant, Jane Leeves and Roscoe Lee Browne. This film was produced by Davis Entertainment Company for 20th Century Fox, and was released in United States on June 16, 2006. A video game, Garfield 2, was developed by The Game Factory. The film received negative reviews from critics and it earned $141.7 million on a $60 million budget."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Last_Weekend_(film)"}, "Title": {"type": "literal", "value": "Last Weekend"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tom_Dolby"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Patricia_Clarkson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Last Weekend is a 2014 American comedy/drama film starring Patricia Clarkson, Zachary Booth, and Joseph Cross. The film premiered at the San Francisco International Film Festival on May 2, 2014. In May, the film was acquired for theatrical release and iTunes/VOD on August 29, 2014 by IFC/Sundance Selects. The film will also open the Provincetown International Film Festival on June 18, 2014. Last Weekend was filmed entirely on location in Lake Tahoe, California. It was the first feature film in thirteen years to be shot entirely in the area."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Women_Who_Flirt"}, "Title": {"type": "literal", "value": "Women Who Flirt"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pang_Ho-cheung"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Huang_Xiaoming|http://dbpedia.org/resource/Sonia_Sui|http://dbpedia.org/resource/Zhou_Xun"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Chinese_romantic_comedy_films|http://dbpedia.org/resource/Category:Hong_Kong_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Women Who Flirt (Chinese: \u6492\u5a07\u5973\u4eba\u6700\u597d\u547d) is a 2014 Chinese-Hong Kong romantic comedy film directed by Pang Ho-cheung and starring Zhou Xun, Huang Xiaoming, Xie Yilin and Sonia Sui. The film was released on November 28, 2014."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/White_on_Rice"}, "Title": {"type": "literal", "value": "White on Rice"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dave_Boyle"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/James_Kyson_Lee|http://dbpedia.org/resource/Justin_Kwong|http://dbpedia.org/resource/Mio_Takada|http://dbpedia.org/resource/Nae_Yuuki"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "White on Rice (2009) is a comedy film directed by American director Dave Boyle, director of Big Dreams Little Tokyo (2006), and starring Hiroshi Watanabe, Nae Yuuki, Mio Takada, James Kyson Lee, and Lynn Chen. The film had its world premiere at the 27th annual San Francisco Asian American Film Festival on 17 March 2009."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Husbands_in_Goa"}, "Title": {"type": "literal", "value": "Husbands in Goa"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Saji_Surendran"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Asif_Ali_(actor)|http://dbpedia.org/resource/Bhama|http://dbpedia.org/resource/Indrajith_Sukumaran|http://dbpedia.org/resource/Jayasurya|http://dbpedia.org/resource/Lal_(actor)|http://dbpedia.org/resource/Praveena|http://dbpedia.org/resource/Remya_Nambeesan|http://dbpedia.org/resource/Rima_Kallingal"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "150"}, "Description": {"type": "literal", "value": "Husbands in Goa is a 2012 Malayalam comedy film directed by Saji Surendran and written by Krishna Poojapura, starring Jayasurya, Indrajith, Lal, Asif Ali, Rima Kallingal, Bhama, Remya Nambeesan and Praveena. The film follows the journey of three young men, who flee from their wives, for a vacation to the international tourist-destination Goa. During the trip, they become friends with an immature youthful older man, who is on the verge of a divorce. The film explores their time in Goa, the people they meet and a turn of events occur when they encounter their wives. The film is the second production of UTV Motion Pictures in Malayalam cinema. It features music composed by M. G. Sreekumar, whilst cinematography is handled by Anil Nair and is edited by Manoj. Husbands in Goa debuted at the Kerala box office with a gross of \u20b920.7 million its opening weekend. The film was a hit at the box office."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/PJ_Entertainments"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Traceroute_(film)"}, "Title": {"type": "literal", "value": "Traceroute"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Johannes_Grenzfurthner"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Austrian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "Traceroute is a 2016 Austrian/American documentary film directed by Johannes Grenzfurthner. The autobiographical documentary and road movie deals with the history, politics and impact of nerd culture. Grenzfurthner calls his film a \"personal journey into the uncharted depths of nerd culture, a realm full of dangers, creatures and more or less precarious working conditions\", an attempt to \"chase the ghosts of nerddom's past, present and future.\" The film was co-produced by art group monochrom and Reisenbauer Film. It features music by Kasson Crooker, Hans Nieswandt, and many others."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Monochrom"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Someone's_Knocking_at_the_Door"}, "Title": {"type": "literal", "value": "Someone's Knocking at the Door"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chad_Ferrin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ezra_Buzzington|http://dbpedia.org/resource/Jordan_Lawson|http://dbpedia.org/resource/Lew_Temple|http://dbpedia.org/resource/Vernon_Wells_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "Someone's Knocking at the Door is a 2009 American comedy horror film co-written,directed & produced by Chad Ferrin. The film stars Noah Segan, Andrea Rueda, Ezra Buzzington, Elina Madison, Jon Budinoff, Ricardo Gray, Lew Temple, and Vernon Wells."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_First_Day_of_the_Rest_of_Your_Life"}, "Title": {"type": "literal", "value": "The First Day of the Rest of Your Life"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/R\u00e9mi_Bezan\u00e7on"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/D\u00e9borah_Fran\u00e7ois|http://dbpedia.org/resource/Jacques_Gamblin|http://dbpedia.org/resource/Marc-Andr\u00e9_Grondin|http://dbpedia.org/resource/Zabou_Breitman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy-drama_films|http://dbpedia.org/resource/Category:Tragicomedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "The First Day of the Rest of Your Life (French: Le Premier Jour du reste de ta vie) is a 2008 French film written and directed by R\u00e9mi Bezan\u00e7on. The film received 9 C\u00e9sar Award nominations, winning three (Best Editing, Most Promising Actor and Most Promising Actress)."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Studio_Canal"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Contract_(2012_film)"}, "Title": {"type": "literal", "value": "Contract"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Shirley_Frimpong-Manso"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hlomla_Dandala|http://dbpedia.org/resource/Joseph_Benjamin_(actor)|http://dbpedia.org/resource/Yvonne_Okoro"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Contract is a 2012 Ghanaian film produced by Yvonne Okoro and directed by Shirley Frimpong-Manso, starring Hlomla Dandala, Joseph Benjamin and Yvonne Okoro. It received six nominations at the 9th Africa Movie Academy Awards including: Best Director, Achievement In Screenplay, Best Actor In A Leading Role and Best Actress In A Leading Role."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Spring_Breakers"}, "Title": {"type": "literal", "value": "Spring Breakers"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Harmony_Korine"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Spring Breakers is a 2013 American satirical crime action drama film written and directed by Harmony Korine. It stars James Franco, Vanessa Hudgens, Selena Gomez, Ashley Benson and Rachel Korine and follows four college-aged girls on their spring break in Florida where they meet an eccentric local drug dealer named Alien who helps them in a time of desperation, and their eventual descent into a world of drugs, crime, and violence. Korine had devised the concept for Spring Breakers over several years prior to production, with fleeting ideas about the plot and what should transpire. His initial desire was to create a \"sensory film\" that was more about feeling than action and placed little importance on narrative or plot, the idea for which came later. Once Korine developed the backbone of the story, which takes place around the American spring break period, he travelled to Florida to write the screenplay. Production began in 2012, on an estimated budget of $5 million\u2013a relatively small amount in today's film industry, albeit Korine's second most expensive film to date. The film is also one of Korine's first theatrical works to receive a wide release. Spring Breakers was released on March 22, 2013 in the United States by A24 and grossed $31 million worldwide, making it a resounding success considering the small budget. It received generally positive reviews from film critics, with some calling it a potential cult classic. The film was selected to compete for the Golden Lion at the 69th Venice International Film Festival. Critics and scholars have read deeper meaning in the film's plot, commenting on its reflection of modern-day superficiality and the younger generation's obsession with highly stylised pop culture media."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/A24_(company)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Understudy_(2008_film)"}, "Title": {"type": "literal", "value": "The Understudy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_Conolly|http://dbpedia.org/resource/Hannah_Davis_(filmmaker)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aasif_Mandvi|http://dbpedia.org/resource/Gloria_Reuben|http://dbpedia.org/resource/Kelli_Giddish|http://dbpedia.org/resource/Marin_Ireland|http://dbpedia.org/resource/Paul_Sparks|http://dbpedia.org/resource/Reiko_Aylesworth|http://dbpedia.org/resource/Richard_Kind|http://dbpedia.org/resource/Scott_Cohen_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:British_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Understudy is a 2008 black comedy from British duo David Conolly and Hannah Davis and is their second feature-length film through their Mansion Pictures flagship, which is currently traveling the Film Festival circuit around the world."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kismat_Love_Paisa_Dilli"}, "Title": {"type": "literal", "value": "Kismet Love Paisa Dilli"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sanjay_Khanduri"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Mallika_Sherawat|http://dbpedia.org/resource/Vivek_Oberoi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "129"}, "Description": {"type": "literal", "value": "Kismet Love Paisa Dilli is a 2012 Bollywood comedy thriller film directed by Sanjay Khanduri. The film features Vivek Oberoi opposite Malika Sherawat in lead roles. It released on 5 October 2012, and received mixed response, with average box office collections."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Righteous_Ties"}, "Title": {"type": "literal", "value": "Righteous Ties"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jang_Jin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jung_Jae-young|http://dbpedia.org/resource/Jung_Joon-ho"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Criminal_comedy_films|http://dbpedia.org/resource/Category:South_Korean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "126"}, "Description": {"type": "literal", "value": "Righteous Ties (Hangul: \uac70\ub8e9\ud55c \uacc4\ubcf4; RR: Georukhan Gyebo) is a 2006 South Korean film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/CJ_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Everybody_Wants_to_Be_Italian"}, "Title": {"type": "literal", "value": "Everybody Wants to Be Italian"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jason_Todd_Ipson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cerina_Vincent|http://dbpedia.org/resource/John_Enos_III|http://dbpedia.org/resource/John_Kapelos|http://dbpedia.org/resource/Marisa_Petroro"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Everybody Wants to Be Italian is a 2007 American romantic comedy film written and directed by Jason Todd Ipson. The screenplay focuses on the relationship between a blue collar worker and a veterinarian. The film premiered at the Boston Film Festival on September 18, 2007 and released theatrically in the United States on September 5, 2008."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Roadside_Attractions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Darkest_Universe"}, "Title": {"type": "literal", "value": "The Darkest Universe"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tom_Kingsley|http://dbpedia.org/resource/Will_Sharpe"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Langham|http://dbpedia.org/resource/Joe_Thomas|http://dbpedia.org/resource/Raph_Shirley|http://dbpedia.org/resource/Sophia_Di_Martino|http://dbpedia.org/resource/Tiani_Ghosh|http://dbpedia.org/resource/Will_Sharpe"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:British_black_comedy_films|http://dbpedia.org/resource/Category:British_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "The Darkest Universe is the second film from BAFTA nominated directors Will Sharpe and Tom Kingsley. The film premiered at the London Comedy (LOCO) film festival in April 2016 and subsequently screened at the East End Film Festival. The film was written by Tiani Ghosh and Will Sharpe and was shot over a three-year period from 2013 to 2015. It is set on the canals of London and tells the story of the disappearance of a young couple on a narrow boat."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Punks_(film)"}, "Title": {"type": "literal", "value": "Punks"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Patrik-Ian_Polk"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dwight_Ewell|http://dbpedia.org/resource/Jazzmun|http://dbpedia.org/resource/Renoly_Santiago|http://dbpedia.org/resource/Rockmond_Dunbar|http://dbpedia.org/resource/Rudolf_Martin|http://dbpedia.org/resource/Seth_Gilliam"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Punks is a 2001 film produced by Babyface, directed by Patrik-Ian Polk and starring Rockmond Dunbar, Seth Gilliam, Renoly Santiago, Jazzmun, and Dwight Ewell. The film follows the trials and tribulations of a group of gay African American friends. While black gay life is explored in the film, universal aspects of friendship plays at the plot's forefront. The film's themes were later used for the 2005 LOGO cable television series Noah's Arc. The film has made its television debut on LOGO on August 7, 2011."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Trash_Humpers"}, "Title": {"type": "literal", "value": "Trash Humpers"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Harmony_Korine"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Harmony_Korine|http://dbpedia.org/resource/Rachel_Korine"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "78|97"}, "Description": {"type": "literal", "value": "Trash Humpers is a 2009 experimental black comedy-drama horror film written and directed by Harmony Korine. Shot on worn VHS home video, the film features a \"loser-gang cult-freak collective\" living in Nashville, Tennessee."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Drag_City_(record_label)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/When_We_First_Met"}, "Title": {"type": "literal", "value": "When We First Met"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ari_Sandel"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_DeVine|http://dbpedia.org/resource/Alexandra_Daddario|http://dbpedia.org/resource/Robbie_Amell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "When We First Met is an upcoming American romantic comedy film directed by Ari Sandel and written by John Whittington and Adam DeVine. The film stars DeVine, Alexandra Daddario and Robbie Amell."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Fort_Tilden_(film)"}, "Title": {"type": "literal", "value": "Fort Tilden"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Charles_Rogers_(director)|http://dbpedia.org/resource/Sarah-Violet_Bliss"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alysia_Reiner|http://dbpedia.org/resource/Neil_Casey|http://dbpedia.org/resource/Peter_Vack"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Fort Tilden is a 2014 American independent, comedy film, written and directed by Sarah-Violet Bliss and Charles Rogers, starring Bridey Elliot, Claire McNulty, Neil Casey, Alysia Reiner, and Peter Vack. The film had its world premiere at SXSW on March 8, 2014, where it won that year's Grand Jury Award. The film was acquired by revived Orion Pictures and was released on August 14, 2015, in a limited release, and through video on demand."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Orion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Three_Flavours_Cornetto_trilogy"}, "Title": {"type": "literal", "value": "Three Flavours Cornetto Trilogy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Edgar_Wright"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Nick_Frost"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films|http://dbpedia.org/resource/Category:Comedy_films_by_series"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "329"}, "Description": {"type": "literal", "value": "The Three Flavours Cornetto trilogy (also known as the Cornetto trilogy or the Blood and Ice Cream trilogy) is a series of British comedic genre films directed by Edgar Wright, written by Wright and Simon Pegg, produced by Nira Park, and starring Pegg and Nick Frost. The trilogy consists of Shaun of the Dead (2004), Hot Fuzz (2007), and The World's End (2013). The name originates from a \"silly joke\" during the promotion of Hot Fuzz. Wright had written in Cornetto ice cream as a hangover cure for Frost's character in Shaun of the Dead, based on his own experiences. In Hot Fuzz, Wright included a couple of brief throwaway scenes that referred to the Cornetto joke in Shaun. On the promotional tour of Hot Fuzz during production of The World's End, one interviewer pointed out the use of Cornetto in the first two films, and Wright jokingly said that they represent a trilogy comparable to Krzysztof Kie\u015blowski's Three Colours film trilogy. Wright seriously considered the three films as a trilogy, and wrote The World's End to complete themes set out in the earlier films, adding a Cornetto reference to the film. Each film in the trilogy is connected to a specific Cornetto flavour appearing in each film. Shaun of the Dead features a strawberry-flavoured Cornetto, which signifies the film's bloody and gory elements, Hot Fuzz includes the blue original Cornetto, to signify the police element to the film, and The World's End features the green mint chocolate chip flavour (though only shown by a wrapper caught in the wind) representing \"little green men\" and science fiction. According to Wright, Wall's, manufacturer of the Cornetto, were \"very pleased with the namecheck\". Wright considered each of the films a \"Trojan horse\", \"genre films that have a relationship comedy smuggled inside a zombie movie, a cop movie and a sci-fi movie\". Thematically, Wright saw each of the films containing common themes of \"the individuals in a collective [...] about growing up and [...] about the dangers of perpetual adolescence\". Wright reworked the script of The World's End to conclude on these themes. The films are further linked by a common set of actors. Wright, Park, Pegg, and Frost collaborated previously in the TV series Spaced from 1999 to 2001. Martin Freeman, Bill Nighy, Rafe Spall, Julia Deakin, Patricia Franklin, and Garth Jennings appear in each of the films as well as other projects by Wright and Pegg. Clark Collis observes in Entertainment Weekly that the films also feature \"a running gag involving garden fences\"."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Focus_Features|http://dbpedia.org/resource/Rogue_Pictures|http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Big_Talk_Productions|http://dbpedia.org/resource/Film4_Productions|http://dbpedia.org/resource/Relativity_Media|http://dbpedia.org/resource/StudioCanal|http://dbpedia.org/resource/Working_Title_Films"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/He_Was_Cool"}, "Title": {"type": "literal", "value": "He Was Cool"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lee_Hwan-kyung"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jung_Da-bin|http://dbpedia.org/resource/Song_Seung-heon"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "113"}, "Description": {"type": "literal", "value": "He Was Cool (Hangul: \uadf8 \ub188\uc740 \uba4b\uc788\uc5c8\ub2e4; RR: Geunomeun meoshisseotda; lit. \"That Guy was Cool\") is a 2004 South Korean film based on the same-titled 2001 Internet novel written by Guiyeoni. The film was released in South Korean cinemas on July 23, 2004 and was the 35th most attended film of the year with 800,000 admissions."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Hapdong_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Goods:_Live_Hard,_Sell_Hard"}, "Title": {"type": "literal", "value": "The Goods: Live Hard, Sell Hard"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Neal_Brennan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Craig_Robinson_(actor)|http://dbpedia.org/resource/David_Koechner|http://dbpedia.org/resource/Ed_Helms|http://dbpedia.org/resource/James_Brolin|http://dbpedia.org/resource/Jeremy_Piven|http://dbpedia.org/resource/Jordana_Spiro|http://dbpedia.org/resource/Kathryn_Hahn|http://dbpedia.org/resource/Ving_Rhames"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "The Goods: Live Hard, Sell Hard is a 2009 American comedy film directed by Neal Brennan, starring Jeremy Piven and Ed Helms. The film was released on August 14, 2009."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Vantage"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hey,_Stop_Stabbing_Me!"}, "Title": {"type": "literal", "value": "Hey, Stop Stabbing Me!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Worm_Miller"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_%22Hippa%22_Kriss|http://dbpedia.org/resource/Jack_Shreck|http://dbpedia.org/resource/Maria_A._Morales|http://dbpedia.org/resource/N._David_Prestwood|http://dbpedia.org/resource/Patrick_Casey_(writer)|http://dbpedia.org/resource/Sean_Hall_(actor)|http://dbpedia.org/resource/Worm_Miller"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Hey, Stop Stabbing Me! is a 2003 low-budget feature starring Patrick Casey and directed by Worm Miller. Miller and Casey also co-wrote the movie. The duo went on to write Golan the Insatiable for Fox's Animation Domination HD programming block. The film was shot on location in Bloomington, Minnesota."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sub_Rosa"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Magnificent_Nine"}, "Title": {"type": "literal", "value": "The Magnificent Nine"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Yoshihiro_Nakamura"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Japanese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "129"}, "Description": {"type": "literal", "value": "The Magnificent Nine is a 2016 Japanese jidaigeki samurai comedy film directed by Yoshihiro Nakamura. It was released in Japan by Shochiku on May 14, 2016."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Shochiku"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Grandma's_Boy_(2006_film)"}, "Title": {"type": "literal", "value": "Grandma's Boy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nicholaus_Goossen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Doris_Roberts|http://dbpedia.org/resource/Linda_Cardellini|http://dbpedia.org/resource/Shirley_Jones|http://dbpedia.org/resource/Shirley_Knight"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Grandma's Boy is a 2006 American gross out stoner comedy film directed by Nicholaus Goossen. Starring and written by Allen Covert and Nick Swardson. The film stars a video game tester who is forced to move in with his grandmother after being evicted from his home. Alongside Covert, the film co-stars Nick Swardson, Doris Roberts, Linda Cardellini, Shirley Jones, Shirley Knight, Peter Dante, Joel Moore, and Kevin Nealon."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Happy_Madison_Productions|http://dbpedia.org/resource/Level_1_Entertainment"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Good_Night"}, "Title": {"type": "literal", "value": "The Good Night"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jake_Paltrow"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Danny_DeVito|http://dbpedia.org/resource/Gwyneth_Paltrow|http://dbpedia.org/resource/Martin_Freeman|http://dbpedia.org/resource/Pen\u00e9lope_Cruz|http://dbpedia.org/resource/Simon_Pegg"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Good Night is a 2007 romantic comedy film written and directed by Jake Paltrow. The film stars his sister Gwyneth Paltrow, Pen\u00e9lope Cruz, Martin Freeman, Danny DeVito, Simon Pegg and others. The movie takes place in London and New York City, where a former pop star (Freeman) who now writes commercial jingles for a living experiences a mid-life crisis. The movie was released on the 2007 Sundance Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Yari_Film_Group"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Legacy_of_a_Whitetail_Deer_Hunter"}, "Title": {"type": "literal", "value": "The Legacy of a Whitetail Deer Hunter"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jody_Hill"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Danny_McBride|http://dbpedia.org/resource/Josh_Brolin|http://dbpedia.org/resource/Scoot_McNairy"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Legacy of a Whitetail Deer Hunter is an upcoming American comedy film directed by Jody Hill and written by Jody Hill, John Carcieri and Danny McBride. The film stars Danny McBride, Josh Brolin, Scoot McNairy and Montana Jordan."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sing_Street"}, "Title": {"type": "literal", "value": "Sing Street"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/John_Carney_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aidan_Gillen|http://dbpedia.org/resource/Ferdia_Walsh-Peelo|http://dbpedia.org/resource/Jack_Reynor|http://dbpedia.org/resource/Lucy_Boynton|http://dbpedia.org/resource/Maria_Doyle_Kennedy"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:British_comedy-drama_films|http://dbpedia.org/resource/Category:Irish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Sing Street is a 2016 Irish musical comedy-drama film written, produced and directed by John Carney. Starring Lucy Boynton, Maria Doyle Kennedy, Jack Reynor, Kelly Thornton and Ferdia Walsh-Peelo, the story revolves around a boy starting a band to impress a girl. The film had its world premiere at the Sundance Film Festival on 24 January 2016. It was released in Ireland on 17 March 2016, in the US on 15 April and in the United Kingdom on 20 May."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lionsgate_Films|http://dbpedia.org/resource/The_Weinstein_Company"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/FilmNation_Entertainment|http://dbpedia.org/resource/Irish_Film_Board|http://dbpedia.org/resource/Likely_Story|http://dbpedia.org/resource/PalmStar_Media"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Wedding_Daze"}, "Title": {"type": "literal", "value": "Wedding Daze"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Ian_Black"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ebon_Moss-Bachrach|http://dbpedia.org/resource/Edward_Herrmann|http://dbpedia.org/resource/Isla_Fisher|http://dbpedia.org/resource/Jason_Biggs|http://dbpedia.org/resource/Michael_Weston"}, "Published": {"type": "literal", "value": "2006-09-10"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Wedding Daze (also known as The Pleasure of Your Company and The Next Girl I See) is a 2006 romantic comedy film, written and directed by Michael Ian Black. The film stars Jason Biggs and Isla Fisher."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/GreenStreet_Films|http://dbpedia.org/resource/Metro-Goldwyn-Mayer_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Annie_(2014_film)"}, "Title": {"type": "literal", "value": "Annie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Will_Gluck"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bobby_Cannavale|http://dbpedia.org/resource/Cameron_Diaz|http://dbpedia.org/resource/Jamie_Foxx|http://dbpedia.org/resource/Quvenzhan\u00e9_Wallis|http://dbpedia.org/resource/Rose_Byrne"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_musical_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "118"}, "Description": {"type": "literal", "value": "Annie is a 2014 American musical film directed by Will Gluck and produced by Village Roadshow Pictures and Will Smith's Overbrook Entertainment for Sony Pictures' Columbia Pictures. A contemporary adaptation of the 1977 Broadway musical of the same name, the film stars Quvenzhan\u00e9 Wallis, Jamie Foxx, Rose Byrne, Bobby Cannavale, and Cameron Diaz. The third film adaptation, following Columbia's 1982 theatrical film and Disney's 1999 television film, Annie began production in August 2013 and opened on December 19, 2014 to generally negative reviews, but was a box-office success, grossing over $133 million internationally. Annie received two Golden Globe Award nominations, one for Best Actress in a Motion Picture \u2013 Comedy or Musical (for Wallis) and for Best Original Song. Conversely, the film won the Golden Raspberry Award for Worst Prequel, Remake, Rip-off or Sequel and Cameron Diaz was nominated for Worst Supporting Actress."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bachelorette_(film)"}, "Title": {"type": "literal", "value": "Bachelorette"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Leslye_Headland"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Scott_(actor)|http://dbpedia.org/resource/Isla_Fisher|http://dbpedia.org/resource/James_Marsden|http://dbpedia.org/resource/Kirsten_Dunst|http://dbpedia.org/resource/Kyle_Bornheimer|http://dbpedia.org/resource/Lizzy_Caplan|http://dbpedia.org/resource/Rebel_Wilson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "Bachelorette is a 2012 American romantic comedy film written and directed by Leslye Headland, adapted from her play of the same name. It stars Kirsten Dunst, Lizzy Caplan and Isla Fisher as three troubled women who reunite for the wedding of a friend (played by Rebel Wilson) who was ridiculed in high school. The play which the film is based upon was originally written as one of Headland's cycle of \"Seven Deadly Sins\" plays. The film wrapped production in New York, and premiered at the Sundance Film Festival on January 23, 2012. The film was released in the United States on September 7, 2012."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Creative_Artists_Agency|http://dbpedia.org/resource/The_Weinstein_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Muslims_Are_Coming!"}, "Title": {"type": "literal", "value": "The Muslims Are Coming!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dean_Obeidallah|http://dbpedia.org/resource/Negin_Farsad"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dean_Obeidallah|http://dbpedia.org/resource/Negin_Farsad"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Documentary_films_about_comedy_and_comedians|http://dbpedia.org/resource/Category:Islamic_comedy_and_humor"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "81"}, "Description": {"type": "literal", "value": "The Muslims Are Coming! is a 2013 American comedy documentary film co-directed and co-starring Negin Farsad and Dean Obeidallah. It follows a team of Muslim-American comedians as they tour the American South and Southwest performing free stand-up comedy shows, and engaging in community activities, with an aim to \"reach out to Middle America\" and counter Islamophobia."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Filmbuff"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Wide_Awake_(1998_film)"}, "Title": {"type": "literal", "value": "Wide Awake"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/M._Night_Shyamalan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dana_Delany|http://dbpedia.org/resource/Denis_Leary|http://dbpedia.org/resource/Joseph_Cross_(actor)|http://dbpedia.org/resource/Rosie_O'Donnell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Religious_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Wide Awake is a 1998 comedy-drama film written and directed by M. Night Shyamalan and produced by Cathy Konrad and Cary Woods. The film stars Denis Leary, Dana Delany, Joseph Cross and Rosie O'Donnell. Wide Awake also features Julia Stiles in one of her earliest roles as the main character's teenage sister, Neena. Although it was made in 1995, the film was not released until 1998. The script was written in 1991. It was nominated for \"Best Family Feature \u2014 Drama\" and \"Best Performance in a Feature Film \u2014 Leading Young Actor\" at the 1999 Young Artist Awards. Shyamalan has described Wide Awake as a comedy that he hoped would also make people cry."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Miramax_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Scott_Pilgrim_vs._the_World"}, "Title": {"type": "literal", "value": "Scott Pilgrim vs. the World"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Edgar_Wright"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:British_romantic_comedy_films|http://dbpedia.org/resource/Category:Japanese_action_comedy_films|http://dbpedia.org/resource/Category:Japanese_romantic_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "Scott Pilgrim vs. the World is a 2010 action comedy film co-written, produced and directed by Edgar Wright, based on the graphic novel series Scott Pilgrim by Bryan Lee O'Malley. It stars Michael Cera as Scott Pilgrim, a slacker musician who must battle his girlfriend Ramona's seven evil exes. Initially planned as a film after the first volume of the comic was released, Wright became attached to the project and filming began in March 2009 in Toronto. The film premiered after a panel discussion at the San Diego Comic-Con International on July 22, 2010. It received a wide release in North America on August 13, 2010. It failed to regain its production budget during its theatrical release, but sold better on home formats and has gained a cult following."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Bling_Ring"}, "Title": {"type": "literal", "value": "The Bling Ring"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sofia_Coppola"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Claire_Julien|http://dbpedia.org/resource/Emma_Watson|http://dbpedia.org/resource/Israel_Broussard|http://dbpedia.org/resource/Katie_Chang|http://dbpedia.org/resource/Leslie_Mann|http://dbpedia.org/resource/Taissa_Farmiga"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Comedy_films_based_on_actual_events"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "The Bling Ring is a 2013 American satirical crime film written, directed and produced by Sofia Coppola. It features an ensemble cast including newcomers Israel Broussard, Katie Chang, and Claire Julien, as well as Taissa Farmiga and Emma Watson. It is based on an article, \"The Suspects Wore Louboutins\" by Nancy Jo Sales, which dealt with a real-life gang known as the Bling Ring. The film is a co-production of France, Germany, Japan, United Kingdom and United States. The film had its world premiere in the Un Certain Regard section of the 2013 Cannes Film Festival on May 16, 2013. It was released in a limited release on June 14, before opening in a wide release on June 21, 2013 by A24 Films. The Bling Ring represents the final work of cinematographer Harris Savides, who died of brain cancer while the film was in post-production. The film is dedicated to him."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/A24_(company)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Alan_Poza"}, "Title": {"type": "literal", "value": "Alan Poza"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Charles_Novia"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Nigerian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Alan Poza is a 2013 Nigerian romantic comedy film starring OC Ukeje as Alan Poza. It was written, produced and directed by Charles Novia. It received 2 nominations at the 9th Africa Movie Academy Awards. OC Ukeje also won a Best Of Nollywood Awards for his leading role as Alan Poza. The plot follows Alan Poza (Ukeje); music executive label play boy; who schemes his way into the hearts of several women within and outside the media company he works for, in a bid to lure them into his bed. His various emotional escapades eventually lead him to trouble as one of his 'victims' is unable to handle the heartbreak he has caused her."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Obvious_Child"}, "Title": {"type": "literal", "value": "Obvious Child"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Gillian_Robespierre"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/David_Cross|http://dbpedia.org/resource/Gaby_Hoffmann|http://dbpedia.org/resource/Jake_Lacy|http://dbpedia.org/resource/Jenny_Slate|http://dbpedia.org/resource/Polly_Draper|http://dbpedia.org/resource/Richard_Kind"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "Obvious Child is a 2014 American romantic comedy film written and directed by Gillian Robespierre in her directorial debut. The film stars Jenny Slate, Jake Lacy, Gaby Hoffmann and David Cross. The story follows Donna (Slate), a stand-up comedian, who has a drunken one-night stand with a man named Max (Lacy) after breaking up with her boyfriend. She subsequently finds out she is pregnant and decides to have an abortion. Obvious Child originated as a 2009 short film which was written by Robespierre, Anna Bean and Karen Maine, and also starred Slate in the main role. By making the film, Robespierre hoped to remove the stigma surrounding abortion and to correct what she perceived as a misrepresentation of unplanned pregnancy in earlier films. She finished the feature-length script in 2012. The film was financed through various production companies and filmmaking grants and it was shot in New York in 2013. The film premiered at the Sundance Film Festival on January 17, 2014, and was released in theaters on June 6, 2014. It grossed US$3.3 million and was well received by critics. David Edelstein, Mick LaSalle and Dana Stevens praised the film's portrayal of abortion, while A. O. Scott and Ty Burr highlighted its realism and humor. The film won numerous accolades, including two awards from the National Board of Review and two Independent Spirit Award nominations."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/A24_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Angry_Video_Game_Nerd"}, "Title": {"type": "literal", "value": "Angry Video Game Nerd"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Rolfe"}, "Author": {"type": "literal", "value": "http://dbpedia.org/resource/James_Rolfe"}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/James_Rolfe"}, "Published": {"type": "literal", "value": "2004-05-16"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Comedy_web_series"}, "Genre": {"type": "literal", "value": "http://dbpedia.org/resource/Insult_comedy"}, "Duration": {"type": "literal", "value": "-35"}, "Description": {"type": "literal", "value": "Angry Video Game Nerd (abbreviated as AVGN, and originally known as Angry Nintendo Nerd) is an American comedy retrogaming web series, created by and starring James Rolfe. The series centers on Rolfe's character \"The Nerd\", a short-tempered and foul-mouthed video game fanatic who delivers commentary and sketches on retro games he considers to be of poor quality. The show would later encompass reviews of gaming consoles, peripherals, and short lectures about video game history and culture. Starting out as an independent filmmaker, Rolfe intended for his earliest videos of the Nerd character to be a joke privately shown to his friends. With collaboration from his friend Mike Matei, Rolfe put the Angry Nintendo Nerd videos on his website, Cinemassacre.com, in 2004. In 2006, Matei persuaded Rolfe to put his work on YouTube, where it got popular. In 2007, the series became a program on ScrewAttack and GameTrailers, where it was renamed Angry Video Game Nerd to prevent trademark issues with Nintendo, and to allow Rolfe to also review games from non-Nintendo consoles. Angry Video Game Nerd was a success and has gained a cult following, as well as the character appearing in various other media such as a feature-length film, various video games, and public appearances. Considered as one of the pioneering internet reviewers in its history, the Nerd was highly influential in bringing online video reviews to the mainstream public."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kung_Fu_Panda_3"}, "Title": {"type": "literal", "value": "Kung Fu Panda 3"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alessandro_Carloni|http://dbpedia.org/resource/Jennifer_Yuh_Nelson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Angelina_Jolie|http://dbpedia.org/resource/Bryan_Cranston|http://dbpedia.org/resource/David_Cross|http://dbpedia.org/resource/Dustin_Hoffman|http://dbpedia.org/resource/J._K._Simmons|http://dbpedia.org/resource/Jack_Black|http://dbpedia.org/resource/Jackie_Chan|http://dbpedia.org/resource/James_Hong|http://dbpedia.org/resource/Kate_Hudson|http://dbpedia.org/resource/Lucy_Liu|http://dbpedia.org/resource/Randall_Duk_Kim|http://dbpedia.org/resource/Seth_Rogen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films|http://dbpedia.org/resource/Category:Chinese_action_comedy_films|http://dbpedia.org/resource/Category:Chinese_adventure_comedy_films|http://dbpedia.org/resource/Category:Martial_arts_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Kung Fu Panda 3 is a 2016 3D American-Chinese computer-animated action comedy martial arts film, produced by DreamWorks Animation, and distributed by 20th Century Fox. It was directed by Jennifer Yuh Nelson and Alessandro Carloni. The film was written by Jonathan Aibel and Glenn Berger, produced by Melissa Cobb, and executive produced by Guillermo del Toro. It is a sequel to the 2011 film Kung Fu Panda 2 and the third installment in the Kung Fu Panda franchise. The film features the voices of Jack Black, Bryan Cranston, Dustin Hoffman, Angelina Jolie, J. K. Simmons, Lucy Liu, Seth Rogen, David Cross, Kate Hudson, James Hong, Randall Duk Kim and Jackie Chan. The film received a limited release in China on January 23 for a special three-hour sneak preview and was released starting from January 28 in South Korea and Russia. It was released in theatres across the United States and Canada on January 29 in 3D, and on March 11 in the United Kingdom. The film received generally positive reviews from critics and was a financial success, grossing $519 million worldwide."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox|http://dbpedia.org/resource/CJ_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/DreamWorks_Animation|http://dbpedia.org/resource/Oriental_DreamWorks"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/American_Sharia"}, "Title": {"type": "literal", "value": "American Sharia"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Omar_Regan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Saleh|http://dbpedia.org/resource/Baba_Ali|http://dbpedia.org/resource/Eric_Roberts|http://dbpedia.org/resource/Omar_Regan|http://dbpedia.org/resource/Sheikh_Akbar"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:Islamic_comedy_and_humor|http://dbpedia.org/resource/Category:Religious_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "American Sharia is a 2015 American buddy cop comedy-drama action film directed by Omar Regan, written by Omar Regan, and stars Omar Regan, Baba Ali and Eric Roberts. The film is about rogue government officials using Islamophobia to maintain power while two Muslim police officers attempting to solve a case involving the disappearance of several Muslims."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kolpa\u00e7ino:_Bomba"}, "Title": {"type": "literal", "value": "Kolpa\u00e7ino: Bomba"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/\u015eafak_Sezer"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Kolpa\u00e7ino: Bomba is a 2011 Turkish comedy film, starring, co-written and directed by \u015eafak Sezer. The film, which opened on March 11, 2011 at number 1 in the Turkish box office, is a sequel to Kolpa\u00e7ino (2009) and is one of the highest grossing Turkish films of 2011."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Thank_You_for_Smoking"}, "Title": {"type": "literal", "value": "Thank You for Smoking"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jason_Reitman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aaron_Eckhart|http://dbpedia.org/resource/Adam_Brody|http://dbpedia.org/resource/Cameron_Bright|http://dbpedia.org/resource/David_Koechner|http://dbpedia.org/resource/J._K._Simmons|http://dbpedia.org/resource/Katie_Holmes|http://dbpedia.org/resource/Maria_Bello|http://dbpedia.org/resource/Rob_Lowe|http://dbpedia.org/resource/Robert_Duvall|http://dbpedia.org/resource/Sam_Elliott|http://dbpedia.org/resource/William_H._Macy"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Thank You for Smoking is a 2006 comedy-drama film written and directed by Jason Reitman and starring Aaron Eckhart, based on the 1994 satirical novel of the same name by Christopher Buckley. It follows the efforts of Big Tobacco's chief spokesman, Nick Naylor, who lobbies on behalf of cigarettes using heavy spin tactics while also trying to remain a role model for his 12-year-old son. Maria Bello, Adam Brody, Sam Elliott, Katie Holmes, Rob Lowe, William H. Macy, J. K. Simmons and Robert Duvall appear in supporting roles. The film was released in a limited run on March 17, 2006, and had a wide release on April 14. As of 2007, the film has grossed a total of more than $39 million worldwide. The film was released on DVD in the US on October 3, 2006, and in the UK on January 8, 2007."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Searchlight_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Little_Door_Gods"}, "Title": {"type": "literal", "value": "Little Door Gods"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Gary_Wang"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films|http://dbpedia.org/resource/Category:Chinese_comedy_films|http://dbpedia.org/resource/Category:Fantasy-comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "Little Door Gods (simplified Chinese: \u5c0f\u95e8\u795e; traditional Chinese: \u5c0f\u9580\u795e), also known as Door Guardians, is a 2016 Chinese animated fantasy comedy film directed by Gary Wang, produced by Light Chaser Animation Studios and distributed by Alibaba Pictures. It was released on January 1, 2016."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Alibaba_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Reel_Zombies"}, "Title": {"type": "literal", "value": "Reel Zombies"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_J._Francis"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Lloyd_Kaufman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:Zombie_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Reel Zombies is a 2008 Canadian zombie film directed by David J. Francis and Mike Masters. It is the third film in a loose trilogy that includes Zombie Night and Zombie Night 2: Awakening. Shot in documentary style, it depicts a film crew that attempts to follow up on their low budget zombie films during an outbreak of a real zombie apocalypse."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Lie_(2011_film)"}, "Title": {"type": "literal", "value": "The Lie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Joshua_Leonard"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jess_Weixler|http://dbpedia.org/resource/Joshua_Leonard|http://dbpedia.org/resource/Mark_Webber_(actor)"}, "Published": {"type": "literal", "value": "2011-11-18"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "The Lie is a 2011 American drama/comedy film written and directed by Joshua Leonard with additional writing by Jeff Feuerzeig, Mark Webber, and Jess Weixler, based on the short story The Lie by T. Coraghessan Boyle, printed in The New Yorker. The film stars Joshua Leonard as Lonnie, Jess Weixler as Clover, and Mark Webber as Tank. The film is about how a man's life is altered unexpectedly after telling a lie to get out of work. The original short story was sixteen pages long. The crew spent two and a half weeks shooting the film, and six months editing it. The film had its world premiere at the 2011 Sundance Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/On_the_Ropes_(2011_film)"}, "Title": {"type": "literal", "value": "On the Ropes"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mark_Noyce"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Shockley|http://dbpedia.org/resource/Mark_Noyce"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "On the Ropes is a 2011 British mockumentary film written and directed by Mark Noyce. It follows the fictional character of martial arts instructor Keith Kraft and his rivalry with boxing gym owner Big Joe, played by actor and former boxer Joe Egan. The cast also includes Ben Shockley, Lindsay Honey, Raymond Griffiths, Sean Byrne and Alex Vincent."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Get_Married_2"}, "Title": {"type": "literal", "value": "Get Married 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Hanung_Bramantyo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Nino_Fernandez|http://dbpedia.org/resource/Nirina_Zubir"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Get Married 2 is a 2009 Indonesian romantic comedy directed by Hanung Bramantyo and starring Nirina Zubir and Nino Fernandez. A sequel to the 2007 hit Get Married, it details the efforts of Mae and Rendy to have children. Although Bramantyo initially did not intend to make a sequel, he was convinced after reading the treatment by Cassandra Massardi. The film, in which most of the original cast returned, was released on 18 September and viewed by 1.2 million persons. Critical reception was mixed, although the film did receive an award at the 2010 Bandung Film Festival. Another sequel, Get Married 3, was released in 2011."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Starvision_Plus"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Reprise_(film)"}, "Title": {"type": "literal", "value": "Reprise"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Joachim_Trier"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anders_Danielsen_Lie|http://dbpedia.org/resource/Espen_Klouman_H\u00f8iner|http://dbpedia.org/resource/Viktoria_Winge"}, "Published": {"type": "literal", "value": "2006-09-08|2007-06-28|2007-08-02|2007-09-07|2008-01-04|2008-05-16"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Reprise is a Norwegian film directed by Joachim Trier. Co-written over the course of five years with Eskil Vogt, it is Trier's first feature-length film. In 2006 it was the Norwegian candidate for the Academy Award for best foreign-language film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Maverick_Films|http://dbpedia.org/resource/Spelling_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Barely_Lethal"}, "Title": {"type": "literal", "value": "Barely Lethal"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kyle_Newman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hailee_Steinfeld|http://dbpedia.org/resource/Jessica_Alba|http://dbpedia.org/resource/Samuel_L._Jackson|http://dbpedia.org/resource/Sophie_Turner_(actress)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Barely Lethal is a 2015 American independent action comedy film directed by Kyle Newman and written by John D'Arco, starring Hailee Steinfeld, Sophie Turner, Jessica Alba, and Samuel L. Jackson. The film follows a teenage special ops agent (Steinfeld) yearning for a \"normal\" adolescence who fakes her own death and enrolls as an \"exchange\" student in a suburban American high school. She quickly learns that surviving the treacherous waters of being a teenager can be more difficult than international espionage. The film received an exclusive on-demand release by DirecTV Cinema on April 30, 2015 and a limited release in theaters by A24 and through video-on-demand on May 29, 2015. The film received mixed-to-negative reviews from critics."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/A24_(company)|http://dbpedia.org/resource/DirecTV_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/No_Way_Jose"}, "Title": {"type": "literal", "value": "No Way Jose"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Goldberg"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Goldberg|http://dbpedia.org/resource/Ahna_O'Reilly|http://dbpedia.org/resource/Emily_Osment|http://dbpedia.org/resource/Gillian_Jacobs|http://dbpedia.org/resource/Pat_Healy_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "No Way Jose is a 2015 American comedy-drama film. Adam Goldberg directed the film from a screenplay that he co-wrote with Sarah Kate Levy. It stars Adam Goldberg, Ahna O'Reilly, Pat Healy, Emily Osment and Gillian Jacobs. The premiere of the movie in the United States was on July 7, 2015."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Destination_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Miss_March"}, "Title": {"type": "literal", "value": "Miss March"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Trevor_Moore_(comedian)|http://dbpedia.org/resource/Zach_Cregger"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Craig_Robinson_(actor)|http://dbpedia.org/resource/Trevor_Moore_(comedian)|http://dbpedia.org/resource/Zach_Cregger"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_screwball_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90|94"}, "Description": {"type": "literal", "value": "Miss March is a 2009 comedy film directed by and starring Trevor Moore and Zach Cregger, stars of the IFC show The Whitest Kids U' Know. The film was released in the United States on March 13, 2009."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Searchlight_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Coco_(2009_film)"}, "Title": {"type": "literal", "value": "Coco"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Gad_Elmaleh"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gad_Elmaleh|http://dbpedia.org/resource/No\u00e9mie_Lvovsky"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Coco is a 2009 French comedy film written, directed, and starring Gad Elmaleh. The film is based on a character sketch he created for his one-man show \"La Vie Normale\". The film earned $8.5 million in its opening weekend at the French box office, and went on to gross $11.7 million in the European market. Although it was a box office success, Coco was not well received by critics. It received only one star out of four from Premi\u00e8re, Paris Match, and T\u00e9l\u00e9rama and two stars from Elle and Le Journal du Dimanche."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Studio_Canal"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/A_Little_Bit_of_Heaven_(2011_film)"}, "Title": {"type": "literal", "value": "A Little Bit of Heaven"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nicole_Kassell"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gael_Garc\u00eda_Bernal|http://dbpedia.org/resource/Kate_Hudson|http://dbpedia.org/resource/Kathy_Bates|http://dbpedia.org/resource/Lucy_Punch|http://dbpedia.org/resource/Romany_Malco|http://dbpedia.org/resource/Rosemarie_DeWitt|http://dbpedia.org/resource/Treat_Williams|http://dbpedia.org/resource/Whoopi_Goldberg"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "A Little Bit of Heaven (formerly titled Earthbound) is a 2011 romantic comedy directed by Nicole Kassell and starring Kate Hudson and Gael Garc\u00eda Bernal."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Alchemy_(company)|http://dbpedia.org/resource/The_Weinstein_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Astro_Boy_(film)"}, "Title": {"type": "literal", "value": "Astro Boy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_Bowers_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bill_Nighy|http://dbpedia.org/resource/Charlize_Theron|http://dbpedia.org/resource/Donald_Sutherland|http://dbpedia.org/resource/Eugene_Levy|http://dbpedia.org/resource/Freddie_Highmore|http://dbpedia.org/resource/Kristen_Bell|http://dbpedia.org/resource/Matt_Lucas|http://dbpedia.org/resource/Nathan_Lane|http://dbpedia.org/resource/Nicolas_Cage"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Astro Boy is a 2009 Hong Kong/American computer-animated action-comedy film loosely based on the manga series of the same name by the Japanese writer and illustrator Osamu Tezuka. It was produced by Imagi Animation Studios, and directed by David Bowers. Freddie Highmore provides the voice of Astro Boy in the film. The film also features the voices of Kristen Bell, Nathan Lane, Eugene Levy, Matt Lucas, Bill Nighy, Donald Sutherland, Charlize Theron and Nicolas Cage. The film was released first in Hong Kong on October 8, 2009, Japan on October 10, 2009 and in the United States on October 23, 2009. The film received mixed reviews from film critics and it earned $41,636,243 on a $65 million budget."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Summit_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/What_We_Do_in_the_Shadows"}, "Title": {"type": "literal", "value": "What We Do in the Shadows"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jemaine_Clement|http://dbpedia.org/resource/Taika_Waititi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Rhys_Darby"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:New_Zealand_comedy_films|http://dbpedia.org/resource/Category:Zombie_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "What We Do in the Shadows is a 2014 New Zealand mockumentary horror comedy film about a group of vampires who live together in Wellington written, directed by, and starring Jemaine Clement and Taika Waititi. It premiered at the Sundance Film Festival in January 2014. The film was theatrically released on August 18, 2014 by Madman Entertainment. The film earned $6.9 million on a $1.6 million budget."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Madman_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Funny_or_Die|http://dbpedia.org/resource/New_Zealand_Film_Commission"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Just_the_3_of_Us"}, "Title": {"type": "literal", "value": "Just the 3 of Us"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Cathy_Garcia-Molina"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Philippine_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "Just the 3 of Us is a 2016 Filipino romantic comedy-drama film directed by Cathy Garcia Molina with a script developed and written by the collaboration of Kiko Abrillo, Gillian Ebreo, Katherine Labayen, and Vanessa R. Valdez, and was produced by ABS-CBN Film Productions. The film stars John Lloyd Cruz, and Jennylyn Mercado with a special participation of Richard Yap. It was released on May 4, 2016 under Star Cinema. The film marks Cruz and Mercado's first movie project together. In Just the 3 of Us, Jennylyn plays a flight stewardess who is deeply infatuated with a pilot played by John Lloyd. The film was a critical and commercial success earning \u20b1230 million worldwide."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Star_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Soap_Opera_(2014_film)"}, "Title": {"type": "literal", "value": "Soap Opera"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alessandro_Genovesi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cristiana_Capotondi|http://dbpedia.org/resource/Fabio_De_Luigi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Italian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Soap Opera is a 2014 Italian comedy film written and directed by Alessandro Genovesi. It opened the 2014 Rome Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hatchet_II"}, "Title": {"type": "literal", "value": "Hatchet II"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Green_(filmmaker)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/AJ_Bowen|http://dbpedia.org/resource/Colton_Dunn|http://dbpedia.org/resource/Danielle_Harris|http://dbpedia.org/resource/David_Foy|http://dbpedia.org/resource/Kane_Hodder|http://dbpedia.org/resource/Parry_Shen|http://dbpedia.org/resource/R._A._Mihailoff|http://dbpedia.org/resource/Rick_McCallum|http://dbpedia.org/resource/Tom_Holland_(director)|http://dbpedia.org/resource/Tony_Todd"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Hatchet II is a 2010 American slasher film written and directed by Adam Green. It is the sequel to Green's film, Hatchet.Picking up right where the first film ended, Hatchet II follows Marybeth as she escapes the clutches of the deformed, swamp-dwelling killer Victor Crowley. After learning the truth about her family\u2019s connection to the hatchet-wielding madman, Marybeth returns to the Louisiana swamps along with an army of hunters to recover the bodies of her family and exact the bloodiest revenge against the bayou butcher. The film sees the return of Kane Hodder and Tony Todd who portrayed Victor Crowley and Reverend Zombie in the 2006 film, respectively. Danielle Harris portrays Marybeth, a role originally played by Tamara Feldman. The film was originally screened at the 2010 London FrightFest Film Festival on August 26, 2010. It was released unrated in the United States on October 1, 2010."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Simple_Agi_Ondh_Love_Story"}, "Title": {"type": "literal", "value": "Simple Aagi Ondu Love Story"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Simple_Suni"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Rakshit_Shetty|http://dbpedia.org/resource/Shwetha_Srivatsav"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "130"}, "Description": {"type": "literal", "value": "Simple Agi Ondh Love Story (Kannada: \u0cb8\u0cbf\u0c82\u0caa\u0cb2\u0ccd\u0cb2\u0cbe\u0c97\u0ccd \u0c92\u0c82\u0ca6\u0ccd \u0cb2\u0cb5\u0ccd \u0cb8\u0ccd\u0c9f\u0ccb\u0cb0\u0cbf) is a 2013 Indian Kannada romance comedy film written and directed by Suni, and stars Rakshit Shetty and Shwetha Srivatsav in the lead roles. The film is being remade in Telugu as Idhi Naa Love Story."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hollywood_Outlaw_Movie"}, "Title": {"type": "literal", "value": "Hollywood Outlaw, The Unmaking of a Bitter Jester"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Maija_DiGiorgio"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Maija_DiGiorgio"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Hollywood Outlaw, The Unmaking of a Bitter Jester is the director\u2019s cut of the controversial documentary Bitter Jester which was buried in 2004 amidst much scandal, never to be seen again. Directed by, written by, and starring Maija DiGiorgio, this film follows her through the construction and subsequent deconstruction of Bitter Jester, including all of the footage that sparked the scandal leading to blackmail and censorship."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Superhero_Movie"}, "Title": {"type": "literal", "value": "Superhero Movie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Craig_Mazin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Brent_Spiner|http://dbpedia.org/resource/Christopher_McDonald|http://dbpedia.org/resource/Drake_Bell|http://dbpedia.org/resource/Jeffrey_Tambor|http://dbpedia.org/resource/Kevin_Hart|http://dbpedia.org/resource/Leslie_Nielsen|http://dbpedia.org/resource/Pamela_Anderson|http://dbpedia.org/resource/Regina_Hall|http://dbpedia.org/resource/Robert_Joy|http://dbpedia.org/resource/Sara_Paxton"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Superhero Movie is a 2008 American spoof comedy film written and directed by Craig Mazin, produced by Robert K. Weiss and David Zucker, and starring Drake Bell, Sara Paxton, Christopher McDonald, and Leslie Nielsen. It was originally titled Superhero! as a nod to one of the Zuckers' previous films, Airplane!, in which Nielsen also starred. A spoof of the superhero film genre, primarily the first Spider-Man, as well as other modern-day Marvel Comics film adaptations, the film follows in the footsteps of the Scary Movie series of comedies, with which the film's poster shares a resemblance. It was also inspired by, and contains homages to, some of Zucker, Abrahams and Zucker's earlier spoof films such as Airplane! and The Naked Gun. Production began on September 17, 2007, in New York. It was released on March 28, 2008 in the United States to generally negative reviews from critics (but more positive than earlier entries such as Date Movie and Meet the Spartans) and moderate box office success, grossing over $71 million worldwide."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jawbreaker_(film)"}, "Title": {"type": "literal", "value": "Jawbreaker"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Darren_Stein"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Carol_Kane|http://dbpedia.org/resource/Ethan_Erickson|http://dbpedia.org/resource/Judy_Greer|http://dbpedia.org/resource/Julie_Benz|http://dbpedia.org/resource/Pam_Grier|http://dbpedia.org/resource/Rebecca_Gayheart|http://dbpedia.org/resource/Rose_McGowan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "Jawbreaker is a 1999 American black comedy film written and directed by Darren Stein. The film stars Rose McGowan, Rebecca Gayheart, Julie Benz, and Judy Greer as girls in an exclusive clique in their high school. Charlotte Ayanna has a non-speaking cameo role as a murdered prom queen. The film was inspired by the film Heathers, and is often compared to it, particularly the plot involving a popular female clique, and the accidental murder of one of its members. Of his concept for the film, Stein has stated \"The jawbreaker just came to represent the duality of the poppy sweetness of the girls, of high school and of youth, versus the whole idea that this thing could break your jaw\". The film was released on February 19, 1999 and was a critical and financial failure, though it has come to gain a cult following. Similarities have been drawn between Jawbreaker and the 2004 film Mean Girls."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/TriStar_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Buddies_in_India"}, "Title": {"type": "literal", "value": "Buddies in India"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Wang_Baoqiang"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Vikramjeet_Virk|http://dbpedia.org/resource/Wang_Baoqiang"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Chinese_action_comedy_films|http://dbpedia.org/resource/Category:Indian_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Buddies in India (Chinese: \u5927\u95f9\u5929\u7afa) is an upcoming Chinese-Indian action comedy film directed by Wang Baoqiang, at his directorial debut, and also starring Wang Baoqiang. Vikramjeet Virk. It is scheduled for release in China by Beijing Enlight Pictures on December 24, 2016."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Beijing_Enlight_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Election_Night_(film)"}, "Title": {"type": "literal", "value": "Election Night"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Anders_Thomas_Jensen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ulrich_Thomsen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:Danish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "11"}, "Description": {"type": "literal", "value": "Election Night (Danish: Valgaften) is a 1998 Danish short comedy film directed by Anders Thomas Jensen. It won an Academy Award in 1999 for Best Short Subject."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Scary_Movie_(film_series)"}, "Title": {"type": "literal", "value": "Scary Movie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_Zucker_(filmmaker)|http://dbpedia.org/resource/Keenen_Ivory_Wayans|http://dbpedia.org/resource/Malcolm_D._Lee|http://dbpedia.org/resource/Scary_Movie|http://dbpedia.org/resource/Scary_Movie_2|http://dbpedia.org/resource/Scary_Movie_3|http://dbpedia.org/resource/Scary_Movie_4|http://dbpedia.org/resource/Scary_Movie_5"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anna_Faris|http://dbpedia.org/resource/Anthony_Anderson|http://dbpedia.org/resource/Ashley_Tisdale|http://dbpedia.org/resource/Carmen_Electra|http://dbpedia.org/resource/Charlie_Sheen|http://dbpedia.org/resource/Chris_Elliott|http://dbpedia.org/resource/Erica_Ash|http://dbpedia.org/resource/Kevin_Hart_(actor)|http://dbpedia.org/resource/Leslie_Nielsen|http://dbpedia.org/resource/Marlon_Wayans|http://dbpedia.org/resource/Regina_Hall|http://dbpedia.org/resource/Shawn_Wayans|http://dbpedia.org/resource/Simon_Rex"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Black_comedy|http://dbpedia.org/resource/Category:Comedy_films_by_series"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "337"}, "Description": {"type": "literal", "value": "Scary Movie is a series of American horror comedy parody films created by Keenen Ivory Wayans with his younger brothers, Shawn Wayans and Marlon Wayans, that mainly specialize in parodying horror films, which have collectively grossed over $895 million at the box-office worldwide. The two main recurring actors of the first four installments were Anna Faris and Regina Hall as Cindy Campbell and Brenda Meeks, joined by new or recurring actors and characters. The franchise was conceptualized by The Wayans Brothers, who wrote and directed the first two films before leaving the franchise. Their entries were produced by Dimension Films and distributed by two different studios: Miramax Films, as it was originally the studio's genre film label during executive producers Bob and Harvey Weinstein's run and produced the first three films, and The Weinstein Company\u2014the brothers' subsequently formed studio\u2014which produced the rest of the series' release after the Weinsteins departed Miramax and took the Dimension label with them. The franchise had 1 movie in 2013 with Scary Movie 5, which doesn't have Anna Faris or Regina Hall, but with new characters, and is still in the original film series and timeline."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Miramax_Films|http://dbpedia.org/resource/The_Weinstein_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Scary_Movie_5"}, "Title": {"type": "literal", "value": "Scary Movie 5"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Malcolm_D._Lee"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ashley_Tisdale|http://dbpedia.org/resource/Charlie_Sheen|http://dbpedia.org/resource/Erica_Ash|http://dbpedia.org/resource/Heather_Locklear|http://dbpedia.org/resource/J._P._Manoux|http://dbpedia.org/resource/Jerry_O'Connell|http://dbpedia.org/resource/Lindsay_Lohan|http://dbpedia.org/resource/Molly_Shannon|http://dbpedia.org/resource/Simon_Rex"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86|89"}, "Description": {"type": "literal", "value": "Scary Movie 5 (stylized as SCARY MOV\u0332IE) is a 2013 American horror comedy parody film and the fifth installment of the Scary Movie franchise. It is the second film to be distributed by The Weinstein Company under the Dimension Films brand. The film is directed by Malcolm D. Lee and written by David Zucker. It was released on April 12, 2013. Scary Movie 5 is the only installment of the franchise not to feature Cindy Campbell (played by Anna Faris) or Brenda Meeks (Regina Hall) (due to the end of their storyline). It premiered on April 11 at the Hollywood\u2019s ArcLight Cinerama Dome. The film parodies various horror films and other popular culture."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Dimension_Films|http://dbpedia.org/resource/The_Weinstein_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dear_Enemy_(film)"}, "Title": {"type": "literal", "value": "\u4eb2\u5bc6\u654c\u4eba Dear Enemy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Xu_Jinglei"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aarif_Rahman|http://dbpedia.org/resource/Christy_Chung|http://dbpedia.org/resource/Gigi_Leung|http://dbpedia.org/resource/Michael_Wong_(actor)|http://dbpedia.org/resource/Stanley_Huang|http://dbpedia.org/resource/Xu_Jinglei|http://dbpedia.org/resource/Zhao_Baogang"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Chinese_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "Dear Enemy (simplified Chinese: \u4eb2\u5bc6\u654c\u4eba; traditional Chinese: \u89aa\u5bc6\u6575\u4eba) is a 2011 Chinese romantic comedy film which sets its background in financial industry. It represents how bankers conduct the act of mergers and acquisitions. During this process, a pair of lovers, serving for two warring investment banks and having broken up half a year ago, get back together."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/My_Grandfather's_People"}, "Title": {"type": "literal", "value": "My Grandfather's People"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/\u00c7a\u011fan_Irmak"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/H\u00fcmeyra|http://dbpedia.org/resource/\u00c7etin_Tekindor"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "123"}, "Description": {"type": "literal", "value": "My Grandfather's People (Turkish: Dedemin \u0130nsanlar\u0131) is a 2011 Turkish drama film directed by \u00c7a\u011fan Irmak."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/I'm_Still_Here_(2010_film)"}, "Title": {"type": "literal", "value": "I'm Still Here"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Casey_Affleck"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Antony_Langdon|http://dbpedia.org/resource/Ben_Stiller|http://dbpedia.org/resource/Billy_Crystal|http://dbpedia.org/resource/Bruce_Willis|http://dbpedia.org/resource/Casey_Affleck|http://dbpedia.org/resource/Danny_DeVito|http://dbpedia.org/resource/Edward_James_Olmos|http://dbpedia.org/resource/Jack_Nicholson|http://dbpedia.org/resource/Jamie_Foxx|http://dbpedia.org/resource/Joaquin_Phoenix|http://dbpedia.org/resource/Mos_Def|http://dbpedia.org/resource/Sean_Combs"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "I'm Still Here is a 2010 American mockumentary comedy-drama film directed by Casey Affleck, and written by Affleck and Joaquin Phoenix. The film purports to follow the life of Phoenix, from the announcement of his retirement from acting, through his transition into a career as a hip hop artist. Filming officially began on January 16, 2009 at a Las Vegas nightclub. Throughout the filming period, Phoenix remained in character for public appearances, giving many the impression that he was genuinely pursuing a new career. The film premiered at the 67th Venice International Film Festival on September 6, 2010. It had a limited release in the United States on September 10, 2010 before being expanded to a wide release a week later on September 17. Although widely suspected to be a \"mockumentary\", the fact that the events of the film had been deliberately staged was not disclosed until after the film had been released."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Magnolia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Employee_of_the_Month_(2006_film)"}, "Title": {"type": "literal", "value": "Employee of the Month"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Greg_Coolidge"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dane_Cook|http://dbpedia.org/resource/Dax_Shepard|http://dbpedia.org/resource/Jessica_Simpson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "Employee of the Month is a 2006 American comedy film directed by Greg Coolidge, written by Don Calame, Chris Conroy, and Coolidge, and starring Dane Cook, Jessica Simpson and Dax Shepard. The main plot revolves around two shop employees (portrayed by Cook and Shepard) who compete for the affection of their newest co-worker. The film was shot primarily at the Costco in Albuquerque, New Mexico located at 1420 N Renaissance Blvd NE."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lionsgate"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Atomic_Space_Bug"}, "Title": {"type": "literal", "value": "The Atomic Space Bug"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jonathan_M._Parisen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Conrad_Brooks|http://dbpedia.org/resource/Eddie_Grayce|http://dbpedia.org/resource/Jan_Weichun|http://dbpedia.org/resource/Jason_Colucci|http://dbpedia.org/resource/Johann_Tonnessen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "60"}, "Description": {"type": "literal", "value": "The Atomic Space Bug is a 1999 horror film directed by Jonathan M. Parisen and starring Conrad Brooks (Plan 9 from Outer Space). The Atomic Space Bug is Parisen's homage to such fifties films as Robot Monster and Plan 9 from Outer Space. The film is about a giant insect-like creature that terrorizes a small town."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Parivision_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Busted_(film)"}, "Title": {"type": "literal", "value": "Busted"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Corey_Feldman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ava_Fabian|http://dbpedia.org/resource/Corey_Feldman|http://dbpedia.org/resource/Corey_Haim|http://dbpedia.org/resource/Dominick_Brascia"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:Teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Busted is a 1997 comedy film, starring Corey Feldman, Corey Haim, Dominick Brascia and Ava Fabian. The film marked Corey Feldman's directorial debut. Due to his frequent absences and drug use during filming, Corey Haim was eventually fired by director Corey Feldman. Feldman later said that this was one of the most hard and painful things he ever had to do."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Fifty_Pills"}, "Title": {"type": "literal", "value": "Fifty Pills"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Theo_Avgerinos"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Diora_Baird|http://dbpedia.org/resource/Eddie_Kaye_Thomas|http://dbpedia.org/resource/Jane_Lynch|http://dbpedia.org/resource/John_Hensley|http://dbpedia.org/resource/Kristen_Bell|http://dbpedia.org/resource/Lou_Taylor_Pucci|http://dbpedia.org/resource/Michael_Pe\u00f1a|http://dbpedia.org/resource/Monica_Keena|http://dbpedia.org/resource/Nora_Zehetner"}, "Published": {"type": "literal", "value": "2006-04-26|2007-02-20"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "Fifty Pills (also known as 50 Pills) is the debut feature film of director Theo Avgerinos, which premiered at the 2006 Tribeca Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/PalmStar_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dirty_Love_(film)"}, "Title": {"type": "literal", "value": "Dirty Love"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/John_Asher"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Carmen_Electra|http://dbpedia.org/resource/Eddie_Kaye_Thomas|http://dbpedia.org/resource/Victor_Webster"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Dirty Love is a 2005 American romantic comedy film written by and starring Jenny McCarthy and directed by John Mallory Asher. At the time of filming, McCarthy and Asher were married; they divorced the month the film was released. Playing heavily off McCarthy's reputation for toilet humor, the film was critically panned and was a box office bomb; it also received the Golden Raspberry Award for Worst Picture."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/First_Look_Studios"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/DEJ_Productions|http://dbpedia.org/resource/Palisades_Pictures"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Shrek_Forever_After"}, "Title": {"type": "literal", "value": "Shrek Forever After"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mike_Mitchell_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Antonio_Banderas|http://dbpedia.org/resource/Cameron_Diaz|http://dbpedia.org/resource/Eddie_Murphy|http://dbpedia.org/resource/John_Cleese|http://dbpedia.org/resource/Julie_Andrews|http://dbpedia.org/resource/Mike_Myers|http://dbpedia.org/resource/Walt_Dohrn"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films|http://dbpedia.org/resource/Category:Fantasy-comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Shrek Forever After (also marketed as Shrek 3D: The Final Chapter and Shrek: The Final Chapter) is a 2010 American 3D computer-animated fantasy comedy film. It is the fourth installment in the Shrek series, produced by DreamWorks Animation. The film premiered on April 21, 2010 at the Tribeca Film Festival, and was theatrically released by Paramount Pictures on May 21, 2010 in the United States. It was also released in 3D and IMAX 3D formats. Taking place after Shrek the Third, Shrek is now a family man and beloved among the local villagers. Yearning for the days when he was feared, he makes a deal with Rumpelstiltskin and accidentally wipes out his entire existence. To restore his existence, Shrek has to regain Fiona's love and kiss her before the sun rises, or he will disappear forever. The film was the #1 film in the United States and Canada for three consecutive weeks and grossed a worldwide total of over $752 million. Additionally, Shrek Forever After is DreamWorks Animation's second highest-grossing film at the foreign box office."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Clerks_II"}, "Title": {"type": "literal", "value": "Clerks II"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Smith"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Brian_O'Halloran|http://dbpedia.org/resource/Jason_Mewes|http://dbpedia.org/resource/Jeff_Anderson|http://dbpedia.org/resource/Jennifer_Schwalbach_Smith|http://dbpedia.org/resource/Rosario_Dawson|http://dbpedia.org/resource/Trevor_Fehrman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Clerks II is a 2006 American comedy film written and directed by Kevin Smith, the sequel to his 1994 film Clerks, and his sixth feature film to be set in the View Askewniverse. The film stars Brian O'Halloran, Jeff Anderson, Rosario Dawson, Trevor Fehrman, Jennifer Schwalbach Smith, Jason Mewes, and Smith, and picks up with the original characters from Clerks: Dante Hicks, Randal Graves and Jay and Silent Bob ten years after the events of the first film. Unlike the first film, which was shot in black-and-white, this film was shot in color. The film screened out of competition at the 2006 Cannes Film Festival and won the Audience Award at the 2006 Edinburgh International Film Festival before receiving a theatrical release on July 21, 2006 to critical and commercial success, grossing $27 million worldwide from a $5 million budget."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Metro-Goldwyn-Mayer"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_Hart:_What_Now%3F"}, "Title": {"type": "literal", "value": "Kevin Hart: What Now?"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tim_Story"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Stand-up_comedy_concert_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "Kevin Hart: What Now? is a 2016 American stand-up comedy film starring comedian Kevin Hart, based on his 2015 stand-up tour of the same name. The film was released in the United States on October 14, 2016."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ishq_Garaari"}, "Title": {"type": "literal", "value": "Ishq Garaari"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dheeraj_Rattan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gunjan_Walia|http://dbpedia.org/resource/Mandy_Takhar|http://dbpedia.org/resource/Miss_Pooja|http://dbpedia.org/resource/Prabhleen_Sandhu|http://dbpedia.org/resource/Rannvijay_Singh|http://dbpedia.org/resource/Sharry_Maan|http://dbpedia.org/resource/Vinaypal_Buttar"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Ishq Garaari is a Punjabi film directed by Dheeraj Rattan. It is produced by Ravi Jain & Karan Bali and stars Sharry Maan, Rannvijay Singh, Mandy Takhar, Gulzar Chahal, Miss Pooja Vinaypal Buttar, Gunjan Walia and Prabhleen Sandhu, the film also has a song titled 'Khalaara' by Yo Yo Honey Singh."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/White_Hill_Productions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Queen_of_Hearts_(2009_film)"}, "Title": {"type": "literal", "value": "The Queen of Hearts"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Val\u00e9rie_Donzelli"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/B\u00e9atrice_de_Sta\u00ebl|http://dbpedia.org/resource/J\u00e9r\u00e9mie_Elka\u00efm|http://dbpedia.org/resource/Val\u00e9rie_Donzelli"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "The Queen of Hearts (French: La Reine des pommes) is a 2009 film directed by Val\u00e9rie Donzelli. It was presented at the Locarno International Film Festival for the Filmmakers of the Present Competition."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Madhura_Naranga"}, "Title": {"type": "literal", "value": "Madhura Naranga"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sugeeth"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aparna_Nair|http://dbpedia.org/resource/Biju_Menon|http://dbpedia.org/resource/Ganja_Karuppu|http://dbpedia.org/resource/Kunchacko_Boban|http://dbpedia.org/resource/Neeraj_Madhav|http://dbpedia.org/resource/Parvathy_Ratheesh"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "145"}, "Description": {"type": "literal", "value": "Madhura Naranga is a 2015 Malayalam film written by Nishad Koya and Salam Kottakkal, directed by Sugeeth. The film says that it was adapted from a true incident. The film stars Kunchacko Boban, Biju Menon, Neeraj Madhav and debutante Parvathy Ratheesh in lead roles. The movie was well received by critics and audience alike"}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jenny's_Wedding"}, "Title": {"type": "literal", "value": "Jenny's Wedding"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mary_Agnes_Donoghue"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alexis_Bledel|http://dbpedia.org/resource/Grace_Gummer|http://dbpedia.org/resource/Katherine_Heigl|http://dbpedia.org/resource/Linda_Emond|http://dbpedia.org/resource/Matthew_Metzger|http://dbpedia.org/resource/Tom_Wilkinson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Jenny's Wedding is a 2015 American independent film written and directed by Mary Agnes Donoghue. The film stars Katherine Heigl, Alexis Bledel, Tom Wilkinson, Linda Emond, Grace Gummer and Matthew Metzger. Heigl plays Jenny, a woman who finally decides to get married, but her choice of partner tears her conventional family apart. Jenny's Wedding was filmed on location in Cleveland from October 2013. An Indiegogo campaign was later launched to help raise money for post-production costs. The film was released on July 31, 2015 in a limited release by IFC Films."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Big_Sick"}, "Title": {"type": "literal", "value": "The Big Sick"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Showalter"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Holly_Hunter|http://dbpedia.org/resource/Ray_Romano|http://dbpedia.org/resource/Zoe_Kazan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Big Sick is an upcoming American romantic comedy film directed by Michael Showalter, from a screenplay by Kumail Nanjiani and Emily V. Gordon. It stars Nanjiani, Ray Romano, Holly Hunter and Zoe Kazan."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Qu\u00e9bec-Montr\u00e9al"}, "Title": {"type": "literal", "value": "Qu\u00e9bec-Montr\u00e9al"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ricardo_Trogi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Isabelle_Blais_(actress)|http://dbpedia.org/resource/Julie_LeBreton|http://dbpedia.org/resource/Patrice_Robitaille|http://dbpedia.org/resource/St\u00e9phane_Breton_(actor)"}, "Published": {"type": "literal", "value": "2002-08-02"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "Qu\u00e9bec-Montr\u00e9al is a Canadian comedy film, released in 2002. Directed by Ricardo Trogi, the film focuses on nine people, all on the cusp of turning 30 and dealing with complex questions about life and love, whose lives intersect on four separate road trips from Quebec City to Montreal along Quebec Autoroute 20. The film's cast includes Patrice Robitaille, Jean-Phillipe Pearson, St\u00e9phane Breton, Fran\u00e7ois L\u00e9tourneau, Isabelle Blais, Beno\u00eet Gouin and Julie LeBreton. The film garnered four Genie Award nominations at the 23rd Genie Awards in 2003, including Best Picture, Best Director, Best Original Screenplay and Best Editing. It won four Jutra Awards, including Best Picture, Best Director, Best Screenplay and Best Supporting Actress (Blais), and was nominated but did not win for Best Actor (Robitaille), Best Supporting Actor (Gouin) and Best Score."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Alliance_Vivafilm"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Pee-wee's_Big_Holiday"}, "Title": {"type": "literal", "value": "Pee-wee's Big Holiday"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/John_Lee_(producer)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Paul_Reubens"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Pee-wee's Big Holiday is a 2016 American adventure comedy film directed by John Lee and written by Paul Reubens and Paul Rust. The film stars Reubens as Pee-wee Herman. The film was released on March 18, 2016, on Netflix."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Netflix"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/I_Sell_the_Dead"}, "Title": {"type": "literal", "value": "I Sell The Dead"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Glenn_McQuaid"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Angus_Scrimm|http://dbpedia.org/resource/Dominic_Monaghan|http://dbpedia.org/resource/Ron_Perlman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "I Sell the Dead is a 2008 horror comedy, the feature film debut from Irish director Glenn McQuaid. The film is a period horror comedy about grave robbing and stars Dominic Monaghan, Ron Perlman, Larry Fessenden and Angus Scrimm."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Norberto's_Deadline"}, "Title": {"type": "literal", "value": "Norberto's Deadline"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Daniel_Hendler"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Norberto's Deadline (Spanish: Norberto apenas tarde) is a 2010 opera prima and tells the story of Norberto. Fired from his job, Norberto tries his luck as a real estate agent, putting off telling his wife. His new boss recommends that he attend a personal assertiveness course to overcome his timidity and he starts studying acting at a beginners\u2019 workshop. While preparing the 3-monthly show, while he fails in his endeavours to behave credibly towards his clients and his wife, what he does discover is a tremendous ability to lie to himself."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mankatha"}, "Title": {"type": "literal", "value": "Mankatha"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Venkat_Prabhu"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ajith_Kumar|http://dbpedia.org/resource/Andrea_Jeremiah|http://dbpedia.org/resource/Anjali_(actress_born_1986)|http://dbpedia.org/resource/Aravind_Akash|http://dbpedia.org/resource/Arjun_Sarja|http://dbpedia.org/resource/Ashwin_Kakumanu|http://dbpedia.org/resource/Jayaprakash|http://dbpedia.org/resource/Lakshmi_Rai|http://dbpedia.org/resource/Mahat_Raghavendra|http://dbpedia.org/resource/Premji_Amaren|http://dbpedia.org/resource/Trisha_Krishnan|http://dbpedia.org/resource/Vaibhav_Reddy"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_action_comedy_films|http://dbpedia.org/resource/Category:Indian_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "160"}, "Description": {"type": "literal", "value": "Mankatha is a 2011 Indian Tamil-language black comedy action-heist film, written and directed by Venkat Prabhu. It features Ajith Kumar in the lead role, starring in his 50th film, along with an ensemble cast including Arjun Sarja, Trisha Krishnan, Vaibhav Reddy, Lakshmi Rai, Andrea Jeremiah, Premji Amaren, Mahat Raghavendra and Anjali. It was produced by Dhayanidhi Alagiri's Cloud Nine Movies while Yuvan Shankar Raja composed the musical score and soundtrack, with Sakthi Saravanan working as the cinematographer and the duo Praveen K. L. and N. B. Srikanth as editors. The story, set in Mumbai, revolves around a heist of cricket betting money, executed by a gang of four thieves, who are joined by a fifth unknown man, and its aftermath.The film became a blockbuster very soon and became the first salt and pepper hit for Venkat Prabhu after which he continued the same style in all his upcoming films. The film was formally launched in August 2010, with its principal photography beginning on 25 October 2010. Filming was held for more than eight months and took place primarily across Chennai, the Dharavi slum in Mumbai and Bangkok, Thailand. Following speculations regarding the film's release, Sun Pictures acquired the theatrical rights and distributed the film via Raadhika Sarathkumar's Radaan Mediaworks. Mankatha released on 31 August 2011 worldwide to generally positive reviews and grossed the second biggest opening of all time after Endhiran at the time of release. The film was also dubbed into Telugu as Gambler and released in Andhra Pradesh ten days later while it was a box-office hit in Kerala as well."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Ayngaran_International|http://dbpedia.org/resource/Raadhika_Sarathkumar|http://dbpedia.org/resource/Sun_Pictures|http://dbpedia.org/resource/Telugu_language"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Deuce_Bigalow:_Male_Gigolo"}, "Title": {"type": "literal", "value": "Deuce Bigalow: Male Gigolo"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mike_Mitchell_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Arija_Bareikis|http://dbpedia.org/resource/Eddie_Griffin|http://dbpedia.org/resource/William_Forsythe_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Deuce Bigalow: Male Gigolo is a 1999 American sex comedy film directed by Mike Mitchell at his feature debut, written by Harris Goldberg and Rob Schneider, and starring Schneider as a hapless fishtank cleaner who goes into business as a male prostitute in an attempt to earn enough money to repair damage he caused while house-sitting. It was the first film released by Happy Madison Productions. Released on December 10, 1999, the film received negative critical reviews but became a box office success, grossing $92 million worldwide on a $17 million budget. The film has developed a minor cult following and spawned a sequel in 2005, titled Deuce Bigalow: European Gigolo, but with Columbia Pictures replacing Touchstone and upon release, received worse reviews and became a box office disappointment."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Love_for_Share"}, "Title": {"type": "literal", "value": "Berbagi Suami"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nia_Dinata"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Atiqah_Hasiholan|http://dbpedia.org/resource/El_Manik|http://dbpedia.org/resource/Jajang_C._Noer|http://dbpedia.org/resource/Lukman_Sardi|http://dbpedia.org/resource/Reuben_Elishama|http://dbpedia.org/resource/Ria_Irawan|http://dbpedia.org/resource/Rieke_Diah_Pitaloka|http://dbpedia.org/resource/Tio_Pakusadewo|http://dbpedia.org/resource/Winky_Wiryawan"}, "Published": {"type": "literal", "value": "2006-03-23"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Love for Share (Indonesian: Berbagi Suami) is a 2006 Indonesian film directed by Nia Dinata. It tells three interrelated stories. It was submitted to the 79th Academy Awards as Indonesia's official submission for the Best Foreign Language Film, but was not nominated. The film received Golden Orchid Award as Best Foreign Language Film at the Hawaii Film Festival in 2007."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bheja_Fry_2"}, "Title": {"type": "literal", "value": "Bheja Fry 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sagar_Ballary"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amol_Gupte|http://dbpedia.org/resource/Kay_Kay_Menon|http://dbpedia.org/resource/Minisha_Lamba|http://dbpedia.org/resource/Rukhsaar_Rehman|http://dbpedia.org/resource/Suresh_Menon|http://dbpedia.org/resource/Vinay_Pathak"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "130"}, "Description": {"type": "literal", "value": "Bheja Fry 2 (meaning 'Brain Fry' 2) is an Indian comedy film released on 17 June 2011. It is the sequel to the 2007 low budget but successful film Bheja Fry, and the second installment of Bheja Fry trilogy. The film garnered negative to mixed reviews upon its release but was a success at the boxoffice."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/American_Pie_Presents:_The_Naked_Mile"}, "Title": {"type": "literal", "value": "American Pie Presents:|The Naked Mile"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Joe_Nussbaum"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Christopher_McDonald|http://dbpedia.org/resource/Eugene_Levy|http://dbpedia.org/resource/Jessy_Schram|http://dbpedia.org/resource/John_White_(actor)|http://dbpedia.org/resource/Steve_Talley"}, "Published": {"type": "literal", "value": "2006-12-12"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films|http://dbpedia.org/resource/Category:Direct-to-video_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "American Pie Presents: The Naked Mile (also known as American Pie: The Naked Mile) is a 2006 American sex comedy film released by Universal Pictures. It is the second installment in the American Pie Presents series and the fifth installment in the American Pie franchise. The film begins a story arc that concludes with Beta House (2007). John White stars as Erik Stifler, a high school senior who is given a \"guilt free pass\" by his girlfriend, Tracy Sterling (Jessy Schram), and so visits the Beta House fraternity led by his cousin, Dwight Stifler (Steve Talley), to run a mile naked. Christopher McDonald co-stars as Erik's father, Harry, and Eugene Levy once again plays Jim's Dad, who turns out to be a family friend of both Erik's and Tracy's. Also, it is in this film that his name is revealed to be \"Noah Levenstein\"."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Rogue_Pictures|http://dbpedia.org/resource/Universal_Studios_Home_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Summer_Storm_(2004_film)"}, "Title": {"type": "literal", "value": "Summer Storm"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Marco_Kreuzpaintner"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alicja_Bachleda|http://dbpedia.org/resource/Kostja_Ullmann|http://dbpedia.org/resource/Miriam_Morgenstern|http://dbpedia.org/resource/Robert_Stadlober"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:German_romantic_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films|http://dbpedia.org/resource/Category:Teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Summer Storm (German: Sommersturm) is a 2004 German coming-of-age comedy-drama film directed by Marco Kreuzpaintner, starring Robert Stadlober, Kostja Ullmann, Alicja Bachleda-Curu\u015b, and Miriam Morgenstern. The story is set to the background of a rowing regatta, which climaxes into a summer storm."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/My_Only_\u00dc"}, "Title": {"type": "literal", "value": "My Only &Uuml;"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Cathy_Garcia-Molina"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Toni_Gonzaga|http://dbpedia.org/resource/Vhong_Navarro"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "My Only \u00dc is a 2008 Filipino comedy drama film starring Vhong Navarro and Toni Gonzaga and directed by the award-winning director Cathy Garcia-Molina released under Star Cinema."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Star_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Happy_(2016_film)"}, "Title": {"type": "literal", "value": "Happy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jordan_Goldnadel"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jordan_Goldnadel"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:French_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Happy is a French feature film directed by Jordan Goldnadel, with Isabel Ryan, Vladimir Perrin, Jordan Goldnadel and L\u00e9a Moszkowicz, released in 2016. The film premiered at the Montr\u00e9al World Film Festival, where it received great reviews. \u00b7 With a great soundtrack, including some Amanda Palmer songs, the film is sold internationally by Wide Management and receives two nominations at the prestigious 2016 Prix Henri Langlois (Henri Langlois Awards). The film also integrates the Eye on Films European Label and is released in several countries including the US, the UK, Ireland and South Korea.It is also bought by Amazon Prime (Amazon.com)."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_First_Time_(2012_film)"}, "Title": {"type": "literal", "value": "The First Time"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jon_Kasdan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Britt_Robertson|http://dbpedia.org/resource/Christine_Taylor|http://dbpedia.org/resource/Craig_Roberts|http://dbpedia.org/resource/Dylan_O'Brien|http://dbpedia.org/resource/James_Frecheville|http://dbpedia.org/resource/Joshua_Malina|http://dbpedia.org/resource/LaMarcus_Tinker|http://dbpedia.org/resource/Victoria_Justice"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "The First Time is a 2012 teen romantic comedy film written and directed by Jon Kasdan, and stars Britt Robertson, Dylan O'Brien, James Frecheville and Victoria Justice. Dave Hodgman (Dylan O'Brien) is a high school senior who spends most of his time pining away over Jane Harmon (Victoria Justice), a girl he can't have. Aubrey Miller (Britt Robertson), a junior at a different high school, has an older boyfriend Ronny (James Frecheville) who doesn't quite understand her or seem to care. A casual conversation between Dave and Aubrey sparks an instant connection, and, over the course of a weekend, things turn magical, romantic, complicated, and funny as Aubrey and Dave discover what it's like to fall in love for the first time."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Destination_Films|http://dbpedia.org/resource/Samuel_Goldwyn_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bheja_Fry_(film_series)"}, "Title": {"type": "literal", "value": "Bheja Fry series"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sagar_Ballary"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Vinay_Pathak"}, "Published": {"type": "literal", "value": "2007-04-13|2011-06-17|2017-04-21"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Comedy_films_by_series"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Bheja Fry is a series of Indian comedy films written and directed by Sagar Ballary and starring Vinay Pathak."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Watch_(2012_film)"}, "Title": {"type": "literal", "value": "The Watch"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Akiva_Schaffer"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Stiller|http://dbpedia.org/resource/Jonah_Hill|http://dbpedia.org/resource/Richard_Ayoade|http://dbpedia.org/resource/Rosemarie_DeWitt|http://dbpedia.org/resource/Vince_Vaughn"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "The Watch (previously known as Neighborhood Watch) is a 2012 American science fiction comedy film directed by Akiva Schaffer and written by Jared Stern, Seth Rogen and Evan Goldberg. It stars Ben Stiller, Vince Vaughn, Jonah Hill and Richard Ayoade. The film follows Evan (Stiller), Bob (Vaughn), Franklin (Hill), and Jamarcus (Ayoade), a group of neighbors who form a suburban neighborhood watch group. When they uncover an alien plot threatening the world, they are forced into action. The film began its development in 2008 under producer Shawn Levy as a teen-targeted project written by Jared Stern. Between 2009 and late 2010 it saw different directors and stars join the project until November 2010, when it moved in a new direction under Rogen and Goldberg (who rewrote the script for an adult audience). Filming began in October 2011 in the state of Georgia, concluding in January 2012. The film's marketing campaign was affected by the 2012 shooting of Trayvon Martin by a neighborhood-watch member. As a result, the campaign was refocused on the alien premise instead of the film leads and the film's name was changed from Neighborhood Watch to The Watch. Released on July 27, 2012, the film received generally negative reviews, with critics focusing on the plot, frequent \"vulgar and offensive\" jokes and numerous product placements. However, the lead cast was more positively received."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/It's_a_Wonderful_Life_(2007_film)"}, "Title": {"type": "literal", "value": "It's a Wonderful Life"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ronald_Cheng"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alex_Fong_(singer)|http://dbpedia.org/resource/Louisa_So|http://dbpedia.org/resource/Ronald_Cheng|http://dbpedia.org/resource/Teresa_Mo|http://dbpedia.org/resource/Tony_Leung_Ka-fai|http://dbpedia.org/resource/Vincent_Kok"}, "Published": {"type": "literal", "value": "2007-02-15"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Fantasy-comedy_films|http://dbpedia.org/resource/Category:Hong_Kong_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "It's a Wonderful Life is a 2007 Hong Kong comedy film written, directed by and starring Ronald Cheng, who makes his directorial debut. The film co-stars Tony Leung, Vincent Kok, Alex Fong, Teresa Mo and Louisa So."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Gold_Typhoon"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Your_Highness"}, "Title": {"type": "literal", "value": "Your Highness"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_Gordon_Green"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/James_Franco|http://dbpedia.org/resource/Natalie_Portman|http://dbpedia.org/resource/Zooey_Deschanel"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films|http://dbpedia.org/resource/Category:American_fantasy-comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films|http://dbpedia.org/resource/Category:Fantasy-comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Your Highness is a 2011 American stoner comic fantasy film directed by David Gordon Green, and stars Danny McBride, James Franco, Natalie Portman, Zooey Deschanel and Justin Theroux. Written by McBride and Ben Best, the film was released on April 8, 2011. The film received negative reviews from critics and was a box office bomb, grossing $28 million worldwide against a $50 million budget."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Vaayai_Moodi_Pesavum"}, "Title": {"type": "literal", "value": "Vaayai Moodi Pesavum"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Balaji_Mohan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dulquer_Salman|http://dbpedia.org/resource/Madhoo|http://dbpedia.org/resource/Nazriya_Nazim"}, "Published": {"type": "literal", "value": "2014-04-25"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Vaayai Moodi Pesavum (English: Speak With Your Mouth Shut) is a 2014 Tamil romantic comedy film directed by Balaji Mohan starring Dulquer Salman and Nazriya Nazim. Sean Roldan scored the music, while Soundararajan was the cinematographer and Abhinav Sunder Nayak worked as the editor. Filming began in November 2013. The film was simultaneously made in Malayalam with the same lead actors and slightly changed supporting actors list, under the title Samsaaram Aarogyathinu Haanikaram."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Transamerica_(film)"}, "Title": {"type": "literal", "value": "Transamerica"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Duncan_Tucker"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Burt_Young|http://dbpedia.org/resource/Carrie_Preston|http://dbpedia.org/resource/Elizabeth_Pe\u00f1a|http://dbpedia.org/resource/Felicity_Huffman|http://dbpedia.org/resource/Fionnula_Flanagan|http://dbpedia.org/resource/Graham_Greene_(actor)|http://dbpedia.org/resource/Kevin_Zegers"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "Transamerica is a 2005 American comedy-drama film written and directed by Duncan Tucker, and starring Felicity Huffman and Kevin Zegers. Produced by IFC Films and The Weinstein Company, the film premiered at the Berlin International Film Festival on February 14, 2005 and was released theatrically in the United States on December 2, 2005. The screenplay, inspired in part by conversations between Tucker and his then roommate Katherine Connella, tells the story of Bree, a transgender woman (Huffman), who goes on a road trip with her long-lost son Toby (Zegers). One of the major themes is the personal journey toward self-discovery, according to interviews with the director and actors. The film is marked by an Academy Award\u2013nominated and Golden Globe\u2013winning performance by Huffman, who is also known for her performance in Desperate Housewives."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Final_Girls"}, "Title": {"type": "literal", "value": "The Final Girls"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Todd_Strauss-Schulson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_DeVine|http://dbpedia.org/resource/Alexander_Ludwig|http://dbpedia.org/resource/Alia_Shawkat|http://dbpedia.org/resource/Malin_\u00c5kerman|http://dbpedia.org/resource/Nina_Dobrev|http://dbpedia.org/resource/Taissa_Farmiga|http://dbpedia.org/resource/Thomas_Middleditch"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "The Final Girls is a 2015 American slasher comedy film, directed by Todd Strauss-Schulson and written by M.A. Fortin and Joshua John Miller. The film stars Taissa Farmiga and Malin \u00c5kerman, with supporting performances from Adam DeVine, Thomas Middleditch, Alia Shawkat, Alexander Ludwig, Nina Dobrev, Chloe Bridges, and Angela Trimbur. The plot follows a group of college students who are transported into a 1986 slasher film called Camp Bloodbath. The film had its world premiere on March 13, 2015 at South by Southwest. It then screened at the 2015 Toronto International Film Festival on September 19, 2015. It was released in the United States on October 9, 2015 in a limited release and through video on demand by Stage 6 Films and Vertical Entertainment."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Stage_6_Films|http://dbpedia.org/resource/Vertical_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Barbershop_(film_series)"}, "Title": {"type": "literal", "value": "Barbershop"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bille_Woodruff|http://dbpedia.org/resource/Kevin_Rodney_Sullivan|http://dbpedia.org/resource/Malcolm_D._Lee|http://dbpedia.org/resource/Tim_Story"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anthony_Anderson|http://dbpedia.org/resource/Cedric_the_Entertainer|http://dbpedia.org/resource/Eve_(rapper)|http://dbpedia.org/resource/Ice_Cube|http://dbpedia.org/resource/Michael_Ealy|http://dbpedia.org/resource/Sean_Patrick_Thomas"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Comedy_films_by_series"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Barbershop is an American comedy film series that started in 2002 with Barbershop, directed by Tim Story. Barbershop 2: Back in Business was directed by Kevin Rodney Sullivan and released in 2004, while the third film, Barbershop: The Next Cut directed by Malcolm D. Lee, was released in April 2016. A spin-off starring Queen Latifah, Beauty Shop, was released in 2005. The series received generally positive reviews and grossed over $235 million worldwide."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Metro-Goldwyn-Mayer|http://dbpedia.org/resource/Warner_Bros._Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Compleat_Al"}, "Title": {"type": "literal", "value": "The Compleat Al"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Robert_K._Weiss"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/%22Weird_Al%22_Yankovic"}, "Published": {"type": "literal", "value": "1985-08-07|1985-09-25|2014-11-11"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1980s_musical_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "The Compleat Al is a mockumentary about the life of \"Weird Al\" Yankovic, from his birth in 1959, to 1985. It was partially written by Yankovic and directed by Jay Levey. An abbreviated version premiered on August 7, 1985 on the Showtime network before the full film was released on video on September 25, 1985. The title of the film is a parody from the 1982 documentary The Compleat Beatles. Although it is a mockumentary, it is roughly based on Yankovic's real life. For example, Yankovic was raised in Lynwood, California, and has a degree in architecture from Cal Poly San Luis Obispo. His real-life parents appear in the mockumentary, as does a picture of his real-life childhood house. Because of the mixture of Yankovic's real life and fiction, many of the film's fabricated information was accepted by fans as real. For example, the false information that Yankovic was born in a Saint Vitus hospital (Saint Vitus where Saint Vitus is the Catholic patron saint of comedy); or the film's pun which claimed his birth in an elevator signified his \"rise to the top.\" The mockumentary also contains clips from his first Three \"AL-TV\"s, and all of Yankovic's music videos up to 1985: \"Ricky\", \"I Love Rocky Road\", \"Eat It\", \"I Lost on Jeopardy\", \"This Is the Life\", \"Like a Surgeon\" ,\"One More Minute\", and \"Dare to Be Stupid\". The parody also extends to the technical aspects of the film, such as the copyright warning message which starts routinely but escalates to warnings that copying the video may result in damage to your VCR, smoke may come out of your TV set, escalating to possible destruction of the planet due to the greed of the viewer."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/S.C.O.O.B."}, "Title": {"type": "literal", "value": "S.C.O.O.B."}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dax_Shepard|http://dbpedia.org/resource/Tony_Cervone"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "S.C.O.O.B. is an upcoming American 3D computer animated film featuring characters from the Scooby-Doo cartoon franchise. It is co-directed by Tony Cervone and Dax Shepard, and written by Matt Lieberman and Shepard. Warner Bros. will release the film on September 21, 2018, in the United States. It is a reboot of the Scooby-Doo live-action films and the first film in the Hanna-Barbera Cinematic Universe."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Capture_the_Flag_(film)"}, "Title": {"type": "literal", "value": "Capture the Flag"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Enrique_Gato"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dani_Rovira|http://dbpedia.org/resource/Michelle_Jenner"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Adventure_comedy_films|http://dbpedia.org/resource/Category:Comedy_science_fiction_films|http://dbpedia.org/resource/Category:Spanish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Capture the Flag (Spanish: Atrapa la bandera) is a 2015 Spanish computer-animated science fiction adventure comedy film directed by Enrique Gato and written by Patxi Amezcua. Produced by 4 Cats Pictures and animated by Lightbox Entertainment, the film is distributed by Paramount Pictures International. It was released in 3D. The film won the Goya Award for Best Animated Film at the 2016 Goya Awards"}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Superstar_Female_Serial_Killer"}, "Title": {"type": "literal", "value": "Superstar Female Serial Killer"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Morrissey_(filmmaker)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Christina_Muzyk|http://dbpedia.org/resource/Lenii_Reed|http://dbpedia.org/resource/Matt_Miyahara|http://dbpedia.org/resource/Polyester|http://dbpedia.org/resource/Share_Fantasia|http://dbpedia.org/resource/Tiffany_Walker|http://dbpedia.org/resource/Veneta_Hillis|http://dbpedia.org/resource/Vickie_Velvet"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "Superstar Female Serial Killer is a 2000 feature film written and directed by Los Angeles-based filmmaker Chris Morrissey. It was released theatrically on March 24, 2000 and stars singers Vickie Velvet, Share Fantasia, and Tiffany Walker."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Morrissey_(filmmaker)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Crush_and_Blush"}, "Title": {"type": "literal", "value": "Crush and Blush"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lee_Kyoung-mi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gong_Hyo-jin|http://dbpedia.org/resource/Hwang_Woo-seul-hye|http://dbpedia.org/resource/Lee_Jong-hyuk|http://dbpedia.org/resource/Seo_Woo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films|http://dbpedia.org/resource/Category:South_Korean_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Crush and Blush (Hangul: \ubbf8\uc4f0 \ud64d\ub2f9\ubb34; RR: Misseu Hongdangmu; lit. \"Miss Hongdangmu\" or \"Miss Carrot\") is a 2008 South Korean film. It is the feature film debut of director Lee Kyoung-mi, and also the first film to be produced by Park Chan-wook. Crush and Blush premiered at the 13th Pusan International Film Festival, and went on general release in South Korea on October 16, 2010."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ready%3F_OK!"}, "Title": {"type": "literal", "value": "Ready? OK!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Vasquez"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Carrie_Preston|http://dbpedia.org/resource/John_G._Preston|http://dbpedia.org/resource/Kali_Rocha|http://dbpedia.org/resource/Lurie_Poston|http://dbpedia.org/resource/Michael_Emerson|http://dbpedia.org/resource/Sam_Pancake|http://dbpedia.org/resource/Tara_Karsian"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Ready? OK! is a 2008 comedy film written, edited, and directed by James Vasquez, and produced by Daisy 3 Pictures."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Horton_Hears_a_Who!_(film)"}, "Title": {"type": "literal", "value": "Horton Hears a Who!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jimmy_Hayward|http://dbpedia.org/resource/Steve_Martino"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jim_Carrey|http://dbpedia.org/resource/Steve_Carell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Horton Hears a Who! (also known as Dr. Seuss\u2019 Horton Hears a Who!) is a 2008 American computer-animated fantasy adventure comedy film based on the book of the same name by Dr. Seuss. Produced by Blue Sky Studios, the film was directed by Jimmy Hayward and Steve Martino, and written by Cinco Paul and Ken Daurio. It features the voices of Jim Carrey and Steve Carell. Released theatrically on March 14, 2008, by 20th Century Fox, it grossed $297 million on a budget of $85 million. The film is the third Dr. Seuss feature film adaptation, the second Dr. Seuss film starring Jim Carrey after How the Grinch Stole Christmas (2000), and the first adaptation of a Dr. Seuss work fully animated using CGI technology."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Seven_Psychopaths"}, "Title": {"type": "literal", "value": "Seven Psychopaths"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Martin_McDonagh"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films|http://dbpedia.org/resource/Category:British_black_comedy_films|http://dbpedia.org/resource/Category:British_criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "Seven Psychopaths is a 2012 metacinema crime black comedy film written and directed by Martin McDonagh. It stars Colin Farrell, Sam Rockwell, Woody Harrelson, and Christopher Walken, with Tom Waits, Abbie Cornish, Olga Kurylenko, and \u017deljko Ivanek in supporting roles. The film marks the second collaboration between McDonagh, Farrell, and Ivanek, following 2008's In Bruges. The film was a co-production of the United States and the United Kingdom. Seven Psychopaths had its world premi\u00e8re on 7 September 2012 at the Toronto International Film Festival. It was released in the United States and Canada on 12 October 2012, and in the United Kingdom on 5 December 2012."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/It_Happened_in_Acapulco"}, "Title": {"type": "literal", "value": "It Happened in Acapulco"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alejandro_Galindo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Domingo_Soler|http://dbpedia.org/resource/Martha_Roth|http://dbpedia.org/resource/Ra\u00fal_Mart\u00ednez_(actor)"}, "Published": {"type": "literal", "value": "1953-10-21"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1950s_comedy_films|http://dbpedia.org/resource/Category:Mexican_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "It Happened in Acapulco (Spanish: Sucedi\u00f3 en Acapulco) is a 1953 Mexican comedy drama film directed by Alejandro Galindo and starring Martha Roth, Ra\u00fal Mart\u00ednez and Domingo Soler."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Big_Stone_Gap_(film)"}, "Title": {"type": "literal", "value": "Big Stone Gap"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Adriana_Trigiani"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anthony_LaPaglia|http://dbpedia.org/resource/Ashley_Judd|http://dbpedia.org/resource/Jane_Krakowski|http://dbpedia.org/resource/Jasmine_Guy|http://dbpedia.org/resource/Jenna_Elfman|http://dbpedia.org/resource/John_Benjamin_Hickey|http://dbpedia.org/resource/Patrick_Wilson_(American_actor)|http://dbpedia.org/resource/Whoopi_Goldberg"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "Big Stone Gap is a 2014 American drama romantic comedy film written and directed by Adriana Trigiani and produced by Donna Gigliotti for Altar Identity Studios, a subsidiary of Media Society. Based on Trigiani's 2000 best-selling novel of the same name, the story is set in the actual Virginia town of Big Stone Gap circa 1970s. The film had its world premiere at the Virginia Film Festival on November 6, 2014.The film was released on October 9, 2015, by Picturehouse. The film was released in Blu-Ray by Universal Pictures on February 2, 2016."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Picturehouse_(company)|http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tully_(upcoming_film)"}, "Title": {"type": "literal", "value": "Tully"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jason_Reitman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Mackenzie_Davis|http://dbpedia.org/resource/Mark_Duplass"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Tully is an upcoming American comedy-drama film directed by Jason Reitman and written by Diablo Cody. The film stars Charlize Theron."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Yuriko's_Aroma"}, "Title": {"type": "literal", "value": "Yuriko's Aroma"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/K\u014dta_Yoshida"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Japanese_comedy-drama_films|http://dbpedia.org/resource/Category:Japanese_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "74"}, "Description": {"type": "literal", "value": "Yuriko's Aroma (\u30e6\u30ea\u5b50\u306e\u30a2\u30ed\u30de Yuriko no Aroma) is a 2010 Japanese erotic comedy drama film directed by K\u014dta Yoshida. It was released on May 8."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Adam's_Apples"}, "Title": {"type": "literal", "value": "Adam's Apples"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Anders_Thomas_Jensen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Mads_Mikkelsen|http://dbpedia.org/resource/Nicolas_Bro|http://dbpedia.org/resource/Paprika_Steen|http://dbpedia.org/resource/Ulrich_Thomsen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Danish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Adam's Apples (Danish: Adams \u00c6bler) is a 2005 Danish black comedy-drama film directed and written by Anders Thomas Jensen. The film revolves around the theme of the Book of Job. The main roles are played by Ulrich Thomsen and Mads Mikkelsen."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Nordisk_Film"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lady_Godiva_(film)"}, "Title": {"type": "literal", "value": "Lady Godiva"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Vicky_Jewson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Matthew_Chambers|http://dbpedia.org/resource/Natalie_Walter|http://dbpedia.org/resource/Phoebe_Thomas"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:British_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Lady Godiva is a 2008 British romantic comedy film written and directed by Vicky Jewson. The film, starring Phoebe Thomas, Matthew Chambers, and Natalie Walter, was shot in 2006 but went unreleased for two years. Based on the historic tale of Lady Godiva, it was set in modern-day Oxford."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Back_in_the_Day_(2014_film)"}, "Title": {"type": "literal", "value": "Back in the Day"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Rosenbaum"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Rosenbaum|http://dbpedia.org/resource/Morena_Baccarin|http://dbpedia.org/resource/Nick_Swardson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Back in the Day is a 2014 comedy film, directed and written by Smallville actor Michael Rosenbaum. It is distributed by Screen Media Films."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Screen_Media_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Damned_United"}, "Title": {"type": "literal", "value": "The Damned United"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tom_Hooper"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Colm_Meaney|http://dbpedia.org/resource/Jim_Broadbent|http://dbpedia.org/resource/Michael_Sheen|http://dbpedia.org/resource/Timothy_Spall"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:British_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "(For the novel on which this film is based, see The Damned Utd.) The Damned United is a 2009 British biographical sports drama film directed by Tom Hooper and adapted by Peter Morgan from David Peace's bestselling novel The Damned Utd, a largely fictional book based on the author's interpretation of Brian Clough's ill-fated tenure as football manager of Leeds United in 1974. It was produced by BBC Films and Left Bank Pictures with additional funding from Screen Yorkshire and Columbia Pictures. Sony Pictures Entertainment distributed the film. The film was originally proposed by Stephen Frears but he pulled out of the project in November 2007. Hooper took his place and film was shot from May to July 2008. The film marks the fifth collaboration between screenwriter Peter Morgan and actor Michael Sheen who plays Clough. The film was released in the United Kingdom on 27 March 2009 and in North America on 25 September. The film grossed $4.1 million worldwide against a $10 million production budget. The film received nominations for the British Independent Film Award for Best Supporting Actor, the ALFS Award for British Supporting Actor of the Year, the Satellite Award for Best Actor in a Motion Picture, Drama and Best Actor in a Supporting Role and the Writers' Guild of Great Britain Award for Best Feature Film Screenplay."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sony_Pictures_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/BBC_Films|http://dbpedia.org/resource/Columbia_Pictures|http://dbpedia.org/resource/Left_Bank_Pictures|http://dbpedia.org/resource/Regional_screen_agencies"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jumanji_(2017_sequel)"}, "Title": {"type": "literal", "value": "Jumanji"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jake_Kasdan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dwayne_Johnson|http://dbpedia.org/resource/Jack_Black|http://dbpedia.org/resource/Karen_Gillan|http://dbpedia.org/resource/Kevin_Hart|http://dbpedia.org/resource/Nick_Jonas"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films|http://dbpedia.org/resource/Category:American_fantasy-comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The untitled sequel to Jumanji is an upcoming 2017 American fantasy adventure film directed by Jake Kasdan and written by Scott Rosenberg. It is a continuation of the 1995 film of the same name and a tribute to the late Robin Williams. The film stars Dwayne Johnson, Kevin Hart, Jack Black, Karen Gillan and Nick Jonas. The film is scheduled to be released on July 28, 2017."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sony_Pictures_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/My_Dear_Desperado"}, "Title": {"type": "literal", "value": "My Dear Desperado"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kim_Kwang-sik"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jung_Yu-mi_(actress_born_1983)|http://dbpedia.org/resource/Park_Joong-hoon"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "My Dear Desperado (Hangul: \ub0b4 \uae61\ud328 \uac19\uc740 \uc560\uc778; RR: Nae Kkangpae Kateun Aein; lit. My Gangster Lover) is a 2010 South Korean romantic comedy film written and directed by Kim Kwang-sik, and starring Park Joong-hoon and Jung Yu-mi as two people who become semi-basement one-room neighbors: brave yet jobless Se-jin and Dong-chul, the neighborhood gangster who always gets beaten up. The film received 688,832 admissions nationwide. This film was remade in Hindi titled Jayantabhai Ki Luv Story in 2013 starring Vivek Oberoi opposite Neha Sharma in lead roles. The movie was officially remade in Tamil by Nalan Kumarasamy titled Kadhalum Kadandhu Pogum for which \u20b940 lakh (US$59,000) or \u20a971,587,640.57 was paid as copyrights."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Butter_(2011_film)"}, "Title": {"type": "literal", "value": "Butter"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jim_Field_Smith"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alicia_Silverstone|http://dbpedia.org/resource/Ashley_Greene|http://dbpedia.org/resource/Hugh_Jackman|http://dbpedia.org/resource/Jennifer_Garner|http://dbpedia.org/resource/Olivia_Wilde|http://dbpedia.org/resource/Rob_Corddry|http://dbpedia.org/resource/Ty_Burrell|http://dbpedia.org/resource/Yara_Shahidi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Butter is a 2011 comedy film directed by Jim Field Smith, from a screenplay by Jason Micallef, starring Yara Shahidi, Jennifer Garner, Ty Burrell, Olivia Wilde, Rob Corddry, Ashley Greene, Alicia Silverstone, and Hugh Jackman. It was released on October 5, 2012 in the United States and Canada by The Weinstein Company. The film is said to be a satire of the 2008 Democratic presidential primary. Butter received mixed reviews from critics who questioned Smith's direction of the film's script in terms of humor and satire and the performances from the ensemble cast."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Best_Man_Holiday"}, "Title": {"type": "literal", "value": "The Best Man Holiday"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Malcolm_D._Lee"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Harold_Perrineau|http://dbpedia.org/resource/Melissa_De_Sousa|http://dbpedia.org/resource/Monica_Calhoun|http://dbpedia.org/resource/Morris_Chestnut|http://dbpedia.org/resource/Nia_Long|http://dbpedia.org/resource/Regina_Hall|http://dbpedia.org/resource/Sanaa_Lathan|http://dbpedia.org/resource/Taye_Diggs|http://dbpedia.org/resource/Terrence_Howard"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Tragicomedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "123"}, "Description": {"type": "literal", "value": "The Best Man Holiday is a 2013 American comedy-drama film written and directed by Malcolm D. Lee. It is the sequel to the 1999 film, The Best Man. The film was released on November 15, 2013 by Universal Pictures. It stars Morris Chestnut, Taye Diggs, Regina Hall, Terrence Howard, Sanaa Lathan, Nia Long, Harold Perrineau, Monica Calhoun, and Melissa De Sousa reprising their roles from the 1999 film along with the supporting cast."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Diary_of_a_Wimpy_Kid_(film)"}, "Title": {"type": "literal", "value": "Diary of a Wimpy Kid"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Thor_Freudenthal"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Rachael_Harris|http://dbpedia.org/resource/Robert_Capron|http://dbpedia.org/resource/Steve_Zahn|http://dbpedia.org/resource/Zachary_Gordon"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Diary of a Wimpy Kid is a 2010 American comedy film directed by Thor Freudenthal and based on Jeff Kinney's book of the same name. The film stars Zachary Gordon and Devon Bostick. Robert Capron, Rachael Harris, Steve Zahn, and Chlo\u00eb Grace Moretz also have prominent roles. It is the first film in the Diary of a Wimpy Kid film series followed by 2011's Diary of a Wimpy Kid: Rodrick Rules, 2012's Diary of a Wimpy Kid: Dog Days and the upcoming Diary of a Wimpy Kid: The Long Haul. The film earned $75.7 million on a $15 million budget. It is the only film in the series to be directed by Thor Freudenthal, who was replaced by David Bowers for the next two installments. The film was theatrically released on March 19, 2010 in the United States by 20th Century Fox."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Legend_of_Michael_Mishra"}, "Title": {"type": "literal", "value": "The Legend of Michael Mishra"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Manish_Jha"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aditi_Rao_Hydari|http://dbpedia.org/resource/Arshad_Warsi|http://dbpedia.org/resource/Boman_Irani|http://dbpedia.org/resource/Gulfam_Khan|http://dbpedia.org/resource/Kayoze_Irani"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Indian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Legend of Michael Mishra is a 2016 Indian Hindi comedy film written and directed by Manish Jha. It is produced by Kishor Arora and Shareen Mantri Kedia of Eyecandy Films. The film stars Arshad Warsi, Aditi Rao Hydari, Boman Irani and Kayoze Irani. It was released on 5 August 2016."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/True_North_trilogy"}, "Title": {"type": "literal", "value": "True North Trilogy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Smith"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014-09-06|2014-09-19|2016-01-24"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101|88"}, "Description": {"type": "literal", "value": "The True North Trilogy is a series of horror comedy films written and directed by Kevin Smith. The trilogy consists of the films Tusk, Yoga Hosers, and Moose Jaws."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Carmina_or_Blow_Up"}, "Title": {"type": "literal", "value": "Carmina or Blow Up"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Paco_Le\u00f3n"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Mar\u00eda_Le\u00f3n_(actress)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Spanish_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "70"}, "Description": {"type": "literal", "value": "Carmina or Blow Up (Spanish:) is a Spanish comedy-drama film, directed and written by Paco Le\u00f3n. The film stars his mother Carmina Barrios (Carmina), his sister, Mar\u00eda Le\u00f3n (Mar\u00eda), Paco Casaus (Antonio Le\u00f3n) and Ana M\u00aa Garc\u00eda (Ani). It is the first Spanish film released in cinemas, online and as a digital copy at the same time."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kamillions"}, "Title": {"type": "literal", "value": "Kamillions"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mike_B._Anderson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Allison_Rachel_Golde|http://dbpedia.org/resource/Andrew_Ross_Litzky|http://dbpedia.org/resource/Christopher_Gasti|http://dbpedia.org/resource/Chuck_Bartelle|http://dbpedia.org/resource/David_Allan_Shaw|http://dbpedia.org/resource/Dru-Anne_Cakmis|http://dbpedia.org/resource/Harry_S._Robins|http://dbpedia.org/resource/Kate_Alexander_(actor)|http://dbpedia.org/resource/Laura_O'Malley"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1980s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films|http://dbpedia.org/resource/Category:Fantasy-comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Kamillions is a 1989 film directed by Mikel B. Anderson from a story by Robert Hsi and a screenplay Anderson wrote in collaboration with Harry S. Robins. The film was re-edited by producer Teresa Woo, who later admitted she did not really understand an English language science fiction comedy, and was expecting more of an action film. The film was shot primarily in the Dunsmuir House and Gardens in Oakland, California."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Ulysses_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Robot_&_Frank"}, "Title": {"type": "literal", "value": "Robot & Frank"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jake_Schreier"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films|http://dbpedia.org/resource/Category:Comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Robot & Frank is a 2012 American science fiction comedy-drama film directed by Jake Schreier and written by Christopher Ford. Set in the near future, it focuses on Frank Weld, an aging jewel thief played by Frank Langella, whose son buys him a domestic robot. Resistant at first, Frank warms up to the robot when he realizes he can use it to restart his career as a cat burglar. It was the first feature film for both Ford and Schreier and received critical acclaim for its writing, production, and acting. It won the Alfred P. Sloan Prize at the 2012 Sundance Film Festival, tying with the Kashmiri film Valley of Saints. The robot was created by Tony Gardner (designer)'s special effects company Alterian, Inc."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Samuel_Goldwyn_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/I_Killed_My_Lesbian_Wife,_Hung_Her_on_a_Meat_Hook,_and_Now_I_Have_a_Three-Picture_Deal_at_Disney"}, "Title": {"type": "literal", "value": "I Killed My Lesbian Wife, Hung Her on a Meat Hook, and Now I Have a Three-Picture Deal at Disney"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Affleck"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "16"}, "Description": {"type": "literal", "value": "I Killed My Lesbian Wife, Hung Her on a Meat Hook, and Now I Have a Three-Picture Deal at Disney is a 1993 short satirical film directed by Ben Affleck from a screenplay by Kamala Lopez and Jay Lacopo. The film is Affleck's first directorial effort."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Everything_You_Want_(film)"}, "Title": {"type": "literal", "value": "Everything You WAnt"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ryan_Little"}, "Author": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Lawrence_King|http://dbpedia.org/resource/Natalie_Prado|http://dbpedia.org/resource/Steven_A._Lee"}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alexandra_Holden|http://dbpedia.org/resource/Nick_Zano|http://dbpedia.org/resource/Orlando_Seale|http://dbpedia.org/resource/Shiri_Appleby|http://dbpedia.org/resource/Will_Friedle"}, "Published": {"type": "literal", "value": "2005-04-17"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Everything You Want is a 2005 romantic-comedy television film on ABC Family starring Shiri Appleby and Nick Zano."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/ABC_Family"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Comment_c'est_loin"}, "Title": {"type": "literal", "value": "Comment c'est loin"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Orelsan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ablaye|http://dbpedia.org/resource/Gringe|http://dbpedia.org/resource/Skread"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Comment c'est loin is a 2015 French quasi-autobiographical comedy film written by French rapper Orelsan and directed by Orelsan and Christophe Offenstein. The film stars Orelsan and fellow French rapper Gringe, both of whom form the rap duo Casseurs Flowters, and is based on their debut studio album Orelsan et Gringe sont les Casseurs Flowters, which was released on 15 November 2013. The film is set over a 24-hour period in the city of Caen, Normandy, and follows Aur\u00e9lien, known as Orel (Orelsan, as he was formerly known), and Guillaume, known as Gringe (himself). They seek to finish recording their first song together at the request of their producers Skread (himself) and Ablaye (himself), but struggle to do so as they wander around the town with friends looking for quick ways to make money and a good time. Comment c'est loin was premiered at the Saint-Jean-de-Luz International Film Festival on October 10, 2015, as well as being shown at the Sarlat Film Festival on November 13, 2015, before being released to the French public on December 9, 2015. The film has received mixed-to-positive reviews from critics, and grossed $1,001,196 in the domestic box office within its first three weeks."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hick_(film)"}, "Title": {"type": "literal", "value": "Hick"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Derick_Martini"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alec_Baldwin|http://dbpedia.org/resource/Blake_Lively|http://dbpedia.org/resource/Chlo\u00eb_Grace_Moretz|http://dbpedia.org/resource/Eddie_Redmayne|http://dbpedia.org/resource/Juliette_Lewis|http://dbpedia.org/resource/Ray_McKinnon_(actor)|http://dbpedia.org/resource/Rory_Culkin"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_sex_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Hick is a 2011 comedy-drama film directed by Derick Martini, based on the novel of the same name by Andrea Portes that draws on non-fictional elements. The film stars Chlo\u00eb Grace Moretz, Eddie Redmayne, Ray McKinnon, Rory Culkin, Juliette Lewis, Blake Lively, and Alec Baldwin. It premiered at the Toronto International Film Festival on September 10, 2011. It had a limited theatrical release on May 11 and is distributed by Phase 4 Films."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Phase_4_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sorority_Boys"}, "Title": {"type": "literal", "value": "Sorority Boys"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Wallace_Wolodarsky"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Barry_Watson_(actor)|http://dbpedia.org/resource/Harland_Williams|http://dbpedia.org/resource/Michael_Rosenbaum"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_sex_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Sorority Boys is a 2002 American comedy film directed by Wallace Wolodarsky, about a group of college guys who dress up as women in order to prove their innocence for a crime they did not commit. The film starred Barry Watson, Michael Rosenbaum and Harland Williams."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bling_Bling_(video)"}, "Title": {"type": "literal", "value": "Bling Bling"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Bobin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Sacha_Baron_Cohen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "142"}, "Description": {"type": "literal", "value": "Bling Bling is a straight-to-video release of clips from the Da Ali G Show, plus unaired segments and an interview with David and Victoria Beckham from a Comic Relief special. It is hosted by Ali G himself."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/2_Entertain"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Come_tu_mi_vuoi"}, "Title": {"type": "literal", "value": "Come tu mi vuoi"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Volfango_De_Biasi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cristiana_Capotondi|http://dbpedia.org/resource/Giulia_Steigerwalt|http://dbpedia.org/resource/Niccol\u00f2_Senni|http://dbpedia.org/resource/Nicolas_Vaporidis"}, "Published": {"type": "literal", "value": "2007-11-09"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Italian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "Come tu mi vuoi is a 2007 Italian comedy film directed by Volfango De Biasi. The stars, Cristiana Capotondi and Nicolas Vaporidis had previously appeared together in the film Notte prima degli esami."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Medusa_Film"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Youth_(2015_film)"}, "Title": {"type": "literal", "value": "Youth"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Paolo_Sorrentino"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Harvey_Keitel|http://dbpedia.org/resource/Jane_Fonda|http://dbpedia.org/resource/Michael_Caine|http://dbpedia.org/resource/Paul_Dano|http://dbpedia.org/resource/Rachel_Weisz"}, "Published": {"type": "literal", "value": "2015-12-04"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:British_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy-drama_films|http://dbpedia.org/resource/Category:Italian_comedy-drama_films|http://dbpedia.org/resource/Category:Swiss_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "124"}, "Description": {"type": "literal", "value": "Youth (Italian: La giovinezza) is a 2015 Italian comedy-drama film written and directed by Paolo Sorrentino. It is the director's second English language film, and stars Michael Caine and Harvey Keitel as best friends who reflect on their lives while holidaying in the Swiss Alps. It is a story of the eternal struggle between age and youth, the past and the future, life and death, commitment and betrayal. The cast also includes Rachel Weisz, Paul Dano, and Jane Fonda. The film premiered at the 2015 Cannes Film Festival, where it competed for the Palme d'Or and had a positive critical response. At the 28th European Film Awards, Youth won Best Film, Best Director for Sorrentino, and Best Actor for Caine. It received one Academy Award nomination: Best Original Song, for David Lang's composition of \"Simple Song #3\". At the Golden Globe Awards, Lang was also nominated along with Jane Fonda for Best Supporting Actress."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Searchlight_Pictures|http://dbpedia.org/resource/Path\u00e9|http://dbpedia.org/resource/StudioCanal_UK"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Canal+|http://dbpedia.org/resource/Film4|http://dbpedia.org/resource/France_T\u00e9l\u00e9visions|http://dbpedia.org/resource/Mediaset_Premium"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Saving_Face_(2004_film)"}, "Title": {"type": "literal", "value": "Saving Face"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alice_Wu"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Joan_Chen|http://dbpedia.org/resource/Lynn_Chen|http://dbpedia.org/resource/Michelle_Krusiec"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Saving Face is a 2004 American romantic comedy drama film directed by Alice Wu. The film focuses on Wilhelmina, a young Chinese-American surgeon; her unwed, pregnant mother; and her dancer girlfriend. The name itself is a reference to the pan-East Asian social concept of face."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sony_Pictures_Classics"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Mexican_Dream"}, "Title": {"type": "literal", "value": "The Mexican Dream"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Gustavo_Hern\u00e1ndez_P\u00e9rez"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "28"}, "Description": {"type": "literal", "value": "The Mexican Dream is a tragic comedy film, written and directed by Gustavo Hern\u00e1ndez P\u00e9rez, inspired by true events. The film stars Jes\u00fas Chuy P\u00e9rez as Ajileo Barajas, an illegal alien who in many ways represents a modern Don Quixote in pursuit of becoming a movie star. A fast paced and fresh film that brings together two worlds and slices into one of this century\u2019s biggest social realities; immigration.The film explores the dreams and delusions, the hopes and desperation of an individual who goes to extremes to give his family a better tomorrow by testing the strength, courage, and passion it takes to follow your dreams."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/HBO"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Yoroi_Samurai_Zombie"}, "Title": {"type": "literal", "value": "Yoroi Samurai Zombie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tak_Sakaguchi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hiromi_Ueda|http://dbpedia.org/resource/Nana_Natsume"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Yoroi Samurai Zombie AKA Samurai Zombie (\u93a7 \u30b5\u30e0\u30e9\u30a4\u30be\u30f3\u30d3 Yoroi: Samurai zonbi) is a 2008 Japanese comic horror film directed by Tak Sakaguchi and written by Ryuhei Kitamura, who had previously collaborated on Versus. A family taken hostage and their kidnappers become prey to an undead samurai in a haunted cemetery."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/GAGA"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bring_It_On_(film_series)"}, "Title": {"type": "literal", "value": "Bring It On (film series)"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bille_Woodruff|http://dbpedia.org/resource/Damon_Santostefano|http://dbpedia.org/resource/Peyton_Reed|http://dbpedia.org/resource/Steve_Rash"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Bring It On is a series cheerleading films. The series began with Bring It On (2000) and was followed by four direct-to-video sequels, none of which contain any of the original film's cast members: Bring It On Again (2004), which shared producers with the original film, Bring It On: All or Nothing (2006), Bring It On: In It to Win It (2007), and Bring It On: Fight to the Finish (2009)."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/O_Concurso"}, "Title": {"type": "literal", "value": "O Concurso"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pedro_Vasconcellos"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Carol_Castro|http://dbpedia.org/resource/Danton_Mello|http://dbpedia.org/resource/F\u00e1bio_Porchat|http://dbpedia.org/resource/Sabrina_Sato"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Brazilian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "O Concurso is a 2013 Brazilian comedy film directed by Pedro Vasconcellos. The film was released in Brazil on July 19, 2013."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Downtown_Filmes"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bin_Phere_Free_Me_Ttere"}, "Title": {"type": "literal", "value": "Bin Phere Free Me Ttere"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Manoj_Sharma"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Manoj_Joshi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Bin Phere Free Me Ttere is a 2013 Hindi comedy film written and directed by Manoj Sharma. The film stars Arsh Deol, Ashrita Agarwal and Manoj Joshi (actor)."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/More_American_Graffiti"}, "Title": {"type": "literal", "value": "More American Graffiti"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bill_L._Norton"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bo_Hopkins|http://dbpedia.org/resource/Candy_Clark|http://dbpedia.org/resource/Charles_Martin_Smith|http://dbpedia.org/resource/Cindy_Williams|http://dbpedia.org/resource/Mackenzie_Phillips|http://dbpedia.org/resource/Paul_Le_Mat|http://dbpedia.org/resource/Ron_Howard"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1970s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "More American Graffiti is a 1979 American comedy-drama film written and directed by Bill L. Norton. It is the sequel to the 1973 film American Graffiti. Whereas the first film followed a group of friends during the summer evening before they set off for college, this film shows where the characters from the first film end up a few years later. Most of the main cast members from the first film returned for the sequel, including Candy Clark, Ron Howard, Paul Le Mat, Cindy Williams, Mackenzie Phillips, Charles Martin Smith, Bo Hopkins, and Harrison Ford. Richard Dreyfuss was the only principal cast member from the original film not to appear in the sequel. It was the final live-action film in which Ron Howard would play a credited, named character."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Golmaal_3"}, "Title": {"type": "literal", "value": "Golmaal 3"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rohit_Shetty"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ajay_Devgan|http://dbpedia.org/resource/Arshad_Warsi|http://dbpedia.org/resource/Kareena_Kapoor|http://dbpedia.org/resource/Kunal_Khemu|http://dbpedia.org/resource/Mithun_Chakraborty|http://dbpedia.org/resource/Ratna_Pathak|http://dbpedia.org/resource/Shreyas_Talpade|http://dbpedia.org/resource/Tusshar_Kapoor"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "155"}, "Description": {"type": "literal", "value": "Golmaal 3 is a 2010 Bollywood action comedy film directed by Rohit Shetty and the sequel to the 2008 film Golmaal Returns and the third film in the Golmaal series. The film stars most of the actors from the previous films, including Ajay Devgan, Kareena Kapoor, Arshad Warsi, Tusshar Kapoor and Shreyas Talpade. New additions to the cast include actors Mithun Chakraborty and Kunal Khemu. Principal photography for the film began in March 2010 in Mumbai, Goa and Hyderabad. It was reportedly inspired by Basu Chatterjee's Khatta Meetha (1978) (which itself was based on the 1968 movie Yours, Mine and Ours ) wherein Ashok Kumar and Pearl Padamsee played an old couple marrying with children from their previous marriages, and film's rights were later bought over. Golmaal 3 was released on 5 November 2010. In 2014, a Telugu feature film Pandavulu Pandavulu Tummada is a remake of Golmaal with top actors like Mohan Babu, Manchu Vishnu, Manchu Manoj, Varun Sandesh, Raveena Tandon."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Eros_International|http://dbpedia.org/resource/New_Line_Cinema|http://dbpedia.org/resource/Shree_Ashtavinayak_Cine_Vision_Ltd|http://dbpedia.org/resource/Universal_Pictures|http://dbpedia.org/resource/Warner_Bros._Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Rice_Rhapsody"}, "Title": {"type": "literal", "value": "Rice Rhapsody"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kenneth_Bi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Craig_Toh|http://dbpedia.org/resource/LePham_Tan|http://dbpedia.org/resource/Martin_Yan|http://dbpedia.org/resource/M\u00e9lanie_Laurent|http://dbpedia.org/resource/Sylvia_Chang"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "Rice Rhapsody (alternative title Hainan Chicken Rice) (Chinese: \u6d77\u5357\u96de\u98ef, literally meaning \"Hainanese chicken rice\") is a 2004 film directed by Kenneth Bi. The cast includes Sylvia Chang and Martin Yan. Jackie Chan was one of the executive producers."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/JCE_Movies_Limited"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Longshots"}, "Title": {"type": "literal", "value": "The Longshots"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Fred_Durst"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dash_Mihok|http://dbpedia.org/resource/Debby_Ryan|http://dbpedia.org/resource/Ice_Cube|http://dbpedia.org/resource/Jill_Marie_Jones|http://dbpedia.org/resource/Keke_Palmer|http://dbpedia.org/resource/Tasha_Smith"}, "Published": {"type": "literal", "value": "2008-08-22"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "The Longshots is a 2008 biopic family comedy-drama film sports movie based on the real life events of Jasmine Plummer, the first female to participate in the Pop Warner football tournament. The film stars Ice Cube and Keke Palmer, their second movie together after Barbershop 2: Back in Business. It is directed by Limp Bizkit frontman Fred Durst."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Dimension_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Summer_of_Flying_Fish"}, "Title": {"type": "literal", "value": "The Summer of Flying Fish"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Marcela_Said"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Chilean_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Summer of Flying Fish (Spanish: El Verano de los Peces Voladores) is a Chilean-French film directed by Marcela Said. The film premiered in the Directors' Fortnight at the 2013 Cannes Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Power_(2014_Telugu_film)"}, "Title": {"type": "literal", "value": "Power"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/K._S._Ravindra"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hansika_Motwani|http://dbpedia.org/resource/Ravi_Teja|http://dbpedia.org/resource/Regina_Cassandra"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "143"}, "Description": {"type": "literal", "value": "Power is a 2014 Telugu action comedy film directed by K. S. Ravindra and produced by Rockline Venkatesh under the banner Rockline Entertainments, both marking their debut in Telugu cinema. It features Ravi Teja playing a dual role with Hansika Motwani and Regina Cassandra playing the female lead roles. S. Thaman composed the music while Gautham Raju edited the film. Arthur A. Wilson and Jayanan Vincent handled the film's cinematography. The film revolves around two similar looking people, Baldev Sahay - a corrupt ACP in Kolkata and Tirupathi - a person aspiring to become a police officer in Hyderabad. The home minister of Kolkata recruits Tirupathi to play as Baldev to catch a gangster rescued by Baldev. Rest of the story is all about why Baldev became a corrupt cop and how Tirupathi executed the unfinished mission of Baldev. Production began on 11 December 2013. The film's talkie part was shot in Hyderabad, Bangalore, Kolkata, Chennai and Bangkok while two songs were shot in Bulgaria marking it the first Telugu film to be shot there. Principal photography ended on 14 August 2014. The film was released on 12 September 2014. This film was remade into Bengali with the same title.The film was dubbed in Hindi as Power Unlimited."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Continent_(film)"}, "Title": {"type": "literal", "value": "The Continent"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Han_Han"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bolin_Chen|http://dbpedia.org/resource/Feng_Shaofeng|http://dbpedia.org/resource/Joe_Chen|http://dbpedia.org/resource/Wallace_Chung|http://dbpedia.org/resource/Wang_Luodan|http://dbpedia.org/resource/Yuan_Quan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Chinese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "The Continent (Chinese: \u540e\u4f1a\u65e0\u671f) is a 2014 Chinese road trip comedy film directed and written by Han Han. The film was released on July 24, 2014. This movie was produced by Beijing Lorry Limited, Hangzhou Guomai Media Limited, and Bona Film Group Limited. Han Han, the famous youth author in China mainland, is this movie\u2019s screenwriter and director. Bolin Chen and William Feng are the leading roles. This movie is talking about several young men who lived in an island which is located in East Sea have planned a journey to across the China mainland, and the experiences they have gone through finally decided the ends of their destinies. The filming process was started on February 14, 2014. The movie team had found views from five places, which were Shanghai, Xichang, Chifeng, Mount Putuo in Zhoushan, and Dongji Island. It was finished on May 26, 2014. One of the leading roles, William Feng, was injured when the filming process was nearly finished. On July 24, 2014, the movie was shown in China mainland."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Prime_(film)"}, "Title": {"type": "literal", "value": "Prime"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Younger"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bryan_Greenberg|http://dbpedia.org/resource/Meryl_Streep|http://dbpedia.org/resource/Uma_Thurman"}, "Published": {"type": "literal", "value": "2005-09-21|2005-10-28"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Prime is a 2005 American romantic comedy film starring Uma Thurman, Meryl Streep and Bryan Greenberg. It was written and directed by Ben Younger. The film grossed $67,937,503 worldwide."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Evil_Aliens"}, "Title": {"type": "literal", "value": "Evil Aliens"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jake_West"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Christopher_Adamson_(actor)|http://dbpedia.org/resource/Emily_Booth_(actress)|http://dbpedia.org/resource/Norman_Lovett"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:British_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Evil Aliens is a British slapstick horror-comedy film directed by Jake West, in the tradition of films such as Braindead, House, and Evil Dead. It was the first full-length British horror film to be filmed using Sony HD (High Definition) cameras, and contains almost 140 digital effects shots and a huge amount of gory conventional special effects."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/ContentFilm"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/She's_Dating_the_Gangster"}, "Title": {"type": "literal", "value": "She's Dating the Gangster"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Cathy_Garcia-Molina"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Daniel_Padilla|http://dbpedia.org/resource/Kathryn_Bernardo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Philippine_comedy-drama_films|http://dbpedia.org/resource/Category:Philippine_romantic_comedy_films|http://dbpedia.org/resource/Category:Philippine_tragicomedy_films|http://dbpedia.org/resource/Category:Star_Cinema_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "113"}, "Description": {"type": "literal", "value": "She's Dating the Gangster is a 2014 Filipino teen romantic comedy-drama film based on the best Pop Fiction book of the same name originally published on CandyMag.com's Teen Talk section and it was popularized on Wattpad by Bianca Bernardino (pen name: SGwannaB). The film is directed by Cathy Garcia-Molina, starring Kathryn Bernardo and Daniel Padilla. It was distributed by Star Cinema with co-production of Summit Media and was released on July 16, 2014 in theatres nationwide as part of its 20th anniversary presentation."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Star_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Girl_Next_Door_(2004_film)"}, "Title": {"type": "literal", "value": "The Girl Next Door"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Luke_Greenfield"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Marquette|http://dbpedia.org/resource/Elisha_Cuthbert|http://dbpedia.org/resource/Emile_Hirsch|http://dbpedia.org/resource/James_Remar|http://dbpedia.org/resource/Olivia_Wilde|http://dbpedia.org/resource/Paul_Dano|http://dbpedia.org/resource/Timothy_Olyphant"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "The Girl Next Door is a 2004 American romantic comedy film about a high school senior who falls in love for the first time with the girl next door, but finds the situation becoming complicated after he learns that she is a former pornographic actress. It stars Emile Hirsch, Elisha Cuthbert, Timothy Olyphant, James Remar, Chris Marquette and Paul Dano and is directed by Luke Greenfield."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Na_Maloom_Afraad"}, "Title": {"type": "literal", "value": "Na Maloom Afraad"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nabeel_Qureshi_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amanullah_Khan_(comedian)|http://dbpedia.org/resource/Fahad_Mustafa|http://dbpedia.org/resource/Irfan_Motiwala|http://dbpedia.org/resource/Javed_Sheikh|http://dbpedia.org/resource/Kubra_Khan|http://dbpedia.org/resource/Mohsin_Abbas_Haider|http://dbpedia.org/resource/Saleem_Mairaj|http://dbpedia.org/resource/Salman_Shahid|http://dbpedia.org/resource/Urwa_Hocane|http://dbpedia.org/resource/Zaheen_Tahira"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Criminal_comedy_films|http://dbpedia.org/resource/Category:Pakistani_comedy_films|http://dbpedia.org/resource/Category:Pakistani_comedy_thriller_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "137"}, "Description": {"type": "literal", "value": "Na Maloom Afraad (Urdu: \u0646\u0627 \u0645\u0639\u0644\u0648\u0645 \u0627\u0641\u0631\u0627\u062f\u200e; meaning Unidentified Persons), is a 2014 Pakistani comedy thriller film co-written and directed by Nabeel Qureshi as his directorial debut. It stars Javed Sheikh, Fahad Mustafa, Mohsin Abbas Haider with supporting cast of Urwa Hocane, Kubra Khan and Salman Shahid. The story follows Shakeel (Sheikh), Farhaan (Mustafa) and Moon (Haider), three poor struggling individuals who chase every possible means of becoming rich, all getting into trouble as they struggle to fulfill their desires and ambitions through questionably moral ways. Most of the Na Maloom Afrad shots were filmed in real locations of Saddar Town, maintaining the authenticity of scenes and staying true to actual content; many elements of post-production required consideration before principal photography. The script was written years before the shooting, the cast went through meticulous rehearsals, and it became the one of few films that is developed completely in Pakistan. The film was shot in Karachi during the January of 2014 with a budget of \u20a89 crore (US$880,000) jointly franchised by Hum Films, Filmwala Pictures and Eveready Pictures. It premiered the following year in November where it closed the South Asian International Film Festival 2014. Na Maloom Afraad had a wide theatrical release in Pakistan on October 6, 2014 at Eid al-adha, followed by a release in UK on May 22, 2015  which has grossed \u20a814.0 crore (US$1.4 million) worldwide. The film garnered wide critical praise. At 3rd Hum Awards film was awarded Hum Honorary Special Recognition Award to Nabeel and Fizza. The film became the most nominated film of the Lux's 14th annual awards ceremony in film section with total of seven nominations in four categories, ultimately winning Best Film for Fizza, Best Director for Nabeel and Best Actor for Javed. It became first Pakistani film since 2007 to make a milestone of longest running film for 165 days (22 weeks) breaking the record of Waar who previously held for 163 days."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Hum_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/200_Pounds_Beauty"}, "Title": {"type": "literal", "value": "200 Pounds Beauty"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kim_Yong-hwa"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Joo_Jin-mo|http://dbpedia.org/resource/Kim_Ah-joong"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "200 Pounds Beauty (Hangul: \ubbf8\ub140\ub294 \uad34\ub85c\uc6cc; RR: Minyeoneun Goerowo; lit. \"It's hard to be a beautiful woman\") is a 2006 South Korean romantic comedy musical film written and directed by Kim Yong-hwa. It is based on the Japanese manga Kanna's Big Success! (\u30ab\u30f3\u30ca\u3055\u3093\u5927\u6210\u529f\u3067\u3059! Kanna-san Daiseikou Desu!) by Yumiko Suzuki about an overweight ghost singer who undergoes intensive plastic surgery to become a pop sensation. The film was a critical and commercial success. It was the third best-selling domestic film of 2009 with 6,619,498 admissions nationwide, grossing US$42,013,016. 200 Pounds Beauty also received several awards and nominations, including Best Actress for Kim Ah-joong at the 2007 Grand Bell Awards."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Showbox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tout_ce_qui_brille"}, "Title": {"type": "literal", "value": "Tout ce qui brille"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/G\u00e9raldine_Nakache|http://dbpedia.org/resource/Herv\u00e9_Mimran"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Audrey_Lamy|http://dbpedia.org/resource/G\u00e9raldine_Nakache|http://dbpedia.org/resource/Le\u00efla_Bekhti|http://dbpedia.org/resource/Virginie_Ledoyen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Tout ce qui brille is a 2010 French film and the debut feature film for G\u00e9raldine Nakache and Herv\u00e9 Mimran, who co-wrote and co-directed the film. It was filmed in Puteaux, La D\u00e9fense, and Paris, notably the 16th arrondissement. Originally, Tout ce qui brille was a 2007 short film shot by the same directors."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Path\u00e9"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Free_the_Nipple_(film)"}, "Title": {"type": "literal", "value": "Free The Nipple"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lina_Esco"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Free the Nipple is a 2014 American comedy-drama independent film directed by Lina Esco and written by Hunter Richards. Lina Esco started the \"Free the Nipple\" campaign after it was nearly impossible to release the film. The campaign addresses societal taboos about public exposure of female breasts; Esco created this film to draw public attention to the issue of gender equality and encourage discussion over America's glorification of violence and repression of sexuality. The Free the Nipple campaign supports feminine body equality and empowerment through social action while working to defeat female body oppression and archaic censorship laws. The film stars Casey LaBow, Monique Coleman, Zach Grenier, Lina Esco, Griffin Newman and Lola Kirke. When in post-production during February 2014, the film was picked up for distribution by Paris-based WTFilms."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kedi_Billa_Killadi_Ranga"}, "Title": {"type": "literal", "value": "Kedi Billa Killadi Ranga"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pandiraj"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bindu_Madhavi|http://dbpedia.org/resource/Regina_Cassandra|http://dbpedia.org/resource/Sivakarthikeyan|http://dbpedia.org/resource/Vimal"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "132"}, "Description": {"type": "literal", "value": "Kedi Billa Killadi Ranga is a 2013 Tamil coming-of-age comedy film written, directed and co-produced by Pandiraj. It features Vimal and Sivakarthikeyan in lead roles, alongside Bindu Madhavi and Regina Cassandra. Yuvan Shankar Raja composed the soundtrack. The film released on 29 March 2013 and received very high positive responses from critics as well as audiences. It successfully completed 100 days in many theatres in Tamil Nadu. The film was remade in Kannada as Katte with Nagashekhar and Chandan."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Studio_Green"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Next_Day_Air"}, "Title": {"type": "literal", "value": "Next Day Air"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Benny_Boom"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Darius_McCrary|http://dbpedia.org/resource/Donald_Faison|http://dbpedia.org/resource/Mike_Epps|http://dbpedia.org/resource/Mos_Def|http://dbpedia.org/resource/Omari_Hardwick|http://dbpedia.org/resource/Wood_Harris|http://dbpedia.org/resource/Yasmin_Deliz"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "Next Day Air is a 2009 American action comedy film that was released by Summit Entertainment on May 8, 2009. The film starring Donald Faison and Mike Epps was produced on an estimated budget of $3 million. Two criminals accidentally accept a package of cocaine which they must sell before the real owner finds it missing."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Summit_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/1987_(film)"}, "Title": {"type": "literal", "value": "1987"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ricardo_Trogi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jean-Carl_Boucher|http://dbpedia.org/resource/Sandrine_Bisson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Canadian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "1987 is a Canadian film, directed by Ricardo Trogi and released in 2014. It's the sequel to 2009's 1981."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/La_La_Land_(film)"}, "Title": {"type": "literal", "value": "La La Land"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Damien_Chazelle"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Emma_Stone|http://dbpedia.org/resource/Finn_Wittrock|http://dbpedia.org/resource/J._K._Simmons|http://dbpedia.org/resource/Meagen_Fay|http://dbpedia.org/resource/Rosemarie_DeWitt|http://dbpedia.org/resource/Ryan_Gosling|http://dbpedia.org/resource/Tom_Everett_Scott"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_musical_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_musical_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "128"}, "Description": {"type": "literal", "value": "La La Land is a 2016 American romantic musical comedy-drama film written and directed by Damien Chazelle, and starring Ryan Gosling, Emma Stone, J. K. Simmons, Finn Wittrock, Tom Everett Scott, Rosemarie DeWitt, and Meagen Fay. The plot follows a musician and aspiring actress who meet and fall in love in Los Angeles. The film also features Gosling and Stone's third roles as lovers, after Crazy, Stupid, Love and Gangster Squad. The film's title is a reference to both a nickname for the city of Los Angeles as well as a euphemism for a state of being out of touch with reality. La La Land had its world premiere at the Venice Film Festival on August 31, 2016 before being set for release in the United States on December 9, 2016 by Summit Entertainment."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/You_Are_the_Apple_of_My_Eye"}, "Title": {"type": "literal", "value": "You Are the Apple of My Eye"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Giddens_Ko"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ko_Chen-tung|http://dbpedia.org/resource/Michelle_Chen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Chinese_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "You Are the Apple of My Eye (Chinese: \u90a3\u4e9b\u5e74\uff0c\u6211\u5011\u4e00\u8d77\u8ffd\u7684\u5973\u5b69, literally \"Those Years, The Girl We Went After Together\") is a 2011 Taiwanese Romance film. It is based on the semi-autobiographical novel of the same name by Taiwanese author Giddens Ko, who also made his directorial debut with the film. The film stars Ko Chen-tung as Ko Ching-teng, a prankster and a mischievous student who eventually becomes a writer. Michelle Chen stars as Shen Chia-yi, an honor student who is very popular amongst the boys in her class. You Are the Apple of My Eye was filmed almost entirely on location in Changhua County, including at the high school which Giddens attended. The lyrics of \"Those Years\", the film's main theme, were written by Giddens. The song, which was well received by the public, was nominated for Best Original Film Song at the 48th Golden Horse Awards. The film's world premiere was at the 13th Taipei Film Festival on 25 June 2011, and it was subsequently released in Taiwanese cinemas on 19 August. Well received by film critics, the movie set box-office records in Taiwan, Hong Kong, and Singapore. Ko Chen-tung won the Best Newcomer award at the Golden Horse Awards for his role in the film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Doghouse_(film)"}, "Title": {"type": "literal", "value": "Doghouse"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jake_West"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Danny_Dyer|http://dbpedia.org/resource/Noel_Clarke|http://dbpedia.org/resource/Stephen_Graham_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:British_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Doghouse  is a 2009 British slapstick comedy horror splatter film. A group of male friends travel to a remote village in England for a 'boys' weekend'. Upon their arrival, they find out that all the women in the town have been transformed into ravenous man-eaters \u2014 literally."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sony_Pictures_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Alvin_and_the_Chipmunks:_Chipwrecked"}, "Title": {"type": "literal", "value": "Alvin and the Chipmunks: Chipwrecked"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mike_Mitchell_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alan_Tudyk|http://dbpedia.org/resource/Amy_Poehler|http://dbpedia.org/resource/Anna_Faris|http://dbpedia.org/resource/Christina_Applegate|http://dbpedia.org/resource/David_Cross|http://dbpedia.org/resource/Jason_Lee_(actor)|http://dbpedia.org/resource/Jenny_Slate|http://dbpedia.org/resource/Jesse_McCartney|http://dbpedia.org/resource/Justin_Long|http://dbpedia.org/resource/Matthew_Gray_Gubler"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "Alvin and the Chipmunks: Chipwrecked is a 2011 American live-action musical comedy film directed by Mike Mitchell. It is the third installment in the Alvin and the Chipmunks film series following the 2009 film Alvin and the Chipmunks: The Squeakquel, which was a sequel to the 2007 film Alvin and the Chipmunks. The film stars Jason Lee, David Cross and Jenny Slate with the voices of Justin Long, Matthew Gray Gubler, Jesse McCartney, Amy Poehler, Anna Faris and Christina Applegate. It was distributed by 20th Century Fox and produced by Fox 2000 Pictures, Regency Enterprises and Bagdasarian Company. The film was released on December 16, 2011. A fourth film, Alvin and the Chipmunks: The Road Chip, was released on December 18, 2015."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bhale_Bhale_Magadivoy"}, "Title": {"type": "literal", "value": "Bhale Bhale Magadivoy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Maruthi_Dasari"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Lavanya_Tripathi|http://dbpedia.org/resource/Murali_Sharma|http://dbpedia.org/resource/Nani_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "145"}, "Description": {"type": "literal", "value": "Bhale Bhale Magadivoy (English: You are an interesting man) is a 2015 Indian Telugu-language romantic comedy film written and directed by Maruthi Dasari. Jointly produced by Bunny Vasu, V. Vamsi Krishna Reddy, and Pramod Uppalapati under their production companies GA2 Pictures and UV Creations, Bhale Bhale Magadivoy features Nani and Lavanya Tripathi in the lead roles, and Murli Sharma, Ajay, Naresh, Sithara, and Vennela Kishore in supporting roles. The film revolves around Lucky, an absent-minded plant scientist and his efforts to hide his inherent memory-related flaws from Nandana, a benevolent kuchipudi dancer with whom he is in a relationship. The title Bhale Bhale Magadivoy was borrowed from a song of the same name composed by M. S. Viswanathan for K. Balachander's 1978 Telugu film Maro Charitra. Gopi Sunder composed the film's soundtrack and background score. Production commenced in March 2013, and the film's principal photography was completed in July 2015. Including post-production tasks, the film was completed in seven months. Though mostly shot in and around Hyderabad, one of the songs was filmed in Goa. Produced on a budget of around \u20b970\u201490 million, Bhale Bhale Magadivoy was released on 4 September 2015 in 700 screens across the globe. It received positive reviews from critics and was a box office success, grossing over \u20b9550 million globally in its full run. It also became the fourth-highest grossing Telugu film of all time at the United States box office, where it was released in 115 screens. The production of the film's Kannada remake, Sundaranga Jaana, commenced in February 2016."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Norwegian_Ninja"}, "Title": {"type": "literal", "value": "Norwegian Ninja"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Thomas_Cappelen_Malling"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amund_Maarud|http://dbpedia.org/resource/Henrik_Horge|http://dbpedia.org/resource/Jon_\u00d8igarden|http://dbpedia.org/resource/Linn_Stokke|http://dbpedia.org/resource/Mads_Ousdal"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Action_comedy_films|http://dbpedia.org/resource/Category:Spy_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "77"}, "Description": {"type": "literal", "value": "Norwegian Ninja (Norwegian: Kommand\u00f8r Treholt & ninjatroppen) is a 2010 Norwegian action comedy film, directed by Thomas Cappelen Malling. The film, based on a 2006 book, presents real-life espionage-convicted Arne Treholt as the leader of a ninja group saving Norway during the Cold War and stars Mads Ousdal as Treholt. The film is loosely based on the story of Norwegian politician and diplomat Arne Treholt, who in 1985 was convicted of high treason and espionage on behalf of the Soviet Union and Iraq. In 2006, Thomas Cappelen Malling wrote the book Ninjateknikk II. Usynlighet i strid 1978 (\"Ninja Technique II: Invisibility in combat 1978\"). The book was presented as a military manual written by Treholt in 1978. It achieved a certain cult status, and was considered a success at 5,000 units sold."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Euforia_Film"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Don't_Think_Twice_(film)"}, "Title": {"type": "literal", "value": "Don't Think Twice"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mike_Birbiglia"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Gethard|http://dbpedia.org/resource/Gillian_Jacobs|http://dbpedia.org/resource/Kate_Micucci|http://dbpedia.org/resource/Keegan-Michael_Key|http://dbpedia.org/resource/Tami_Sagher"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Don't Think Twice is a 2016 American dramedy film written and directed by Mike Birbiglia and stars Birbiglia, Keegan-Michael Key, Gillian Jacobs, Kate Micucci, Tami Sagher and Chris Gethard. The film had its world premiere at South by Southwest on March 13, 2016 and was released on July 22, 2016, by The Film Arcade."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/The_Film_Arcade"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/You_Changed_My_Life"}, "Title": {"type": "literal", "value": "You Changed My Life"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Cathy_Garcia-Molina"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/John_Lloyd_Cruz|http://dbpedia.org/resource/Sarah_Geronimo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "You Changed My Life is a 2009 Filipino romantic comedy film directed by Cathy Garcia-Molina and starring John Lloyd Cruz and Sarah Geronimo. It is the sequel to the 2008 film A Very Special Love. It received an \u201cA\u201d rating from the Cinema Evaluation Board of the Philippines. Filming began in November 2008, and it was released on February 25, 2009, by Star Cinema and Viva Films. The film surpassed Sukob to become the highest grossing Filipino film at the time until it was surpassed by No Other Woman (2011). More newer films surpassed the movie in recent years. It is currently the twenty-first highest grossing Filipino film of all time. The film was followed by a second sequel, It Takes a Man and a Woman, released on March 30, 2013."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Star_Cinema|http://dbpedia.org/resource/Viva_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Shall_We_Kiss%3F"}, "Title": {"type": "literal", "value": "Shall We Kiss?"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Emmanuel_Mouret"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Emmanuel_Mouret|http://dbpedia.org/resource/Julie_Gayet|http://dbpedia.org/resource/Virginie_Ledoyen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "Shall We Kiss? (French title: Un baiser s'il vous pla\u00eet) is a 2007 French romantic comedy film directed by Emmanuel Mouret and starring Virginie Ledoyen, Mouret, Julie Gayet, Micha\u00ebl Cohen, Fr\u00e9d\u00e9rique Bel and Stefano Accorsi."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sgt._Kabukiman_N.Y.P.D."}, "Title": {"type": "literal", "value": "Sgt. Kabukiman N.Y.P.D."}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lloyd_Kaufman|http://dbpedia.org/resource/Michael_Herz_(producer)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Action_comedy_films|http://dbpedia.org/resource/Category:Police_comedy_films|http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Sgt. Kabukiman N.Y.P.D. is a 1990 comedic superhero film directed by Lloyd Kaufman and Michael Herz and distributed by Troma Entertainment."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Troma_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Something_Borrowed_(film)"}, "Title": {"type": "literal", "value": "Something Borrowed"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Luke_Greenfield"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ashley_Williams_(actress)|http://dbpedia.org/resource/Colin_Egglesfield|http://dbpedia.org/resource/Ginnifer_Goodwin|http://dbpedia.org/resource/John_Krasinski|http://dbpedia.org/resource/Kate_Hudson|http://dbpedia.org/resource/Steve_Howey_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "Something Borrowed is a 2011 American romantic comedy film based on Emily Giffin's book of the same name, directed by Luke Greenfield, starring Ginnifer Goodwin, Kate Hudson, Colin Egglesfield, and John Krasinski and was distributed by Warner Bros."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Paul_Blart:_Mall_Cop_2"}, "Title": {"type": "literal", "value": "Paul Blart: Mall Cop 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Fickman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Daniella_Alonso|http://dbpedia.org/resource/David_Henrie|http://dbpedia.org/resource/Loni_Love|http://dbpedia.org/resource/Neal_McDonough|http://dbpedia.org/resource/Raini_Rodriguez"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Paul Blart: Mall Cop 2 is a 2015 American comedy film directed by Andy Fickman and distributed by Columbia Pictures. It is the sequel to Paul Blart: Mall Cop released in 2009 and was written by Kevin James and Nick Bakay. The film stars James as the eponymous mall cop Paul Blart, along with Neal McDonough, Daniella Alonso, David Henrie, Raini Rodriguez, and Vic Dibitetto. Filming began in April 2014 at Wynn Las Vegas casino resort. It was released the following year on April 17, 2015. Paul Blart: Mall Cop 2 is the first film shot on the Steve Wynn property. It is also the first film to receive Nevada's film tax credit enacted in 2013. The film grossed $107 million worldwide at the box office and was thoroughly panned by critics."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Landline_(film)"}, "Title": {"type": "literal", "value": "Landline"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Gillian_Robespierre"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Edie_Falco|http://dbpedia.org/resource/Finn_Wittrock|http://dbpedia.org/resource/Jay_Duplass|http://dbpedia.org/resource/Jenny_Slate|http://dbpedia.org/resource/John_Turturro"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Landline is an upcoming American comedy film directed by Gillian Robespierre and written by Robespierre and Elisabeth Holm. The film stars Jenny Slate, Edie Falco, Abby Quinn, John Turturro, Jay Duplass, and Finn Wittrock."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Escort_in_Love"}, "Title": {"type": "literal", "value": "Escort in Love"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Massimiliano_Bruno"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Paola_Cortellesi|http://dbpedia.org/resource/Raoul_Bova"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Italian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Escort in Love (Italian: Nessuno mi pu\u00f2 giudicare, \"Nobody can judge me\") is a 2011 Italian comedy film directed by Massimiliano Bruno. Paola Cortellesi won the 2011 David di Donatello for Best Actress for her performance as Alice."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/01_Distribution"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Goon:_Last_of_the_Enforcers"}, "Title": {"type": "literal", "value": "Goon: Last of the Enforcers"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jay_Baruchel"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alison_Pill|http://dbpedia.org/resource/Elisha_Cuthbert|http://dbpedia.org/resource/Jay_Baruchel|http://dbpedia.org/resource/Kim_Coates|http://dbpedia.org/resource/Liev_Schreiber|http://dbpedia.org/resource/Marc-Andr\u00e9_Grondin|http://dbpedia.org/resource/Seann_William_Scott|http://dbpedia.org/resource/Wyatt_Russell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_sports_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy-drama_films|http://dbpedia.org/resource/Category:Canadian_comedy_films|http://dbpedia.org/resource/Category:Sports_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Goon: Last of the Enforcers is an upcoming Canadian-American sports comedy film written by Jay Baruchel and Jesse Chabot as a sequel to the 2011 film Goon. The film was directed by Baruchel in his directorial debut and stars Elisha Cuthbert, Seann William Scott, Baruchel, Liev Schreiber, Alison Pill, Wyatt Russell, Marc-Andr\u00e9 Grondin and Kim Coates. Principal photography began in Toronto on June 22, 2015."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Listen_Up_Philip"}, "Title": {"type": "literal", "value": "Listen Up Philip"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alex_Ross_Perry"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Elisabeth_Moss|http://dbpedia.org/resource/Jason_Schwartzman|http://dbpedia.org/resource/Jonathan_Pryce|http://dbpedia.org/resource/Jos\u00e9phine_de_La_Baume|http://dbpedia.org/resource/Krysten_Ritter"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "Listen Up Philip is a 2014 American comedy-drama film written and directed by Alex Ross Perry. The film had its world premiere at 2014 Sundance Film Festival on January 20, 2014."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/All_in_All_Azhagu_Raja"}, "Title": {"type": "literal", "value": "All in All Azhagu Raja"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/M._Rajesh"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kajal_Aggarwal|http://dbpedia.org/resource/Karthi|http://dbpedia.org/resource/Prabhu_(actor)|http://dbpedia.org/resource/Radhika_Apte|http://dbpedia.org/resource/Santhanam_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "162"}, "Description": {"type": "literal", "value": "All in All Azhagu Raja (2013) is a Tamil romantic comedy film written and directed by M. Rajesh. It featured Karthi, Prabhu, Kajal Aggarwal and Santhanam. The film was released on 2 November 2013 and received negative reviews and became a flop at boxoffice."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lapland_Odyssey"}, "Title": {"type": "literal", "value": "Lapland Odyssey"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dome_Karukoski"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jasper_P\u00e4\u00e4kk\u00f6nen|http://dbpedia.org/resource/Jussi_Vatanen|http://dbpedia.org/resource/Kari_Ketonen|http://dbpedia.org/resource/Miia_Nuutila|http://dbpedia.org/resource/Pamela_Tola|http://dbpedia.org/resource/Timo_Lavikainen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Lapland Odyssey (Finnish: Napapiirin sankarit) is a 2010 Finnish comedy film directed by Dome Karukoski. The film stars Jussi Vatanen, Jasper P\u00e4\u00e4kk\u00f6nen, Timo Lavikainen, Pamela Tola, Kari Ketonen and Miia Nuutila."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bandidas"}, "Title": {"type": "literal", "value": "Bandidas"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Espen_Sandberg|http://dbpedia.org/resource/Joachim_R\u00f8nning"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dwight_Yoakam|http://dbpedia.org/resource/Ismael_'East'_Carlo|http://dbpedia.org/resource/Pen\u00e9lope_Cruz|http://dbpedia.org/resource/Salma_Hayek|http://dbpedia.org/resource/Sam_Shepard|http://dbpedia.org/resource/Steve_Zahn"}, "Published": {"type": "literal", "value": "2006-02-03"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Western_(genre)_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Bandidas is a 2006 French-Mexican-American Western action comedy film starring Salma Hayek and Pen\u00e9lope Cruz directed by Norwegian directors Joachim R\u00f8nning and Espen Sandberg and produced and written by Luc Besson. It tells the tale of two very different women in mid-19th century Mexico who become a bank robbing duo in an effort to combat a ruthless enforcer terrorising their town. This is the first movie that Cruz and Hayek starred in together. It was a co-production among France, the United States and Mexico."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Rubber_(2010_film)"}, "Title": {"type": "literal", "value": "Rubber"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mr._Oizo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ethan_Cohn|http://dbpedia.org/resource/Haley_Ramm|http://dbpedia.org/resource/Jack_Plotnick|http://dbpedia.org/resource/Roxane_Mesquida|http://dbpedia.org/resource/Stephen_Spinella|http://dbpedia.org/resource/Wings_Hauser"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:Black_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "Rubber is a 2010 English-language French independent dark comedy horror film about a tire that comes to life and kills people with its psychic powers. It was directed and written by Quentin Dupieux. The producers of the film were Gregory BernardJulien Berlan and Kevos Van Der Meiren. The film was shown at the Cannes Film Festival in 2010. The film received positive reviews from critics."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Magnet_Releasing"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Another_Happy_Day"}, "Title": {"type": "literal", "value": "Another Happy Day"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sam_Levinson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Demi_Moore|http://dbpedia.org/resource/Diana_Scarwid|http://dbpedia.org/resource/Ellen_Barkin|http://dbpedia.org/resource/Ellen_Burstyn|http://dbpedia.org/resource/Ezra_Miller|http://dbpedia.org/resource/George_Kennedy|http://dbpedia.org/resource/Jeffrey_DeMunn|http://dbpedia.org/resource/Kate_Bosworth|http://dbpedia.org/resource/Michael_Nardelli|http://dbpedia.org/resource/Siobhan_Fallon_Hogan|http://dbpedia.org/resource/Thomas_Haden_Church"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "119"}, "Description": {"type": "literal", "value": "Another Happy Day is a 2011 American black comedy-drama film written and directed by Sam Levinson. The film stars an ensemble cast including Ellen Barkin, Kate Bosworth, Ellen Burstyn, Thomas Haden Church, George Kennedy, Ezra Miller, Demi Moore, Siobhan Fallon Hogan, Michael Nardelli, Jeffrey DeMunn, and Diana Scarwid."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Phase_4_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ant_Story"}, "Title": {"type": "literal", "value": "Ant Story"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mostofa_Sarwar_Farooki"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Noor_Imran|http://dbpedia.org/resource/Sheena_Chohan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Bangladeshi_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Ant Story (Bengali: \u09aa\u09bf\u09aa\u09a1\u09bc\u09be\u09ac\u09bf\u09a6\u09cd\u09af\u09be) is a 2013 Bangladeshi drama film directed by Mostofa Sarwar Farooki and starring Sheena Chohan, Noor Imran Mitu and others."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Holyman_Undercover"}, "Title": {"type": "literal", "value": "Holyman Undercover"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_A._R._White"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/David_A._R._White|http://dbpedia.org/resource/Edie_McClurg|http://dbpedia.org/resource/Fred_Willard|http://dbpedia.org/resource/John_Schneider_(screen_actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Holyman Undercover is a 2010 Christian comedy film directed by David A. R. White. The film was featured at the Greater Boston Christian Film Festival, and stars David A. R. White, Fred Willard, Jennifer Lyons, John Schneider, Staci Keanan, Clint Howard, Gregg Binkley, among others."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Pure_Flix_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sequoia_(2014_film)"}, "Title": {"type": "literal", "value": "Sequoia"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Landen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aly_Michalka|http://dbpedia.org/resource/Dustin_Milligan|http://dbpedia.org/resource/Joey_Lauren_Adams|http://dbpedia.org/resource/Lou_Diamond_Phillips"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Sequoia is a 2014 American comedy film directed by Andy Landen and written by Andrew Rothschild. The film stars Aly Michalka, Dustin Milligan, Joey Lauren Adams, Lou Diamond Phillips, Corbin Frost and Sophi Bairley. The film was released on August 25, 2015, by The Orchard."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/The_Orchard_(company)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mallrats"}, "Title": {"type": "literal", "value": "Mallrats"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Smith"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Claire_Forlani|http://dbpedia.org/resource/Jason_Lee_(actor)|http://dbpedia.org/resource/Jeremy_London|http://dbpedia.org/resource/Michael_Rooker|http://dbpedia.org/resource/Priscilla_Barnes|http://dbpedia.org/resource/Shannen_Doherty"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Mallrats is a 1995 American romantic comedy film written and directed by Kevin Smith. It is the second film in the View Askewniverse series and prequel to 1994's Clerks. As in the other View Askewniverse films, the characters Jay and Silent Bob feature prominently, and characters and events from other films are discussed. Several cast members, including Jason Lee, Ben Affleck, and Joey Lauren Adams, have gone on to work in several other Smith films. Comic book icon Stan Lee appeared, as did Brian O'Halloran, the star of Smith's breakout feature Clerks. Plans for a sequel, MallBrats, were announced in March 2015. In June 2016, Smith announced that the sequel would instead be a 10-episode TV series."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Gramercy_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lost_in_Hong_Kong"}, "Title": {"type": "literal", "value": "Lost in Hong Kong"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Xu_Zheng_(actor)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bao_Bei'er|http://dbpedia.org/resource/Du_Juan|http://dbpedia.org/resource/Xu_Zheng_(actor)|http://dbpedia.org/resource/Zhao_Wei"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Chinese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "Lost in Hong Kong is a 2015 Chinese comedy film directed, co-written and co-produced by Xu Zheng, starring himself along with Bao Bei'er, Zhao Wei, and Du Juan. This is Xu's second directorial feature, after the huge domestic hit Lost in Thailand (2012) which grossed over US$208 million. It was released in China on September 25, 2015 and broke several box office records there. It was released in Hong Kong on November 19."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Grimsby_(film)"}, "Title": {"type": "literal", "value": "Grimsby"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Louis_Leterrier"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gabourey_Sidibe|http://dbpedia.org/resource/Isla_Fisher|http://dbpedia.org/resource/Mark_Strong|http://dbpedia.org/resource/Pen\u00e9lope_Cruz|http://dbpedia.org/resource/Rebel_Wilson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_action_comedy_films|http://dbpedia.org/resource/Category:British_sports_comedy_films|http://dbpedia.org/resource/Category:Sports_comedy_films|http://dbpedia.org/resource/Category:Spy_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "Grimsby (released in the United States as The Brothers Grimsby) is a 2016 British-American action comedy film directed by Louis Leterrier and written by Sacha Baron Cohen, Phil Johnston, and Peter Baynham. The film stars Baron Cohen, Mark Strong, Rebel Wilson, Isla Fisher, Annabelle Wallis, Gabourey Sidibe, Pen\u00e9lope Cruz, and Ian McShane. It was released by Columbia Pictures on 24 February 2016 in the United Kingdom and 11 March 2016 in the United States."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Big_Talk_Productions|http://dbpedia.org/resource/Village_Roadshow_Pictures|http://dbpedia.org/resource/Working_Title_Films"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tiny_Furniture"}, "Title": {"type": "literal", "value": "Tiny Furniture"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lena_Dunham"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alex_Karpovsky|http://dbpedia.org/resource/Amy_Seimetz|http://dbpedia.org/resource/David_Call|http://dbpedia.org/resource/Grace_Dunham|http://dbpedia.org/resource/Jemima_Kirke|http://dbpedia.org/resource/Laurie_Simmons|http://dbpedia.org/resource/Merritt_Wever"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Tiny Furniture is a 2010 American independent comedy-drama film written, directed by, and starring Lena Dunham. The film premiered at South by Southwest, where it won the award for 'Best Narrative Feature,' screened at such festivals as Maryland Film Festival, and was released theatrically in the United States on November 12, 2010. Dunham\u2019s own mother, the artist Laurie Simmons, plays Aura\u2019s mother, while her real sister, Grace, plays Aura\u2019s on-screen sibling. The actors Jemima Kirke and Alex Karpovsky would also appear in Dunham's television series Girls."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Friday_Night_(2000_film)"}, "Title": {"type": "literal", "value": "Friday Night"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Danijel_Sraka"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Katarina_\u010cas|http://dbpedia.org/resource/Primoz_Preksavec|http://dbpedia.org/resource/Primoz_Rokavc|http://dbpedia.org/resource/Tadej_Cepeljnik"}, "Published": {"type": "literal", "value": "2000-03-31"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Friday Night (Slovene: V petek zve\u010der) is a Slovenian low-budget film that premiered in theaters across Slovenia in 2000. Directed by Danijel Sraka; written by Beno 'Stef' Torkar; produced by Ales Blatnik and Danijel Sraka. The film received extensive media coverage in Slovenia during filming as a result of being privately financed and having an international crew when most films from the area where dependent on state funds and local workers. The crew members brought in from abroad where Mikael Karlmark from Sweden, Roy Kurtluyan from Turkey/United States, Donald L. Painchaud from Canada and James Debbs from the United States."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Corpse_Bride"}, "Title": {"type": "literal", "value": "Corpse Bride"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mike_Johnson_(animator)|http://dbpedia.org/resource/Tim_Burton"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Helena_Bonham_Carter|http://dbpedia.org/resource/Johnny_Depp"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_fantasy-comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films|http://dbpedia.org/resource/Category:British_musical_comedy_films|http://dbpedia.org/resource/Category:Fantasy-comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "77"}, "Description": {"type": "literal", "value": "Corpse Bride, often referred to as Tim Burton's Corpse Bride, is a 2005 stop-motion-animated musical fantasy film directed by Mike Johnson and Tim Burton with a screenplay by John August, Caroline Thompson and Pamela Pettler based on characters created by Burton and Carlos Grangel. The plot is set in a fictional Victorian era village in Europe. Johnny Depp led a cast as the voice of Victor, while Helena Bonham Carter voiced Emily, the title character. Corpse Bride is the third stop-motion feature film produced by Burton and the first directed by him (the previous two films, The Nightmare Before Christmas and James and the Giant Peach, were directed by Henry Selick). This is also the first stop-motion feature from Burton that was distributed by Warner Bros. Pictures. It was dedicated to executive producer Joe Ranft, who died during production. The film, a critical and commercial success, was nominated for the 78th Academy Awards for Best Animated Feature, but lost to Wallace & Gromit: The Curse of the Were-Rabbit, which also starred Bonham Carter. It was shot with Canon EOS-1D Mark II digital SLRs, rather than the 35mm film cameras used for Burton's previous stop-motion film The Nightmare Before Christmas."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros._Pictures"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Laika_(company)|http://dbpedia.org/resource/Tim_Burton_Productions"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Imaginary_Larry"}, "Title": {"type": "literal", "value": "Imaginary Larry"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Riki_Lindhome"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Christopher_Stewart_(actor)|http://dbpedia.org/resource/Kate_Micucci|http://dbpedia.org/resource/Malcolm_Barrett_(actor)|http://dbpedia.org/resource/Riki_Lindhome|http://dbpedia.org/resource/Ryan_Devlin"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "14"}, "Description": {"type": "literal", "value": "Imaginary Larry is a 2009 short film co-directed by Riki Lindhome and Dori Oskowitz and starring Riki Lindhome, Kate Micucci, Malcolm Barrett, Ryan Devlin, Christopher Stewart."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/5_Idiots"}, "Title": {"type": "literal", "value": "5 Idiots"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Master_Anand"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Harshika_Poonacha|http://dbpedia.org/resource/Master_Anand|http://dbpedia.org/resource/Naveen_Krishna"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "141"}, "Description": {"type": "literal", "value": "5 Idiots (Kannada: \u0ceb \u0c88\u0ca1\u0cbf\u0caf\u0c9f\u0ccd\u0cb8\u0ccd) is a 2011 Indian Kannada language comedy film directed by Master Anand making his debut in direction. Besides Anand, the film stars Vasu, Naveen Krishna, Petrol Prasanna, Harshika Poonacha and Namratha Hegde in the lead roles. It is a remake of Hindi film Darwaaza Bandh Rakho (2006) starring Aftab Shivdasani, Isha Sharvani and Manisha Koirala. The film released on 18 February 2011 across Karnataka. Upon release, the film generally met with average reviews from the critics and audience."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sisters_(2015_film)"}, "Title": {"type": "literal", "value": "Sisters"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jason_Moore_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amy_Poehler|http://dbpedia.org/resource/Dianne_Wiest|http://dbpedia.org/resource/Ike_Barinholtz|http://dbpedia.org/resource/James_Brolin|http://dbpedia.org/resource/John_Cena|http://dbpedia.org/resource/John_Leguizamo|http://dbpedia.org/resource/Madison_Davenport|http://dbpedia.org/resource/Maya_Rudolph|http://dbpedia.org/resource/Samantha_Bee"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "118"}, "Description": {"type": "literal", "value": "Sisters is a 2015 American comedy film directed by Jason Moore and written by Paula Pell. The film stars Tina Fey and Amy Poehler, and was released on December 18, 2015 by Universal Pictures. The film received mixed reviews, though most critics praised the chemistry of the lead actresses Fey and Poehler. The film, which opened the same weekend as the highly-anticipated Star Wars: The Force Awakens, grossed $105 million on a budget of $30 million."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Muppets_(film)"}, "Title": {"type": "literal", "value": "The Muppets"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Bobin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amy_Adams|http://dbpedia.org/resource/Chris_Cooper|http://dbpedia.org/resource/Jason_Segel|http://dbpedia.org/resource/Rashida_Jones"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "The Muppets is a 2011 American musical comedy film and the seventh theatrical film featuring the Muppets. The film is directed by James Bobin, written by Jason Segel and Nicholas Stoller, produced by David Hoberman and Todd Lieberman, and stars Segel, Amy Adams, Chris Cooper and Rashida Jones, as well as Muppet performers Steve Whitmire, Eric Jacobson, Dave Goelz, Bill Barretta, David Rudman, Matt Vogel, and Peter Linz. Bret McKenzie of comedy band Flight of the Conchords served as music supervisor, writing four of the film's five original songs, and Christophe Beck composed the film's score. In The Muppets, devoted fan Walter, his brother Gary, and Gary's girlfriend Mary, help Kermit the Frog reunite the Muppets, as they must raise $10 million to save the Muppet Theater from Tex Richman, a businessman who plans to demolish the studio to drill for oil. Walt Disney Pictures announced the film's development in March 2008, with Segel and Stoller writing the screenplay, and Mandeville Films co-producing the film. Bobin was hired to direct in January 2010, and the film's supporting cast was filled out in October of the same year, with the casting of Adams, Cooper, and Jones. Filming began in September 2010 and was completed entirely in Los Angeles. The film was the first theatrical Muppet production without the involvement of veteran Muppet performers Frank Oz and Jerry Nelson, although Nelson provides an uncredited vocal cameo. Instead, their characters are performed by Jacobson and Vogel, respectively, marking their theatrical feature film debut as those characters. The Muppets premiered at the Savannah Film Festival and was released theatrically in North America on November 23, 2011. The film was a critical and commercial success; grossing $165 million worldwide and garnering praise for its humor, screenplay, and music. The film won an Academy Award for Best Original Song for McKenzie's \"Man or Muppet\", as well as garnering BAFTA and Critic's Choice Awards nominations. A sequel, Muppets Most Wanted, was released on March 21, 2014."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Vicious_Kind"}, "Title": {"type": "literal", "value": "The Vicious Kind"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lee_Toland_Krieger"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Scott_(actor)|http://dbpedia.org/resource/Alex_Frost|http://dbpedia.org/resource/Brittany_Snow|http://dbpedia.org/resource/J.K._Simmons"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "The Vicious Kind is a 2009 drama film directed and written by Lee Toland Krieger. The screenplay was originally set in a small town in Rhode Island, but the film was shot in Norfolk, CT, which also became the character's hometown. The film stars Adam Scott, Brittany Snow, Alex Frost and J.K. Simmons. The film premiered at the 2009 Sundance Film Festival, and opened in Los Angeles on December 11, 2009 at the Laemlle Sunset 5. \"The Vicious Kind\" was nominated for two 2010 Independent Spirit Awards, Scott for Best Male Lead, and Krieger for Best Screenplay. In 2009, \"The Vicious Kind\" won several awards at film festivals around the world including Adam Scott for Best Actor at the Strasbourg International Film Festival, Scott for Best Performance at the Sidewalk Moving Picture Festival, Lee Toland Krieger for Emerging Filmmaker at the Denver Film Festival, and Best Feature at the New Orleans Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Toxic_Avenger_Part_III:_The_Last_Temptation_of_Toxie"}, "Title": {"type": "literal", "value": "The Last Temptation of Toxie|The Toxic Avenger Part III:"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lloyd_Kaufman|http://dbpedia.org/resource/Michael_Herz_(producer)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Lisa_Gaye_(actress_born_1960)|http://dbpedia.org/resource/Phoebe_Legere"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1980s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "The Toxic Avenger III: The Last Temptation of Toxie is a 1989 American superhero comedy horror film and the second sequel to The Toxic Avenger."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Troma_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Annan_Thambi"}, "Title": {"type": "literal", "value": "Annan Thambi"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Anwar_Rasheed"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gopika|http://dbpedia.org/resource/Harisree_Ashokan|http://dbpedia.org/resource/Janardhanan_(actor)|http://dbpedia.org/resource/Jayan_Cherthala|http://dbpedia.org/resource/Lakshmi_Rai|http://dbpedia.org/resource/Mammootty|http://dbpedia.org/resource/Salim_Kumar|http://dbpedia.org/resource/Shivani_Bhai|http://dbpedia.org/resource/Siddique_(actor)|http://dbpedia.org/resource/Suraj_Venjaramoodu"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Annan Thambi is a 2008 Malayalam film directed by Anwar Rasheed, starring Mammootty, Lakshmi Rai and Gopika. Mammootty plays twins Achu and Appu in the film. The film was a success at the box office."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/1981_(film)"}, "Title": {"type": "literal", "value": "1981"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ricardo_Trogi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jean-Carl_Boucher"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "1981, longer title 1981: L'ann\u00e9e ou je suis devenu un menteur (1981: The Year I Became a Liar) is a 2009 Canadian French language comedy-drama film from Quebec written and directed by Ricardo Trogi. It was released on 4 September 2009. The film is autobiographical about the youth years of the director as told by him during the film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Alliance_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/A_Prairie_Home_Companion_(film)"}, "Title": {"type": "literal", "value": "A Prairie Home Companion"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Paul_Thomas_Anderson|http://dbpedia.org/resource/Robert_Altman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Garrison_Keillor|http://dbpedia.org/resource/John_C._Reilly|http://dbpedia.org/resource/Kevin_Kline|http://dbpedia.org/resource/Lily_Tomlin|http://dbpedia.org/resource/Lindsay_Lohan|http://dbpedia.org/resource/Maya_Rudolph|http://dbpedia.org/resource/Meryl_Streep|http://dbpedia.org/resource/Tommy_Lee_Jones|http://dbpedia.org/resource/Virginia_Madsen|http://dbpedia.org/resource/Woody_Harrelson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "A Prairie Home Companion is a 2006 American comedy film directed by Robert Altman and is his final film. The film is a fictional representation of behind-the-scenes activities at the long-running public radio show of the same name. The film received mostly positive reviews and was a moderate box office success on its small budget. The film features an ensemble cast including Meryl Streep, Kevin Kline, Tommy Lee Jones, Woody Harrelson, Lily Tomlin, Garrison Keillor, Virginia Madsen, John C. Reilly, and Lindsay Lohan."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/New_Line_Cinema|http://dbpedia.org/resource/Picturehouse_(company)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Rosencrantz_and_Guildenstern_Are_Undead"}, "Title": {"type": "literal", "value": "Rosencrantz and Guildenstern Are Undead"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jordan_Galland"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Devon_Aoki|http://dbpedia.org/resource/Jake_Hoffman|http://dbpedia.org/resource/John_Ventimiglia"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Rosencrantz and Guildenstern Are Undead is a 2009 American independent film written and directed by Jordan Galland. The film's title refers to a fictitious play-within-the-movie, which is a comic reinterpretation of Shakespeare\u2019s Hamlet and its aftermath and whose title is a reference to the play Rosencrantz and Guildenstern are Dead. The cast includes Devon Aoki, John Ventimiglia, Kris Lemche, Ralph Macchio, Jeremy Sisto and Waris Ahluwalia. The film stars Jake Hoffman (son of Dustin Hoffman). An original musical score was composed and performed by Sean Lennon. Shooting began in late November, 2007, and principal photography was completed on December 23, 2007. It was filmed entirely in New York City with the Red Digital Cinema Camera, an extra-high-definition video camera."}, "Distributor": {"type": "literal", "value": "http://www.imdb.com/company/co0034057/?ref_=fn_al_co_1"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Art_Machine"}, "Title": {"type": "literal", "value": "Art Machine"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Doug_Karr"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jessica_Szohr|http://dbpedia.org/resource/Joey_Lauren_Adams|http://dbpedia.org/resource/Joseph_Cross_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Art Machine is a 2012 film by writer/director Doug Karr starring Joseph Cross, Jessica Szohr, and Joey Lauren Adams. At age six, child prodigy painter Declan Truss was propelled into the art world as a rare marvel, but by seventeen, the tightrope of notoriety is catching up with him. Declan seeks inspiration as the immense pressures of an impending coming-of-age exhibition loom. His world expands when he stumbles on a commune of rebellious freethinkers. Declan reaches beyond painting to wild experimentation, quickly spinning out of control. As he becomes consumed by his mania, he begins to regard his family as part of a system that\u2019s keeping him down, and magnetically rallies the rebels to take part in his progressively subversive art exhibition\u2014one that will ultimately shock and destroy. Set against the backdrop of Brooklyn\u2019s vibrant art and music scene, Art Machine is a dark comedy about the tenuous relationship between art and commerce, the fine line between creative genius and clinical mania, and the damaging effects of fame. The film was produced by Pie Face Pictures in association with Sundial Pictures."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Sapphires_(film)"}, "Title": {"type": "literal", "value": "The Sapphires"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Wayne_Blair"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_O'Dowd|http://dbpedia.org/resource/Deborah_Mailman|http://dbpedia.org/resource/Eka_Darville|http://dbpedia.org/resource/Jessica_Mauboy|http://dbpedia.org/resource/Miranda_Tapsell|http://dbpedia.org/resource/Shari_Sebbens|http://dbpedia.org/resource/Tory_Kittles"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Australian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103|98"}, "Description": {"type": "literal", "value": "The Sapphires is a 2012 Australian musical comedy-drama film produced by Goalpost Pictures and distributed by Hopscotch Films, based on the 2004 stage play of the same name which is loosely based on a true story. The film is directed by Wayne Blair and written by Keith Thompson and Tony Briggs, the latter of whom wrote the play. The Sapphires centres around four indigenous women, Gail (Deborah Mailman), Julie (Jessica Mauboy), Kay (Shari Sebbens) and Cynthia (Miranda Tapsell), who are discovered by a talent scout (Chris O'Dowd), and form a music group named The Sapphires, travelling to Vietnam in 1968 to sing for troops during the war. Production began in 2010, with the casting of the four members of The Sapphires, and filming taking place in and around Albury in Australia and Vietnam during August and September 2011. The Sapphires made its world premiere at the 2012 Cannes Film Festival on 19 May 2012 during its out of competition screenings, was theatrically released in Australia on 9 August and received a limited release in the United States on 22 March 2013."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/The_Weinstein_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sahara_(2005_film)"}, "Title": {"type": "literal", "value": "Sahara"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Breck_Eisner"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Lambert_Wilson|http://dbpedia.org/resource/Matthew_McConaughey|http://dbpedia.org/resource/Pen\u00e9lope_Cruz|http://dbpedia.org/resource/Steve_Zahn|http://dbpedia.org/resource/William_H._Macy"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "124"}, "Description": {"type": "literal", "value": "Sahara is a 2005 American\u2013Spanish action-comedy adventure film directed by Breck Eisner that is based on the best-selling book of the same name by Clive Cussler. It stars Matthew McConaughey, Steve Zahn and Pen\u00e9lope Cruz. It opened at number one in the US box office, grossing $18 million on its first weekend. From a financial perspective, Sahara was unusual because it performed reasonably well, generating $119 million in gross box-office sales. However, due to its huge budget\u2014including $130 million in production costs and $81.1 million in distribution expenses\u2014its box-office take amounted to barely half of its expenses. The film lost approximately $105 million according to a financial executive assigned to the movie; however, Hollywood accounting methods assign losses at $78.3 million, taking into account projected revenue. According to Hollywood accounting, the film has a projected revenue of $202.9 million against expenses of $281.2 million. The Los Angeles Times presented an extensive special report on April 15, 2007, dissecting the budget of Sahara as an example of how Hollywood movies can cost so much to produce and fail. Many of the often closely held documents had become public domain after a lawsuit involving the film. Among some of the items in the budget were bribes to the Moroccan government, some of which may have been legally questionable under American law."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Love_on_Credit"}, "Title": {"type": "literal", "value": "Love on Credit"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Leste_Chen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chen_Kun|http://dbpedia.org/resource/Liao_Fan|http://dbpedia.org/resource/Lin_Chi-ling|http://dbpedia.org/resource/Tony_Yang"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Chinese_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Love on Credit (Chinese: \u5e78\u798f\u989d\u5ea6) is a 2011 Chinese romantic-comedy film created by Zhang Yibai and released by Xiaoma Benteng. It was directed by Leste Chen. The film stars Lin Chi-ling, Chen Kun, Liao Fan, Tony Yang and Jiayi Zhang."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Seeing_Other_People"}, "Title": {"type": "literal", "value": "Seeing Other People"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Wallace_Wolodarsky"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Richter|http://dbpedia.org/resource/Bryan_Cranston|http://dbpedia.org/resource/Helen_Slater|http://dbpedia.org/resource/Jay_Mohr|http://dbpedia.org/resource/Jill_Ritchie|http://dbpedia.org/resource/Josh_Charles|http://dbpedia.org/resource/Julianne_Nicholson|http://dbpedia.org/resource/Lauren_Graham"}, "Published": {"type": "literal", "value": "2004-05-07"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Seeing Other People is a 2004 comedy film about a couple who decide to see other people two months before their wedding."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lantern_Lane_Entertainment|http://dbpedia.org/resource/Shaw_Organisation"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mitsuko_Delivers"}, "Title": {"type": "literal", "value": "Hara ga Kore Nande"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Yuya_Ishii_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aoi_Nakamura|http://dbpedia.org/resource/Riisa_Naka"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Japanese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "Mitsuko Delivers (\u30cf\u30e9\u304c\u30b3\u30ec\u306a\u3093\u3067 Hara ga Kore Nande) is a 2011 Japanese comedy film directed by Yuya Ishii."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Fasten_Your_Seatbelt_(film)"}, "Title": {"type": "literal", "value": "Fasten Your Seatbelt"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ha_Jung-woo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jung_Kyung-ho_(actor,_born_1983)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:South_Korean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Fasten Your Seatbelt (Hangul: \ub864\ub7ec\ucf54\uc2a4\ud130; RR: Rolleo Koseuteo; lit. \"Rollercoaster\") is a 2013 South Korean comedy film written and directed by actor Ha Jung-woo, in his directorial debut. The film made its world premiere at the 18th Busan International Film Festival, and was released in theaters on October 17, 2013."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/CJ_E&M_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ceremony_(film)"}, "Title": {"type": "literal", "value": "Ceremony"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Max_Winkler_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jake_Johnson|http://dbpedia.org/resource/Lee_Pace|http://dbpedia.org/resource/Michael_Angarano|http://dbpedia.org/resource/Reece_Thompson|http://dbpedia.org/resource/Uma_Thurman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Ceremony is a 2010 American film directed by Max Winkler, in his feature film directorial debut. The film stars Michael Angarano, Uma Thurman, Lee Pace, Rebecca Mader and Reece Thompson. It premiered at the Toronto International Film Festival in September 2010. The film was released on VOD on March 4, 2011 and opened in theaters April 8, 2011."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Wood"}, "Title": {"type": "literal", "value": "The Wood"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rick_Famuyiwa"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aubrey_Allen|http://dbpedia.org/resource/Jascha_Washington|http://dbpedia.org/resource/Malinda_Williams|http://dbpedia.org/resource/Omar_Epps|http://dbpedia.org/resource/Richard_T._Jones|http://dbpedia.org/resource/Sean_Nelson_(actor)|http://dbpedia.org/resource/Taye_Diggs"}, "Published": {"type": "literal", "value": "1999-07-16"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "The Wood is a 1999 coming of age film, written by Rick Famuyiwa and Todd Boyd. Famuyiwa also directed the film, which stars Omar Epps, Richard T. Jones, and Taye Diggs."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/War_Machine_(film)"}, "Title": {"type": "literal", "value": "War Machine"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_Mich\u00f4d"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anthony_Michael_Hall|http://dbpedia.org/resource/Ben_Kingsley|http://dbpedia.org/resource/Tilda_Swinton|http://dbpedia.org/resource/Topher_Grace|http://dbpedia.org/resource/Will_Poulter"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Comedy_films_based_on_actual_events"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "War Machine is an upcoming American comedy war film directed and written by David Mich\u00f4d, based on the nonfiction book The Operators by Michael Hastings. The film stars Brad Pitt, Anthony Michael Hall, Topher Grace, Will Poulter, Tilda Swinton, Jonathan Ing and Ben Kingsley."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Netflix"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/72_Days"}, "Title": {"type": "literal", "value": "72 Days"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Danilo_\u0160erbed\u017eija"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bogdan_Dikli\u0107|http://dbpedia.org/resource/Kre\u0161imir_Miki\u0107|http://dbpedia.org/resource/Rade_\u0160erbed\u017eija|http://dbpedia.org/resource/\u017divko_Ano\u010di\u0107"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "72 Days (Croatian: Sedamdeset i dva dana) is a 2010 Croatian-Serbian black comedy film starring Rade \u0160erbed\u017eija and directed by his son Danilo \u0160erbed\u017eija. The film was selected as the Croatian entry for the Best Foreign Language Film at the 84th Academy Awards, but it did not make the final shortlist."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hit_and_Run_(2012_film)"}, "Title": {"type": "literal", "value": "Hit and Run"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dax_Shepard"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bradley_Cooper|http://dbpedia.org/resource/Dax_Shepard|http://dbpedia.org/resource/Kristen_Bell|http://dbpedia.org/resource/Kristin_Chenoweth|http://dbpedia.org/resource/Tom_Arnold_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Hit and Run is a 2012 American action comedy film written by Dax Shepard, with David Palmer and Shepard co-directing again (their first film being Brother's Justice in 2010). The film stars Shepard and his now-wife Kristen Bell, with Kristin Chenoweth, Tom Arnold, and Bradley Cooper. It was released on August 22, 2012."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Open_Road_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Those_Happy_Days_(2006_film)"}, "Title": {"type": "literal", "value": "Those Happy Days"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Olivier_Nakache_&_\u00c9ric_Toledano"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jean-Paul_Rouve|http://dbpedia.org/resource/Jos\u00e9phine_de_Meaux|http://dbpedia.org/resource/Lannick_Gautry|http://dbpedia.org/resource/Marilou_Berry|http://dbpedia.org/resource/Omar_Sy"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "Those Happy Days (French: Nos jours heureux) is a 2006 French film, directed and written by Olivier Nakache & \u00c9ric Toledano and starring Marilou Berry, Jean-Paul Rouve and Omar Sy"}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/SND_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Piranha_3D"}, "Title": {"type": "literal", "value": "Piranha 3D"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alexandre_Aja"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Scott_(actor)|http://dbpedia.org/resource/Christopher_Lloyd|http://dbpedia.org/resource/Elisabeth_Shue|http://dbpedia.org/resource/Jerry_O'Connell|http://dbpedia.org/resource/Jessica_Szohr|http://dbpedia.org/resource/Richard_Dreyfuss|http://dbpedia.org/resource/Steven_R._McQueen|http://dbpedia.org/resource/Ving_Rhames"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Piranha 3D is a 2010 American 3D horror comedy film that serves as a loose remake of the 1978 horror film Piranha. It was directed by Alexandre Aja and has an ensemble cast featuring Elisabeth Shue, Adam Scott, Jerry O'Connell, Ving Rhames, Steven R. McQueen, Jessica Szohr, Christopher Lloyd, Richard Dreyfuss, Dina Meyer, Kelly Brook, Riley Steele, and Eli Roth."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Dimension_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Orange_(2010_film)"}, "Title": {"type": "literal", "value": "Orange"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bhaskar_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Genelia_D'Souza|http://dbpedia.org/resource/Prabhu_Ganesan|http://dbpedia.org/resource/Ram_Charan|http://dbpedia.org/resource/Sanchita_Shetty|http://dbpedia.org/resource/Shazahn_Padamsee"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "160"}, "Description": {"type": "literal", "value": "Orange (Telugu: \u0c06\u0c30\u0c02\u0c1c\u0c4d) is a 2010 Telugu romantic dramedy film directed by Bhaskar in his third venture after Bommarillu and Parugu. The film features Ram Charan and Genelia D'Souza with Shazahn Padamsee playing a pivotal role. The film, whose music was composed by Harris Jayaraj, began the first schedule in February 2010, and was released on 26 November 2010. The film was dubbed in Malayalam as Hai Ram Charan and Tamil as Ram Charan.Orange Satellite rights were sold for \u20b96.5 crore (US$970,000)."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Cyrano_Agency"}, "Title": {"type": "literal", "value": "Cyrano Agency"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kim_Hyun-seok_(filmmaker)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Choi_Daniel|http://dbpedia.org/resource/Lee_Min-jung|http://dbpedia.org/resource/Park_Chul-min|http://dbpedia.org/resource/Park_Shin-hye|http://dbpedia.org/resource/Uhm_Tae-woong"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "121"}, "Description": {"type": "literal", "value": "Cyrano Agency (Hangul: \uc2dc\ub77c\ub178; \uc5f0\uc560\uc870\uc791\ub2e8; RR: Sirano; yeonaejojakdan; lit. \"Cyrano Dating Agency\") is a 2010 South Korean romantic comedy starring Uhm Tae-woong, Lee Min-jung, Choi Daniel, Park Shin-hye and Park Chul-min. As the title suggests, it is a modern take on Edmond Rostand's 1897 play Cyrano de Bergerac, and the plot focuses on a dating agency that helps its customers win the hearts of the people they desire. Produced by Myung Films and distributed by Lotte Entertainment, the film was released on September 16, 2010 and ran for 121 minutes."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lotte_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Straitjacket_Lottery"}, "Title": {"type": "literal", "value": "The Straitjacket Lottery"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Doug_Karr"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Jones_(comedian)|http://dbpedia.org/resource/David_Huband|http://dbpedia.org/resource/Joe_Cobden|http://dbpedia.org/resource/Tara_Slone"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Straitjacket Lottery is a 2004 film from writer/director Doug Karr starring Andy Jones, David Huband, Tara Slone and Joe Cobden. When Boris Durban loses a busload of mental health patients, he\u2019ll resort to any means in order to get them back. This 22 minute comedic short, set in urban Nova Scotia, is a window into the erratic world of mental health and the thin line between idiosyncrasy and insanity."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Toxic_Avenger_(film)"}, "Title": {"type": "literal", "value": "The Toxic Avenger"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lloyd_Kaufman|http://dbpedia.org/resource/Michael_Herz_(producer)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/R._L._Ryan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1980s_comedy_horror_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "The Toxic Avenger is a 1984 American superhero horror comedy film directed by Michael Herz and Lloyd Kaufman (credited as Samuel Weil) and written by Kaufman and Joe Ritter. The film was released by Troma Entertainment, known for producing low budget B-movies with campy concepts and gruesome violence. Virtually ignored upon its first release, The Toxic Avenger caught on with filmgoers after a long and successful midnight movie engagement at the famed Bleecker Street Cinemas in New York City in late 1985. It now is regarded as a cult classic. The film has generated three film sequels, a stage musical production and a children's TV cartoon. Two less successful sequels, The Toxic Avenger Part II and The Toxic Avenger Part III: The Last Temptation of Toxie, were filmed as one. Director Lloyd Kaufman realized that he had shot far too much footage for one film and re-edited it into two. A third independent sequel was also released, titled Citizen Toxie: The Toxic Avenger IV. A fourth sequel entitled The Toxic Avenger 5: Toxic Twins is planned for a future release. An animated children's TV series spin-off, Toxic Crusaders, featured Toxie as the leader of a team of mutated superheroes who fought against evil alien polluters. The cartoon series was short-lived and quickly cancelled. New Line Cinema had planned a live-action film based on the cartoon, but the deal fell through."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Troma_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Just_Buried"}, "Title": {"type": "literal", "value": "Just Buried"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chaz_Thorne"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Graham_Greene_(actor)|http://dbpedia.org/resource/Jay_Baruchel|http://dbpedia.org/resource/Nigel_Bennett|http://dbpedia.org/resource/Rose_Byrne"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Black_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Just Buried is a 2007 Canadian film written and directed by Chaz Thorne and stars Jay Baruchel and Rose Byrne."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Marguerite_(film)"}, "Title": {"type": "literal", "value": "Marguerite"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Xavier_Giannoli"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Catherine_Frot"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Tragicomedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "128"}, "Description": {"type": "literal", "value": "Marguerite is a French/Czech/Belgian 2015 comedy and drama film directed by Xavier Giannoli and written by Giannoli and Marcia Romano, loosely inspired by the life of Florence Foster Jenkins. Set in the Golden Twenties, the film stars Catherine Frot as a socialite and aspiring opera singer who believes she has a beautiful voice. The film is an international co-production among France, the Czech Republic, and Belgium. Marguerite received eleven nominations at the 41st C\u00e9sar Awards, winning for Best Actress, Best Costume Design, Best Sound, and Best Production Design."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Canal+|http://dbpedia.org/resource/Centre_national_de_la_cin\u00e9matographie|http://dbpedia.org/resource/Eurimages|http://dbpedia.org/resource/France_2|http://dbpedia.org/resource/France_T\u00e9l\u00e9visions|http://dbpedia.org/resource/La_Banque_postale"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Diary_of_a_Teenage_Girl"}, "Title": {"type": "literal", "value": "The Diary of a Teenage Girl"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Marielle_Heller"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alexander_Skarsg\u00e5rd|http://dbpedia.org/resource/Bel_Powley|http://dbpedia.org/resource/Christopher_Meloni|http://dbpedia.org/resource/Kristen_Wiig"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "The Diary of a Teenage Girl is a 2015 American coming-of-age drama written and directed by Marielle Heller, based on the graphic novel The Diary of a Teenage Girl: An Account in Words and Pictures by Phoebe Gloeckner. The film stars Bel Powley as a 15-year-old girl who becomes sexually active by starting a relationship with her mother's boyfriend. It also stars Kristen Wiig, Alexander Skarsg\u00e5rd, Christopher Meloni, Quinn Nagle, and Austin Lyon. It premiered at the 2015 Sundance Film Festival and had a limited release on August 7, 2015 by Sony Pictures Classics."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sony_Pictures_Classics"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Seconds_(2014_film)"}, "Title": {"type": "literal", "value": "Seconds"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Aneesh_Upasana"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jayasurya"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Seconds is a Malayalam thriller film directed by Aneesh Upasana. The film stars Jayasurya, Aparna Nair, Vinay Forrt, Ajay Nataraj, Ambika Mohan, Riyaz Khan, Anusree Nair, Salim Kumar, Shankar Ramakrishnan and Vinayakan in prominent roles. It was released on December 5, 2014. The film is a multi-narrative, told in a non linear format, which revolves around a murder that happens in the elevator of a city apartment. Four unrelated persons of which one was a ruffian were in the lift; two were left seriously injured and one dead. The police officer on investigation, Bimal Vaas, asks for the whereabouts of the persons who were in the lift and their lives on the day leading up to the incident is shown."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/A_Five_Star_Life"}, "Title": {"type": "literal", "value": "A Five Star Life"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Maria_Sole_Tognazzi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "A Five Star Life (Italian: Viaggio sola, also known as I Travel Alone) is a 2013 Italian comedy-drama film directed by Maria Sole Tognazzi. For her performance, Margherita Buy won the David di Donatello for Best Actress. The film also won the Nastro d'Argento for Best Comedy."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Love_at_First_Fight_(film)"}, "Title": {"type": "literal", "value": "Love at First Fight"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Thomas_Cailley"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ad\u00e8le_Haenel|http://dbpedia.org/resource/K\u00e9vin_Aza\u00efs"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:French_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Love at First Fight (French: Les Combattants) is a 2014 French romantic comedy film directed by Thomas Cailley. It was screened as part of the Directors' Fortnight section of the 2014 Cannes Film Festival, where it won the FIPRESCI Prize in the Parallel Section. In January 2015, the film received nine nominations at the 40th C\u00e9sar Awards, winning Best Actress, Most Promising Actor and Best First Feature Film."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Ugly_Truth"}, "Title": {"type": "literal", "value": "The Ugly Truth"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Robert_Luketic"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gerard_Butler|http://dbpedia.org/resource/Katherine_Heigl"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "The Ugly Truth is a 2009 American romantic comedy film starring Katherine Heigl and Gerard Butler. The film was released in North America on July 24, 2009 by Columbia Pictures."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Neighbor_(2009_film)"}, "Title": {"type": "literal", "value": "Neighbor"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Robert_A._Masciantonio"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/America_Olivo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Neighbor is a 2009 American horror film written and directed by Robert A. Masciantonio."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Da_Thadiya"}, "Title": {"type": "literal", "value": "Da Thadiya"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Aashiq_Abu"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ann_Augustine|http://dbpedia.org/resource/Arundathi_Nag|http://dbpedia.org/resource/Edavela_Babu|http://dbpedia.org/resource/Maniyanpilla_Raju|http://dbpedia.org/resource/Nivin_Pauly|http://dbpedia.org/resource/Sekhar_Menon|http://dbpedia.org/resource/Sreenath_Bhasi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Da Thadiya (Malayalam: \u0d1f\u0d3e \u0d24\u0d1f\u0d3f\u0d2f\u0d3e, Hey Fatso) is a 2012 Malayalam romantic comedy film directed by Aashiq Abu, and starring Sekhar Menon, Sreenath Bhasi and Ann Augustine in the lead roles. The cast also includes Nivin Pauly, Arundathi Nag, Maniyanpilla Raju and Edavela Babu. The film was produced by Anto Joseph in association with OPM cinema. DJ Sekhar Menon who had worked as the same in around 500 stages makes his film debut as an actor. The film released on 21 December 2012 to mixed to positive reviews from critics and audience. As part of the movie's promotional activities, free tickets were offered toil appeared in the posters of this film."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Miss_Granny"}, "Title": {"type": "literal", "value": "Miss Granny"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Hwang_Dong-hyuk"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Na_Moon-hee|http://dbpedia.org/resource/Shim_Eun-kyung"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:South_Korean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "124"}, "Description": {"type": "literal", "value": "Miss Granny (Hangul: \uc218\uc0c1\ud55c \uadf8\ub140; RR: Susanghan Geunyeo; lit. \"Suspicious Girl\") is a 2014 South Korean comedy-drama film directed by Hwang Dong-hyuk. Na Moon-hee stars as a woman in her 70s who magically finds herself in the body of her 20-year-old self (Shim Eun-kyung) after having her picture taken at a mysterious photo studio. After opening in theaters on January 22, 2014, it became a huge box office hit, with 8.65 million tickets sold."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/CJ_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Inbetweeners_2"}, "Title": {"type": "literal", "value": "The Inbetweeners 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Damon_Beesley|http://dbpedia.org/resource/Iain_Morris"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Blake_Harrison|http://dbpedia.org/resource/James_Buckley_(actor)|http://dbpedia.org/resource/Joe_Thomas_(actor)|http://dbpedia.org/resource/Simon_Bird"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_teen_comedy_films|http://dbpedia.org/resource/Category:British_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "The Inbetweeners 2 is a 2014 British comedy film and sequel to The Inbetweeners Movie (2011), which is based on the E4 sitcom The Inbetweeners. It was written and directed by series creators Damon Beesley and Iain Morris. The film involves four school friends who meet up again for a holiday in Australia, and stars Simon Bird, Joe Thomas, James Buckley and Blake Harrison. In media interviews, the film's writers and actors stated that it was to be an end to the series. The Inbetweeners 2 was released on 6 August 2014 in the United Kingdom and the Republic of Ireland, to positive reception from critics. It surpassed the record of its predecessor for the highest gross on the opening day of a comedy in the UK, with \u00a32.75 million, and ended its first weekend with a gross of \u00a312.5 million, the largest opening of any film in 2014, then remained on top for a second week. With an overall gross of \u00a333.3 million, it was the highest-grossing British film in the domestic market in 2014. On 21 August, it was released in Australia, to a mixed reception, and topped the box office in its opening weekend."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Entertainment_Film_Distributors"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Bwark_Productions|http://dbpedia.org/resource/Film4_Productions"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Continental,_a_Film_Without_Guns"}, "Title": {"type": "literal", "value": "Continental, un film sans fusil"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/St\u00e9phane_Lafleur"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Fanny_Mallette|http://dbpedia.org/resource/Gilbert_Sicotte|http://dbpedia.org/resource/Marie-Ginette_Guay|http://dbpedia.org/resource/Pauline_Martin|http://dbpedia.org/resource/R\u00e9al_Boss\u00e9"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "Continental, a Film Without Guns (French: Continental, un film sans fusil) is a 2007 Canadian comedy-drama film directed and written by St\u00e9phane Lafleur."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Christal_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/D.E.B.S._(2004_film)"}, "Title": {"type": "literal", "value": "D.E.B.S."}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Angela_Robinson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Devon_Aoki|http://dbpedia.org/resource/Jill_Ritchie|http://dbpedia.org/resource/Jordana_Brewster|http://dbpedia.org/resource/Meagan_Good|http://dbpedia.org/resource/Sara_Foster"}, "Published": {"type": "literal", "value": "2004-01-22|2005-03-25"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films|http://dbpedia.org/resource/Category:Spy_comedy_films|http://dbpedia.org/resource/Category:Teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "D.E.B.S. is a 2004 American action-comedy film written and directed by Angela Robinson. It is an expansion of the short film D.E.B.S. that made the festival circuit (including the Sundance Film Festival). The film is both a parody and an emulation of the Charlie's Angels format. The plot revolves around a love story between one of the heroes and the villain. Their relationship is hindered because they are on opposite sides of the law and the fact that they are both female."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Screen_Gems"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Violet_Tendencies"}, "Title": {"type": "literal", "value": "Violet Tendencies"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Casper_Andreas"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Marcus_Patrick|http://dbpedia.org/resource/Mindy_Cohn"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "Violet Tendencies is a 2010 romantic comedy film directed by Casper Andreas, written by Jesse Archer, and starring Mindy Cohn and Marcus Patrick. The film was released in the United States on November 19, 2010, and came out on video on demand in March 2011 and DVD on May 24, 2011."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Embrem_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hoodwinked!"}, "Title": {"type": "literal", "value": "Hoodwinked!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Cory_Edwards|http://dbpedia.org/resource/Todd_Edwards_(film_writer)|http://dbpedia.org/resource/Tony_Leech"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Dick|http://dbpedia.org/resource/Anne_Hathaway|http://dbpedia.org/resource/Anthony_Anderson|http://dbpedia.org/resource/Chazz_Palminteri|http://dbpedia.org/resource/David_Ogden_Stiers|http://dbpedia.org/resource/Glenn_Close|http://dbpedia.org/resource/Jim_Belushi|http://dbpedia.org/resource/Patrick_Warburton|http://dbpedia.org/resource/Xzibit"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "Hoodwinked! (alternatively styled Hoodwinked) is a 2005 American computer-animated family comedy film. It retells the folktale Little Red Riding Hood as a police investigation, using flashbacks to show multiple characters' points of view. It was produced independently by Blue Yonder Films with Kanbar Entertainment, directed and written by Cory Edwards, Todd Edwards, and Tony Leech, and produced by Katie Hooten, Maurice Kanbar, David K. Lovegren, Sue Bea Montgomery, and Preston Stutzman. The film was released by The Weinstein Company in Los Angeles, California, on December 16, 2005 for a one-week engagement before expanding nationwide on January 13, 2006. The cast features Anne Hathaway, Glenn Close, Jim Belushi, Patrick Warburton, Anthony Anderson, David Ogden Stiers, Xzibit, Chazz Palminteri and Andy Dick. Hoodwinked! was among the earliest computer-animated films to be completely independently funded. Working apart from a major studio allowed the filmmakers greater creative control, but also restrained them economically. Due to the film's small budget, its animation was produced in the Philippines, with a less realistic design inspired by stop motion films. The Weinstein Company did not sign on as the film's distributor until near the end of production, and while the company had many roles recast, it otherwise made few changes to the film. Structurally, the film was inspired by non-linear crime dramas, such as Rashomon and Pulp Fiction. It was released shortly after the first two installments in the successful Shrek series, which accentuated the fairy tale parody genre of which it is a part. The film however, intentionally deviated from that series in its style of humor and in certain plot elements. This was in part based on Cory Edwards' concerns over exposing children to the high level of cynicism often found in the genre. Critical reception to the film was varied; although its script and cast were praised by many reviews, its animation quality was heavily criticized. The film was a commercial success, earning over thirteen times its less- than-$8 million budget. A sequel, Hoodwinked Too! Hood vs. Evil, directed by Mike Disa, and written by the Edwards brothers and Leech, was released in 2011 to negative reviews and financial failure."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/The_Weinstein_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Queen_(film)"}, "Title": {"type": "literal", "value": "Queen"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Vikas_Bahl"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kangana_Ranaut|http://dbpedia.org/resource/Lisa_Haydon|http://dbpedia.org/resource/Rajkummar_Rao"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "146"}, "Description": {"type": "literal", "value": "Queen is a 2014 Indian comedy-drama film directed by Vikas Bahl and produced by Anurag Kashyap, Vikramaditya Motwane, and Madhu Mantena. The film stars Kangana Ranaut in the lead role, with Lisa Haydon and Rajkummar Rao playing supporting roles. Rani, an under-confident Punjabi girl from New Delhi embarks on her honeymoon to Paris and Amsterdam by herself after her fianc\u00e9 calls off their wedding. Bahl co-wrote the script of Queen with Chaitally Parmar and Parveez Shaikh. Anvita Dutt Guptan wrote the dialogues for the film. Ranaut, who was encouraged by Bahl to improvise her lines during filming, is credited as an additional dialogue writer. Amit Trivedi provided the musical score and Guptan also wrote the lyrics. Principal photography of the film began in 2012 and took 45 days to complete. Queen premiered at the Busan International Film Festival and released theatrically on 7 March 2014. The film garnered critical acclaim, with praise directed to the direction, writing, and Ranaut's performance. It is widely considered by critics to be one of the best films of 2014. Made on a budget of \u20b912.5 crore (US$1.9 million), the film earned over \u20b9108 crore (US$16 million) at the global box-office, emerging as a commercial success. Queen won several awards. At the 60th Filmfare Awards ceremony, the film won a leading six awards, including Best Film, Best Director, and Best Actress for Ranaut. At the 62nd National Film Awards ceremony, the film won the Best Hindi Film and Best Actress awards."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Viacom_18_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bol_Bachchan"}, "Title": {"type": "literal", "value": "Bol Bachchan"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rohit_Shetty"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Abhishek_Bachchan|http://dbpedia.org/resource/Ajay_Devgn|http://dbpedia.org/resource/Asin|http://dbpedia.org/resource/Prachi_Desai"}, "Published": {"type": "literal", "value": "2012-07-06"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "149"}, "Description": {"type": "literal", "value": "Bol Bachchan is a 2012 Bollywood action comedy film. The film, made on a budget of \u20b9700 million (US$10 million), is inspired by the 1979 film, Gol Maal. Bol Bachchan's official trailer was released on 24 May 2012 and the film was released on 6 July 2012 in around 2575 screens worldwide with 2700 prints. It received mixed critical acclaim but had a good opening at the box office. The film reportedly made a record for its advance bookings.It was remade in Telugu as Masala with Venkatesh and Ram Pothineni reprised the roles of Ajay Devgan and Abhishek Bachchan respectively."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Star_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sleeping_Beauties"}, "Title": {"type": "literal", "value": "Sleeping Beauties"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jamie_Babbit"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Radha_Mitchell|http://dbpedia.org/resource/Sarah_Lassez"}, "Published": {"type": "literal", "value": "1999-06-10"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "13"}, "Description": {"type": "literal", "value": "Sleeping Beauties is a 1999 short comedy film directed by Jamie Babbit. It premiered at the 1998 Sundance Film Festival. It stars Sarah Lassez as a morgue beautician trying to get over her ex-girlfriend, played by Radha Mitchell. Babbit made the film with help from David Fincher and Michael Douglas. It played at several film festivals during 1998 and 1999, and was later distributed on a DVD collection of short films by production company POWER UP. Babbit won a Channel 4 award for the film."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Just_Jim_(2015_film)"}, "Title": {"type": "literal", "value": "Just Jim"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Craig_Roberts"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Emile_Hirsch"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "Just Jim is a 2015 British black comedy film written and directed by Craig Roberts in his directorial debut. The film stars Roberts as a lonely Welsh teenager who is given the chance to increase his popularity when a cool American (Emile Hirsch) moves in next door."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Soda_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bey_Yaar"}, "Title": {"type": "literal", "value": "Bey Yaar"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Abhishek_Jain"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Darshan_Jariwala|http://dbpedia.org/resource/Kavin_Dave|http://dbpedia.org/resource/Manoj_Joshi_(actor)|http://dbpedia.org/resource/Pratik_Gandhi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "150"}, "Description": {"type": "literal", "value": "Bey Yaar (Gujarati: \u0aac\u0ac7 \u0aaf\u0abe\u0ab0 \"Oh! Friend\"\u2014An expression) is a coming-of-age Gujarati film directed by Abhishek Jain. The film is about friendship and two friends. The film stars Manoj Joshi, Darshan Jariwala, Divyang Thakkar, Pratik Gandhi, Amit Mistry, Samvedna Suwalka. The film was released on 29 August 2014 to positive reviews and box-office success as it completed 50 weeks in theatres. The film was screened at New York Indian Film Festival, the first ever Gujarati film to do so."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/CineMan_Productions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Fred:_The_Movie"}, "Title": {"type": "literal", "value": "Fred: The Movie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Clay_Weiner"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jake_Weary|http://dbpedia.org/resource/Jennette_McCurdy|http://dbpedia.org/resource/John_Cena|http://dbpedia.org/resource/Lucas_Cruikshank|http://dbpedia.org/resource/Oscar_Nunez|http://dbpedia.org/resource/Pixie_Lott|http://dbpedia.org/resource/Siobhan_Fallon_Hogan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "Fred: The Movie (stylized as F\u042fED: THE MOVIE) is a 2010 television comedy film written by David A. Goodman, directed by Clay Weiner and produced by Brian Robbins. The film is based on the adventures of Fred Figglehorn, a character created and played by Lucas Cruikshank for Cruikshank's YouTube channel. The film casts Siobhan Fallon Hogan and John Cena as Fred's parents and pop singer and actress Pixie Lott as Fred's crush Judy. First optioned as a theatrical release in the United States, the film instead premiered on children's TV channel Nickelodeon on September 18, 2010. In the United Kingdom and Ireland, the film was released theatrically on December 17, 2010. This film was the debut of Pixie Lott as an actress."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lionsgate"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Thieves"}, "Title": {"type": "literal", "value": "The Thieves"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Choi_Dong-hoon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jun_Ji-hyun|http://dbpedia.org/resource/Kim_Hye-soo|http://dbpedia.org/resource/Kim_Yoon-seok|http://dbpedia.org/resource/Lee_Jung-jae"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Action_comedy_films|http://dbpedia.org/resource/Category:Criminal_comedy_films|http://dbpedia.org/resource/Category:South_Korean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "136"}, "Description": {"type": "literal", "value": "The Thieves (Hangul: \ub3c4\ub451\ub4e4; RR: Dodukdeul; MR: Todukd\u016dl) is a 2012 South Korean heist film directed by Choi Dong-hoon with an all-star ensemble cast. Splashy action in overseas locations is mixed with double-dealings and multiple betrayals as a gang of South Korean thieves team up with a Hong Kong crew to steal a diamond necklace from a heavily guarded casino safe in Macau. With over 12.9 million ticket sales, the action comedy is currently the fifth highest-grossing movie in Korean film history."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Showbox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Love_and_Other_Catastrophes"}, "Title": {"type": "literal", "value": "Love and Other Catastrophes"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Emma-Kate_Croghan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alice_Garner|http://dbpedia.org/resource/Frances_O'Connor|http://dbpedia.org/resource/Kym_Gyngell|http://dbpedia.org/resource/Matt_Day|http://dbpedia.org/resource/Matthew_Dyktynski|http://dbpedia.org/resource/Radha_Mitchell"}, "Published": {"type": "literal", "value": "1996-08-01|1997-03-28"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_romantic_comedy_films|http://dbpedia.org/resource/Category:Australian_comedy_films|http://dbpedia.org/resource/Category:Australian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "Love and Other Catastrophes is a quirky 1996 Australian romantic comedy film featuring Frances O'Connor, Radha Mitchell, Alice Garner, Matthew Dyktynski, Matt Day and Kym Gyngell. The film was the first full-length release by director Emma-Kate Croghan and is set and filmed at Melbourne University where she studied writing and film directing. The film was nominated for five Australian Film Institute awards, including best film, best original screenplay, best actress, best supporting actress, and editing. Garner won a Film Critics Circle of Australia award for best supporting actress for her role in the movie."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Searchlight_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Golmaal_(film_series)"}, "Title": {"type": "literal", "value": "Golmaal series"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rohit_Shetty"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ajay_Devgan|http://dbpedia.org/resource/Arshad_Warsi|http://dbpedia.org/resource/Tusshar_Kapoor"}, "Published": {"type": "literal", "value": "2006-07-14|2008-10-19|2010-11-05"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Comedy_films_by_series|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Golmaal is a series of Indian action comedy films directed by Rohit Shetty and produced by Dhillin Mehta. All three films starred Ajay Devgan, Arshad Warsi, Tusshar Kapoor in lead roles. The first film Golmaal: Fun Unlimited is released in 2006, the second film Golmaal Returns is released in 2008 and the third film Golmaal 3 is released in 2010. The first film was a semi hit, but the other two films was blockbuster at Indian box office.Golmaal 3 became the second highest-grossing Bollywood film of 2010.The fourth instalment of this series named Golmaal 4 is currently in production. Golmaal is now the fourth highest grossing film series in Bollywood."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Shree_Ashtavinayak_Cine_Vision_Ltd"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Terrorama"}, "Title": {"type": "literal", "value": "Terrorama!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Edwin_Brienen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Edwin_Brienen|http://dbpedia.org/resource/Esther_Eva_Verkaaik|http://dbpedia.org/resource/Kiki_Classen|http://dbpedia.org/resource/Theo_van_Gogh_(film_director)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "Terrorama! (2001) is the first feature film of Dutch director Edwin Brienen. In 2002 Terrorama! won the award for Best film at the Melbourne Underground Film Festival and best leading actress at the Toronto Independent Film Festival (Esther Eva Verkaaik)."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Baxter"}, "Title": {"type": "literal", "value": "The Baxter"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Showalter"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Elizabeth_Banks|http://dbpedia.org/resource/Justin_Theroux|http://dbpedia.org/resource/Michael_Showalter|http://dbpedia.org/resource/Michelle_Williams_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "The Baxter is a 2005 film written by, directed by and starring American comedian Michael Showalter. A \u201cBaxter\u201d, as defined by the film, is the nice, dull guy in a romantic comedy who is dumped at the end of the story for the protagonist. Much light humor is made of showing Showalter as a \"Baxter\" in several typical romantic comedy clich\u00e9s; for instance, he is shown being left at the altar as a former love is claimed by her high school sweetheart, and being left in college at a pep rally for an underdog sports hero. The plot revolves around the life of Elliot Sherman during the two weeks before his wedding, as he doggedly fights off the curse of his former Baxter role in relationships. IFC Films financed the film and produced it with Plum Pictures. They gave the film a very limited release; it had a U.S. box office gross of $181,872."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Machete_(film)"}, "Title": {"type": "literal", "value": "Machete"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ethan_Maniquis|http://dbpedia.org/resource/Robert_Rodriguez"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cheech_Marin|http://dbpedia.org/resource/Danny_Trejo|http://dbpedia.org/resource/Don_Johnson|http://dbpedia.org/resource/Jeff_Fahey|http://dbpedia.org/resource/Jessica_Alba|http://dbpedia.org/resource/Lindsay_Lohan|http://dbpedia.org/resource/Michelle_Rodriguez|http://dbpedia.org/resource/Robert_De_Niro|http://dbpedia.org/resource/Steven_Seagal"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Machete is a 2010 American action film written, produced, and directed by Robert Rodriguez and Ethan Maniquis. This film is an expansion of a fake trailer that was included in Rodriguez's and Quentin Tarantino's 2007 Grindhouse double-feature. Machete continues the B movie and exploitation style of Grindhouse, and includes some of the footage. The film stars Danny Trejo in his first lead role as the title character, and co-stars Robert De Niro, Jessica Alba, Don Johnson, Michelle Rodriguez, Steven Seagal, Lindsay Lohan, Cheech Marin and Jeff Fahey. This was Steven Seagal's first theatrical release film in eight years since his starring role in 2002's Half Past Dead. Machete was released in the United States by 20th Century Fox and Rodriguez's company, Troublemaker Studios, on September 3, 2010. A sequel, Machete Kills, was released on October 11, 2013."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox|http://dbpedia.org/resource/Sony_Pictures_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/A_Bigger_Splash_(film)"}, "Title": {"type": "literal", "value": "A Bigger Splash"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Luca_Guadagnino"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dakota_Johnson|http://dbpedia.org/resource/Matthias_Schoenaerts|http://dbpedia.org/resource/Ralph_Fiennes|http://dbpedia.org/resource/Tilda_Swinton"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "124"}, "Description": {"type": "literal", "value": "A Bigger Splash is a 2015 English-language Italian-French erotic psychological dark comedy film directed by Luca Guadagnino and written by Alain Page and David Kajganich, based on the film La Piscine. The film stars Tilda Swinton, Matthias Schoenaerts, Ralph Fiennes and Dakota Johnson. The film was named after David Hockney's 1967 painting of the same title. It competed for the Golden Lion at the 72nd Venice International Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Searchlight_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Oopiri"}, "Title": {"type": "literal", "value": "Oopiri"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Vamsi_Paidipally"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Akkineni_Nagarjuna|http://dbpedia.org/resource/Karthi|http://dbpedia.org/resource/Tamannaah"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "158|179"}, "Description": {"type": "literal", "value": "Oopiri (English: Breath) is a 2016 Indian bilingual comedy-drama film directed by Vamsi Paidipally. A remake of Olivier Nakache & \u00c9ric Toledano's French comedy-drama The Intouchables (2011), the film was produced by Prasad V Potluri and Kavin Anne of PVP Cinema in Telugu and Tamil as Thozha (Companion). It features Akkineni Nagarjuna, Karthi, and Tamannaah in the lead roles; Prakash Raj, Ali, Vivek, and Jayasudha play supporting roles. The film focuses on the lives of Vikramadhitya (Nagarjuna), a quadriplegic billionaire, and Seenu (Karthi), his ex-convict caretaker. Their realisation of the primacy of life and relationships over money and disability forms the major part of its story. Gopi Sunder composed the film's soundtrack and score, and P. S. Vinod was its cinematographer. Madhu and Praveen K. L. edited the Telugu and Tamil versions, respectively. Principal photography began in March 2015, ending the following February. Most of the film was shot in and around Chennai, Hyderabad, and in Europe in Paris and Belgrade. Produced on a budget of \u20b9500\u2013600 million, Oopiri and Thozha were released globally on 25 March 2016 (simultaneously with Zack Snyder's Batman v Superman: Dawn of Justice and Nishikant Kamat's Rocky Handsome). Both received critical acclaim for the performances of the principal cast, the cinematography, and Paidipally's work in adapting the original. They were commercially successful, grossing over \u20b91 billion worldwide."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mickey's_House_of_Villains"}, "Title": {"type": "literal", "value": "Mickey's House of Villains"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jamie_Mitchell|http://dbpedia.org/resource/Mike_Moon|http://dbpedia.org/resource/Rick_Calabash|http://dbpedia.org/resource/Roberts_Gannaway|http://dbpedia.org/resource/Tony_Craig"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bill_Farmer|http://dbpedia.org/resource/Corey_Burton|http://dbpedia.org/resource/James_Woods|http://dbpedia.org/resource/Jonathan_Freeman_(actor)|http://dbpedia.org/resource/Pat_Carroll_(actress)|http://dbpedia.org/resource/Russi_Taylor|http://dbpedia.org/resource/Scott_Weinger|http://dbpedia.org/resource/Tony_Anselmo|http://dbpedia.org/resource/Wayne_Allwine"}, "Published": {"type": "literal", "value": "2002-09-03"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "70"}, "Description": {"type": "literal", "value": "Mickey's House of Villains is a 2002 direct-to-video animated movie produced by The Walt Disney Company (Walt Disney Television Animation and Toon City Animation, and animation was coordination by Walt Disney Feature Animation Florida). It is a film adaptation based on the Disney Channel animated television series Disney's House of Mouse and a sequel to the direct-to-video animated film Mickey's Magical Christmas: Snowed in at the House of Mouse, starring Mickey Mouse, Donald Duck, Minnie Mouse, Goofy, Daisy Duck and Disney Villains that have appeared in past Disney productions. It was released on both VHS and DVD by Walt Disney Home Video on September 3, 2002. It was followed by a 2004 direct-to-video animated film, Mickey, Donald, Goofy: The Three Musketeers, produced by DisneyToon Studios, on August 17, 2004."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Home_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Les_Gazelles"}, "Title": {"type": "literal", "value": "Les Gazelles"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mona_Achache"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anne_Brochet|http://dbpedia.org/resource/Audrey_Fleurot|http://dbpedia.org/resource/Jos\u00e9phine_de_Meaux|http://dbpedia.org/resource/Naidra_Ayadi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "Les Gazelles is a 2014 French comedy film directed by Mona Achache."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Pyaar_Impossible!"}, "Title": {"type": "literal", "value": "Pyaar Impossible!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jugal_Hansraj"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dino_Morea|http://dbpedia.org/resource/Priyanka_Chopra|http://dbpedia.org/resource/Uday_Chopra"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "141"}, "Description": {"type": "literal", "value": "Pyaar Impossible! (English: Love Impossible!) is a 2010 Bollywood romantic comedy film directed by actor-turned-director Jugal Hansraj under the banner of Yash Raj Films. It features Priyanka Chopra and Uday Chopra in the lead roles. The film stars Anupam Kher and Dino Morea in supporting roles. It is based on the 1991 Malayalam film Kilukkampetti. Pyaar Impossible! was released on 8 January 2010."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Yash_Raj_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Twenty_(film)"}, "Title": {"type": "literal", "value": "Twenty"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lee_Byeong-heon_(filmmaker)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kang_Ha-neul|http://dbpedia.org/resource/Kim_Woo-bin|http://dbpedia.org/resource/Lee_Jun-ho_(singer)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "Twenty (Hangul: \uc2a4\ubb3c; RR: Seumul) is a 2015 South Korean coming-of-age film starring Kim Woo-bin, Lee Junho and Kang Ha-neul. It was written and directed by Lee Byeong-heon, his second feature after the 2012 indie Cheer Up, Mr. Lee."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Next_Entertainment_World"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kubot:_The_Aswang_Chronicles_2"}, "Title": {"type": "literal", "value": "Kubot: The Aswang Chronicles"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Erik_Matti"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dingdong_Dantes|http://dbpedia.org/resource/Isabelle_Daza"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Philippine_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Kubot: The Aswang Chronicles 2  is a 2014 Filipino action horror comedy adventure film co-written and directed by Erik Matti.It is the second installment of the Aswang Chronicles franchise and the sequel to the 2012 film Tiktik: The Aswang Chronicles. The film stars Dingdong Dantes reprising his role as Makoy, Joey Marquez as Nestor, along with the new cast members Isabelle Daza, Lotlot de Leon, KC Montero and Elizabeth Oropesa. It is an official entry to the 40th Metro Manila Film Festival and was released on December 25, 2014 in Philippine cinemas."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/GMA_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kung_Fu_Panda"}, "Title": {"type": "literal", "value": "Kung Fu Panda"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/John_Stevenson_(director)|http://dbpedia.org/resource/Mark_Osborne_(filmmaker)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Angelina_Jolie|http://dbpedia.org/resource/David_Cross|http://dbpedia.org/resource/Dustin_Hoffman|http://dbpedia.org/resource/Ian_McShane|http://dbpedia.org/resource/Jack_Black|http://dbpedia.org/resource/Jackie_Chan|http://dbpedia.org/resource/James_Hong|http://dbpedia.org/resource/Lucy_Liu|http://dbpedia.org/resource/Randall_Duk_Kim|http://dbpedia.org/resource/Seth_Rogen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films|http://dbpedia.org/resource/Category:Martial_arts_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Kung Fu Panda is a 2008 American computer-animated action comedy martial arts film produced by DreamWorks Animation and distributed by Paramount Pictures. It was directed by John Stevenson and Mark Osborne and produced by Melissa Cobb, and stars the voices of Jack Black, Dustin Hoffman, Angelina Jolie, Ian McShane, Seth Rogen, Lucy Liu, David Cross, Randall Duk Kim, James Hong, and Jackie Chan. Set in a version of ancient China populated by anthropomorphic talking animals, the plot revolves around a bumbling panda named Po who aspires to be a kung fu master. When an evil kung fu warrior is foretold to escape after 20 years in prison, Po is unwittingly named the chosen one destined to bring peace to the land, much to the chagrin of the resident kung fu warriors. The idea for the film was conceived by Michael Lachance, a DreamWorks Animation executive. The film was originally intended to be a parody, but director Stevenson decided instead, to shoot an action comedy wuxia film that incorporates the hero's journey narrative archetype for the lead character. The computer animation in the film was more complex than anything DreamWorks had done before. As with most DreamWorks animated films, Hans Zimmer (collaborating with John Powell this time) scored Kung Fu Panda. He visited China to absorb the culture and get to know the China National Symphony Orchestra as part of his preparation. A sequel, Kung Fu Panda 2, was released on May 26, 2011, along with a television series, Kung Fu Panda: Legends of Awesomeness later that same year as a part of a franchise. A second sequel called Kung Fu Panda 3 debuted in January 2016. Kung Fu Panda premiered in the United States on June 6, 2008. The film received critical acclaim upon release. Kung Fu Panda opened in 4,114 theaters, grossing $20.3 million on its opening day and $60.2 million on its opening weekend, resulting in the number one position at the box office. The film became DreamWorks' biggest opening for a non-sequel film, the highest grossing animated film of the year worldwide, and also had the fourth-largest opening weekend for a DreamWorks animated film at the American and Canadian box office, behind Shrek 2, Shrek the Third, and Shrek Forever After."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Detention_(2011_film)"}, "Title": {"type": "literal", "value": "Detention"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Joseph_Kahn"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dane_Cook|http://dbpedia.org/resource/Shanley_Caswell|http://dbpedia.org/resource/Spencer_Locke|http://dbpedia.org/resource/Walter_Perez_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Detention is a 2011 American satirical horror film directed by Joseph Kahn, and co-written with Mark Palermo. The film premiered March 2011 in Austin, Texas at SXSW. Detention stars Josh Hutcherson, Dane Cook, Spencer Locke, Shanley Caswell, Walter Perez, Organik and Erica Shaffer. Produced by Richard Weager and MaryAnne Tanedo."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sony_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Gilded_Cage_(2013_film)"}, "Title": {"type": "literal", "value": "The Gilded Cage"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ruben_Alves"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chantal_Lauby|http://dbpedia.org/resource/Joaquim_de_Almeida|http://dbpedia.org/resource/Rita_Blanco|http://dbpedia.org/resource/Roland_Giraud"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "The Gilded Cage (French: La Cage Dor\u00e9e) is a French-Portuguese comedy film released in 2013. It won the People's Choice Award at the 26th European Film Awards. It was the film with the most admissions at the Portuguese box office in 2013, with 755 000 and it is the 7th film with most admissions and the 3rd highest-grossing in Portugal since 2004. The film won the Radio-Canada Audience Award at the 2014 edition of the Cin\u00e9franco film festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Path\u00e9"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Soodhu_Kavvum"}, "Title": {"type": "literal", "value": "Soodhu Kavvuum"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nalan_Kumarasamy"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Sanchita_Shetty|http://dbpedia.org/resource/Vijay_Sethupathi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Comedy_thriller_films|http://dbpedia.org/resource/Category:Indian_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "128"}, "Description": {"type": "literal", "value": "Soodhu Kavvum (English: Evil Engulfs) is a 2013 Tamil black comedy crime film directed by Nalan Kumarasamy. It features Vijay Sethupathi and Sanchita Shetty in the lead roles. The film was released on 1 May. The film's main concept is about how silly talk has engulfed people's day-to-day life and modern society. The film received positive reviews from critics and become a commercial success."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Studio_Green"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/7_Chinese_Brothers"}, "Title": {"type": "literal", "value": "7 Chinese Brothers"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bob_Byington"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alex_Karpovsky|http://dbpedia.org/resource/Jason_Schwartzman|http://dbpedia.org/resource/Jonathan_Togo|http://dbpedia.org/resource/Olympia_Dukakis|http://dbpedia.org/resource/Stephen_Root"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "75"}, "Description": {"type": "literal", "value": "7 Chinese Brothers is a 2015 American comedy film written and directed by Bob Byington. The film stars Jason Schwartzman, Stephen Root, Olympia Dukakis, Jonathan Togo and Alex Karpovsky. The film was released in the United States on August 28, 2015, in a limited release and through video on demand."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Screen_Media_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tangerine_(film)"}, "Title": {"type": "literal", "value": "Tangerine"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sean_S._Baker"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/James_Ransone|http://dbpedia.org/resource/Kitana_Kiki_Rodriguez|http://dbpedia.org/resource/Mya_Taylor"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Tangerine is a 2015 American comedy-drama film directed by Sean S. Baker and written by Baker and Chris Bergoch, starring Kitana Kiki Rodriguez, Mya Taylor, and James Ransone. The story follows a transgender sex worker who discovers her boyfriend and pimp has been cheating on her. The film was shot with three iPhone 5s smartphones. Tangerine premiered at the 2015 Sundance Film Festival on January 23, 2015. It had a limited release on July 10, 2015 through Magnolia Pictures. It received positive reviews."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Magnolia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Duplass_Brothers_Productions"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Trotsky"}, "Title": {"type": "literal", "value": "The Trotsky"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jacob_Tierney"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Colm_Feore|http://dbpedia.org/resource/Emily_Hampshire|http://dbpedia.org/resource/Jay_Baruchel|http://dbpedia.org/resource/Michael_Murphy_(actor)|http://dbpedia.org/resource/Saul_Rubinek"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "The Trotsky is a 2009 Canadian comedy film directed by Jacob Tierney."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Alliance_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Men_&_Chicken"}, "Title": {"type": "literal", "value": "Men & Chicken"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Anders_Thomas_Jensen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/David_Dencik|http://dbpedia.org/resource/Mads_Mikkelsen|http://dbpedia.org/resource/Nicolas_Bro|http://dbpedia.org/resource/Nikolaj_Lie_Kaas|http://dbpedia.org/resource/S\u00f8ren_Malling"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Danish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "Men & Chicken (Danish: M\u00e6nd og H\u00f8ns) is a 2015 Danish comedy film directed by Anders Thomas Jensen. It was shown in the Vanguard section of the 2015 Toronto International Film Festival. It was one of three films shortlisted by Denmark to be their submission for the Academy Award for Best Foreign Language Film at the 88th Academy Awards."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/100%25_Love_(2011_film)"}, "Title": {"type": "literal", "value": "100% Love"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sukumar_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Naga_Chaitanya|http://dbpedia.org/resource/Tamannaah_Bhatia"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "140"}, "Description": {"type": "literal", "value": "100% Love is a 2011 Telugu-language Indian romantic drama film directed by Sukumar and produced by Bunny Vasu under Geetha Arts studio. The film features Naga Chaitanya and Tamanna in the lead roles. Production works began in February 2010, while the filming continued for over one year, with the title only being announced in March 2011. The film features music by Devi Sri Prasad and was released on 6 May 2011. The film was dubbed and released in Malayalam and Tamil with the same title and as Nooru Sadhaveedham Kaadhal / 100% Kaadhal, respectively. It was declared a Blockbuster and is said to be the best film of Naga Chaitanya after Ye Maaya Chesave and for Sukumar after Arya, completing 50 days in 65 centres and 100 days on 13 August 2011. It was remade in Bengali in 2016 as Prem Ki Bujhini."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Geetha_Arts"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Meddler"}, "Title": {"type": "literal", "value": "The Meddler"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lorene_Scafaria"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amy_Landecker|http://dbpedia.org/resource/Billy_Magnussen|http://dbpedia.org/resource/Casey_Wilson|http://dbpedia.org/resource/Cecily_Strong|http://dbpedia.org/resource/Harry_Hamlin|http://dbpedia.org/resource/J._K._Simmons|http://dbpedia.org/resource/Jason_Ritter|http://dbpedia.org/resource/Jerrod_Carmichael|http://dbpedia.org/resource/Laura_San_Giacomo|http://dbpedia.org/resource/Lucy_Punch|http://dbpedia.org/resource/Michael_McKean|http://dbpedia.org/resource/Rose_Byrne|http://dbpedia.org/resource/Sarah_Baker|http://dbpedia.org/resource/Susan_Sarandon"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "The Meddler is a 2016 American comedy-drama film directed and written by Lorene Scafaria. The film stars Susan Sarandon, Rose Byrne and J. K. Simmons. Principal photography began on March 30, 2015 in Los Angeles. It was screened in the Special Presentations section of the 2015 Toronto International Film Festival. The film was released on April 22, 2016, by Sony Pictures Classics."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sony_Pictures_Classics"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Castaway_on_the_Moon"}, "Title": {"type": "literal", "value": "Castaway on the Moon"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lee_Hae-jun"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jung_Jae-young|http://dbpedia.org/resource/Jung_Ryeo-won"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "Castaway on the Moon (Hangul: \uae40\uc528 \ud45c\ub958\uae30; RR: Kimssi Pyoryugi; lit. \"Mr Kim's drifting experience\": \ud45c\ub958: drifting; hanja: \u6f02\u6d41\u8a18) is a 2009 South Korean romantic comedy film written and directed by Lee Hae-jun. It is a love story between a suicidal man turned castaway on Bamseom in the Han River and an agoraphobic woman who is addicted to Cyworld."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Cinema_Service"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/American_Ultra"}, "Title": {"type": "literal", "value": "American Ultra"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nima_Nourizadeh"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bill_Pullman|http://dbpedia.org/resource/Connie_Britton|http://dbpedia.org/resource/Jesse_Eisenberg|http://dbpedia.org/resource/John_Leguizamo|http://dbpedia.org/resource/Kristen_Stewart|http://dbpedia.org/resource/Tony_Hale|http://dbpedia.org/resource/Topher_Grace|http://dbpedia.org/resource/Walton_Goggins"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_comedy_thriller_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "American Ultra is a 2015 American action comedy film directed by Nima Nourizadeh and written by Max Landis. The film stars Jesse Eisenberg, Kristen Stewart, Topher Grace, Connie Britton, Walton Goggins, John Leguizamo, Bill Pullman, and Tony Hale. It was released on August 21, 2015, by Lionsgate."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lionsgate_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Happy_Christmas_(film)"}, "Title": {"type": "literal", "value": "Happy Christmas"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Joe_Swanberg"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anna_Kendrick|http://dbpedia.org/resource/Joe_Swanberg|http://dbpedia.org/resource/Lena_Dunham|http://dbpedia.org/resource/Mark_Webber_(actor)|http://dbpedia.org/resource/Melanie_Lynskey"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Happy Christmas is a 2014 American dramedy written, produced and directed by Joe Swanberg. It stars Swanberg, Anna Kendrick, Melanie Lynskey, Lena Dunham and Mark Webber. Like most of Swanberg's previous features, the film's dialogue was entirely improvised. The film had its world premiere at the 2014 Sundance Film Festival (where it was nominated for the Grand Jury Prize in the U.S. Dramatic Competition) on January 19, 2014. It was released on June 26, 2014, through video on demand prior to being released in a limited release July 25, 2014 in the United States by Magnolia Pictures."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Magnolia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Results_(film)"}, "Title": {"type": "literal", "value": "Results"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Bujalski"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anthony_Michael_Hall|http://dbpedia.org/resource/Brooklyn_Decker|http://dbpedia.org/resource/Cobie_Smulders|http://dbpedia.org/resource/Constance_Zimmer|http://dbpedia.org/resource/Giovanni_Ribisi|http://dbpedia.org/resource/Guy_Pearce|http://dbpedia.org/resource/Kevin_Corrigan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Results is a 2015 indie romantic comedy film written and directed by Andrew Bujalski. The film stars Guy Pearce, Cobie Smulders, Kevin Corrigan, Giovanni Ribisi, Brooklyn Decker, Anthony Michael Hall, and Constance Zimmer. Ahead of its Sundance Film Festival Premiere, Results was acquired by Magnolia Pictures. The film had its premiere at the 2015 Sundance Film Festival on January 27, 2015. The film was released in a limited release and through video on demand on May 29, 2015."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Magnolia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Save_the_Green_Planet!"}, "Title": {"type": "literal", "value": "Save the Green Planet!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jang_Joon-hwan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Baek_Yoon-sik|http://dbpedia.org/resource/Shin_Ha-kyun"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Black_comedy_films|http://dbpedia.org/resource/Category:Comedy_science_fiction_films|http://dbpedia.org/resource/Category:South_Korean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "118"}, "Description": {"type": "literal", "value": "Save the Green Planet! (Korean title: \uc9c0\uad6c\ub97c \uc9c0\ucf1c\ub77c!, Jigureul Jikyeora!) is a South Korean film, written and directed by Jang Joon-hwan, released on 4 April 2003 . The movie mixes elements of multiple genres, including comedy, science fiction, horror and thriller. The basic story begins when the main character, Lee Byeong-gu, kidnaps another man, convinced that the latter is an alien."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/CJ_Entertainment|http://dbpedia.org/resource/Koch-Lorber_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lazer_Team"}, "Title": {"type": "literal", "value": "Lazer Team"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Matt_Hullum"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Lazer Team is a 2015 American science fiction action comedy film directed, produced, and co-written by Matt Hullum. The first feature film produced by Rooster Teeth, it stars Burnie Burns, Gavin Free, Michael Jones, Colton Dunn, Allie DeBerry, and Alan Ritchson. The film follows the Lazer Team, a group of four who find themselves responsible for the fate of the planet upon discovering an alien crash site containing a battle suit. Lazer Team is produced by Hullum, Burns, and Doreen Copeland. Burns and Hullum also co-wrote the script, alongside Rooster Teeth employees Chris Demarais and Josh Flanagan. Funding for the film was largely raised through a successful Indiegogo campaign, raising over $2.4 million in a month. Filming began in October 2014, with principal photography taking place in Austin and New Mexico. Lazer Team premiered at Fantastic Fest on September 24, 2015, and was released theatrically on January 27, 2016. As of February 10, 2016, the film is also available on YouTube Red."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fullscreen_(company)|http://dbpedia.org/resource/YouTube_Red"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hot_Fuzz"}, "Title": {"type": "literal", "value": "Hot Fuzz"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Edgar_Wright"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Nick_Frost"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Best_Comedy_Empire_Award_winners|http://dbpedia.org/resource/Category:British_comedy_films|http://dbpedia.org/resource/Category:Police_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "121"}, "Description": {"type": "literal", "value": "Hot Fuzz is a 2007 British satirical action comedy film directed by Edgar Wright, written by Wright and Simon Pegg, and starring Pegg and Nick Frost. The three and the film's producer Nira Park had previously worked together on the television series Spaced and the 2004 film Shaun of the Dead. The film follows two police officers attempting to solve a series of mysterious deaths in Sandford, a fictional small English village. Over a hundred action films were used as inspiration for developing the script. Filming took place over eleven weeks in early 2006, and featured an extensive cast along with various uncredited cameos. Visual effects were developed by ten artists to expand on or add explosions, gore, and gunfire scenes. Debuting on 14 February 2007 in the United Kingdom and 20 April in the United States, Hot Fuzz received critical and commercial success. Shortly after the film's release, two different soundtracks were released in the UK and US. The film is the second in Wright and Pegg's Three Flavours Cornetto trilogy and was preceded by 2004's Shaun of the Dead and followed by 2013's The World's End, each of them featuring a different flavour of Cornetto ice cream. It is also the most financially successful film in the trilogy."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Rogue_Pictures|http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Manto_(film)"}, "Title": {"type": "literal", "value": "Manto"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sarmad_Khoosat"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hina_Khawaja_Bayat|http://dbpedia.org/resource/Nimra_Bucha|http://dbpedia.org/resource/Saba_Qamar|http://dbpedia.org/resource/Sania_Saeed|http://dbpedia.org/resource/Sarmad_Khoosat"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "127"}, "Description": {"type": "literal", "value": "Manto (Urdu: \u0645\u0646\u0679\u0648\u200e) is a 2015 Pakistani biographical drama film based on the life of Pakistani short-story writer Sadat Hassan Manto, starring Sarmad Khoosat in the title role. It was directed by Khoosat himself, produced by Babar Javed, and written by Shahid Nadeem, whose screenplay was adapted from Manto's short stories, particularly \"Thanda Gosht\", Madari\", \"License\", \"Hatak\" and \"Peshawar Se Lahore\". It also depicts his relationship with singer-actress Noor Jehan. The film was released on September 11, 2015, sixty years after Manto's death. The full-length official trailer was released on August 29, 2015. The motion trailer along with film music was released on August 6, 2015. The TV series on the life of writer entitled Main Manto with the same cast and production, initially made in 2012, was aired in December 2015."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Geo_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Joe_+_Belle"}, "Title": {"type": "literal", "value": "Joe + Belle"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Veronica_Kedar"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Romi_Aboulafia|http://dbpedia.org/resource/Sivan_Levy|http://dbpedia.org/resource/Veronica_Kedar"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "Joe + Belle is a 2011 dark Romantic Comedy film directed by Veronica Kedar about a drug dealer called Joe and a suicidal psychopath called Belle."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Women_in_Trouble"}, "Title": {"type": "literal", "value": "Women in Trouble"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sebastian_Gutierrez"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adrianne_Palicki|http://dbpedia.org/resource/Cameron_Richardson|http://dbpedia.org/resource/Carla_Gugino|http://dbpedia.org/resource/Connie_Britton|http://dbpedia.org/resource/Elizabeth_Berkley|http://dbpedia.org/resource/Emmanuelle_Chriqui|http://dbpedia.org/resource/Joseph_Gordon-Levitt|http://dbpedia.org/resource/Marley_Shelton"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Women in Trouble is a 2009 American comedy film, written and directed by Sebasti\u00e1n Guti\u00e9rrez, and starring a cast consisting of Carla Gugino, Adrianne Palicki, Marley Shelton, Cameron Richardson, Connie Britton and Emmanuelle Chriqui.It was shot in 10 days for $50,000."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Myriad_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Rebound"}, "Title": {"type": "literal", "value": "The Rebound"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bart_Freundlich"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Catherine_Zeta-Jones|http://dbpedia.org/resource/Justin_Bartha"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95|97"}, "Description": {"type": "literal", "value": "The Rebound is a 2009 American romantic comedy film directed by Bart Freundlich, starring Catherine Zeta-Jones and Justin Bartha. It was released in theaters in several countries in late 2009. It was originally scheduled to be released in the United States on December 25, 2010, but was cancelled due to the film's distributor shutting down. It ended up going direct-to-DVD in the United States on February 7, 2012."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/The_Film_Department"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hanger_(film)"}, "Title": {"type": "literal", "value": "Hanger"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ryan_Nicholson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alastair_Gamble|http://dbpedia.org/resource/Debbie_Rochon"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Hanger is a 2009 horror film written and directed by Ryan Nicholson, and co-written by Patrick Coble."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Pudsey_the_Dog:_The_Movie"}, "Title": {"type": "literal", "value": "Pudsey The Dog: The Movie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nick_Moore_(film_director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/David_Walliams|http://dbpedia.org/resource/Jessica_Hynes|http://dbpedia.org/resource/John_Sessions|http://dbpedia.org/resource/Olivia_Colman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Pudsey The Dog: The Movie is a 2014 British 3D live action family comedy film directed by Nick Moore, produced by Simon Cowell, written by Paul Rose with music by Simon Woodgate and starring Pudsey the Dog, one half of the dancing duo Ashleigh and Pudsey, voiced by David Walliams. Other stars include Jessica Hynes, John Sessions, Jim Tavar\u00e9 and Izzy Meikle-Small. The film was made by Vertigo Films and Syco Entertainment, and was released in the United Kingdom on 18 July 2014, after it was originally set to be released in December the previous year. The film received negative reviews from critics, and it earned \u00a32.6 millon on a \u00a32.5 million budget. On 10 November 2014 Pudsey the Dog: The Movie was released on DVD in the United Kingdom."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Cathay-Keris_Films|http://dbpedia.org/resource/Silverline_Multimedia|http://dbpedia.org/resource/Vertigo_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Wish_I_Was_Here"}, "Title": {"type": "literal", "value": "Wish I Was Here"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Zach_Braff"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ashley_Greene|http://dbpedia.org/resource/Joey_King|http://dbpedia.org/resource/Josh_Gad|http://dbpedia.org/resource/Kate_Hudson|http://dbpedia.org/resource/Mandy_Patinkin"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "Wish I Was Here is a 2014 American comedy drama film directed by Zach Braff and co-written with his brother Adam Braff. The film stars Zach Braff, Josh Gad, Ashley Greene, Kate Hudson, Joey King and Mandy Patinkin. The film had its world premiere at the Sundance Film Festival on January 18, 2014 and was given a limited release on July 18, 2014 by Focus Features."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Focus_Features"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jiseul"}, "Title": {"type": "literal", "value": "Jiseul"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/O_Muel"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "Jiseul (Hangul: \uc9c0\uc2ac) is a 2012 South Korean war drama film written and directed by Jeju Island native O Muel. The film is shot in black and white with the entire cast composed of local actors speaking their natural dialect. \"Jiseul\" means \"potato\" in Jeju dialect. O said he picked it as the title of his film because \"potatoes are considered a staple food in many countries, often symbolizing survival and hope.\" Set during the Jeju Uprising on the island in 1948, O said the film does not focus on the large-scale struggle, but on a forgotten true story about a group of villagers who hid in a cave for 60 days to escape from a military attack. They hid underground for months, cold and numb, far too close for comfort\u2014just like the potatoes to which the title refers. The film had a small budget of \u20a9210 million (US$190,000), part of which was raised through crowdfunding. It premiered at the 2012 Busan International Film Festival where it received 3 awards\u2014the CGV Movie Collage Award, the Director's Guild of Korea Award for Best Director, and the NETPAC Jury Award. Jiseul later won the prestigious World Cinema Dramatic Grand Jury Prize at the 2013 Sundance Film Festival. It became the first Korean film ever to win the top prize in this category. Festival organizers said that the jury\u2019s decision was unanimous, and their deliberation lasted less than one minute. It also won the Cyclo d'Or, the top prize at the 2013 Vesoul International Film Festival of Asian Cinema, and Best Film at the inaugural Wildflower Film Awards in 2014. The broader response from critics and international audiences was more mixed, with some viewers feeling frustration at not being given more background information in the film."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Me_and_Earl_and_the_Dying_Girl_(film)"}, "Title": {"type": "literal", "value": "Me and Earl and the Dying Girl"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alfonso_Gomez-Rejon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Connie_Britton|http://dbpedia.org/resource/Jon_Bernthal|http://dbpedia.org/resource/Molly_Shannon|http://dbpedia.org/resource/Nick_Offerman|http://dbpedia.org/resource/Olivia_Cooke|http://dbpedia.org/resource/RJ_Cyler|http://dbpedia.org/resource/Thomas_Mann_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Me and Earl and the Dying Girl is a 2015 American comedy-drama film directed by Alfonso Gomez-Rejon and written by Jesse Andrews, based on Andrews' 2012 debut novel of the same name. The film stars Thomas Mann, Olivia Cooke, RJ Cyler, and Jon Bernthal. The film premiered at the 2015 Sundance Film Festival to a standing ovation. It won the U.S. Grand Jury Prize: Dramatic and the Audience Award for U.S. Drama at the festival. The film was released on June 12, 2015, by Fox Searchlight Pictures."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Searchlight_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/A_Stranger_of_Mine"}, "Title": {"type": "literal", "value": "A Stranger of Mine"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kenji_Uchida_(film_director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Reika_Kirishima|http://dbpedia.org/resource/S\u014d_Yamanaka|http://dbpedia.org/resource/Yasuhi_Nakamura|http://dbpedia.org/resource/Yuka_Itaya"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "A Stranger of Mine (\u904b\u547d\u3058\u3083\u306a\u3044\u4eba Unmei janai hito) is a 2005 Japanese film by Kenji Uchida, starring Yasuhi Nakamura, Reika Kirishima, S\u014d Yamanaka and Yuka Itaya"}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Fakers"}, "Title": {"type": "literal", "value": "Fakers"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Richard_Janes"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Art_Malik|http://dbpedia.org/resource/Jonathan_Cecil|http://dbpedia.org/resource/Kate_Ashfield|http://dbpedia.org/resource/Matthew_Rhys|http://dbpedia.org/resource/Tom_Chambers_(actor)|http://dbpedia.org/resource/Tony_Haygarth"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Fakers is a 2004 British film directed by Richard Janes and starring Matthew Rhys as con-man with a big debt to pay off to wanna-be crime lord Art Malik. It was produced by Richard Janes Claire Bee and Todd Kleparski, three graduates from Ravensbourne College of Design and Communication. Completely funded via independent routes the film cost $1,500,000 to make and has opened theatrically in the United Kingdom, America and Japan as well as other territories."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Foot_Fist_Way"}, "Title": {"type": "literal", "value": "The Foot Fist Way"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jody_Hill"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Danny_McBride"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Martial_arts_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "The Foot Fist Way is a 2006 American low-budget martial arts black comedy film directed by Jody Hill and starring Danny McBride. The film was produced by Gary Sanchez Productions that picked up distribution rights to the film and hoped for it to achieve a Napoleon Dynamite-like success. It premiered in 2006 at the Los Angeles Film Festival and at Sundance."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Vantage"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Baghead"}, "Title": {"type": "literal", "value": "Baghead"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jay_Duplass|http://dbpedia.org/resource/Mark_Duplass"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Greta_Gerwig|http://dbpedia.org/resource/Ross_Partridge|http://dbpedia.org/resource/Steve_Zissis"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "Baghead is a 2008 comedy horror film written and directed by Jay Duplass and Mark Duplass. The film stars Ross Partridge, Elise Muller, Greta Gerwig, and Steve Zissis. The film had its world premiere at the Sundance Film Festival on January 22, 2008. The film was released in a limited release on July 13, 2008, by Sony Pictures Classics."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sony_Pictures_Classics"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Babysitting_2"}, "Title": {"type": "literal", "value": "Babysitting 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nicolas_Benamou|http://dbpedia.org/resource/Philippe_Lacheau"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alice_David|http://dbpedia.org/resource/Philippe_Lacheau"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Babysitting 2 is a 2015 French comedy film shot in the \"found footage\" style. It is directed by Nicolas Benamou and Philippe Lacheau. The film is the sequel of Babysitting."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Pictures_International"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Muppets_Most_Wanted"}, "Title": {"type": "literal", "value": "Muppets Most Wanted"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Bobin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ricky_Gervais|http://dbpedia.org/resource/Tina_Fey|http://dbpedia.org/resource/Ty_Burrell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "Muppets Most Wanted is a 2014 American musical comedy film produced by Walt Disney Pictures and Mandeville Films, and the eighth theatrical film featuring the Muppets. Directed by James Bobin and written by Bobin and Nicholas Stoller, the film is a sequel to 2011's The Muppets and stars Ricky Gervais, Ty Burrell, and Tina Fey as well as Muppet performers Steve Whitmire, Eric Jacobson, Dave Goelz, Bill Barretta, David Rudman, Matt Vogel, and Peter Linz. In the film, the Muppets find themselves unwittingly involved in an international crime caper while on tour in Europe. Aside from co-writer Jason Segel, the majority of the production team behind The Muppets returned for Muppets Most Wanted including Bobin, Stoller, and producers David Hoberman and Todd Lieberman. Bret McKenzie and Christophe Beck returned to compose the film's songs and musical score, respectively. Principal photography commenced in January 2013 at Pinewood Studios in Buckinghamshire, England. Muppets Most Wanted had its world premiere at the El Capitan Theatre in Los Angeles on March 11, 2014 and was released theatrically in North America on March 21, 2014. The film grossed $80.4 million worldwide."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Yeh_Jawaani_Hai_Deewani"}, "Title": {"type": "literal", "value": "Yeh Jawaani Hai Deewani"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ayan_Mukerji"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aditya_Roy_Kapur|http://dbpedia.org/resource/Deepika_Padukone|http://dbpedia.org/resource/Kalki_Koechlin|http://dbpedia.org/resource/Ranbir_Kapoor"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "161"}, "Description": {"type": "literal", "value": "Yeh Jawaani Hai Deewani (English: This Youth is Crazy, abbreviated as YJHD), is a 2013 Indian romantic drama film, written and directed by Ayan Mukerji and produced by Karan Johar. It stars Deepika Padukone and Ranbir Kapoor in lead roles. This is their second film together after 2008's Bachna Ae Haseeno. Kalki Koechlin and Aditya Roy Kapur play supporting roles. Madhuri Dixit appears in an item number with Ranbir Kapoor. Initially set for a March 2013 release, the film was released on 31 May 2013. Upon release, it received mixed to positive reviews and was a box office success. Yeh Jawaani Hai Deewani has become one of the highest grossing Bollywood film of all time in India and worldwide. It is also the tenth highest grossing Bollywood film in overseas markets up until then."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/UTV_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hamlet_A.D.D."}, "Title": {"type": "literal", "value": "Hamlet A.D.D."}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Swant|http://dbpedia.org/resource/Bobby_Ciraldo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Swant|http://dbpedia.org/resource/Bobby_Ciraldo|http://dbpedia.org/resource/David_Robbins_(artist)|http://dbpedia.org/resource/Dustin_Diamond|http://dbpedia.org/resource/Kevin_Murphy_(actor)|http://dbpedia.org/resource/Kumar_Pallana|http://dbpedia.org/resource/Leslie_Hall|http://dbpedia.org/resource/Majel_Barrett|http://dbpedia.org/resource/Mark_Borchardt|http://dbpedia.org/resource/Mark_Metcalf|http://dbpedia.org/resource/Neil_Hamburger_(actor)|http://dbpedia.org/resource/Samwell_(entertainer)|http://dbpedia.org/resource/Tay_Zonday|http://dbpedia.org/resource/Trace_Beaulieu"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Hamlet A.D.D., directed by Bobby Ciraldo & Andrew Swant and produced by Special Entertainment, is a 2014 independent feature film and web series which re-imagines Shakespeare\u2019s play as a bizarre and comical tour through the ages. The world premiere was held at the Los Angeles Museum of Contemporary Art (MOCA LA) in April 2014. This version of Hamlet is a comedy shot entirely in front of a green screen and features live-action characters in an animated world. The story begins in 1602 and leaps chronologically through time to the present, then into the distant future. Guest stars include Dustin Diamond (Saved by the Bell), Mark Metcalf (Animal House), Majel Barrett Roddenberry (Star Trek), Trace Beaulieu & Kevin Murphy (Mystery Science Theater 3000), Mark Borchardt & Mike Schank (American Movie), Kumar Pallana (Rushmore), Leslie Hall (Yo Gabba Gabba!), Samwell (\"What What\"), Tay Zonday (Chocolate Rain), Michael Q. Schmidt (Tim & Eric Awesome Show), and comic Gregg Turkington as his character Neil Hamburger (Tim & Eric Awesome Show). Scenes from the film have been shown at White Columns gallery (New York City), the Green Gallery (Milwaukee), the Frederick Layton Gallery (MIAD), INOVA gallery (UW-Milwaukee), and appeared as a special feature on the Mystery Science Theater 3000 XV box set. The film was supported by the Mary L. Nohl Fellowship for Artists."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Time_Freak"}, "Title": {"type": "literal", "value": "Time Freak"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Bowler"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "11"}, "Description": {"type": "literal", "value": "Time Freak is a 2011 short comedy film written and directed by Andrew Bowler, and produced by Gigi Causey. The film was nominated for the 2012 Academy Award for Best Live Action Short Film. The time-travel comedy was inspired by other time-travel movies like Primer and Back to the Future. Bowler and Causey decided to produce the film after they got married, spending the $25,000 they had saved to buy an apartment in New York. The film was rejected by several film festivals, including Sundance, Telluride, and Tribeca, but the couple submitted it to the Academy of Motion Picture Arts and Sciences, which selected the film as a nominee for the award. The film stars John Conor Brooke, Michael Nathanson and Emilea Wilson. Brooke and Nathanson are roommates, but Nathanson hasn't been home for three days, so Brooke goes to Nathanson's lab in a run down building to check on him. Nathanson has just perfected the time machine he had been working on, but is behaving oddly. It turns out he has been re-doing the events of the day before, trying to perfect his interactions at a dry cleaner and with a woman (Wilson) that he wants to impress."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Natale_col_Boss"}, "Title": {"type": "literal", "value": "Natale col Boss"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Volfango_De_Biasi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Lillo_&_Greg|http://dbpedia.org/resource/Paolo_Ruffini"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Italian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "Natale col Boss (\"Christmas with the Boss\") is a 2015 Italian criminal comedy film written and directed by Volfango De Biasi. It grossed $8,528,805 at the Italian box office."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tanu_Weds_Manu"}, "Title": {"type": "literal", "value": "Tanu Weds Manu"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Anand_L._Rai"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jimmy_Shergill|http://dbpedia.org/resource/Kangana_Ranaut|http://dbpedia.org/resource/R._Madhavan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Indian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "119"}, "Description": {"type": "literal", "value": "Tanu Weds Manu is a 2011 Indian romantic drama film directed by Anand L. Rai, and produced by Shailesh R. Singh. It stars R. Madhavan, Kangana Ranaut and Jimmy Shergill in the lead roles. The story of the film has been written by Himanshu Sharma, music is directed by Krsna Solo and the lyrics penned by Rajshekhar. The film was released on 25 February 2011. Upon release, the film was commercially successful, particularly in Delhi, UP and Punjab. It was dubbed in German and released under the title Tanu Und Manu Trauen Sich. The film was remade in Telugu as Mr. Pellikoduku. A sequel, titled Tanu Weds Manu Returns was released on May 22, 2015."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Soundrya_Production|http://dbpedia.org/resource/Viacom_18_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Conversations_with_Other_Women"}, "Title": {"type": "literal", "value": "Conversations with Other Women"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Hans_Canosa"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aaron_Eckhart|http://dbpedia.org/resource/Helena_Bonham_Carter|http://dbpedia.org/resource/Nora_Zehetner|http://dbpedia.org/resource/Olivia_Wilde"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "Conversations with Other Women is a 2005 bittersweet romantic drama film directed by Hans Canosa, written by Gabrielle Zevin, starring Aaron Eckhart and Helena Bonham Carter. The film won Best Actress for Bonham Carter at the 2005 Tokyo International Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Zonad"}, "Title": {"type": "literal", "value": "Zonad"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/John_Carney_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Irish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Zonad is a film by John Carney and Kieran Carney that premiered in July 2009 at the Galway Film Fleadh with the directors in attendance.The film went to general release in Ireland March 19, 2010."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Chintakayala_Ravi"}, "Title": {"type": "literal", "value": "Chintakayala Ravi"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Yogie"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anushka_Shetty|http://dbpedia.org/resource/Daggubati_Venkatesh|http://dbpedia.org/resource/Mamta_Mohandas"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "152"}, "Description": {"type": "literal", "value": "Chintakayala Ravi....Software Engineer is a 2008 Telugu romantic comedy produced by Nallamalupu Bujji, and directed by Yogi. The cross over cinema, starring Venkatesh, Anushka Shetty, Mamta Mohandas in lead roles and Jr. NTR in a cameo appearance, with music composed by Vishal-Shekhar, received positive reviews."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Hangover_Part_III"}, "Title": {"type": "literal", "value": "The Hangover Part III"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Todd_Phillips"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bradley_Cooper|http://dbpedia.org/resource/Ed_Helms|http://dbpedia.org/resource/Heather_Graham|http://dbpedia.org/resource/Jeffrey_Tambor|http://dbpedia.org/resource/John_Goodman|http://dbpedia.org/resource/Justin_Bartha|http://dbpedia.org/resource/Ken_Jeong|http://dbpedia.org/resource/Mike_Epps|http://dbpedia.org/resource/Zach_Galifianakis"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "The Hangover Part III is a 2013 American comedy film produced by Legendary Pictures and distributed by Warner Bros. Pictures. It is the third and final installment in The Hangover trilogy. The film stars Bradley Cooper, Ed Helms, Zach Galifianakis, Justin Bartha, and Ken Jeong. The supporting cast includes Jeffrey Tambor, Heather Graham, Mike Epps, Melissa McCarthy and John Goodman with Todd Phillips directing a screenplay written by himself and Craig Mazin. The film follows the \"Wolfpack\" (Phil, Stu, Doug, and Alan) as they try to get Alan the help he needs after facing a personal crisis. However, things go awry when an incident from the original film comes back to haunt them. The Hangover Part III was announced days before the release of The Hangover Part II and Mazin, who co-wrote Part II, was brought on board. In January 2012, the principal actors re-signed to star. In March 2012, Warner Bros. announced a U.S. Memorial Weekend release. The supporting roles were cast between June and September 2012. Principal photography began in September 2012 in Los Angeles, California before moving to Nogales, Arizona and Las Vegas, Nevada. The film was released on May 23, 2013."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jesus_Christ_Vampire_Hunter"}, "Title": {"type": "literal", "value": "Jesus Christ Vampire Hunter"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lee_Demarbre"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ian_Driscoll|http://dbpedia.org/resource/Jeff_Moffet|http://dbpedia.org/resource/Murielle_Varhelyi|http://dbpedia.org/resource/Nicholas_Edwards_(actor)|http://dbpedia.org/resource/Phil_Caracas"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:2000s_musical_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Jesus Christ Vampire Hunter is a 2001 cult film from Odessa Filmworks which deals with Jesus' modern-day struggle to protect the lesbians of Ottawa, Ontario, Canada, from vampires with the help of Mexican wrestler El Santo (based on El Santo, Enmascarado de Plata, and played by actor Jeff Moffet, who starred as El Santo in two other Odessa Filmworks productions). This film earned an honorable mention in the Spirit of Slamdance category at the 2002 Slamdance Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Odessa_Filmworks"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Chasing_Amy"}, "Title": {"type": "literal", "value": "Chasing Amy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Smith"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Affleck|http://dbpedia.org/resource/Dwight_Ewell|http://dbpedia.org/resource/Jason_Lee_(actor)|http://dbpedia.org/resource/Jason_Mewes|http://dbpedia.org/resource/Joey_Lauren_Adams|http://dbpedia.org/resource/Kevin_Smith"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "113"}, "Description": {"type": "literal", "value": "Chasing Amy is a 1997 American romantic comedy-drama film written and directed by Kevin Smith. The central tension revolves around sexuality, sexual history, and evolving friendships. It is the third film in Smith's View Askewniverse series. The film was originally inspired by a brief scene from an early movie by a friend of Smith's. In Guinevere Turner's Go Fish, one of the lesbian characters imagines her friends passing judgment on her for \"selling out\" by sleeping with a man. Kevin Smith was dating star Joey Lauren Adams at the time he was writing the script, which was also partly inspired by her. The film won two awards at the 1998 Independent Spirit Awards (Best Screenplay for Smith and Best Supporting Actor for Jason Lee)."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Miramax_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/This_Is_Sanlitun"}, "Title": {"type": "literal", "value": "This Is Sanlitun"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/R\u00f3bert_Ingi_Douglas"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Carlos_Ottery"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Chinese_comedy_films|http://dbpedia.org/resource/Category:Irish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "This Is Sanlitun is a 2013 comedy film directed by R\u00f3bert Ingi Douglas. It is a co-production between China, Iceland and Ireland. It was screened in the Contemporary World Cinema section at the 2013 Toronto International Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Men_Who_Save_the_World"}, "Title": {"type": "literal", "value": "Men Who Save the World"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Liew_Seng_Tat"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Dutch_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films|http://dbpedia.org/resource/Category:German_comedy_films|http://dbpedia.org/resource/Category:Malaysian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Men Who Save the World (Malay: Lelaki Harapan Dunia) is a 2014 internationally co-produced comedy film written and directed by Liew Seng Tat. It is produced by Sharon Gan and is a co-production project between Everything Films Sdn. Bhd. (Malaysia) and Volya Films (The Netherlands), Flying Moon Filmproduktion (Germany) and Mandra Films (France) with support from Ministry of Information, Communication and Culture (Malaysia), Torino Film Lab (Italy), Hubert Bals Fund (The Netherlands), Netherlands Film Fund, World Cinema Fund (Germany), Visions Sud Est (Switzerland), Fondation Groupama Gan pour le Cin\u00e9ma - Cinefondation (France), Prince Claus (The Netherlands), Sundance Institute Mahindra Global Filmmaking Award, Sundance Institute Feature Film Program dan the Doris Duke Foundation (USA). The film was selected as the Malaysian entry for the Best Foreign Language Film at the 88th Academy Awards but it was not nominated."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Misfortunates"}, "Title": {"type": "literal", "value": "The Misfortunates"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Felix_Van_Groeningen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Johan_Heldenbergh"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Belgian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "The Misfortunates (Dutch: De helaasheid der dingen) is a 2009 Belgian comedy-drama film directed by Felix Van Groeningen. It is adapted from the (partly autobiographical) book De Helaasheid der Dingen by Belgian writer Dimitri Verhulst. The film stars Koen De Graeve, Johan Heldenbergh, Wouter Hendrickx, Bert Haelvoet, Valentijn Dhaenens, Kenneth Vanbaeden and Gilda De Bal."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Players_(film)"}, "Title": {"type": "literal", "value": "The Players"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Emmanuelle_Bercot|http://dbpedia.org/resource/Gilles_Lellouche|http://dbpedia.org/resource/Jan_Kounen|http://dbpedia.org/resource/Jean_Dujardin|http://dbpedia.org/resource/Michel_Hazanavicius|http://dbpedia.org/resource/\u00c9ric_Lartigau"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gilles_Lellouche|http://dbpedia.org/resource/Jean_Dujardin"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "The Players (French: Les Infid\u00e8les) is a 2012 omnibus comedy film starring Jean Dujardin and Gilles Lellouche, with each of them also directing and writing a segment."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Porn_in_the_Hood"}, "Title": {"type": "literal", "value": "Porn in the Hood"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Franck_Gastambide"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Porn in the Hood (French: Les Ka\u00efra) is a 2012 French comedy film directed by Franck Gastambide. It is based on a popular web series, Kaira Shopping. It was a commercial success, being the most profitable French film in 2012."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Marc_Pease_Experience"}, "Title": {"type": "literal", "value": "The Marc Pease Experience"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Todd_Louiso"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anna_Kendrick|http://dbpedia.org/resource/Ben_Stiller|http://dbpedia.org/resource/Ebon_Moss-Bachrach|http://dbpedia.org/resource/Jason_Schwartzman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "The Marc Pease Experience is a 2009 comedy film directed by Todd Louiso and written by Louiso and Jacob Koskoff. Shot primarily in and around Wilmington and New Hanover County, North Carolina in early 2007, the film is centered on Marc Pease, a man living in the past, when he was the star of his high school's musicals. The film stars Jason Schwartzman as Pease, Ben Stiller as Marc's former mentor, and Anna Kendrick as his love interest."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Vantage"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/In_Search_of_La_Che"}, "Title": {"type": "literal", "value": "In Search of La Che"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mark_D._Ferguson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Duncan_Airlie_James"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "71"}, "Description": {"type": "literal", "value": "In Search of La Che is a Scottish spoof documentary film directed by Mark D. Ferguson. The screenplay was written by Andy S. McEwan. In Search of La Che premiered at the Glasgow Film Theatre on 9 November 2011."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Waitress!"}, "Title": {"type": "literal", "value": "Waitress!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lloyd_Kaufman|http://dbpedia.org/resource/Michael_Herz_(producer)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1980s_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Waitress! is a 1981 comedy film directed by Lloyd Kaufman and Michael Herz of Troma Entertainment. It was the second in Troma's line of \"sexy comedies\", preceded by the 1979's Squeeze Play! and followed by 1982's Stuck on You! and 1983's The First Turn-On!."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Troma_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Cabin_Fever_(2002_film)"}, "Title": {"type": "literal", "value": "Cabin Fever"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Eli_Roth"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Arie_Verveen|http://dbpedia.org/resource/Cerina_Vincent|http://dbpedia.org/resource/Giuseppe_Andrews|http://dbpedia.org/resource/James_DeBello|http://dbpedia.org/resource/Joey_Kern|http://dbpedia.org/resource/Jordan_Ladd|http://dbpedia.org/resource/Rider_Strong"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Cabin Fever is a 2002 American horror film directed by Eli Roth and starring Rider Strong, Jordan Ladd, James DeBello, and Giuseppe Andrews. It was produced by Lauren Moews and Evan Astrowsky and executive produced by Susan Jackson. The film was the directing debut of Roth, who co-wrote the film with Randy Pearlstein. The story follows a group of college graduates who rent a cabin in the woods and begin to fall victim to a flesh-eating virus. The inspiration for the film's story came from a real life experience during a trip to Iceland when Roth developed a skin infection. Roth wanted the style of his film to make a departure from many modern horror films that had been released at the time. One modern horror film, The Blair Witch Project, did inspire Roth to use the internet to help promote the film during its production and help gain interest towards its distribution. The film itself, however, draws from many of Roth's favorite horror films, such as The Evil Dead, The Texas Chain Saw Massacre, and The Last House on the Left."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lions_Gate_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Me_Him_Her"}, "Title": {"type": "literal", "value": "Me Him Her"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Max_Landis"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dustin_Milligan|http://dbpedia.org/resource/Emily_Meade|http://dbpedia.org/resource/Luke_Bracey"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Me Him Her is a 2015 American comedy film written and directed by Max Landis, in his directorial debut. The film stars Luke Bracey, Dustin Milligan, and Emily Meade. The film had its world premiere at the Seattle International Film Festival on June 5, 2015. The film was released in a limited release and through video on demand on March 11, 2016, by FilmBuff."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Filmbuff"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ugly_Me"}, "Title": {"type": "literal", "value": "Pretendiendo"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Melissa_George"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amaya_Forch|http://dbpedia.org/resource/B\u00e1rbara_Mori|http://dbpedia.org/resource/Felipe_Camiroaga|http://dbpedia.org/resource/Gonzalo_Robles|http://dbpedia.org/resource/Jaime_Az\u00f3car|http://dbpedia.org/resource/Marcelo_Mazzarello|http://dbpedia.org/resource/Rodrigo_Mu\u00f1oz"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "118"}, "Description": {"type": "literal", "value": "Pretendiendo (Pretending) known as Ugly Me in the U.S. is a 2006 Chilean romantic comedy film directed and written by Claudio Dabed. The film is about a beautiful but romantically disappointed woman named Amanda who decides to transform into an ugly duckling in an attempt to ward off men. Amanda also adopts another persona, that of a gorgeous vixen named Helena. The film stars B\u00e1rbara Mori."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Second_Hand_Husband"}, "Title": {"type": "literal", "value": "Second Hand Husband"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Smeep_Kang"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dharmendra|http://dbpedia.org/resource/Gippy_Grewal|http://dbpedia.org/resource/Tina_Ahuja"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Second Hand Husband is a 2015 Indian romantic comedy film produced by GB Entertainment and directed by Smeep Kang and starring Gippy Grewal, Tina Ahuja, and Dharmendra. The film marks the Bollywood film debut of Govinda\u2019s daughter, Tina Ahuja, and famous Punjabi Singer and Actor Gippy Grewal. The film released on 3 July 2015 to negative reviews."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Stuck_on_You!"}, "Title": {"type": "literal", "value": "Stuck on You!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lloyd_Kaufman|http://dbpedia.org/resource/Michael_Herz_(producer)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Irwin_Corey"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1980s_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Stuck on You! is a 1982 comedy film directed by Lloyd Kaufman and Michael Herz of Troma Entertainment. Stuck on You! was the third in a series of four \"sexy comedies\" that helped establish Troma, beginning with 1979's smash hit Squeeze Play!, 1981's Waitress!, and followed by 1983's The First Turn-On!. Lloyd Kaufman has stated that Stuck on You! is his favorite of Troma's \"sexy comedies\". The tagline of the film is \"It's Boys, It's Girls, It's Crazy...It's A Stuckin' Good Time!!!\""}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Troma_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Anuvahood"}, "Title": {"type": "literal", "value": "Anuvahood"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Deacon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Deacon|http://dbpedia.org/resource/Ashley_Walters|http://dbpedia.org/resource/Femi_Oyeniran|http://dbpedia.org/resource/Jazzie_Zonzolo|http://dbpedia.org/resource/Ollie_Barbieri|http://dbpedia.org/resource/Wil_Johnson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:British_comedy-drama_films|http://dbpedia.org/resource/Category:British_criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Anuvahood is a 2011 British urban comedy film directed by Adam Deacon, who also plays the film's lead character. It also stars Paul Kaye, Wil Johnson, Ollie Barbieri, Femi Oyeniran, Jocelyn Jee Esien, and Ashley Walters. Critics received it negatively; it had a strong box-office opening. The film released worldwide on 18 March 2011. Anuvahood is a parody of films in the vein of urban movies such as Kidulthood, Adulthood, and Shank, all of which Deacon starred in."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Eating_Out_4:_Drama_Camp"}, "Title": {"type": "literal", "value": "Eating Out: Drama Camp"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Q._Allan_Brocka"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Salvatore|http://dbpedia.org/resource/Rebekah_Kochan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "Eating Out 4: Drama Camp (2011) is the fourth film in the Eating Out franchise. The film is co-written (with Phillip J. Bartell) and directed by Q. Allan Brocka."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bin_Bulaye_Baraati"}, "Title": {"type": "literal", "value": "Bin Bulaye Baraati"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chandrakant_Singh"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aftab_Shivdasani|http://dbpedia.org/resource/Om_Puri|http://dbpedia.org/resource/Priyanka_Kothari|http://dbpedia.org/resource/Rajpal_Yadav|http://dbpedia.org/resource/Sanjai_Mishra|http://dbpedia.org/resource/Vijay_Raaz"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Bin Bulaye Baraati is a 2011 Bollywood comedy film written by Praful Parekh and M.Salim and directed by Chandrakant Singh. The stars Aftab Shivdasani, Priyanka Kothari, Rajpal Yadav, Om Puri, Sanjay Mishra, Shakti Kapoor and Vijay Raaz in lead roles, with Shweta Tiwari featured in a cameo appearance and Mallika Sherawat and Shweta Bhardwaj appearing in song numbers. The film was released in India on 17 June 2011 and received mixed reviews."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Dhanraj_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Think_Like_a_Man"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tim_Story"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "123"}, "Description": {"type": "literal", "value": "Think Like a Man is a 2012 American romantic comedy film directed by Tim Story and written by Keith Marryman and David A. Newman, based on Steve Harvey's 2009 book Act Like a Lady, Think Like a Man. The film stars an ensemble cast, featuring Michael Ealy, Jerry Ferrara,Meagan Good, Regina Hall, Kevin Hart, Terrence J, Taraji P. Henson, Romany Malco and Gabrielle Union. The film was released on April 20, 2012 by Screen Gems."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Screen_Gems"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Cousinhood"}, "Title": {"type": "literal", "value": "Cousinhood"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Daniel_S\u00e1nchez_Ar\u00e9valo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Inma_Cuesta|http://dbpedia.org/resource/Quim_Guti\u00e9rrez|http://dbpedia.org/resource/Ra\u00fal_Ar\u00e9valo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Cousinhood (Spanish: Primos) is a 2011 Spanish film written and directed by Daniel Sanchez Ar\u00e9valo and starring Quim Guti\u00e9rrez, Ra\u00fal Ar\u00e9valo and Adri\u00e1n Lastra. This is the third film of Sanch\u00e9z Ar\u00e9valo, but his very first comedy, and it premiered on February 4, 2011. The film was shot in Comillas (Cantabria) during spring 2010. The film received two nominations for the Goya awards 2012: best \"breakout author\" (Adri\u00e1n Lastra) and best \"supporting actor\" (Ra\u00fal Ar\u00e9valo)."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Space_Chimps"}, "Title": {"type": "literal", "value": "Space Chimps"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kirk_DeMicco"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Samberg|http://dbpedia.org/resource/Cheryl_Hines|http://dbpedia.org/resource/Jeff_Daniels|http://dbpedia.org/resource/Kristin_Chenoweth|http://dbpedia.org/resource/Patrick_Warburton|http://dbpedia.org/resource/Stanley_Tucci"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "Space Chimps is a 2008 American 3D computer-animated science fiction comedy film directed by Kirk DeMicco and written by DeMicco and Rob Moreland. It features the voices of Andy Samberg, Cheryl Hines, Jeff Daniels, Patrick Warburton, Kristin Chenoweth, Kenan Thompson, Zack Shada, Carlos Alazraqui, Omid Abtahi, Patrick Breen, Jane Lynch, Kath Soucie, and Stanley Tucci. The film follows three chimpanzees that go into space to an alien planet. 20th Century Fox theatrically released the film on July 18, 2008. The film grossed $64.8 million on a $37 million budget. It received a Artios Award nomination for Outstanding Achievement in Casting - Animation Feature. A video game based on the film was released in 2008. A direct-to-video sequel, entitled Zartog Strikes Back, directed by John H. Williams, was released in 2010."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Odyssey_Entertainment|http://dbpedia.org/resource/Starz_Animation|http://dbpedia.org/resource/Studiopolis|http://dbpedia.org/resource/Vanguard_Animation"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Polka_King"}, "Title": {"type": "literal", "value": "The Polka King"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Maya_Forbes|http://dbpedia.org/resource/Wallace_Wolodarsky"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jack_Black|http://dbpedia.org/resource/Jacki_Weaver|http://dbpedia.org/resource/Jason_Schwartzman|http://dbpedia.org/resource/Jenny_Slate"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:2010s_criminal_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films|http://dbpedia.org/resource/Category:Comedy_films_based_on_actual_events"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Polka King is an upcoming American comedy film directed and written by Maya Forbes and Wallace Wolodarsky. The film stars Jack Black, Jenny Slate, Jason Schwartzman, and Jacki Weaver."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Horrid_Henry:_The_Movie"}, "Title": {"type": "literal", "value": "Horrid Henry: The Movie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nick_Moore_(film_director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anjelica_Huston|http://dbpedia.org/resource/Dick_and_Dom|http://dbpedia.org/resource/Jo_Brand|http://dbpedia.org/resource/Kimberley_Walsh|http://dbpedia.org/resource/Mathew_Horne|http://dbpedia.org/resource/Noel_Fielding|http://dbpedia.org/resource/Parminder_Nagra|http://dbpedia.org/resource/Richard_E._Grant|http://dbpedia.org/resource/Siobhan_Hayes|http://dbpedia.org/resource/Theo_Stevenson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Horrid Henry: The Movie is a 2011 British 3D children's adventure film directed by Nick Moore and produced by Allan Niblo, Rupert Preston, Mike Watts, and Lucinda Whiteley, who wrote it. In it, Henry and The Purple Hand Gang fight to prevent the closure of their school by an evil private school Headmaster. It is based on the fictional character Horrid Henry from the children's book series by Francesca Simon. It stars Theo Stevenson, Richard E. Grant, Parminder Nagra, Kimberley Walsh, Mathew Horne, Siobhan Hayes, Dick and Dom, Noel Fielding, Jo Brand, and Anjelica Huston. It was the first British film for children to be shot in 3D. The film was officially released in cinemas on 29 July 2011 in 2D, RealD 3D, and 3D formats by Vertigo Films in the United Kingdom. Phase 4 Films and Entertainment One released the film in theatres in the United States and Canada on 22 December 2012. The film has an approval rating of 10% on Rotten Tomatoes and grossed $10.1 million worldwide. Horrid Henry: The Movie was released on DVD and Blu-ray on 9 November 2012."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Vertigo_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kopps"}, "Title": {"type": "literal", "value": "Kopps"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Josef_Fares"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Fares_Fares|http://dbpedia.org/resource/G\u00f6ran_Ragnerstam|http://dbpedia.org/resource/Sissela_Kyle|http://dbpedia.org/resource/Torkel_Petersson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Swedish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Kopps is a Swedish film which was released to cinemas in Sweden on 7 February 2003, directed by Josef Fares. The name itself is a pun on pronouncing the English word \"Cops\" with a Swedish accent. The film is a comedy about Swedish police, starring Fares Fares, Torkel Petersson, Sissela Kyle, G\u00f6ran Ragnerstam and Eva R\u00f6se."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sonet_Film"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Teacher's_Pet_(2004_film)"}, "Title": {"type": "literal", "value": "Teacher's Pet"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Timothy_Bj\u00f6rklund"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/David_Ogden_Stiers|http://dbpedia.org/resource/Debra_Jo_Rupp|http://dbpedia.org/resource/Jerry_Stiller|http://dbpedia.org/resource/Kelsey_Grammer|http://dbpedia.org/resource/Nathan_Lane|http://dbpedia.org/resource/Shaun_Fleming"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "74"}, "Description": {"type": "literal", "value": "Teacher's Pet is a 2004 American animated musical comedy film based on the television series of the same name; the film ends the central storyline of the series. Produced by Disney Television Animation and released theatrically on January 16, 2004, the film was a box office bomb but a critical success.The movie is dedicated to creator Gary Baseman's dog, Hubcaps, who died while the film was in production."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Caprice_(2015_film)"}, "Title": {"type": "literal", "value": "Caprice"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Emmanuel_Mouret"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ana\u00efs_Demoustier|http://dbpedia.org/resource/Emmanuel_Mouret|http://dbpedia.org/resource/Laurent_Stocker|http://dbpedia.org/resource/Virginie_Efira"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:French_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Caprice is a 2015 French romantic comedy film written and directed by Emmanuel Mouret, and starring Mouret, Virginie Efira, Ana\u00efs Demoustier and Laurent Stocker. It won the award for Best Film at the 2015 Cabourg Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/She_Wants_Me"}, "Title": {"type": "literal", "value": "She Wants Me"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rob_Margolies"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aaron_Yoo|http://dbpedia.org/resource/Hilary_Duff|http://dbpedia.org/resource/Johnny_Messner_(actor)|http://dbpedia.org/resource/Josh_Gad|http://dbpedia.org/resource/Kristen_Ruhlin|http://dbpedia.org/resource/Melonie_Diaz"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "She Wants Me is a 2012 comedy film starring Josh Gad, Kristen Ruhlin, Johnny Messner, Aaron Yoo and Melonie Diaz and also featured appearances of Hilary Duff and Charlie Sheen. It was written and directed by Rob Margolies."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lymelife"}, "Title": {"type": "literal", "value": "Lymelife"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Derick_Martini"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alec_Baldwin|http://dbpedia.org/resource/Emma_Roberts|http://dbpedia.org/resource/Rory_Culkin"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Lymelife is a 2008 independent comedy-drama film written by brothers Derick Martini and Steven Martini, and directed by Derick Martini, depicting aspects of their life in 1970s Long Island from the perspective of a teenager. The film stars Alec Baldwin, Rory Culkin, and Emma Roberts. Martin Scorsese served as an executive producer. The film debuted at the 2008 Toronto International Film Festival, in September 2008 and won the International Federation of Film Critics Award (FIPRESCI). After its theatrical release in 2009, writer director Derick Martini was nominated for a Gotham Award for Breakthrough Director."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Screen_Media_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ted_(film)"}, "Title": {"type": "literal", "value": "Ted"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Seth_MacFarlane"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Mark_Wahlberg|http://dbpedia.org/resource/Mila_Kunis"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_fantasy-comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films|http://dbpedia.org/resource/Category:Best_Comedy_Empire_Award_winners|http://dbpedia.org/resource/Category:Fantasy-comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "Ted is a 2012 American comedy film directed by Seth MacFarlane in his feature film directorial debut. The screenplay by MacFarlane, Alec Sulkin, and Wellesley Wild is from MacFarlane's story. The film stars MacFarlane, Mark Wahlberg, Mila Kunis, and with Joel McHale and Giovanni Ribisi in supporting roles, with MacFarlane providing the voice of the title character. The film tells the story of John Bennett, a Boston native whose childhood wish brings his teddy bear friend Ted to life. However, Ted prevents John and his love interest Lori Collins from moving on with their lives. The film is MacFarlane's feature-length directorial debut, produced by Media Rights Capital and distributed by Universal Pictures. It was the twelfth-highest-grossing film of 2012 and received an Academy Award nomination for Best Original Song. A sequel, Ted 2, was released on June 26, 2015."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Fuzzy_Door_Productions|http://dbpedia.org/resource/Media_Rights_Capital"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Me,_Myself_and_Mum"}, "Title": {"type": "literal", "value": "Me, Myself and Mum"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Guillaume_Gallienne"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andr\u00e9_Marcon|http://dbpedia.org/resource/Fran\u00e7oise_Fabian|http://dbpedia.org/resource/Nanou_Garcia"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Me, Myself and Mum (French: Les Gar\u00e7ons et Guillaume, \u00e0 table !) is a 2013 French autobiographical coming of age comedy film written, directed by and starring Guillaume Gallienne. Based on his stage show of the same name, it follows Guillaume as a boy as he develops his own identity and his relationship with his mother. The film premiered at the 2013 Cannes Film Festival and was released in France on 20 November 2013. In January 2014, the film was nominated for ten C\u00e9sar Awards and won five, including awards for Best Film and Best First Feature Film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Gaumont_Film_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/My_Big_Fat_Independent_Movie"}, "Title": {"type": "literal", "value": "My Big Fat Independent Movie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Philip_Zlotorynski"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Clint_Howard|http://dbpedia.org/resource/Jason_Mewes|http://dbpedia.org/resource/Paget_Brewster|http://dbpedia.org/resource/Pauly_Shore"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "My Big Fat Independent Movie is a 2005 independent film produced, written and directed by former film critic Chris Gore spoofing well-known independent films, such as My Big Fat Greek Wedding, Memento, Swingers, Pulp Fiction, Magnolia, Am\u00e9lie, Reservoir Dogs, Pi, The Good Girl, Run Lola Run, Clerks and El Mariachi. My Big Fat Independent Movie was eventually acquired by Anchor Bay Entertainment distribution and the film was released on DVD. Broadcast cable rights were picked up by CBS Corporation for Showtime, The Movie Channel and Sundance Channel."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Anchor_Bay_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Seeking_a_Friend_for_the_End_of_the_World"}, "Title": {"type": "literal", "value": "Seeking a Friend for the End of the World"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lorene_Scafaria"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Brody|http://dbpedia.org/resource/Derek_Luke_(actor)|http://dbpedia.org/resource/Keira_Knightley|http://dbpedia.org/resource/Steve_Carell|http://dbpedia.org/resource/William_Petersen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films|http://dbpedia.org/resource/Category:Comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Seeking a Friend for the End of the World is a 2012 American comedy-drama film written and directed by Lorene Scafaria, in her directorial debut. The film stars Steve Carell and Keira Knightley. The title and plot are a reference to a track on Chris Cornell's 1999 album, Euphoria Morning, called \"Preaching the End of the World\". Filming began May 2011, in Los Angeles, California. The film was theatrically released on June 22, 2012 in the United States by Focus Features. The movie received mixed reviews from critics and it earned $9.6 million on a $10 million budget. Seeking a Friend for the End of the World was released on DVD and Blu-ray Disc and made available for digital streaming in the United States on October 23, 2012."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Focus_Features"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Yaaron_Ki_Baraat"}, "Title": {"type": "literal", "value": "Yaaron Ki Baraat"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ikram_Akhtar"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Sunny_Leone"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy-drama_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Yaaron Ki Baraat is an upcoming Indian 2016 Bollywood comedy-drama film directed by Ikram Akhtar and produced by Vinod Bachchan, under the Soundrya Production banner. The principal photography of the film will begin in March 2016 and will be released sometime in the fourth quarter of 2016. Sunny Leone will be in lead role."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Soundrya_Production"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kick-Ass_(film_series)"}, "Title": {"type": "literal", "value": "Kick-Ass"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jeff_Wadlow|http://dbpedia.org/resource/Matthew_Vaughn"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aaron_Taylor-Johnson|http://dbpedia.org/resource/Chlo\u00eb_Grace_Moretz|http://dbpedia.org/resource/Christopher_Mintz-Plasse|http://dbpedia.org/resource/Jim_Carrey|http://dbpedia.org/resource/Mark_Strong|http://dbpedia.org/resource/Nicolas_Cage"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films|http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "220"}, "Description": {"type": "literal", "value": "Kick-Ass is a British-American superhero comedy film series, based on the comic book of the same name by Mark Millar and John Romita, Jr. Its premise is that teenager Dave Lizewski sets out to become a real-life superhero, calling himself \"Kick-Ass\"."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Perfect_Match_(2016_film)"}, "Title": {"type": "literal", "value": "The Perfect Match"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bille_Woodruff"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "The Perfect Match is a 2016 American romantic comedy film directed by Bille Woodruff. The film was written by Dana Verde, Brandon Broussard and Gary Hardwick and stars Terrence J, Cassie Ventura, Lauren London and Paula Patton. It was released on March 11, 2016."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lions_Gate_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sleeping_with_Other_People"}, "Title": {"type": "literal", "value": "Sleeping with Other People"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Leslye_Headland"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Brody|http://dbpedia.org/resource/Adam_Scott_(actor)|http://dbpedia.org/resource/Alison_Brie|http://dbpedia.org/resource/Amanda_Peet|http://dbpedia.org/resource/Jason_Mantzoukas|http://dbpedia.org/resource/Jason_Sudeikis|http://dbpedia.org/resource/Natasha_Lyonne"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Sleeping with Other People is a 2015 American romantic comedy film directed and written by Leslye Headland. The film stars Jason Sudeikis, Alison Brie, Natasha Lyonne, Amanda Peet, and Adam Scott. Premiering at the 2015 Sundance Film Festival on January 24, 2015, the film was released theatrically on September 11, 2015, by IFC Films."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Films"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Gary_Sanchez_Productions|http://dbpedia.org/resource/IM_Global|http://dbpedia.org/resource/Sidney_Kimmel_Entertainment"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/2016_The_End"}, "Title": {"type": "literal", "value": "2016 The End"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jaideep_Chopra"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 The End is upcoming Drama & Comedy film written and directed by Jaideep Chopra under the banner Jaideep Chopra Productions."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hotel_Transylvania"}, "Title": {"type": "literal", "value": "Hotel Transylvania"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Genndy_Tartakovsky"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Sandler|http://dbpedia.org/resource/Andy_Samberg|http://dbpedia.org/resource/CeeLo_Green|http://dbpedia.org/resource/David_Spade|http://dbpedia.org/resource/Fran_Drescher|http://dbpedia.org/resource/Kevin_James|http://dbpedia.org/resource/Molly_Shannon|http://dbpedia.org/resource/Selena_Gomez|http://dbpedia.org/resource/Steve_Buscemi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Hotel Transylvania is a 2012 American 3D computer animated fantasy comedy film produced by Sony Pictures Animation. It was directed by Genndy Tartakovsky, and produced by Michelle Murdocca. The film stars the voices of Adam Sandler, Andy Samberg, Selena Gomez, Kevin James, Fran Drescher, Steve Buscemi, Molly Shannon, David Spade, and CeeLo Green. The film tells a story of Count Dracula, the owner of a hotel called Hotel Transylvania where the world's monsters can take a rest from human civilization. Dracula invites some of the most famous monsters to celebrate the 118th birthday of his daughter Mavis. When the \"non-human hotel\" is unexpectedly visited by an ordinary 21-year-old traveler named Jonathan, Dracula must protect Mavis from falling in love with him before the hotel's guests learn there is a human in the castle, which may jeopardize the hotel's future and his career. The film was released on September 28, 2012, by Columbia Pictures. It was met with mixed critical reception, while the general public received it favorably. Despite mixed reviews, Hotel Transylvania earned a total of $358 million on a budget of $85 million. The film was nominated for a Golden Globe Award for Best Animated Feature Film. It had launched a franchise, with a sequel, Hotel Transylvania 2, which takes place seven years after the film, in 2015, and a third film scheduled for 2018. A television series is planned for early 2017, and it will focus on the teenage years of Mavis and her friends at the Hotel Transylvania."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Strange_Bedfellows_(2004_film)"}, "Title": {"type": "literal", "value": "Strange Bedfellows"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dean_Murphy"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Caton|http://dbpedia.org/resource/Paul_Hogan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Australian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Strange Bedfellows is a 2004 Australian film starring Paul Hogan and Michael Caton as heterosexual men who pass themselves off as a gay couple in order to get financial benefits from the government. A stage musical based on the film ran at the Princess Theatre in Melbourne."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Drop_Dead_Gorgeous_(film)"}, "Title": {"type": "literal", "value": "Drop Dead Gorgeous"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Patrick_Jann"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Allison_Janney|http://dbpedia.org/resource/Amy_Adams_(actress)|http://dbpedia.org/resource/Brittany_Murphy|http://dbpedia.org/resource/Denise_Richards|http://dbpedia.org/resource/Ellen_Barkin|http://dbpedia.org/resource/Kirsten_Dunst|http://dbpedia.org/resource/Kirstie_Alley|http://dbpedia.org/resource/Mindy_Sterling|http://dbpedia.org/resource/Sam_McMurray|http://dbpedia.org/resource/Will_Sasso"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Drop Dead Gorgeous is a 1999 American black comedy film directed by Michael Patrick Jann and starring Kirstie Alley, Ellen Barkin, Kirsten Dunst, Allison Janney, Denise Richards, Brittany Murphy, and Amy Adams in her film debut. Shot in a mockumentary format, it follows the contestants in a beauty pageant called the Sarah Rose Cosmetics Mount Rose American Teen Princess Pageant, held in the small fictional town of Mount Rose, Minnesota, in which various contestants begin to die in suspicious ways."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/New_Line_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bad_Teacher"}, "Title": {"type": "literal", "value": "Bad Teacher"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jake_Kasdan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cameron_Diaz|http://dbpedia.org/resource/Jason_Segel|http://dbpedia.org/resource/Justin_Timberlake"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Bad Teacher is a 2011 American comedy film directed by Jake Kasdan based on a screenplay by Lee Eisenberg and Gene Stupnitsky, and starring Cameron Diaz, Justin Timberlake and Jason Segel. The film was released in the United States and Canada on June 24, 2011."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/In_a_World..."}, "Title": {"type": "literal", "value": "In a World..."}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lake_Bell"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "(This article is about the 2013 film. For the voice actor known for the phrase \"In a world...\", see Don LaFontaine.) In a World... is a 2013 American comedy film written, directed and co-produced by Lake Bell. The film stars Bell as Carol Solomon, a vocal coach intent on doing voice-over work for film trailers. The film co-stars Demetri Martin, Fred Melamed, Rob Corddry, Michaela Watkins, Ken Marino, Nick Offerman, and Tig Notaro. The film was a financial success, grossing nearly $3 million on a budget of less than $1 million, and received positive reviews from critics."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Flickering_Lights"}, "Title": {"type": "literal", "value": "Flickering Lights"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Anders_Thomas_Jensen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Mads_Mikkelsen|http://dbpedia.org/resource/Nikolaj_Lie_Kaas|http://dbpedia.org/resource/S\u00f8ren_Pilmark|http://dbpedia.org/resource/Ulrich_Thomsen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Flickering Lights (Danish: Blinkende Lygter) is a 2000 Danish black comedy film directed by Anders Thomas Jensen starring S\u00f8ren Pilmark, Mads Mikkelsen, Ulrich Thomsen and Nikolaj Lie Kaas. A major success in its native Denmark, it is frequently elected in polls as the greatest film in Danish cinema."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Lucky_Ones_(film)"}, "Title": {"type": "literal", "value": "The Lucky Ones"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Neil_Burger"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "The Lucky Ones is a 2008 American comedy-drama directed by Neil Burger. The screenplay by Burger and Dirk Wittenborn focuses on three United States Army soldiers who find themselves drawn together by unforeseen circumstances."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lions_Gate_Entertainment|http://dbpedia.org/resource/Roadside_Attractions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jai_Maruthi_800"}, "Title": {"type": "literal", "value": "Jai Maruthi 800"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Harsha_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Sharan_(actor)|http://dbpedia.org/resource/Shruthi_Hariharan|http://dbpedia.org/resource/Shubha_Poonja"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Jai Maruthi 800 is a 2016 Indian Kannada action-comedy film written and directed by A. Harsha and produced by Jayanna. It stars Sharan, Shruthi Hariharan and Shubha Poonja in the lead roles. The music is composed by Arjun Janya and cinematography by Swamy.J. The director had revealed that the script had been penned by a renowned Telugu writer. It was also reported that Sharan plays a small-time realtor called Maruti in the movie and is unexpectedly caught in a crisis over a litigated 800-acre land.Sharan had also developed six-pack abs for the film especially for the climax of the film"}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Rags_(2012_film)"}, "Title": {"type": "literal", "value": "Rags"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bille_Woodruff"}, "Author": {"type": "literal", "value": "http://dbpedia.org/resource/Jason_Fuchs"}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Avan_Jogia|http://dbpedia.org/resource/Burkely_Duffield|http://dbpedia.org/resource/Drake_Bell|http://dbpedia.org/resource/Keenan_Tracey|http://dbpedia.org/resource/Keke_Palmer|http://dbpedia.org/resource/Max_Schneider"}, "Published": {"type": "literal", "value": "2012-05-28"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_musical_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Rags is a Nickelodeon Original Movie. It is a musical gender switched inversion of the Cinderella fairy tale, starring Max Schneider, Keke Palmer, Drake Bell, Avan Jogia and Nick Cannon. The movie premiered on Nickelodeon in May 28, 2012. The film was released on August 28, 2012 as a double feature with Big Time Movie."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kapoor_&_Sons"}, "Title": {"type": "literal", "value": "Kapoor & Sons"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Shakun_Batra"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alia_Bhatt|http://dbpedia.org/resource/Fawad_Khan|http://dbpedia.org/resource/Rajat_Kapoor|http://dbpedia.org/resource/Ratna_Pathak|http://dbpedia.org/resource/Rishi_Kapoor|http://dbpedia.org/resource/Sidharth_Malhotra"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy-drama_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "132"}, "Description": {"type": "literal", "value": "Kapoor & Sons, also known as Kapoor & Sons (Since 1921), is an Indian Hindi-language comedy-drama film directed by Shakun Batra and produced by Karan Johar, Hiroo Yash Johar, and Apoorva Mehta under the banners of Dharma Productions and Fox Star Studios. The film stars an ensemble cast, featuring Sidharth Malhotra, Fawad Khan and Alia Bhatt in leading roles, while Rishi Kapoor, Ratna Pathak and Rajat Kapoor were cast in supporting roles. Kapoor & Sons tells the story of two estranged brothers who return to their dysfunctional family after their grandfather suffers a cardiac arrest. The film was released worldwide on 18 March 2016. Kapoor & Sons and Khan's performance received critical acclaim upon release. Made on a budget of \u20b935 crore (US$5.2 million), the film earned over \u20b9152 crore (US$23 million) worldwide."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Star_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Buford's_Beach_Bunnies"}, "Title": {"type": "literal", "value": "Buford's Beach Bunnies"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mark_Pirro"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Buford's Beach Bunnies is a 1993 American comedy film featuring Jim Hanks."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kamome_Shokudo"}, "Title": {"type": "literal", "value": "Kamome Shokud\u014d"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Naoko_Ogigami"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hairi_Katagiri|http://dbpedia.org/resource/Jarkko_Niemi_(actor)|http://dbpedia.org/resource/Markku_Peltola|http://dbpedia.org/resource/Masako_Motai|http://dbpedia.org/resource/Satomi_Kobayashi|http://dbpedia.org/resource/Tarja_Markus"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Japanese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Kamome Shokud\u014d (\u304b\u3082\u3081\u98df\u5802 Kamome shokud\u014d) is a 2006 comedy film written and directed by Japanese director Naoko Ogigami, It's based on a novel by Y\u014dko Mure. The film is set in the Finnish capital Helsinki, and follows a Japanese woman who sets up a diner serving Japanese food in the city, and the friends she makes in the process. Cast members include: Hairi Katagiri (Midori), Satomi Kobayashi (Sachie, the shopkeeper), Masako Motai (Masako), Markku Peltola, Tarja Markus (Liisa), and Jarkko Niemi (Tommi)."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ved_verdens_ende"}, "Title": {"type": "literal", "value": "Ved verdens ende"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tomas_Villum_Jensen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Birgitte_Hjort_S\u00f8rensen|http://dbpedia.org/resource/Nikolaj_Coster-Waldau|http://dbpedia.org/resource/Nikolaj_Lie_Kaas"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Ved verdens ende (At World's End) is a 2009 Danish action comedy film directed by Tomas Villum Jensen and starring Nikolaj Lie Kaas, Birgitte Hjort S\u00f8rensen and Nikolaj Coster-Waldau."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Boog_and_Elliot's_Midnight_Bun_Run"}, "Title": {"type": "literal", "value": "Boog and Elliot's Midnight Bun Run"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Anthony_Stacchi|http://dbpedia.org/resource/Jill_Culton"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ashton_Kutcher|http://dbpedia.org/resource/Cody_Cameron|http://dbpedia.org/resource/Georgia_Engel|http://dbpedia.org/resource/Gordon_Tootoosis|http://dbpedia.org/resource/Martin_Lawrence"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "4"}, "Description": {"type": "literal", "value": "Boog and Elliot's Midnight Bun Run is a 2007 computer-animated short film from Sony Pictures Animation. A spin-off of the animated movie Open Season, Boog and Elliot's Midnight Bun Run was released on the Open Season DVD and Blu-ray on January 30, 2007."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures|http://dbpedia.org/resource/Sony_Pictures_Home_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Horns_(film)"}, "Title": {"type": "literal", "value": "Horns"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alexandre_Aja"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Daniel_Radcliffe|http://dbpedia.org/resource/David_Morse_(actor)|http://dbpedia.org/resource/Heather_Graham|http://dbpedia.org/resource/James_Remar|http://dbpedia.org/resource/Joe_Anderson_(actor)|http://dbpedia.org/resource/Juno_Temple|http://dbpedia.org/resource/Kathleen_Quinlan|http://dbpedia.org/resource/Kelli_Garner|http://dbpedia.org/resource/Max_Minghella|http://dbpedia.org/resource/Sabrina_Carpenter"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Horror_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "Horns is a 2013 American dark fantasy horror film directed by Alexandre Aja, loosely based on Joe Hill's novel of the same name. Daniel Radcliffe stars as a man who is accused of raping and murdering his girlfriend (Juno Temple) and uses his newly discovered paranormal abilities to uncover the real killer. The film had its world premiere at the 2013 Toronto International Film Festival, and was released theatrically in the United States on October 31, 2014."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Dimension_Films|http://dbpedia.org/resource/The_Weinstein_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Temporary_Family"}, "Title": {"type": "literal", "value": "Temporary Family"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Cheuk_Wan-chi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Angelababy|http://dbpedia.org/resource/Nick_Cheung|http://dbpedia.org/resource/Sammi_Cheng"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Hong_Kong_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "Temporary Family (\u5931\u6200\u6025\u8b93) is a 2014 Hong Kong comedy film."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tim_and_Eric's_Billion_Dollar_Movie"}, "Title": {"type": "literal", "value": "Tim and Eric's Billion Dollar Movie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Eric_Wareheim|http://dbpedia.org/resource/Tim_Heidecker"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Eric_Wareheim|http://dbpedia.org/resource/John_C._Reilly|http://dbpedia.org/resource/Tim_Heidecker|http://dbpedia.org/resource/Will_Ferrell|http://dbpedia.org/resource/Zach_Galifianakis"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Surreal_comedy"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Tim and Eric's Billion Dollar Movie (shorthand B$M) is a 2012 American comedy film written and directed by Tim Heidecker and Eric Wareheim, creators of Tim and Eric Awesome Show, Great Job!. The film stars Heidecker and Wareheim with a supporting cast which includes Zach Galifianakis, Will Ferrell, John C. Reilly, Ray Wise, Twink Caplan, Robert Loggia, and Will Forte. The film centers on Heidecker and Wareheim attempting to gain a billion dollars by re-opening a shopping mall to pay their debt to the \"Schlaaang Corporation\", after failing to create a film with the billion dollars provided to them. It was released in theaters on March 2, 2012, and was released to iTunes and on-demand January 27, 2013. The film was made without the involvement of Adult Swim and Williams Street Productions who have broadcast and produced several of the duo's projects, though many of the cast and crew members involved had previously collaborated with the duo."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Magnet_Releasing"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Reno_911!:_Miami"}, "Title": {"type": "literal", "value": "Reno 911!: Miami"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Robert_Ben_Garant"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Carlos_Alazraqui|http://dbpedia.org/resource/Cedric_Yarbrough|http://dbpedia.org/resource/Kerri_Kenney-Silver|http://dbpedia.org/resource/Mary_Birdsong|http://dbpedia.org/resource/Niecy_Nash|http://dbpedia.org/resource/Robert_Ben_Garant|http://dbpedia.org/resource/Thomas_Lennon_(actor)|http://dbpedia.org/resource/Wendi_McLendon-Covey"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Comedy_Central_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "Reno 911!: Miami is a 2007 American cop comedy film based on Comedy Central's Reno 911! directed by cast member Robert Ben Garant, who plays \"Junior\". It was released on February 23, 2007. The film opened at #4 with an estimated gross of $10.4 million."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox|http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mumbai_Delhi_Mumbai"}, "Title": {"type": "literal", "value": "Mumbai Delhi Mumbai"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Satish_Rajwade"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Piaa_Bajpai|http://dbpedia.org/resource/Shiv_Pandit"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "Mumbai Delhi Mumbai is 2014 Hindi language Indian romance-comedy written and directed by Satish Rajwade for Viacom 18 Motion Pictures. The film, adapted from Rajwade's 2011 Mumbai-Pune-Mumbai, stars Shiv Pandit and Pia Bajpai, and released on 5 December."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Viacom_18_Motion_Pictures"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Elektra_Luxx"}, "Title": {"type": "literal", "value": "Elektra Luxx"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sebastian_Gutierrez"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "Elektra Luxx is a 2010 comedy film directed and written by Sebastian Gutierrez featuring Carla Gugino. The film is a sequel to the ensemble comedy, Women in Trouble. The film premiered at the South by Southwest Film Festival 2010, where it was acquired by Sony Pictures and was released to the rest of the country on March 11, 2011. It was shown on UK TV on February 28, 2011."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Myriad_pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/War_Dogs_(2016_film)"}, "Title": {"type": "literal", "value": "War Dogs"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Todd_Phillips"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ana_de_Armas|http://dbpedia.org/resource/Jonah_Hill|http://dbpedia.org/resource/Miles_Teller"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_criminal_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films|http://dbpedia.org/resource/Category:Comedy_films_based_on_actual_events"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "War Dogs is a 2016 American biographical black comedy war film directed by Todd Phillips and written by Phillips, Jason Smilovic and Stephen Chin, based on a Rolling Stone article by Guy Lawson. Lawson then wrote a book titled Arms and the Dudes detailing the story. The film follows two arms dealers, Efraim Diveroli and David Packouz, who receive a US Army contract to supply munitions for the Afghan National Army worth approximately $300 million and are eventually charged with fraud for repackaging Chinese ammunition. The film is heavily fictionalized and dramatized, and some of its events, such as the duo driving through Iraq, were either invented or based on other events, such as screenwriter Stephen Chin's own experiences. The film stars Jonah Hill, Miles Teller, Ana de Armas and Bradley Cooper, who also co-produced. Filming began on March 2, 2015 in Romania. The film premiered in New York City on August 3, 2016 and was theatrically released by Warner Bros. Pictures on August 19, 2016. It received mixed reviews from critics, although Hill's performance was praised, and has grossed over $83 million."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros._Pictures"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/The_Mark_Gordon_Company"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Imsai_Arasan_23rd_Pulikecei"}, "Title": {"type": "literal", "value": "Imsai Arasan 23rd Pulikecei"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chimbu_Deven"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Monica_(actress)|http://dbpedia.org/resource/Tejashree|http://dbpedia.org/resource/Vadivelu"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "142"}, "Description": {"type": "literal", "value": "Imsai Arasan 23rd Pulikecei (English: The King of Torture, Pulikecei the 23rd) is a 2006 Indian Tamil language historical-comedy film written and directed by Chimbu Deven. The film stars Vadivelu in his debut as a lead actor. Monica and Tejashree play the female leads, while Manorama, Nassar, Ilavarasu, Sreeman and Nagesh play supporting roles. Sabesh-Murali composed the soundtrack album and background score. S. Shankar produced and distributed the film under his production banner S Pictures. Set in the late 18th century during the early stages of the British Raj, the film tells the story of twin brothers separated at birth. Pulikecei XXIII, the foolish elder brother, becomes a puppet of his uncle, the Chief Minister, while Ukraputhan, the wise younger brother, becomes a patriot intent on saving his land and his brother. Principal photography began in November 2005 at Prasad Studios. Imsai Arasan 23rd Pulikecei was released on 8 July 2006, and was the first historical Tamil film released since Madhuraiyai Meetta Sundharapandiyan (1978). The film received positive reviews, with critics praising the screenplay, the performances, and the dialogues. A box office success, the film won two Tamil Nadu State Film Awards and one Filmfare Award. The film was dubbed into Telugu as Himsinche 23 Va Raju Pulikesi."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/S_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/I_Kissed_a_Girl_(film)"}, "Title": {"type": "literal", "value": "I Kissed a Girl"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/No\u00e9mie_Saglio"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adrianna_Gradziel|http://dbpedia.org/resource/Camille_Cottin|http://dbpedia.org/resource/Franck_Gastambide|http://dbpedia.org/resource/Lannick_Gautry|http://dbpedia.org/resource/Pio_Marma\u00ef"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "I Kissed a Girl (French: Toute premi\u00e8re fois) is a 2015 French comedy film directed by No\u00e9mie Saglio and Maxime Govare."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/But_I'm_a_Cheerleader"}, "Title": {"type": "literal", "value": "But I'm a Cheerleader"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jamie_Babbit"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cathy_Moriarty|http://dbpedia.org/resource/Clea_DuVall|http://dbpedia.org/resource/Douglas_Spain|http://dbpedia.org/resource/Eddie_Cibrian|http://dbpedia.org/resource/Melanie_Lynskey|http://dbpedia.org/resource/Natasha_Lyonne|http://dbpedia.org/resource/Richard_Moll|http://dbpedia.org/resource/RuPaul|http://dbpedia.org/resource/Wesley_Mann"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85|92"}, "Description": {"type": "literal", "value": "But I'm a Cheerleader is a 1999 satirical romantic comedy film directed by Jamie Babbit and written by Brian Wayne Peterson. Natasha Lyonne stars as Megan Bloomfield, a high school cheerleader whose parents send her to a residential inpatient conversion therapy camp to cure her lesbianism. There Megan soon comes to embrace her sexual orientation, despite the therapy, and falls in love. The supporting cast includes Melanie Lynskey, Dante Basco, Eddie Cibrian, Clea DuVall, Cathy Moriarty, RuPaul, Richard Moll, Mink Stole, Kip Pardue, Michelle Williams, and Bud Cort. But I'm a Cheerleader was Babbit's first feature film. It was inspired by an article about conversion therapy and her childhood familiarity with rehabilitation programs. She used the story of a young woman finding her sexual identity to explore the social construction of gender roles and heteronormativity. The costume and set design of the film highlighted these themes using artificial textures in intense blues and pinks. When it was initially rated as NC-17 by the MPAA, Babbit made cuts to allow it to be re-rated as R. When interviewed in the documentary film This Film Is Not Yet Rated Babbit criticized the MPAA for discriminating against films with gay content. Many critics did not like the film, comparing it unfavorably with the films of John Waters and criticizing the colorful production design. Although the lead actors were praised for their performances, some of the characters were described as stereotypical."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lions_Gate_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Lookalike_(2014_film)"}, "Title": {"type": "literal", "value": "The Lookalike"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Richard_Gray_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gillian_Jacobs|http://dbpedia.org/resource/Gina_Gershon|http://dbpedia.org/resource/Jerry_O'Connell|http://dbpedia.org/resource/John_Corbett|http://dbpedia.org/resource/Justin_Long|http://dbpedia.org/resource/Luis_Guzm\u00e1n|http://dbpedia.org/resource/Scottie_Thompson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_thriller_films|http://dbpedia.org/resource/Category:Criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "The Lookalike is an 2014 American comedy crime thriller film directed by Richard Gray and written by Michele Davis-Gray. The film stars Justin Long, John Corbett, Gillian Jacobs, Jerry O'Connell, Gina Gershon, Scottie Thompson and Luis Guzm\u00e1n. Filming began on December 3, 2012 and ended on January 18, 2013 in New Orleans and the Bahamas."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lost_Embrace"}, "Title": {"type": "literal", "value": "Lost Embrace"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Daniel_Burman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adriana_Aizemberg|http://dbpedia.org/resource/Daniel_Hendler|http://dbpedia.org/resource/Sergio_Boris"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:Argentine_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy-drama_films|http://dbpedia.org/resource/Category:Spanish_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Lost Embrace (Spanish: El abrazo partido) is a 2004 Argentine, French, Italian, and Spanish comedy drama film, directed by Daniel Burman and written by Burman and Marcelo Birmajer. The picture features Daniel Hendler, Adriana Aizemberg, Jorge D'El\u00eda, among others. The drama was Argentina's official choice for the 2004 Oscar Awards, Foreign Language film category. The comedy-drama tells of Ariel Makaroff, the grandson of Holocaust-era Polish refugees, who is currently on a complex search for his personal and cultural identity."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Axiom_Films|http://dbpedia.org/resource/BD_Cine"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Free_Birds"}, "Title": {"type": "literal", "value": "Free Birds"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jimmy_Hayward"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amy_Poehler|http://dbpedia.org/resource/Owen_Wilson|http://dbpedia.org/resource/Woody_Harrelson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Free Birds is a 2013 American 3D computer-animated buddy comedy film about two turkeys traveling back in time to prevent Thanksgiving. It was produced by Reel FX Creative Studios as its first animated feature film. Jimmy Hayward directed the film, which he also co-wrote with Scott Mosier, the film's producer. The film stars the voices of Owen Wilson, Woody Harrelson and Amy Poehler, with supporting roles done by George Takei, Colm Meaney, Keith David and Dan Fogler. Originally titled Turkeys, and scheduled for 2014, the film was released on November 1, 2013, by Relativity Media. The film received negative reviews from critics and earned $110 million on a $55 million budget."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Relativity_Media"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Byl_jednou_jeden_polda"}, "Title": {"type": "literal", "value": "Byl jednou jeden polda"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jaroslav_Soukup"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ladislav_Potm\u011b\u0161il|http://dbpedia.org/resource/Rudolf_Hru\u0161\u00ednsk\u00fd|http://dbpedia.org/resource/Simona_Krainov\u00e1"}, "Published": {"type": "literal", "value": "1995-02-02"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "Byl jednou jeden polda  is a Czech comedy film directed by Jaroslav Soukup. It was released in 1995."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Declaration_of_War_(film)"}, "Title": {"type": "literal", "value": "Declaration of War"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Val\u00e9rie_Donzelli"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Val\u00e9rie_Donzelli"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Declaration of War (French: La Guerre est d\u00e9clar\u00e9e) is a 2011 French film directed by Val\u00e9rie Donzelli, and written by and starring Donzelli and J\u00e9r\u00e9mie Elka\u00efm; it is based on actual events in their lives together, when they were a young couple caring for their dangerously ill son. It was released on the 31 August 2011 and received very positive reviews; Allocin\u00e9, a review aggregation website gave it an average of 4.3 stars out of five. Le Monde gave it a full five stars, saying \"Against cancer, an undoubtable force of happiness\". The film was selected as the French entry for the Best Foreign Language Film at the 84th Academy Awards, but it did not make the final shortlist."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Wild_Bunch_Distribution"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Details_(film)"}, "Title": {"type": "literal", "value": "The Details"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jacob_Aaron_Estes"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dennis_Haysbert|http://dbpedia.org/resource/Elizabeth_Banks|http://dbpedia.org/resource/Kerry_Washington|http://dbpedia.org/resource/Laura_Linney|http://dbpedia.org/resource/Ray_Liotta|http://dbpedia.org/resource/Tobey_Maguire"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "The Details is a 2011 film directed by Jacob Aaron Estes. When a family of raccoons discover worms living underneath the sod in Jeff and Nealy's backyard, this pest problem begins a darkly comic and wild chain reaction of domestic tension, infidelity and murder. It has a rating of 46% on Rotten Tomatoes based on 35 reviews."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/The_Weinstein_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Magician_(2006_film)"}, "Title": {"type": "literal", "value": "The Magician"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Cem_Y\u0131lmaz"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cem_Y\u0131lmaz|http://dbpedia.org/resource/Mazhar_Alanson|http://dbpedia.org/resource/\u00d6zlem_Tekin"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:Turkish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "119"}, "Description": {"type": "literal", "value": "The Magician (Turkish: Hokkabaz) is a 2006 Turkish comedy-drama film, directed by Cem Y\u0131lmaz and Ali Taner Baltac\u0131, about a magician who tours around Turkey with his father and best friend so that he can make enough money for laser eye surgery. The film, which was released on October 20, 2006, was short-listed for Turkey's official entry for the Academy Award for Best Foreign Language Film at the 80th Academy Awards but lost out to Takva."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Meet_Me_in_Montenegro"}, "Title": {"type": "literal", "value": "Meet Me in Montenegro"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alex_Holdridge|http://dbpedia.org/resource/Linnea_Saasen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alex_Holdridge|http://dbpedia.org/resource/Jennifer_Ulrich|http://dbpedia.org/resource/Linnea_Saasen|http://dbpedia.org/resource/Rupert_Friend"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Meet Me in Montenegro is a romantic comedy film written and directed by Alex Holdridge and Linnea Saasen. It had its premiere at the Toronto International Film Festival in September 2014. The film was distributed by The Orchard and had its North American Theatrical release in Summer 2015; it was launched at festivals across Europe throughout 2015, including the Edinburgh International Film Festival, Munich Film Film Festival, Dublin International Film Festival, Krak\u00f3w's Off Camera International Festival of Independent Cinema and Troms\u00f8 International Film Festival. The film stars Alex Holdridge, Linnea Saasen, Rupert Friend and Jennifer Ulrich."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/The_Orchard_(company)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mr._Magorium's_Wonder_Emporium"}, "Title": {"type": "literal", "value": "Mr. Magorium's Wonder Emporium"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Zach_Helm"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dustin_Hoffman|http://dbpedia.org/resource/Jason_Bateman|http://dbpedia.org/resource/Natalie_Portman|http://dbpedia.org/resource/Zach_Mills"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Fantasy-comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Mr. Magorium's Wonder Emporium is a 2007 Canadian-American family/children's fantasy comedy film written and directed by Zach Helm, produced by FilmColony, Mandate Pictures, Walden Media, Richard N. Gladstein and James Garavente and music composed by Alexandre Desplat and Aaron Zigman. The film stars Dustin Hoffman as the owner of a magical toy store, and Natalie Portman as his store employee. Also starring Jason Bateman as the mutant accountant and Zach Mills as the hat collector and his store volunteer. The film was theatrically released on November 16, 2007 by 20th Century Fox, Icon Productions, Roadshow Entertainment, Best Film, Dutch FilmWorks, Universum Film, Metropolitan Filmexport, Nordisk Film Distribution, Shapira, Ascot Elite Entertainment Group and LNK Audiovisuais (now Pris Audiovisuais). The film grossed $69.5 million worldwide. It received a Young Artist Award nomination for Best Performance in a Feature Film - Leading Young Actor. The film was released on DVD and Blu-ray Disc on March 4, 2008 by 20th Century Fox Home Entertainment."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox|http://dbpedia.org/resource/Dutch_FilmWorks|http://dbpedia.org/resource/Icon_Productions|http://dbpedia.org/resource/Metropolitan_Filmexport|http://dbpedia.org/resource/Nordisk_Film|http://dbpedia.org/resource/Roadshow_Entertainment|http://dbpedia.org/resource/Universum_Film_AG"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Timer_(film)"}, "Title": {"type": "literal", "value": "TiMER"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jac_Schaeffer"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Desmond_Harrington|http://dbpedia.org/resource/Emma_Caulfield|http://dbpedia.org/resource/JoBeth_Williams|http://dbpedia.org/resource/John_Patrick_Amedori|http://dbpedia.org/resource/Kali_Rocha|http://dbpedia.org/resource/Michelle_Borth"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "Timer (stylized as TiMER) is a 2009 science-fiction romantic comedy film by Jac Schaeffer about a device that counts down to the moment one meets their soulmate."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Capewatch_Pictures|http://dbpedia.org/resource/Present_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hotel_for_Dogs_(film)"}, "Title": {"type": "literal", "value": "Hotel for Dogs"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Thor_Freudenthal"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Don_Cheadle|http://dbpedia.org/resource/Emma_Roberts|http://dbpedia.org/resource/Jake_T._Austin|http://dbpedia.org/resource/Johnny_Simmons|http://dbpedia.org/resource/Kevin_Dillon|http://dbpedia.org/resource/Kyla_Pratt|http://dbpedia.org/resource/Lisa_Kudrow|http://dbpedia.org/resource/Troy_Gentile"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Hotel for Dogs is a 2009 American family comedy film based on the 1971 Lois Duncan novel of the same name. The film, directed by Thor Freudenthal and adapted by Jeff Lowell, Bob Schooley, and Mark McCorkle, stars Jake T. Austin, Emma Roberts, Troy Gentile, Kyla Pratt, Johnny Simmons, Lisa Kudrow, Kevin Dillon and Don Cheadle. It tells the story of two orphans, Andi and Bruce (played by Roberts and Austin), who attempt to hide their dog at an abandoned hotel after their strict new guardians tell them that pets are forbidden at their home. They also take in other dogs to avoid the dogs being taken away by two cold hearted animal pound workers and police officers. The film is Nickelodeon's second film to be produced by DreamWorks Pictures after Lemony Snicket's A Series of Unfortunate Events and the first Nickelodeon film ever to be produced outside of Paramount Pictures, which still distributed the film for DreamWorks. Shooting began in November 2007 and filming took place entirely in the cities of Los Angeles and Universal City, California. The dogs in the film were trained for several months before shooting. Nearly 80 boys auditioned for the role of Bruce before Austin was ultimately selected. The film was released in the United States on January 16, 2009, and grossed approximately $17 million in its opening weekend in 3,271 theaters."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Frozen_(2013_film)"}, "Title": {"type": "literal", "value": "Frozen"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Buck|http://dbpedia.org/resource/Jennifer_Lee_(filmmaker)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Idina_Menzel|http://dbpedia.org/resource/Jonathan_Groff|http://dbpedia.org/resource/Josh_Gad|http://dbpedia.org/resource/Kristen_Bell|http://dbpedia.org/resource/Santino_Fontana"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Frozen is a 2013 American 3D computer-animated musical fantasy comedy-drama film produced by Walt Disney Animation Studios and released by Walt Disney Pictures. It is the 53rd Disney animated feature film. Inspired by Hans Christian Andersen's fairy tale The Snow Queen, the film tells the story of a fearless princess who sets off on an epic journey alongside a rugged iceman, his loyal pet reindeer, and a na\u00efve snowman to find her estranged sister, whose icy powers have inadvertently trapped the kingdom in eternal winter. Frozen underwent several story treatments for years before being commissioned in 2011, with a screenplay written by Jennifer Lee, and both Chris Buck and Lee serving as directors. It features the voices of Kristen Bell, Idina Menzel, Jonathan Groff, Josh Gad and Santino Fontana. Christophe Beck, who had worked on Disney's award-winning short Paperman (2012), was hired to compose the film's orchestral score, while husband-and-wife songwriting team Robert Lopez and Kristen Anderson-Lopez wrote the songs. Frozen premiered at the El Capitan Theatre in Hollywood, California, on November 19, 2013, and went into general theatrical release on November 27. It was met with strongly positive reviews from critics and audiences, with some film critics considering Frozen to be the best Disney animated feature film since the studio's renaissance era. The film was also a massive commercial success; it accumulated nearly $1.3 billion in worldwide box office revenue, $400 million of which was earned in the United States and Canada and $247 million of which was earned in Japan. It ranks as the highest-grossing animated film of all time, the third-highest-grossing original film of all time, the ninth-highest-grossing film of all time, the highest-grossing film of 2013, and the third-highest-grossing film in Japan. With over 18 million home media sales in 2014, it became the best-selling film of the year in the United States. By January 2015, Frozen had become the all-time best-selling Blu-ray Disc in the United States. Frozen won two Academy Awards for Best Animated Feature and Best Original Song (\"Let It Go\"), the Golden Globe Award for Best Animated Feature Film, the BAFTA Award for Best Animated Film, five Annie Awards (including Best Animated Feature), two Grammy Awards for Best Compilation Soundtrack for Visual Media and Best Song Written for Visual Media (\"Let It Go\"), and two Critics' Choice Movie Awards for Best Animated Feature and Best Original Song (\"Let It Go\"). An animated short sequel, Frozen Fever, premiered on March 13, 2015, with Disney's Cinderella. On March 12, 2015, a feature-length sequel was announced, with Buck and Lee returning as directors and Peter Del Vecho returning as producer. A release date has not been disclosed."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/30_Minutes_or_Less"}, "Title": {"type": "literal", "value": "30 Minutes or Less"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ruben_Fleischer"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aziz_Ansari|http://dbpedia.org/resource/Danny_McBride|http://dbpedia.org/resource/Fred_Ward|http://dbpedia.org/resource/Jesse_Eisenberg|http://dbpedia.org/resource/Michael_Pena|http://dbpedia.org/resource/Nick_Swardson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "30 Minutes or Less is a 2011 American action comedy film directed by Ruben Fleischer starring Jesse Eisenberg, Danny McBride, Aziz Ansari and Nick Swardson. It is produced by Columbia Pictures and funded by Media Rights Capital."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bam_Margera_Presents:_Where_the_\u266f$&%25_Is_Santa%3F"}, "Title": {"type": "literal", "value": "Bam Margera Presents: Where the #$&% Is Santa?"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bam_Margera"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Bam Margera Presents: Where the #$&% Is Santa? (A.K.A. Bam Margera Presents: Where the Fuck is Santa?) is an original film released in 2008 by Warner Bros.. The film stars Bam Margera, Brandon Novak, Mark The Bagger, and other members both of Bam's family and friends. It follows the daredevil and comedic themes of Margera's MTV shows Viva La Bam and Jackass, while retaining a holiday-themed goal for the film; namely celebrating Christmas and finding Santa Claus. Bam Margera also mentioned a sequel to this movie on Radio Bam."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Home_Video"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Right_Way_(film)"}, "Title": {"type": "literal", "value": "The Right Way"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mark_Penney"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/James_McGowan_(actor)|http://dbpedia.org/resource/Jefferson_Brown|http://dbpedia.org/resource/Karyn_Dwyer|http://dbpedia.org/resource/Keir_Gilchrist|http://dbpedia.org/resource/Sarain_Boylan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:Canadian_comedy-drama_films|http://dbpedia.org/resource/Category:Canadian_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "77"}, "Description": {"type": "literal", "value": "The Right Way is a 2004 Canadian film directed by Mark Penney. It tells the story of Amy and David two young people from suburbia, whose lives are going nowhere, when they meet their relationship alters their lives forever and sends them surreal and existential crisis. The Right Way was an Official Selection of the 2004 Venice Film Festival and had a limited theatrical release in the United States in December 2005, it was released to video on demand services in 2010."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tanu_Weds_Manu:_Returns"}, "Title": {"type": "literal", "value": "Tanu Weds Manu Returns"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Anand_L._Rai"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Deepak_Dobriyal|http://dbpedia.org/resource/Jimmy_Shergill|http://dbpedia.org/resource/Kangana_Ranaut|http://dbpedia.org/resource/R._Madhavan|http://dbpedia.org/resource/Swara_Bhaskar"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy-drama_films|http://dbpedia.org/resource/Category:Indian_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "128"}, "Description": {"type": "literal", "value": "Tanu Weds Manu Returns is a 2015 Indian romantic drama film directed by Anand L. Rai which serves as a sequel to the 2011 film Tanu Weds Manu. Kangana Ranaut, R. Madhavan, Jimmy Shergill, Deepak Dobriyal, Swara Bhaskar and Eijaz Khan reprise their roles from the original film. Ranaut also portrays the additional role of a Haryanvi athlete in it. The story, screenplay and the dialogues were written by Himanshu Sharma. The soundtrack and film score were composed by Krsna Solo and the lyrics were penned by Rajshekhar. Saroj Khan and Bosco\u2013Caesar were the film\u2032s choreographers while the editing was done by Hemal Kothari. The principal photography began in October 2014 and the film was released on 22 May 2015. The film carries the story forward showing the next chapter of the couple's life. Tanu Weds Manu Returns received acclaim from critics and Ranaut's performance was particularly praised. Made on a budget of \u20b939 crore (US$5.8 million), the film earned \u20b9243 crore (US$36 million) worldwide and became one of the highest grossing Bollywood films. The film received three awards at the 63rd National Film Awards, including a best actress award for Ranaut."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Eros_International"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Off_the_Ledge"}, "Title": {"type": "literal", "value": "Off the Ledge"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Brooke_Mikey_Anderson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Brooke_Mikey_Anderson|http://dbpedia.org/resource/Maria_Cina|http://dbpedia.org/resource/Nathan_Baesel"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Off the Ledge is a 2009 American comedy genre film, with a twist."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Poola_Rangadu_(2012_film)"}, "Title": {"type": "literal", "value": "Poola Rangadu"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Veerabhadram_Chowdary"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Isha_Chawla|http://dbpedia.org/resource/Sunil_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "150"}, "Description": {"type": "literal", "value": "Poola Rangadu is a Telugu comedy film directed by Veerabhadram starring Sunil and Isha Chawla in lead roles. Atchi Reddy has produced the film under Max India banner. Anoop Rubens has scored the music and Prasad Murella has done the camera."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/R._R._Movie_Makers"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Nice_Package"}, "Title": {"type": "literal", "value": "Nice Package"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dan_Macarthur"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dwayne_Cameron"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Australian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Nice Package is a 2013 gangster comedy feature starring Dwayne Cameron, Isabella Tannock and Leon Cain. The film is produced by Melanie Poole and directed by Dan Macarthur."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Butch_Jamie"}, "Title": {"type": "literal", "value": "Butch Jamie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michelle_Ehlen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Michelle_Ehlen"}, "Published": {"type": "literal", "value": "2007-07-12"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "Butch Jamie is a gender-bending comedy film that premiered in July 2007 at Outfest: the Los Angeles Gay and Lesbian Film Festival. Writer, director, and lead actress Michelle Ehlen won Outfest's Grand Jury Award for \"Outstanding Actress in a Feature Film.\" The film was produced independently through the filmmaker's production company, Ballet Diesel Films."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/It's_Kind_of_a_Funny_Story_(film)"}, "Title": {"type": "literal", "value": "It's Kind of a Funny Story"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Anna_Boden|http://dbpedia.org/resource/Ryan_Fleck"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Emma_Roberts|http://dbpedia.org/resource/Jim_Gaffigan|http://dbpedia.org/resource/Keir_Gilchrist|http://dbpedia.org/resource/Lauren_Graham|http://dbpedia.org/resource/Viola_Davis|http://dbpedia.org/resource/Zach_Galifianakis|http://dbpedia.org/resource/Zo\u00eb_Kravitz"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:Teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "It's Kind of a Funny Story is a 2010 comedy-drama film written and directed by Anna Boden and Ryan Fleck, an adaptation of Ned Vizzini's 2006 novel of the same name. The film stars Keir Gilchrist, Zach Galifianakis, Emma Roberts, and Viola Davis. It was released in the United States on October 8, 2010 and received generally positive reviews."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Focus_Features"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/A_Room_for_Romeo_Brass"}, "Title": {"type": "literal", "value": "A Room for Romeo Brass"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Shane_Meadows"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Shim|http://dbpedia.org/resource/Paddy_Considine|http://dbpedia.org/resource/Vicky_McClure"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy-drama_films|http://dbpedia.org/resource/Category:British_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "A Room for Romeo Brass is a 1999 British comedy-drama film directed and written by Shane Meadows. It was co-written by frequent Meadows collaborator Paul Fraser. Filming began in September 1998. The film stars Andrew Shim as Romeo Brass, Ben Marshall as Gavin Woolley and Paddy Considine as Morell. It marked the screen debut of McClure and Considine, the latter who went on to star in Meadows' 2004 film, Dead Man's Shoes. It was nominated in three categories at the 1999 British Independent Film Awards."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Alliance_Atlantis|http://dbpedia.org/resource/Momentum_Pictures|http://dbpedia.org/resource/USA_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jay_Jay"}, "Title": {"type": "literal", "value": "Jay Jay"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Saran_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Pooja_Umashankar|http://dbpedia.org/resource/Priyanka_Kothari|http://dbpedia.org/resource/R._Madhavan"}, "Published": {"type": "literal", "value": "2003-11-14"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "132"}, "Description": {"type": "literal", "value": "Jay Jay (Tamil: \u0b9c\u0bc7 \u0b9c\u0bc7) is a 2003 Tamil romance film written and directed by Saran. The film features R. Madhavan, Amogha and Pooja in the leading roles while Kalabhavan Mani, Charle, Dhamu and Malavika Avinash also play key supporting roles. Produced by V. Ravichandran of Oscar Films, the film had music scored by Bharathwaj. It released in November 2003 to average reviews and box office collections. This movie is unofficial remake of Hollywood movie Serendipity."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Romantics_(film)"}, "Title": {"type": "literal", "value": "The Romantics"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Galt_Niederhoffer"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Brody|http://dbpedia.org/resource/Anna_Paquin|http://dbpedia.org/resource/Dianna_Agron|http://dbpedia.org/resource/Elijah_Wood|http://dbpedia.org/resource/Josh_Duhamel|http://dbpedia.org/resource/Katie_Holmes|http://dbpedia.org/resource/Malin_\u00c5kerman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "The Romantics is a 2010 romantic comedy film based on the novel of the same name by Galt Niederhoffer, who also wrote the screenplay and directed the film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Famous_Productions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dogma_(film)"}, "Title": {"type": "literal", "value": "Dogma"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Smith"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alan_Rickman|http://dbpedia.org/resource/Ben_Affleck|http://dbpedia.org/resource/Chris_Rock|http://dbpedia.org/resource/Jason_Lee_(actor)|http://dbpedia.org/resource/Linda_Fiorentino|http://dbpedia.org/resource/Matt_Damon|http://dbpedia.org/resource/Salma_Hayek"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films|http://dbpedia.org/resource/Category:American_fantasy-comedy_films|http://dbpedia.org/resource/Category:Religious_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "128"}, "Description": {"type": "literal", "value": "Dogma is a 1999 American comedy film, written and directed by Kevin Smith, who also stars along with Ben Affleck, Matt Damon, Linda Fiorentino, Alan Rickman, Bud Cort, Salma Hayek, Chris Rock, Jason Lee, George Carlin, Janeane Garofalo, Alanis Morissette, and Jason Mewes. It is the fourth film in Smith's View Askewniverse series. Brian O'Halloran and Jeff Anderson, stars of the first Askewniverse film Clerks, have cameo roles, as do Smith regulars Scott Mosier, Dwight Ewell, Walt Flanagan, and Bryan Johnson. The film's irreverent treatment of Catholicism and the Roman Catholic Church triggered considerable controversy, even before its opening. The Catholic League denounced it as \"blasphemy\". Organized protests delayed its release in many countries and led to at least two death threats against Smith. The plot revolves around two fallen angels who plan to employ an alleged loophole in Catholic dogma to return to Heaven, after being cast out by God; but as existence is founded on the principle that God is infallible, their success would prove God wrong and thus undo all creation. The last scion and two prophets are sent by the Voice of God to stop them."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lionsgate_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dum_Laga_Ke_Haisha"}, "Title": {"type": "literal", "value": "Dum Laga Ke Haisha"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sharat_Katariya"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ayushmann_Khurana|http://dbpedia.org/resource/Bhumi_Pednekar"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "Dum Laga Ke Haisha is a 2015 Indian Hindi romantic comedy film directed by Sharat Katariya starring Ayushmann Khurana and Bhumi Pednekar in the lead roles. The film's background score is composed by Italian composer Andrea Guerra. The film was released on 27 February 2015 to good critical reception. Box Office India stated that the film collected \u20b930.19 crore (US$4.5 million) after a five-week run. The film celebrated 50 days of its theatrical run on 16 April 2015. The film got five nominations at the 61st Filmfare Awards, winning two, Best Female Debut for Pednekar and Best Cinematography. The song \"Moh Moh Ke Dhaage\" got three nominations for its lyrics by Varun Grover and vocals by Papon and Monali Thakur. The film also won the National Film Award for Best Feature Film in Hindi."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jatra_(film)"}, "Title": {"type": "literal", "value": "Jatra"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kedar_Shinde"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bharat_Jadhav|http://dbpedia.org/resource/Kranti_Redkar|http://dbpedia.org/resource/Siddarth_Jadhav"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "133"}, "Description": {"type": "literal", "value": "Jatra (Marathi: \u091c\u0924\u094d\u0930\u093e) is a Marathi comedy movie that was released in 2006. It is considered one of the more popular films starring actors Bharat Jadhav and Siddarth Jadhav. The music was composed by the duo Ajay and Atul Gogavale. Jatra features the song Kombadi Palali, which at the time became a 'superhit'. Ajay and Atul later used same tune from the song \"Kombdi Palali\" when composing the item song \"Chikni Chameli\" for the Hindi film Agneepath in 2012."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bear_(2011_film)"}, "Title": {"type": "literal", "value": "Bear"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nash_Edgerton"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Nash_Edgerton|http://dbpedia.org/resource/Teresa_Palmer|http://dbpedia.org/resource/Warwick_Thornton"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "11"}, "Description": {"type": "literal", "value": "Bear is a 2011 Australian short black comedy drama film directed by Nash Edgerton and written by David Michod and Nash Edgerton. The film had its world premiere in competition at the Cannes Film Festival on 21 May 2011."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Missing_Gun"}, "Title": {"type": "literal", "value": "The Missing Gun"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lu_Chuan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jiang_Wen|http://dbpedia.org/resource/Ning_Jing|http://dbpedia.org/resource/Wu_Yujuan"}, "Published": {"type": "literal", "value": "2002-05-08"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Black_comedy_films|http://dbpedia.org/resource/Category:Chinese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "The Missing Gun (Chinese: \u5bfb\u67aa; pinyin: X\u00fan Qi\u0101ng) is a 2002 Chinese black comedy film directed by Lu Chuan and starring Jiang Wen, Ning Jing and Wu Yujuan. A directorial debut of Lu, the film premiered during the 9th Beijing College Student Film Festival on 21 April 2002. A pioneer digital screening was subsequently held in Shanghai on 28 April, making The Missing Gun the first film screened in China with digital cinema technology. The film was officially released on 8 May in Beijing. Adapted from a novelette by Fan Yiping, the film revolves around a small-town policeman who embarks on a search for his missing gun. The film also explores the themes of self-identity and self-respect, as well as addresses a number of pertinent social issues, such as counterfeits, in China."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Grean_Fictions"}, "Title": {"type": "literal", "value": "Grean Fictions"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chookiat_Sakveerakul"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Pongsatorn_Sripinta"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Thai_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Grean Fictions (Thai: \u0e40\u0e01\u0e23\u0e35\u0e22\u0e19\u0e1f\u0e34\u0e04\u0e0a\u0e31\u0e48\u0e19, rtgs: krian~) is a Thai comedy-drama film directed by Chookiat Sakveerakul and produced and distributed by Sahamongkol Film International. The film is a coming-of-age story about Tee, an upper-secondary-school boy from Chiang Mai, his friends, their school lives, and family. The film was released on 18 April 2013. A sequel series, Grean House The Series, was broadcast on October 4, 2014. It was aired on Modern Nine Channel and published on the official YouTube channel of Studio Commuan with both Chinese and English subtitles."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sahamongkol_Film_International"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Easter_Bunny,_Kill!_Kill!"}, "Title": {"type": "literal", "value": "Easter Bunny, Kill! Kill!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chad_Ferrin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Easter Bunny, Kill! Kill! is a 2006 horror film written and directed by Chad Ferrin."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Max_Rules"}, "Title": {"type": "literal", "value": "Max Rules"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Robert_Burke_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/William_B._Davis"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "Max Rules is a 2004 kids' action-adventure feature film written and directed by Robert Burke."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Oru_Oorla_Rendu_Raja"}, "Title": {"type": "literal", "value": "Oru Oorla Rendu Raja"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/R._Kannan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Priya_Anand|http://dbpedia.org/resource/Soori_(actor)|http://dbpedia.org/resource/Vimal"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "132"}, "Description": {"type": "literal", "value": "Oru Oorla Rendu Raja (English: Two kings in a town) is a 2014 Indian Tamil comedy film written and directed by R. Kannan and produced by S. Michael Rayappan. The film features Vimal, Priya Anand and Soori in the leading roles, while Nassar, Anupama Kumar and Thambi Ramaiah form the supporting cast and D. Imman composes the film's music. The film was released on 7 November 2014."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/My_Girlfriend's_Boyfriend_(2010_film)"}, "Title": {"type": "literal", "value": "My Girlfriend's Boyfriend"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Daryn_Tufts"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alyssa_Milano|http://dbpedia.org/resource/Beau_Bridges|http://dbpedia.org/resource/Carol_Kane|http://dbpedia.org/resource/Christopher_Gorham|http://dbpedia.org/resource/Heather_Stephens|http://dbpedia.org/resource/Kelly_Packard|http://dbpedia.org/resource/Michael_Landes|http://dbpedia.org/resource/Tom_Lenk"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "My Girlfriend's Boyfriend is a 2010 American romantic comedy film written and directed by Daryn Tufts, and stars Alyssa Milano, Christopher Gorham, Michael Landes, Beau Bridges, Tom Lenk and Carol Kane."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Gaiam"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Muppets_from_Space"}, "Title": {"type": "literal", "value": "Muppets from Space"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tim_Hill_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andie_MacDowell|http://dbpedia.org/resource/Bill_Barretta|http://dbpedia.org/resource/Dave_Goelz|http://dbpedia.org/resource/David_Arquette|http://dbpedia.org/resource/F._Murray_Abraham|http://dbpedia.org/resource/Frank_Oz|http://dbpedia.org/resource/Hulk_Hogan|http://dbpedia.org/resource/Jeffrey_Tambor|http://dbpedia.org/resource/Josh_Charles|http://dbpedia.org/resource/Ray_Liotta|http://dbpedia.org/resource/Steve_Whitmire"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "Muppets from Space is a 1999 American science fiction comedy film and the sixth feature film to star The Muppets, and the first since the death of Muppets creator Jim Henson to have an original Muppet-focused plot. The film was directed by Tim Hill, produced by Jim Henson Pictures, and released to theaters on July 14, 1999 by Columbia Pictures. The film is a deviation of other Muppet films as it is the only non-musical film, as well as the first film in the series with a plot to focus predominantly on a character other than Kermit the Frog. It is also the last Muppet feature film to involve Frank Oz; he would retire from performing the following year. The film was shot in Wilmington, North Carolina at EUE/Screen Gems in 1998."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Taxidermia"}, "Title": {"type": "literal", "value": "Taxidermia"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Gy\u00f6rgy_P\u00e1lfi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Piroska_Moln\u00e1r"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:Austrian_comedy_films|http://dbpedia.org/resource/Category:Black_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films|http://dbpedia.org/resource/Category:Hungarian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Taxidermia is a 2006 Hungarian/Austrian comedy-drama horror film directed by Gy\u00f6rgy P\u00e1lfi. The film is a metaphorical socio-political retelling of Hungary's history from the Second World War to the present day. The story is told by means of three generations of men from Hungary, beginning with a military orderly during the Second World War, moving on to an aspiring speed-eater during the Cold War, and concluding with a taxidermist during modern times. The film has elements of dark comedy and body horror."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Regent_Releasing"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/YMCA_Baseball_Team"}, "Title": {"type": "literal", "value": "YMCA Baseball Team"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kim_Hyun-seok_(filmmaker)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hwang_Jung-min|http://dbpedia.org/resource/Kim_Hye-soo|http://dbpedia.org/resource/Kim_Joo-hyuk|http://dbpedia.org/resource/Song_Kang-ho"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:South_Korean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "YMCA Baseball Team (Hangul: YMCA \uc57c\uad6c\ub2e8; RR: YMCA Yagudan) is a semi-historical 2002 South Korean comedy film. In 1905, there was a confluence of international events leading to the loss of Chos\u014fn Korean sovereignty, and by 1910, Japan formally annexed Korea outright. The Japanese, having already defeated Qing China (1895) and signed an alliance with the United Kingdom (1902), defeated Imperial Russia (1905), and signed a secret agreement with the United States (1905) to respect each other\u2019s \"sphere of influence\" in the Pacific. In these chaotic times, an eclectic group of Koreans find refuge in the quintessentially American pastime."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Myung_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Saving_Christmas"}, "Title": {"type": "literal", "value": "Saving Christmas"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Darren_Doane"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kirk_Cameron"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "Saving Christmas (sometimes referred to as Kirk Cameron's Saving Christmas) is a 2014 American faith-based Christmas comedy film directed by Darren Doane and written by Doane and Cheston Hervey. Starring Kirk Cameron, Doane, Bridgette Ridenour, David Shannon, Raphi Henly, and Ben Kientz, the film was theatrically released by Samuel Goldwyn Films on November 14, 2014. The film combines a comedic narrative with educational elements, in order to \"put Christ back in Christmas\". The film received a 0% rating on Rotten Tomatoes. It was nominated in six categories for the 35th Golden Raspberry Awards and won four, including Worst Picture."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Samuel_Goldwyn_Films"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Liberty_University|http://dbpedia.org/resource/Provident_Films"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Neighbors_2:_Sorority_Rising"}, "Title": {"type": "literal", "value": "Neighbors 2: Sorority Rising"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nicholas_Stoller"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chlo\u00eb_Grace_Moretz|http://dbpedia.org/resource/Dave_Franco|http://dbpedia.org/resource/Ike_Barinholtz|http://dbpedia.org/resource/Rose_Byrne|http://dbpedia.org/resource/Zac_Efron"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Neighbors 2: Sorority Rising (Bad Neighbours 2 in the UK) is a 2016 American comedy film directed by Nicholas Stoller and written by Stoller, Andrew J. Cohen, Brendan O'Brien, Seth Rogen and Evan Goldberg. The film is a sequel to Neighbors, and follows the Radners (Rogen and Rose Byrne) having to outwit a new sorority (led by Chlo\u00eb Grace Moretz) living next door in order to sell their house currently in escrow. Zac Efron, Dave Franco, Ike Barinholtz, Carla Gallo and Lisa Kudrow reprise their roles from the first film. The film premiered on April 26, 2016 in Berlin and was released on May 20, 2016 in the United States. The film received generally positive reviews from critics and grossed over $107 million worldwide."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Daddy_Day_Camp"}, "Title": {"type": "literal", "value": "Daddy Day Camp"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Fred_Savage"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Brian_Doyle-Murray|http://dbpedia.org/resource/Cuba_Gooding,_Jr.|http://dbpedia.org/resource/Lochlyn_Munro|http://dbpedia.org/resource/Paul_Rae|http://dbpedia.org/resource/Richard_Gant|http://dbpedia.org/resource/Tamala_Jones"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Daddy Day Camp is a 2007 American comedy film starring Academy Award Winner Cuba Gooding, Jr., and directed by Fred Savage in his directorial debut. It is the sequel to the 2003's Daddy Day Care; however, all the lead characters were recast. The film was produced by Revolution Studios and released by TriStar Pictures. The film was released in the United States on August 8, 2007. The film grossed $18.2 million, but received staggeringly scathing reviews from film critics, and has a 1% rating on Rotten Tomatoes, and is considered to be one of the worst sequels ever produced."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/TriStar_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tamaar_Padaar"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dileesh_Nair"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Baburaj_(actor)|http://dbpedia.org/resource/Prithviraj_Sukumaran"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Tamaar Padaar is a 2014 Malayalam satirical comedy film, scripted and directed by Dileesh Nair, starring Prithviraj Sukumaran  Baburaj, Chemban Vinod and Srinda Ashab in pivotal roles. The movie was produced by Renjith in the banner of Rejaputhra Visual Media. The film's soundtrack was composed by Bijibal."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sightseers"}, "Title": {"type": "literal", "value": "Sightseers"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Wheatley"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alice_Lowe|http://dbpedia.org/resource/Steve_Oram"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:2010s_criminal_comedy_films|http://dbpedia.org/resource/Category:British_black_comedy_films|http://dbpedia.org/resource/Category:British_comedy_horror_films|http://dbpedia.org/resource/Category:British_criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Sightseers is a 2012 British horror comedy directed by Ben Wheatley and written by and starring Alice Lowe and Steve Oram, with additional material written by co-editor Amy Jump. It is produced by Edgar Wright and Nira Park, among others. The film was selected to be screened in the Directors' Fortnight section at the 2012 Cannes Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/StudioCanal_UK"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Yoga_Hosers"}, "Title": {"type": "literal", "value": "Yoga Hosers"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Smith"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Austin_Butler|http://dbpedia.org/resource/Harley_Quinn_Smith|http://dbpedia.org/resource/Johnny_Depp|http://dbpedia.org/resource/Lily-Rose_Depp|http://dbpedia.org/resource/Tyler_Posey|http://dbpedia.org/resource/Vanessa_Paradis"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Yoga Hosers is a 2016 American horror comedy film written and directed by Kevin Smith. The film is a spin-off of Smith's 2014 horror film Tusk. The film stars Johnny Depp alongside his daughter Lily-Rose Depp and Smith's daughter Harley Quinn Smith. The film is the second in Smith's True North trilogy and had its world premiere on January 24, 2016, at the 2016 Sundance Film Festival. The film was released on September 2, 2016 by Invincible Pictures."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Detective_Chinatown"}, "Title": {"type": "literal", "value": "Detective Chinatown"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chen_Sicheng"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chen_He|http://dbpedia.org/resource/Tong_Liya|http://dbpedia.org/resource/Wang_Baoqiang"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Chinese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "136"}, "Description": {"type": "literal", "value": "Detective Chinatown (Chinese: \u5510\u4eba\u8857\u63a2\u6848) is a 2015 Chinese comedy mystery film directed by Chen Sicheng. It was released in China on 31 December 2015."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Wuzhou_Film_Distribution"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Wanda_Media|http://dbpedia.org/resource/Wuzhou_Film_Distribution"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Drinking_Buddies"}, "Title": {"type": "literal", "value": "Drinking Buddies"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Joe_Swanberg"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Drinking Buddies is a 2013 American film written and directed by Joe Swanberg, and starring Olivia Wilde, Jake Johnson, Anna Kendrick and Ron Livingston. The film is about two co-workers at a craft brewery in Chicago. The film premiered at the 2013 South by Southwest Film Festival, and also screened within Maryland Film Festival 2013."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Magnolia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Virgil_(film)"}, "Title": {"type": "literal", "value": "Virgil"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mabrouk_El_Mechri"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jalil_Lespert|http://dbpedia.org/resource/Jean-Pierre_Cassel|http://dbpedia.org/resource/L\u00e9a_Drucker|http://dbpedia.org/resource/Philippe_Nahon|http://dbpedia.org/resource/Tomer_Sisley"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Virgil is a 2005 comedy drama film written and directed by French-Tunisian director Mabrouk El Mechri, his first feature film. It had its first public screening in movie theaters starting September 2005. The film is about the life of a French boxer in the French suburbs."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Grump"}, "Title": {"type": "literal", "value": "The Grump"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dome_Karukoski"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Finnish_comedy"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "The Grump (Finnish: Mielens\u00e4pahoittaja) is a 2014 Finnish comedy film directed by Dome Karukoski, in which the main character is The Grump, a cranky old man, created by the Finnish author Tuomas Kyr\u00f6. The Grump has been selected to compete for the Contemporary World Cinema section at the 2014 Toronto International Film Festival. The Grump is based on a 2014 novel by Kyr\u00f6, the third volume by the author, in which this character appears. The film stars Antti Litja as Mielens\u00e4pahoittaja aka the Grump, Petra Frey, Mari Perankoski, and Iikka Forss. The film tells the story about a stubbornly traditional eighty-year-old farmer \u2014 whose social attitudes verge on the prehistoric \u2014 raises hell when he is forced to move in with his sadsack, city-dwelling son and successful daughter-in-law."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lady_Bird_(film)"}, "Title": {"type": "literal", "value": "Lady Bird"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Greta_Gerwig"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Beanie_Feldstein|http://dbpedia.org/resource/John_Karna|http://dbpedia.org/resource/Jordan_Rodrigues|http://dbpedia.org/resource/Laura_Marano|http://dbpedia.org/resource/Laurie_Metcalf|http://dbpedia.org/resource/Lucas_Hedges|http://dbpedia.org/resource/Odeya_Rush|http://dbpedia.org/resource/Saoirse_Ronan|http://dbpedia.org/resource/Timoth\u00e9e_Chalamet|http://dbpedia.org/resource/Tracy_Letts"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:Comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Lady Bird is an upcoming American comedy drama film written and directed by Greta Gerwig. It stars Saoirse Ronan, Laurie Metcalf, Lucas Hedges, Tracy Letts, Laura Marano, Beanie Feldstein,Daniel Zovatto, Timoth\u00e9e Chalamet, Jordan Rodrigues, John Karna and Odeya Rush."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Win_a_Date_with_Tad_Hamilton!"}, "Title": {"type": "literal", "value": "Win a Date with Tad Hamilton!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Robert_Luketic"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gary_Cole|http://dbpedia.org/resource/Ginnifer_Goodwin|http://dbpedia.org/resource/Josh_Duhamel|http://dbpedia.org/resource/Kate_Bosworth|http://dbpedia.org/resource/Nathan_Lane|http://dbpedia.org/resource/Sean_Hayes_(actor)|http://dbpedia.org/resource/Topher_Grace"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Win a Date with Tad Hamilton! is a 2004 romantic comedy film directed by Robert Luketic and starring Josh Duhamel, Topher Grace and Kate Bosworth. The movie was heavily inspired by Ram Gopal Varma's 1995 Indian film Rangeela."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/DreamWorks"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Undercover_Brother"}, "Title": {"type": "literal", "value": "Undercover Brother"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Malcolm_D._Lee"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aunjanue_Ellis|http://dbpedia.org/resource/Chris_Kattan|http://dbpedia.org/resource/Dave_Chappelle|http://dbpedia.org/resource/Denise_Richards|http://dbpedia.org/resource/Eddie_Griffin|http://dbpedia.org/resource/Neil_Patrick_Harris"}, "Published": {"type": "literal", "value": "2002-05-31"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Undercover Brother is a 2002 American/Canadian action comedy film starring Eddie Griffin and directed by Malcolm D. Lee. The screenplay is by Michael McCullers and co-executive producer John Ridley, who created the original Internet animation characters. It spoofs blaxploitation films of the 1970s as well as a number of other films, most notably the James Bond franchise. It also stars former Saturday Night Live cast member Chris Kattan and comedian Dave Chappelle as well as Aunjanue Ellis, Neil Patrick Harris, Denise Richards, and Billy Dee Williams, and features a cameo by James Brown."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lost_in_Thailand"}, "Title": {"type": "literal", "value": "Lost in Thailand"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Xu_Zheng_(actor)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Huang_Bo|http://dbpedia.org/resource/Tao_Hong_(actress,_born_1972)|http://dbpedia.org/resource/Wang_Baoqiang|http://dbpedia.org/resource/Xu_Zheng_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Chinese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Lost in Thailand is a 2012 Chinese comedy film directed and co-written by Xu Zheng and starring Xu Zheng, Wang Baoqiang, and Huang Bo. The film is about three Chinese men traveling in Thailand: two competing scientists searching for their boss, and a tourist eager to explore the country. The film is Xu's directorial debut. The film grossed more than US$200 million at the Chinese box-office, becoming the highest grossing movie of all time in China when it was released. It was the first movie in China to earn over a Billion Yuan, overtaking Titanic which earned around 975 million yuans in a decade."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Whip_It_(film)"}, "Title": {"type": "literal", "value": "Whip It"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Drew_Barrymore"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "Whip It is a 2009 American sports comedy-drama film written by Shauna Cross, based on her novel Derby Girl. The film is directed and co-produced (with Barry Mendel) by Drew Barrymore in her directorial debut. It stars Ellen Page as a teenager from the fictional town of Bodeen, Texas, who joins a roller derby team. It also stars Barrymore, Alia Shawkat, Marcia Gay Harden, Daniel Stern, Carlo Alban, Landon Pigg in his feature-film debut, Jimmy Fallon, Kristen Wiig, Zo\u00eb Bell, Eve, Andrew Wilson, Juliette Lewis and Ari Graynor. The film premiered at the Toronto International Film Festival on September 13, 2009 and was theatrically released on October 2, 2009 in the United States by Fox Searchlight Pictures. The film received generally positive reviews from critics but did not perform well financially, having made $16.6 million worldwide against its $15 million budget. It also received two WIN Award nominations for Outstanding Actress Feature Film for Ellen Page and Drew Barrymore. Whip It was released on DVD and Blu-ray in January 26, 2010 by 20th Century Fox Home Entertainment."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox_Home_Entertainment|http://dbpedia.org/resource/Fox_Searchlight_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kutteem_Kolum"}, "Title": {"type": "literal", "value": "Kutteem Kolum"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Guinness_Pakru"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Guinness_Pakru|http://dbpedia.org/resource/Munna_(actor)|http://dbpedia.org/resource/Sanusha|http://dbpedia.org/resource/Vijayaraghavan_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Kutteem Kolum (also written as Kuttiyum Kolum) is a 2013 Malayalam comedy film directed by Guinness Pakru, who made his directorial debut with this film. Starring Guinness Pakru, Munna, Adithya and Sanusha in the lead roles, the film was produced by Ansar Vasco under the banner United Films. The script was written by Suresh Satheesh, while the story was written by Pakru himself which revolves around the bonding between friends living in an imaginary village named Kumarapuram bordering Tamil Nadu. Cinematography was handled by Vinod Bharathi, and the stills by Vibin Velayudhan. The film released on 30 March 2013."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/033"}, "Title": {"type": "literal", "value": "033|Zero Three Three"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Birsa_Dasgupta"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Parambrato_Chattopadhyay|http://dbpedia.org/resource/Rudranil_Ghosh"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "033 or Zero Three Three is a 2010 Bengali film directed by Birsa Dasgupta in a directorial debut and produced by Moxie Entertainments. 033 is the STD code for Kolkata city, and the story is based on the theme of increasing youth migration outside Kolkata for career opportunities."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tip_Top_(film)"}, "Title": {"type": "literal", "value": "Tip Top"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Serge_Bozon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Fran\u00e7ois_Damiens|http://dbpedia.org/resource/Isabelle_Huppert|http://dbpedia.org/resource/Sandrine_Kiberlain"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "Tip Top is a 2013 Franco-Belgian detective comedy film directed by Serge Bozon and starring Isabelle Huppert. The story was adapted from Bill James' novel of the same name (published under the pseudonym David Craig). It was screened in the Directors' Fortnight section of the 2013 Cannes Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/R\u00e9zo_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Guns_&_Talks"}, "Title": {"type": "literal", "value": "Guns & Talks"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jang_Jin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jung_Jae-young|http://dbpedia.org/resource/Jung_Jin-young|http://dbpedia.org/resource/Shin_Ha-kyun|http://dbpedia.org/resource/Shin_Hyun-joon_(actor)|http://dbpedia.org/resource/Won_Bin"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Action_comedy_films|http://dbpedia.org/resource/Category:South_Korean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "Guns & Talks is a 2001 South Korean film written and directed by Jang Jin. Starring Shin Hyun-joon, Won Bin, Shin Ha-kyun, Jung Jae-young and Jung Jin-young, the black comedy is about a group of four assassins-for-hire, with a dogged prosecutor on their trail."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Cinema_Service"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dark_Horse_(2005_film)"}, "Title": {"type": "literal", "value": "Dark Horse"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dagur_K\u00e1ri"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jakob_Cedergren|http://dbpedia.org/resource/Morten_Suurballe|http://dbpedia.org/resource/Nicolas_Bro|http://dbpedia.org/resource/Tilly_Scott_Pedersen"}, "Published": {"type": "literal", "value": "2005-05-13"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:Danish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "Dark Horse (Danish: Voksne mennesker) is a 2005 Danish film directed by Dagur K\u00e1ri about a young man, his best friend, and a girl. It was screened in the Un Certain Regard section at the 2005 Cannes Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Nordisk_Film"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Just_Sex"}, "Title": {"type": "literal", "value": "Just Sex"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Krisztina_Goda"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Judit_Schell|http://dbpedia.org/resource/Kata_Dob\u00f3|http://dbpedia.org/resource/S\u00e1ndor_Cs\u00e1nyi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Just Sex (Hungarian: Csak szex \u00e9s m\u00e1s semmi) is a 2005 Hungarian comedy film Directed by Krisztina Goda."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Boy_(2010_film)"}, "Title": {"type": "literal", "value": "Boy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Taika_Waititi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Boy_(2010_film)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:New_Zealand_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Boy is a 2010 New Zealand coming-of-age comedy-drama film written and directed by Taika Waititi. The film stars James Rolleston, Waititi, Te Aho Aho Eketone-Whitu, Moerangi Tihore, and Cherilee Martin. It is produced by Cliff Curtis, Ainsley Gardiner and Emanuel Michael and financed by the New Zealand Film Commission. In New Zealand, the film eclipsed previous records for a first week's box office takings for a local production. Boy went on to become the highest grossing New Zealand film at the local box office. The soundtrack to Boy features New Zealand artists such as The Phoenix Foundation, who previously provided music for Waititi's film Eagle vs Shark."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/See-Saw_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Lobster"}, "Title": {"type": "literal", "value": "The Lobster"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Yorgos_Lanthimos"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Angeliki_Papoulia|http://dbpedia.org/resource/Ariane_Labed|http://dbpedia.org/resource/Ashley_Jensen|http://dbpedia.org/resource/Ben_Whishaw|http://dbpedia.org/resource/Colin_Farrell|http://dbpedia.org/resource/Jessica_Barden|http://dbpedia.org/resource/John_C._Reilly|http://dbpedia.org/resource/L\u00e9a_Seydoux|http://dbpedia.org/resource/Michael_Smiley|http://dbpedia.org/resource/Olivia_Colman|http://dbpedia.org/resource/Rachel_Weisz"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Black_comedy_films|http://dbpedia.org/resource/Category:British_romantic_comedy_films|http://dbpedia.org/resource/Category:Comedy_thriller_films|http://dbpedia.org/resource/Category:Dutch_comedy_films|http://dbpedia.org/resource/Category:French_romantic_comedy_films|http://dbpedia.org/resource/Category:Greek_comedy_films|http://dbpedia.org/resource/Category:Irish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "118"}, "Description": {"type": "literal", "value": "The Lobster is a 2015 absurdist dystopian comedy-drama film directed, co-written, and co-produced by Yorgos Lanthimos, co-produced by Ceci Dempsy, Ed Guiney, and Lee Magiday, and co-written by Efthymis Philippou. In the film's setting, singles are given 45 days to find a romantic partner or otherwise be turned into animals. It stars Colin Farrell as a newly-single man trying to find someone so he can remain human, and Rachel Weisz as a woman with whom he attempts to form a relationship. The film is co-produced by Ireland, United Kingdom, Greece, France and the Netherlands. It was selected to compete for the Palme d'Or at the 2015 Cannes Film Festival and won the Jury Prize. It was shown in the Special Presentations section of the 2015 Toronto International Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Picturehouse_(company)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Two_of_a_Kind_(1983_film)"}, "Title": {"type": "literal", "value": "Two of a Kind"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/John_Herzfeld"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Beatrice_Straight|http://dbpedia.org/resource/Charles_Durning|http://dbpedia.org/resource/John_Travolta|http://dbpedia.org/resource/Oliver_Reed|http://dbpedia.org/resource/Olivia_Newton-John|http://dbpedia.org/resource/Scatman_Crothers"}, "Published": {"type": "literal", "value": "1983-12-16"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1980s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:Fantasy-comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Two of a Kind is a 1983 American romantic fantasy comedy film directed by John Herzfeld starring John Travolta and Olivia Newton-John. The original musical score was composed by Patrick Williams. Travolta plays a cash strapped inventor while Newton-John plays the bank teller whom he attempts to rob. These two unlikely individuals must come to show compassion for one another in order to delay God's judgment upon the Earth. This is Travolta and Newton-John's second film together after 1978's Grease, which was a success. Two of a Kind was unsuccessful both critically and commercially, but did yield three popular singles for Newton-John and a platinum rating for the soundtrack."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Pancharangi"}, "Title": {"type": "literal", "value": "Pancharangi"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Yogaraj_Bhat"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "123"}, "Description": {"type": "literal", "value": "Pancharangi (Kannada: \u0caa\u0c82\u0c9a\u0cb0\u0c82\u0c97\u0cbf) is a 2010 Indian Kannada language romantic comedy film with philosophical overtones directed and produced by Yogaraj Bhat starring Diganth and Nidhi Subbaiah in the lead roles. The music has been composed by Mano Murthy, story and screenplay is written by Pawan Kumar. The film was predominantly shot in the coastal locales of Karnataka state. It is a story that unfolds in a span of two days and tackles issues like education, love, profession, marriage, family, life and relationships in a \"fun and non-preachy way.\" As a film with minimal budget under Bhat's maiden home production, it fared well at the box-office. The popular song Lifeu Ishtene was a runaway success and it was used as the title of Pawan Kumar's debut film."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Cosmopolitan_(film)"}, "Title": {"type": "literal", "value": "Cosmopolitan"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nisha_Ganatra"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Carol_Kane|http://dbpedia.org/resource/Madhur_Jaffrey|http://dbpedia.org/resource/Purva_Bedi|http://dbpedia.org/resource/Roshan_Seth"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "53"}, "Description": {"type": "literal", "value": "Cosmopolitan is a 2003 American independent film starring Roshan Seth and Carol Kane, and directed by Nisha Ganatra. The film, based on an acclaimed short story by Akhil Sharma and written by screenwriter Sabrina Dhawan (Monsoon Wedding), is a cross-cultural romance between a confused and lonely middle-aged Indian, who has lived in America for 20 years, and his exasperating, free-spirited blonde neighbour. The film was released theatrically in 2003. It was televised nationally in 2004 on the PBS series Independent Lens."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/ITVS|http://dbpedia.org/resource/Public_Broadcasting_Service"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Aap_Ki_Khatir_(2006_film)"}, "Title": {"type": "literal", "value": "Aap Ki Khatir"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dharmesh_Darshan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Akshaye_Khanna|http://dbpedia.org/resource/Ameesha_Patel|http://dbpedia.org/resource/Dino_Morea|http://dbpedia.org/resource/Priyanka_Chopra|http://dbpedia.org/resource/Suniel_Shetty"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "127"}, "Description": {"type": "literal", "value": "Aap Ki Khatir (Hindi: \u0906\u092a \u0915\u0940 \u0916\u093c\u093e\u0924\u093f\u0930, Urdu:, \u0622\u067e \u06a9\u06cc \u062e\u0627\u0637\u0631, English: For Your Sake) is a Bollywood romantic comedy filmdirected by Dharmesh Darshan, starring Akshaye Khanna and Priyanka Chopra in lead roles. It also stars Ameesha Patel, Dino Morea, Sunil Shetty and Anupam Kher. It is based on the hustler 2005 Hollywood movie The Wedding Date. It was released throughout India and internationally in late August 2006."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Finding_Sofia"}, "Title": {"type": "literal", "value": "Finding Sof\u00eda"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nico_Casavecchia"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andrea_Carballo|http://dbpedia.org/resource/Rafael_Spregelburd|http://dbpedia.org/resource/Sam_Huntington"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Argentine_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "Finding Sof\u00eda is a 2016 Argentine and American comedy film written and directed by Nico Casavecchia. The film is Casavecchia's first feature film and was produced by 1stAveMachine. It premiered in 2016 on the Buenos Aires International Festival of Independent Cinema and was included in the festival's Argentine official competition. The picture features Sam Huntington, Andrea Carballo, Rafael Spregelburd, Sof\u00eda Brihet, among others."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Aloha_Santa"}, "Title": {"type": "literal", "value": "Aloha Santa"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jonathan_Yudis"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/George_Lopez"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Aloha Santa is an upcoming American Christmas comedy film directed by Jonathan Yudis and written by Yudis, Adam 'Tex' Davis, and Mike Davis. The film stars George Lopez and Ryan Ursua."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Beauty_Shop"}, "Title": {"type": "literal", "value": "Beauty Shop"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bille_Woodruff"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adele_Givens|http://dbpedia.org/resource/Alfre_Woodard|http://dbpedia.org/resource/Alicia_Silverstone|http://dbpedia.org/resource/Andie_MacDowell|http://dbpedia.org/resource/Djimon_Hounsou|http://dbpedia.org/resource/Kevin_Bacon|http://dbpedia.org/resource/Lil'_JJ|http://dbpedia.org/resource/Mena_Suvari"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Beauty Shop is a 2005 American comedy film directed by Bille Woodruff. The film serves as a spin-off of the Barbershop film franchise, and stars Queen Latifah as Gina, a character first introduced in the 2004 film Barbershop 2: Back in Business. This film also stars Alicia Silverstone, Andie MacDowell, Mena Suvari, Kevin Bacon and Djimon Hounsou."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Metro-Goldwyn-Mayer"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Cottage_(film)"}, "Title": {"type": "literal", "value": "The Cottage"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Paul_Andrew_Williams"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Serkis|http://dbpedia.org/resource/Jennifer_Ellison|http://dbpedia.org/resource/Reece_Shearsmith|http://dbpedia.org/resource/Steve_O'Donnell_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:British_black_comedy_films|http://dbpedia.org/resource/Category:British_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "The Cottage is a 2008 British darkly comic horror film, written and directed by Paul Andrew Williams."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Path\u00e9"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Foxy_Festival"}, "Title": {"type": "literal", "value": "Foxy Festival"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lee_Hae-young"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Baek_Jin-hee|http://dbpedia.org/resource/Oh_Dal-su|http://dbpedia.org/resource/Ryoo_Seung-bum|http://dbpedia.org/resource/Shim_Hye-jin|http://dbpedia.org/resource/Shin_Ha-kyun|http://dbpedia.org/resource/Sung_Dong-il|http://dbpedia.org/resource/Uhm_Ji-won"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films|http://dbpedia.org/resource/Category:South_Korean_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "Foxy Festival (Hangul: \ud398\uc2a4\ud2f0\ubc1c; RR: Peseutibal; \"Festival\") is a 2010 South Korean film with an all-star ensemble cast. It is a character-driven comedy of manners about the secret (and not so secret) sexual lives of a group of interconnected people in an upper-middle class district of Seoul."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Remote_(film)"}, "Title": {"type": "literal", "value": "Remote!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ted_Nicolaou"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Carrara|http://dbpedia.org/resource/Jessica_Bowman|http://dbpedia.org/resource/John_Diehl_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "Remote (Moonbeam Entertainment, 1993) is a comedy film that was released on September 22, 1993, starring Chris Carrara, Jessica Bowman, and John Diehl. Ted Nicolaou directed the film and it was written by Mike Farrow, best known for his hard-boiled detective persona Tommy Sledge. The movie's premise is similar to that of Home Alone. It is the second film to be released by Moonbeam Entertainment."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Crystal_Fairy_&_the_Magical_Cactus"}, "Title": {"type": "literal", "value": "Crystal Fairy & The Magical Cactus"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sebasti\u00e1n_Silva_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gaby_Hoffmann|http://dbpedia.org/resource/Michael_Cera"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Chilean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "Crystal Fairy & The Magical Cactus (Crystal Fairy & The Magical Cactus and 2012 as presented onscreen) is a 2013 Chilean adventure comedy film written and directed by Sebasti\u00e1n Silva. The film stars Michael Cera and Gaby Hoffmann. At the film's Sundance premiere, Silva said that his film, which is based on a real-life encounter, is \"about the birth of compassion in someone's life.\" The film received positive reviews from critics."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bring_It_On:_Fight_to_the_Finish"}, "Title": {"type": "literal", "value": "Bring It On: Fight to the Finish"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bille_Woodruff"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Christina_Milian|http://dbpedia.org/resource/Gabrielle_Dennis|http://dbpedia.org/resource/Holland_Roden|http://dbpedia.org/resource/Rachele_Brooke_Smith"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Direct-to-video_comedy_films|http://dbpedia.org/resource/Category:Teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Bring It On: Fight to the Finish is a 2009 teen comedy film starring Christina Milian, Rachele Brooke Smith, Cody Longo, Vanessa Born, Gabrielle Dennis and Holland Roden. Directed by Bille Woodruff and the fifth and most recent installment in a series of stand-alone films starting with the 2000 film Bring It On. The film was released direct-to-video on DVD and Blu-ray on September 1, 2009."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios_Home_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Thoda_Pyaar_Thoda_Magic"}, "Title": {"type": "literal", "value": "Thoda Pyaar Thoda Magic"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kunal_Kohli"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ameesha_Patel|http://dbpedia.org/resource/Rani_Mukerji|http://dbpedia.org/resource/Rishi_Kapoor|http://dbpedia.org/resource/Saif_Ali_Khan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "137"}, "Description": {"type": "literal", "value": "Thoda Pyaar Thoda Magic (English: A Little Love, A Little Magic) is a 2008 Hindi film with Saif Ali Khan and Rani Mukerji in lead roles, and Rishi Kapoor and Ameesha Patel in special appearances. The child artists include Akshat Chopra, Shriya Sharma, Rachit Sidana and Ayushi Burman. Directed, written and co-produced by Kunal Kohli, the film is produced and distributed by Yash Chopra and Aditya Chopra under their banner Yash Raj Films."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Yash_Raj_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Steps_(film)"}, "Title": {"type": "literal", "value": "The Steps"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Currie_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Emmanuelle_Chriqui"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "The Steps is a 2015 Canadian comedy film directed by Andrew Currie. It was screened in the Contemporary World Cinema section of the 2015 Toronto International Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Begin_Again_(film)"}, "Title": {"type": "literal", "value": "Begin Again"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/John_Carney_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Levine|http://dbpedia.org/resource/Catherine_Keener|http://dbpedia.org/resource/CeeLo_Green|http://dbpedia.org/resource/Hailee_Steinfeld|http://dbpedia.org/resource/James_Corden|http://dbpedia.org/resource/Keira_Knightley|http://dbpedia.org/resource/Mark_Ruffalo|http://dbpedia.org/resource/Mos_Def"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_musical_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "Begin Again is a 2013 American musical comedy-drama film written and directed by John Carney and starring Keira Knightley and Mark Ruffalo. Knightley plays a singer-songwriter who is discovered by a struggling record label executive (Ruffalo) and collaborates with him to produce an album recorded in public locations all over New York City. After the success of his 2007 musical film Once, Carney wrote the script for Begin Again in 2010 and employed Gregg Alexander to compose most of the film's music. With an US$8 million budget, production began in July 2012 with filming taking place in various locations around New York City. The film premiered in September 2013 at the Toronto International Film Festival and was released theatrically on June 27, 2014, in conjunction with the release of the film's soundtrack. It has grossed over $63 million worldwide and received mostly positive reviews from critics. It was nominated for an Academy Award for Best Original Song for \"Lost Stars\"."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/The_Weinstein_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Brass_Teapot"}, "Title": {"type": "literal", "value": "The Brass Teapot"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ramaa_Mosley"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alexis_Bledel|http://dbpedia.org/resource/Alia_Shawkat|http://dbpedia.org/resource/Bobby_Moynihan|http://dbpedia.org/resource/Juno_Temple|http://dbpedia.org/resource/Michael_Angarano"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_fantasy-comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "The Brass Teapot is a 2013 American film directed by Ramaa Mosley. The movie's script was written by Tim Macy, who also wrote the short story on which the movie is based. The movie premiered at the Toronto International Film Festival on September 8, 2012, and was released into theaters and video on demand on April 5, 2013. Critical reception for the film was mixed. Film.com review said \"Despite the sometimes patchy moments The Brass Teapot by and large squeaks by as an enjoyable entertainment.\" The Playlist commented that \"With the help of a talented cast, The Brass Teapot is able to coast on charm.\" Hitflix writes \"It is apparent that Ramaa Mosley has a voice, and that The Brass Teapot is a focused, controlled piece of storytelling that displays real control\". Wall Street Journal reviews says \"Alice and John are good company \u2014 especially Alice, thanks to Ms. Temple's buoyant humor and lovely poignancy. The problem comes when the couple gets greedy, the gods grow angry and the tone turns dark. It doesn't stay dark, but getting back to the brightness is a painful process.\" The Brass Teapot holds 5 stars on Netflix and was nominated for International Critics' Award (2013) for The Brass Teapot and nominated, Discovery Award for The Brass Teapot (2013)."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Magnolia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Worst_Christmas_of_My_Life_(film)"}, "Title": {"type": "literal", "value": "The Worst Christmas of My Life"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alessandro_Genovesi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cristiana_Capotondi|http://dbpedia.org/resource/Fabio_De_Luigi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Italian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "The Worst Christmas of My Life (Italian: Il peggior Natale della mia vita) is a 2012 Italian comedy film directed by Alessandro Genovesi and starring Fabio De Luigi and Cristiana Capotondi. It is the sequel of The Worst Week of My Life. It was a commercial success, grossing $10,275,097 at the Italian box office."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Art_of_Negative_Thinking"}, "Title": {"type": "literal", "value": "The Art of Negative Thinking"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/B\u00e5rd_Breien"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006-11-11"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "The Art of Negative Thinking (Norwegian: Kunsten \u00e5 tenke negativt) is a 2006 Norwegian black comedy film directed and written by B\u00e5rd Breien. The storyline revolves around a man (played by Fridtjov S\u00e5heim) who is adjusting to life in a wheelchair, and the socializing group he is made to join. The film was Breien's directorial debut. It was produced by Dag Alveberg for the production company Maipo film- og TV-produksjon. The Art of Negative Thinking was successful both domestically and internationally, with sales of 35,000 tickets in its Norwegian theater run and the highest-gross in Germany for any Nordic film during 2008. Reviews were mostly positive and the film won multiple international awards."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Cromartie_High_\u2013_The_Movie"}, "Title": {"type": "literal", "value": "Cromartie High - The Movie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Y\u016bdai_Yamaguchi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hiroyuki_Watanabe|http://dbpedia.org/resource/Kai_At\u014d|http://dbpedia.org/resource/Kenichi_Endou|http://dbpedia.org/resource/Mitsuki_Koga|http://dbpedia.org/resource/Tak_Sakaguchi|http://dbpedia.org/resource/Takamasa_Suga"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Japanese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Cromartie High - The Movie (\u9b41!! \u30af\u30ed\u30de\u30c6\u30a3\u9ad8\u6821 THE\u2605MOVIE Sakigake!! Kuromati K\u014dk\u014d The Movie) is a 2005 Japanese live-action film directed by Y\u016bdai Yamaguchi (who had previously made Battlefield Baseball) and starring Takamasa Suga. The film is based on the manga Cromartie High School by Eiji Nonaka which had also been previously adapted as an anime series."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Pervert!"}, "Title": {"type": "literal", "value": "Pervert!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jonathan_Yudis"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Darrell_Sandeen|http://dbpedia.org/resource/Mary_Carey_(actress)|http://dbpedia.org/resource/Sean_Andrews"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "81"}, "Description": {"type": "literal", "value": "Pervert! is a 2005 comedy horror film directed by Jonathan Yudis. It is mainly a tribute to the films of Russ Meyer."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/TLA_Releasing"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Noah's_Arc:_Jumping_the_Broom"}, "Title": {"type": "literal", "value": "Noah's Arc: Jumping the Broom"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Patrik-Ian_Polk"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Christian_Vincent|http://dbpedia.org/resource/Darryl_Stephens|http://dbpedia.org/resource/Doug_Spearman|http://dbpedia.org/resource/Jensen_Atwood|http://dbpedia.org/resource/Rodney_Chester"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Noah's Arc: Jumping the Broom is a 2008 Canadian-American romantic comedy-drama film based on the LOGO television series Noah's Arc. It was released on October 24, 2008 in select theaters and video on demand. The film is MPAA rated R in the U.S. for \"sexual content and language.\""}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/LOGO_(TV_channel)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Singh_Is_Bliing"}, "Title": {"type": "literal", "value": "Singh Is Bliing"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Prabhu_Deva"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_action_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "139"}, "Description": {"type": "literal", "value": "Singh Is Bliing is a 2015 Bollywood action comedy film directed by Prabhu Deva and produced by Ashvini Yardi and Jayantilal Gada under the banners Grazing Goat Pictures and Pen India Pvt. Ltd. The film features Akshay Kumar, Amy Jackson, Lara Dutta and Kay Kay Menon in lead roles. It is not related to the 2008 film Singh is Kinng directed by Anees Bazmee."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Eros_International|http://dbpedia.org/resource/Pen_India_Limited"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Irreplaceable_(film)"}, "Title": {"type": "literal", "value": "Irreplaceable"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Thomas_Lilti"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Fran\u00e7ois_Cluzet|http://dbpedia.org/resource/Marianne_Denicourt"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Irreplaceable (original title: M\u00e9decin de campagne) is a 2016 French dramedy film directed and co-written by Thomas Lilti. It stars Fran\u00e7ois Cluzet and Marianne Denicourt."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Delete_My_Love"}, "Title": {"type": "literal", "value": "Delete My Love"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Patrick_Kong"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ivana_Wong|http://dbpedia.org/resource/Michael_Hui|http://dbpedia.org/resource/Wong_Cho-lam"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Hong_Kong_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Delete My Love (Chinese: Delete\u611b\u4eba) is a 2014 Hong Kong romantic comedy film directed and written by Patrick Kong and starring Wong Cho-lam, Ivana Wong and Michael Hui."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Diary_of_a_Wimpy_Kid:_Dog_Days_(film)"}, "Title": {"type": "literal", "value": "Diary of a Wimpy Kid: Dog Days"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_Bowers_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Devon_Bostick|http://dbpedia.org/resource/Rachael_Harris|http://dbpedia.org/resource/Robert_Capron|http://dbpedia.org/resource/Steve_Zahn|http://dbpedia.org/resource/Zachary_Gordon"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "Diary of a Wimpy Kid: Dog Days is a 2012 American comedy film directed by David Bowers from a screenplay by Wallace Wolodarsky and Maya Forbes. It stars Zachary Gordon and Steve Zahn. Robert Capron, Devon Bostick, Rachael Harris, Peyton List, Grayson Russell, and Karan Brar also have prominent roles. It is the third installment in the Diary of a Wimpy Kid film series, and is based on the third and fourth books in the series, The Last Straw and Dog Days. The film was released on August 3, 2012. It is also Bowers' second live-action film. Although the film is based on the third and fourth Diary of a Wimpy Kid books, there is a scene based on a part of the first book, where Greg's dad, Frank, is trying to unplug Greg's video game system, but does not know how to."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sakalakala_Vallavan_(2015_film)"}, "Title": {"type": "literal", "value": "Sakalakala Vallavan"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Suraj_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anjali_(actress_born_1986)|http://dbpedia.org/resource/Jayam_Ravi|http://dbpedia.org/resource/Prabhu_(actor)|http://dbpedia.org/resource/Trisha_(actress)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Sakalakala Vallavan is a 2015 Tamil language comedy film written and directed by Suraj. The film features Jayam Ravi, Trisha and Anjali in the lead, while Prabhu appears in a supporting role. S. Thaman composed the film's music."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Matsugane_Potshot_Affair"}, "Title": {"type": "literal", "value": "The Matsugane Potshot Affair"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nobuhiro_Yamashita"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hirofumi_Arai"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "122"}, "Description": {"type": "literal", "value": "The Matsugane Potshot Affair (\u677e\u30f6\u6839\u4e71\u5c04\u4e8b\u4ef6 Matsugane Ransha Jiken) is a 2006 Japanese drama film directed by Nobuhiro Yamashita, starring Hirofumi Arai."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bento_Monogatari"}, "Title": {"type": "literal", "value": "Bento Monogatari"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pieter_Dirkx"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "27"}, "Description": {"type": "literal", "value": "Bento Monogatari (often translated as 'Lunchbox Story') is a 2010 short film by Pieter Dirkx. It was selected for the 2011 Cannes Film Festival in the Cin\u00e9fondation section. The film was the director's graduation project at the Hogeschool Sint-Lukas Brussels film school."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Cold_Souls"}, "Title": {"type": "literal", "value": "Cold Souls"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sophie_Barthes"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/David_Strathairn|http://dbpedia.org/resource/Emily_Watson|http://dbpedia.org/resource/Paul_Giamatti"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Cold Souls is a 2009 comedy-drama film written and directed by Sophie Barthes. The film features Paul Giamatti, Dina Korzun, Emily Watson, and David Strathairn. Giamatti stars as a fictionalised version of himself, an anxious, overwhelmed actor who decides to enlist the service of a company to deep freeze his soul. Complications ensue when his soul gets lost in a soul trafficking scheme which has taken his soul to St. Petersburg. The film then follows Giamatti desperately trying to recover his soul."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Samuel_Goldwyn_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Fruit_Fly_(film)"}, "Title": {"type": "literal", "value": "Fruit Fly"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/H.P._Mendoza"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/H.P._Mendoza"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_musical_comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Fruit Fly is a 2009 musical film with gay and Asian-American themes, directed by H.P. Mendoza, who wrote the screenplay for Colma The Musical (2007). The film, made entirely in San Francisco, premiered on March 15, 2009 at the San Francisco International Asian American Film Festival at the Castro Theatre in San Francisco. It had a limited one-week run in New York on September 24, 2010."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Forgetting_Sarah_Marshall"}, "Title": {"type": "literal", "value": "Forgetting Sarah Marshall"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nicholas_Stoller"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kristen_Bell|http://dbpedia.org/resource/Mila_Kunis|http://dbpedia.org/resource/Russell_Brand"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "Forgetting Sarah Marshall is a 2008 American romantic comedy-drama film directed by Nicholas Stoller and starring Jason Segel, Kristen Bell, Mila Kunis and Russell Brand. The film, which was written by Segel and co-produced by Judd Apatow, was released by Universal Studios. Filming began in April 2007 at the Turtle Bay Resort on the North Shore of Oahu Island in Hawaii. The film was released for North American theaters on April 18, 2008 and in the UK a week later on April 25, 2008. The story revolves around Peter Bretter, who is a music composer for a TV show that happens to feature his girlfriend, Sarah Marshall, in the lead role. After a five-year relationship, Sarah abruptly breaks up with Peter. Devastated by this event, he chooses to go on a vacation in Hawaii, in order to try to move forward with his life. Trouble ensues when he runs into his ex on the island as she is vacationing with her new boyfriend."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Vaastu_Prakaara"}, "Title": {"type": "literal", "value": "Vaastu Prakaara"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Yogaraj_Bhat"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jaggesh|http://dbpedia.org/resource/Parul_Yadav|http://dbpedia.org/resource/Rakshit_Shetty"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "145"}, "Description": {"type": "literal", "value": "Vaastu Prakaara (Kannada: \u0cb5\u0cbe\u0cb8\u0ccd\u0ca4\u0cc1 \u0caa\u0ccd\u0cb0\u0c95\u0cbe\u0cb0) is a 2015 Indian Kannada language satirical comedy film directed by Yogaraj Bhat starring Rakshit Shetty, Jaggesh, Aishani Shetty and Parul Yadav in lead roles. The supporting cast features Anant Nag, Sudha Rani, T. N. Seetharam and Sudha Belawadi. The film deals in the belief of Indians in astrology and superstition and how it is being blindly followed and overlooked over science. Upon theatrical release on 2 April 2015, the film received mixed reviews from critics. They felt, carrying expectations along as a 'Yogaraj Bhat film', the film failed to deliver as it lacked a \"strong foundation\" and \"a sound structure\". However, the performances of Jaggesh and Nag received unanimous praise."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Down_Under_(2016_film)"}, "Title": {"type": "literal", "value": "Down Under"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Abe_Forsythe"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alexander_England|http://dbpedia.org/resource/Damon_Herriman|http://dbpedia.org/resource/Lincoln_Younes"}, "Published": {"type": "literal", "value": "2016-08-11"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Australian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Down Under is an Australian black comedy drama film set in the aftermath of the 2005 Cronulla riots. It follows the story of two carloads of vengeful, testosterone-charged young hotheads from both sides of the fight, who are destined to collide. It is written and directed by Abe Forsythe Southern Cross-tattooed Jason (Damon Herriman) is rounding up the troops in the Shire. He recruits Shit-Stick (Alexander England), who works in a DVD store, who has been very unsuccessfully teaching out-of-town cousin Evan (Chris Bunton) to drive, and Ned Kelly obsessive Ditch (Justin Rosniak), whose head is swathed in bandages because of a new tattoo. Shit-Stick's dad, Graham (Marshall Napier), gives him an old rifle brought back from World War I and a left-over grenade, hoping his son will finally make the family proud. Across town at Lakemba, Nick (Rahel Romahn) drags Hassim (Lincoln Younes) away from his studies to join a car heading for the Shire along with devout Muslim Ibrahim (Michael Denkha) and freewheeling rapper D-Mac (Fayssal Bazzi) to join the raid."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Revenge_of_the_Bridesmaids"}, "Title": {"type": "literal", "value": "Revenge of the Bridesmaids"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Hayman"}, "Author": {"type": "literal", "value": "http://dbpedia.org/resource/Bob_Young_(TV_producer)|http://dbpedia.org/resource/David_Kendall_(director)"}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Beth_Broderick|http://dbpedia.org/resource/Chryssie_Whitehead|http://dbpedia.org/resource/David_Clayton_Rogers|http://dbpedia.org/resource/Joanna_Garc\u00eda|http://dbpedia.org/resource/Raven-Symon\u00e9|http://dbpedia.org/resource/Virginia_Williams"}, "Published": {"type": "literal", "value": "2010-07-18"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Revenge of the Bridesmaids is a 2010 ABC Family Original Movie that premiered on July 18, 2010. It stars Raven-Symon\u00e9 and Joanna Garc\u00eda as undercover bridesmaids with a mission to break up a wedding. In addition, the film's cast also features Virginia Williams, Beth Broderick, Chryssie Whitehead, David Clayton Rogers, Lyle Brocato and Brittany Ishibashi."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Beautiful_Wonderful_Perfect"}, "Title": {"type": "literal", "value": "Beautiful Wonderful Perfect"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Poj_Arnon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Choosak_Iamsook|http://dbpedia.org/resource/Nawarat_Techarathanaprasert|http://dbpedia.org/resource/Weerapak_Kaensuwan"}, "Published": {"type": "literal", "value": "2005-01-06"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Beautiful Wonderful Perfect or Er rer (Thai: \u0e40\u0e2d\u0e4b\u0e2d\u0e40\u0e2b\u0e23\u0e2d) is a 2005 Thai family comedy film directed by Poj Arnon."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sahamongkol_Film_International"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Supertwink"}, "Title": {"type": "literal", "value": "Supertwink"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Richard_Christy|http://dbpedia.org/resource/Sal_Governale"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Artie_Lange|http://dbpedia.org/resource/Richard_Christy|http://dbpedia.org/resource/Sal_Governale|http://dbpedia.org/resource/The_Wack_Pack"}, "Published": {"type": "literal", "value": "2006-01-04"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "30"}, "Description": {"type": "literal", "value": "Supertwink is a 2006 comedy film directed, written, and filmed by Richard Christy and Sal Governale. Produced and made for subscribers of Howard TV, an In Demand digital cable service operated by Howard Stern, the film stars members of Stern's radio show staff and \"Wack Packers\". The film premi\u00e8red at the Pioneer Theater, in New York City, on January 4, 2006. Despite claims that the film had a $4,000 budget, Christy stated on Stern's radio show that he spent no more than $700. When Stern asked Roger Ebert and Richard Roeper to review the film, Ebert refused to watch it, while Roeper's review was run over the film's ending credits."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Howard_Stern_television_shows"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Somewhere_(film)"}, "Title": {"type": "literal", "value": "Somewhere"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sofia_Coppola"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Elle_Fanning|http://dbpedia.org/resource/Michelle_Monaghan|http://dbpedia.org/resource/Stephen_Dorff"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Somewhere is a 2010 American drama film written and directed by Sofia Coppola. The film follows Johnny Marco (played by Stephen Dorff), a newly famous actor, as he recuperates from a minor injury at the Chateau Marmont, a well-known Hollywood retreat. Despite money, fame and professional success, Marco is trapped in an existential crisis and feels little emotion during his daily life. When his ex-wife suffers an unexplained breakdown and goes away, she leaves Cleo (Elle Fanning), their 11-year-old daughter, in his care. They spend time together and her presence helps Marco mature and accept adult responsibility. The film explores ennui among Hollywood stars, the father\u2013daughter relationship and offers an oblique comedy of show business, particularly Hollywood film-making and the life of a \"star\". Somewhere premiered at the 67th Venice International Film Festival where it received the Golden Lion award for best picture. Critical opinion was mildly positive. Reviewers praised the patience of the film's visual style and its empathy for a handful of characters, but some found Somewhere to be too repetitive of themes in Coppola's previous work, or did not sympathize with the protagonist because of his relative success. It was released to theaters in the United Kingdom and Ireland on December 10, 2010, and in the United States on December 22, 2010."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Focus_Features"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Inherent_Vice_(film)"}, "Title": {"type": "literal", "value": "Inherent Vice"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Paul_Thomas_Anderson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Benicio_del_Toro|http://dbpedia.org/resource/Jena_Malone|http://dbpedia.org/resource/Joaquin_Phoenix|http://dbpedia.org/resource/Josh_Brolin|http://dbpedia.org/resource/Katherine_Waterston|http://dbpedia.org/resource/Martin_Short|http://dbpedia.org/resource/Maya_Rudolph|http://dbpedia.org/resource/Owen_Wilson|http://dbpedia.org/resource/Reese_Witherspoon"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "149"}, "Description": {"type": "literal", "value": "Inherent Vice is a 2014 American crime comedy-drama film. The seventh feature film directed by Paul Thomas Anderson, Inherent Vice was adapted by Anderson from the novel of the same name by Thomas Pynchon; the cast includes Joaquin Phoenix, Josh Brolin, Owen Wilson, Katherine Waterston, Eric Roberts, Reese Witherspoon, Benicio del Toro, Jena Malone, Joanna Newsom, Jeannie Berlin, Maya Rudolph, Michael K. Williams and Martin Short. As with its source material, the storyline revolves around Larry \"Doc\" Sportello, a stoner hippie and PI in 1970, as he becomes embroiled in the Los Angeles criminal underworld while investigating three cases interrelated by the disappearance of his ex-girlfriend and her wealthy boyfriend. Anderson's adaptation of Inherent Vice had been in development since 2010; it is the first time one of Pynchon's novels has been adapted for the screen. The film marks Anderson's second consecutive collaboration with Joaquin Phoenix following The Master and involves a number of his other recurring collaborators, including producers Daniel Lupi and JoAnne Sellar, cinematographer Robert Elswit and editor Leslie Jones. It is also the third consecutive Anderson film to be scored by Radiohead guitarist and keyboardist Jonny Greenwood, following There Will Be Blood and The Master. The film premiered at the New York Film Festival on October 4, 2014, and began a limited theatrical release in the United States on December 12, 2014. Critical reception was polarized, but generally leaned towards acclaim; reviewers praised the cast, particularly Brolin, Phoenix and Waterston, while criticism tended to focus on its convoluted plot and lack of coherence. It went on to receive a number of award nominations, including two Oscar nominations and a Best Actor Golden Globe Award nomination for Phoenix. The National Board of Review named it one of the ten best films of the year. Some reviews have said that Inherent Vice has the makings of a cult film. In 2016, it was voted the 75th best film of the 21st century as picked by 177 film critics from around the world."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros._Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Digging_for_Fire"}, "Title": {"type": "literal", "value": "Digging for Fire"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Joe_Swanberg"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anna_Kendrick|http://dbpedia.org/resource/Brie_Larson|http://dbpedia.org/resource/Mike_Birbiglia|http://dbpedia.org/resource/Orlando_Bloom|http://dbpedia.org/resource/Rosemarie_DeWitt|http://dbpedia.org/resource/Sam_Rockwell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "(For the Pixies song, see Dig for Fire.) Digging for Fire is a 2015 American comedy-drama film directed by Joe Swanberg and co-written by Swanberg and Jake Johnson. It stars an ensemble cast led by Johnson, Rosemarie DeWitt, Brie Larson, Sam Rockwell, Anna Kendrick, Orlando Bloom and Mike Birbiglia. Johnson and DeWitt play a married couple who find a gun and a bone in the backyard of a house they are staying in. The film's plot was inspired by a similar incident in which Johnson discovered a gun and a bone in his backyard. Instead of a traditional script, he and Swanberg wrote an outline that summarized the plot but included no dialogue. They cast the film mainly by contacting their friends and other actors who they knew had enjoyed their previous work. It was filmed over 15 days in Los Angeles County, California. Swanberg dedicated the film to filmmaker Paul Mazursky. Digging for Fire premiered at the 2015 Sundance Film Festival on January 26, 2015. It was released in theaters on August 21, 2015 by The Orchard and on video on demand on August 25, 2015. The film was generally well received by critics."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sony_Pictures_Worldwide_Acquisitions|http://dbpedia.org/resource/The_Orchard_(company)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Tourist_(2010_film)"}, "Title": {"type": "literal", "value": "The Tourist"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Florian_Henckel_von_Donnersmarck"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Angelina_Jolie|http://dbpedia.org/resource/Christian_De_Sica|http://dbpedia.org/resource/Johnny_Depp|http://dbpedia.org/resource/Paul_Bettany|http://dbpedia.org/resource/Raoul_Bova|http://dbpedia.org/resource/Rufus_Sewell|http://dbpedia.org/resource/Steven_Berkoff|http://dbpedia.org/resource/Timothy_Dalton"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "The Tourist is a 2010 romantic comedy thriller co-written and directed by Florian Henckel von Donnersmarck, starring Angelina Jolie, Johnny Depp, Paul Bettany, and Timothy Dalton. It is based on the screenplay for Anthony Zimmer. GK Films financed and produced the film, with Sony Pictures Worldwide Acquisitions releasing it in most countries through Columbia Pictures. The US$100 million-budgeted film went on to gross US$278 million at the worldwide box office. Despite the negative reception from the critics, the film was nominated for three Golden Globes, with a debate arising over the question as to whether it was a comedy or a drama. Henckel von Donnersmarck repeatedly stated it was neither genre, calling it \"a travel romance with thriller elements,\" but that if he had to choose between the two, he would choose comedy."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Vasool_Raja_MBBS"}, "Title": {"type": "literal", "value": "Vasool Raja MBBS"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Saran_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jayasurya|http://dbpedia.org/resource/Kamal_Haasan|http://dbpedia.org/resource/Karunas|http://dbpedia.org/resource/Malavika_(Tamil_actress)|http://dbpedia.org/resource/Nagesh|http://dbpedia.org/resource/Nithin_Sathya|http://dbpedia.org/resource/Prabhu_Ganesan|http://dbpedia.org/resource/Prakash_Raj|http://dbpedia.org/resource/Rohini_Hattangadi|http://dbpedia.org/resource/Sneha_(actress)"}, "Published": {"type": "literal", "value": "2004-08-12"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:Indian_comedy-drama_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "160"}, "Description": {"type": "literal", "value": "Vasool Raja MBBS (English: Collection King) is a 2004 Tamil comedy film starring Kamal Haasan and directed by Saran. This film is a remake of Hindi film Munnabhai MBBS, which was inspired by the English movie Patch Adams released back in 1998. It was the first Kamal film to beat the record set by Indian eight years earlier. The rest of the cast includes Prakash Raj, Prabhu, Sneha, Jayasurya, Nagesh, Malavika and Karunas. The film's music was composed by Bharadwaj."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Raaj_Kamal_Films_International"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Battle_of_Shaker_Heights"}, "Title": {"type": "literal", "value": "The Battle of Shaker Heights"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Efram_Potelle|http://dbpedia.org/resource/Kyle_Rankin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amy_Smart|http://dbpedia.org/resource/Elden_Henson|http://dbpedia.org/resource/Kathleen_Quinlan|http://dbpedia.org/resource/Shia_LaBeouf|http://dbpedia.org/resource/Shiri_Appleby|http://dbpedia.org/resource/William_Sadler_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "77"}, "Description": {"type": "literal", "value": "The Battle of Shaker Heights is a 2003 American comedy-drama film co-directed by Efram Potelle and Kyle Rankin. It starred Shia La Beouf, Elden Henson, Kathleen Quinlan, Amy Smart, and Shiri Appleby. The film was the winning script for the second season of Project Greenlight."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Miramax_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Temporada_de_patos"}, "Title": {"type": "literal", "value": "Temporada de patos"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Fernando_Eimbcke"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Carolina_Politi|http://dbpedia.org/resource/Daniel_Miranda|http://dbpedia.org/resource/Danny_Perea|http://dbpedia.org/resource/Diego_Cata\u00f1o|http://dbpedia.org/resource/Enrique_Arreola"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Temporada de patos (released as Duck Season in the United States) is a 2004 Mexican film. It is the first feature film by writer/director, Fernando Eimbcke, a former MTV Awards videoclip director. After being successfully featured in national and international film festivals such as the Cannes Film Festival it was sold to distributors in six European countries. The movie has been praised in all of these festivals as well as by directors such as Alfonso Cuar\u00f3n (Gravity) and Guillermo del Toro (Pacific Rim). The movie is filmed in black and white and mostly takes place in one location, an old apartment in Tlatelolco."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Independent_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/La_suerte_en_tus_manos"}, "Title": {"type": "literal", "value": "La suerte en tus manos"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Daniel_Burman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jorge_Drexler|http://dbpedia.org/resource/Norma_Aleandro|http://dbpedia.org/resource/Valeria_Bertuccelli"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "La suerte en tus manos is a film co-produced by Argentina, Brazil and Spain directed by Daniel Burman based on his own script written in collaboration with Sergio Dubcovsky which premiered on March 29, 2012, starring Norma Aleandro, Jorge Drexler, Valeria Bertuccelli and Gabriel Schultz."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Moscow_Square_(film)"}, "Title": {"type": "literal", "value": "Moscow Square"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ferenc_T\u00f6r\u00f6k_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Moscow Square (Hungarian: Moszkva t\u00e9r) is a Hungarian film released in 2001. It is named after Moscow Square in Budapest and is about a group of high school students who would rather party than take notice of the history taking place all round them in 1989."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Cemetery_Junction_(film)"}, "Title": {"type": "literal", "value": "Cemetery Junction"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ricky_Gervais|http://dbpedia.org/resource/Stephen_Merchant"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Christian_Cooke|http://dbpedia.org/resource/Emily_Watson|http://dbpedia.org/resource/Felicity_Jones|http://dbpedia.org/resource/Jack_Doolan_(actor)|http://dbpedia.org/resource/Matthew_Goode|http://dbpedia.org/resource/Ralph_Fiennes|http://dbpedia.org/resource/Ricky_Gervais|http://dbpedia.org/resource/Tom_Hughes_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:British_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Cemetery Junction is a 2010 British coming-of-age comedy-drama film written and directed by Ricky Gervais and Stephen Merchant. The film was released in the United Kingdom on 14 April 2010."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Madly_Madagascar"}, "Title": {"type": "literal", "value": "Madly Madagascar"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_Soren_(animator)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Richter|http://dbpedia.org/resource/Ben_Stiller|http://dbpedia.org/resource/Cedric_the_Entertainer|http://dbpedia.org/resource/Chris_Miller_(animator)|http://dbpedia.org/resource/Chris_Rock|http://dbpedia.org/resource/Christopher_Knights|http://dbpedia.org/resource/Danny_Jacobs_(actor)|http://dbpedia.org/resource/David_Schwimmer|http://dbpedia.org/resource/Jada_Pinkett_Smith|http://dbpedia.org/resource/Taraji_P._Henson|http://dbpedia.org/resource/Tom_McGrath_(animator)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films|http://dbpedia.org/resource/Category:Direct-to-video_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "22"}, "Description": {"type": "literal", "value": "Madly Madagascar is a direct-to-DVD Valentine's Day short film starring the characters from the Madagascar film series, and taking place during the second film. Produced by DreamWorks Animation, it was written and directed by David Soren. The special was released on DVD on January 29, 2013. Ben Stiller, Chris Rock, David Schwimmer and Jada Pinkett Smith returned to voice the main characters, except for Sacha Baron Cohen, who was replaced by Danny Jacobs. It was the first DreamWorks Animation DVD release to be distributed by 20th Century Fox Home Entertainment. Special features on the DVD include the Over the Hedge short film Hammy's Boomerang Adventure and the short film First Flight."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox_Home_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Le_Fear"}, "Title": {"type": "literal", "value": "Le Fear"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jason_Croot"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Lucinda_Rhodes-Flaherty"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "62"}, "Description": {"type": "literal", "value": "Le Fear is a 2010 British comedy film, and the directorial debut of actor Jason Croot who also features in a supporting role. Shot on an ultra-low budget of less than \u00a32,000, and filmed over the course of just three days, the film stars Kyri Saphiris, Spencer Austin and Lucinda Rhodes-Flaherty, among others. The story follows the experiences of a bunch of actors as they attempt to make an ultimately inept and poor quality film. A sequel, Le Fear II: Le Sequel, is due to be released in 2016."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ali_G,_Aiii"}, "Title": {"type": "literal", "value": "Ali G, Aiii"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Bobin|http://dbpedia.org/resource/Steve_Smith_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Sacha_Baron_Cohen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "Ali G, Aiii is a straight-to-video release of clips from Da Ali G Show (original, UK series) plus unaired segments from the show, hosted by Ali G himself. The word \"Aiii\" refers to Ali G's slang/slur loosely pronounced \"Ah-eye\" and meaning \"all right\"."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/2_Entertain"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Too_Young_to_Die!_Wakakushite_Shinu"}, "Title": {"type": "literal", "value": "Too Young to Die! Wakakushite Shinu"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kankur\u014d_Kud\u014d"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aoi_Morikawa|http://dbpedia.org/resource/Kenta_Kiritani|http://dbpedia.org/resource/Machiko_Ono|http://dbpedia.org/resource/Ryunosuke_Kamiki|http://dbpedia.org/resource/Tomoya_Nagase"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Japanese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "125"}, "Description": {"type": "literal", "value": "Too Young to Die! Wakakushite Shinu (Too Young to Die! \u82e5\u304f\u3057\u3066\u6b7b\u306c) is a 2016 Japanese comedy film directed by Kankur\u014d Kud\u014d. Tomoya Nagase played the lead role for the first time in 7 years. It was expected to be released on February 6, 2016, but was postponed because of a car accident scene that reminded people of a bus crash in Karuizawa. This film premiered at the 40th Hong Kong International Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Toho"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Guardians_of_the_Galaxy_Vol._2"}, "Title": {"type": "literal", "value": "Guardians of the Galaxy Vol. 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Gunn"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bradley_Cooper|http://dbpedia.org/resource/Chris_Pratt|http://dbpedia.org/resource/Chris_Sullivan_(actor)|http://dbpedia.org/resource/Dave_Bautista|http://dbpedia.org/resource/Elizabeth_Debicki|http://dbpedia.org/resource/Glenn_Close|http://dbpedia.org/resource/Karen_Gillan|http://dbpedia.org/resource/Kurt_Russell|http://dbpedia.org/resource/Michael_Rooker|http://dbpedia.org/resource/Pom_Klementieff|http://dbpedia.org/resource/Sean_Gunn|http://dbpedia.org/resource/Vin_Diesel|http://dbpedia.org/resource/Zoe_Saldana"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Guardians of the Galaxy Vol. 2 is an upcoming American superhero film based on the Marvel Comics superhero team Guardians of the Galaxy, produced by Marvel Studios and distributed by Walt Disney Studios Motion Pictures. It is intended to be the sequel to 2014's Guardians of the Galaxy and the fifteenth film in the Marvel Cinematic Universe. The film is written and directed by James Gunn and stars an ensemble cast featuring Chris Pratt, Zoe Saldana, Dave Bautista, Vin Diesel, Bradley Cooper, Michael Rooker, Karen Gillan, Sean Gunn, Glenn Close, Pom Klementieff, Elizabeth Debicki, Chris Sullivan, and Kurt Russell. In Guardians of the Galaxy Vol. 2, the Guardians travel throughout the cosmos as they help Peter Quill learn more about his true parentage. Guardians of the Galaxy Vol. 2 was officially announced at San Diego Comic-Con International 2014 before the theatrical release of the first film, along with Gunn's involvement once again, with the title of the film revealed a year later in June 2015. The film began principal photography in February 2016 at Pinewood Atlanta Studios in Fayette County, Georgia, and concluded in June 2016. Guardians of the Galaxy Vol. 2 is scheduled to be released on May 5, 2017, in 3D and IMAX. A teaser was posted onto Marvel Entertainment's Youtube channel on October 19, 2016."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Brothers_Bloom"}, "Title": {"type": "literal", "value": "The Brothers Bloom"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rian_Johnson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adrien_Brody|http://dbpedia.org/resource/Mark_Ruffalo|http://dbpedia.org/resource/Maximilian_Schell|http://dbpedia.org/resource/Rachel_Weisz|http://dbpedia.org/resource/Rinko_Kikuchi|http://dbpedia.org/resource/Robbie_Coltrane"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_criminal_comedy_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "The Brothers Bloom is a 2008 American caper comedy film written and directed by Rian Johnson. The film stars Rachel Weisz, Adrien Brody, Mark Ruffalo, Rinko Kikuchi, Maximillian Schell, and Robbie Coltrane. Originally released in only four theaters on May 15, 2009, the film moved into wide release two weeks later on May 29."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Summit_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Open_Season_3"}, "Title": {"type": "literal", "value": "Open Season 3"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Cody_Cameron"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andr\u00e9_Sogliuzzo|http://dbpedia.org/resource/Ciara_Bravo|http://dbpedia.org/resource/Dana_Snyder|http://dbpedia.org/resource/Karley_Scott_Collins|http://dbpedia.org/resource/Maddie_Taylor|http://dbpedia.org/resource/Matthew_J._Munn"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "75"}, "Description": {"type": "literal", "value": "Open Season 3 is a 2010 American computer-animated comedy film. It is the third installment in the Open Season film series, following Open Season (2006) and Open Season 2 (2008). The film was directed by Cody Cameron and produced by Sony Pictures Animation and Reel FX Creative Studios. It theatrically premiered in Russia on October 21, 2010 and was released as a direct-to-video in the United States on January 25, 2011. Many of the previous actors reprised their roles, with the exception of Mike Epps, Joel McHale, Jane Krakowski, Billy Connolly, and Jon Favreau. They are joined by new characters that are voiced by Matthew J. Munn, Melissa Sturm, Dana Snyder, Karley Scott Collins, Ciara Bravo, Harrison Fahn, and Cody Cameron."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sony_Pictures_Home_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/In_Bruges"}, "Title": {"type": "literal", "value": "In Bruges"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Martin_McDonagh"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:British_black_comedy_films|http://dbpedia.org/resource/Category:British_comedy-drama_films|http://dbpedia.org/resource/Category:Films_featuring_a_Best_Musical_or_Comedy_Actor_Golden_Globe_winning_performance"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "In Bruges is a 2008 Anglo-American neo-noir black comedy crime drama film written and directed by Martin McDonagh. The film stars Colin Farrell and Brendan Gleeson as two Irish hitmen in hiding, with Ralph Fiennes as their boss. The film takes place and was filmed in the Belgian city of Bruges. In Bruges was the opening night film of the 2008 Sundance Film Festival and opened on limited release in the United States on 8 February 2008. The film garnered a cult status for its dark humour and dialogues. The film earned Farrell the Golden Globe Award for Best Actor \u2013 Motion Picture Musical or Comedy, while Gleeson was nominated for the same. McDonagh won the BAFTA Award for Best Original Screenplay and was nominated for the Academy Award for Best Original Screenplay."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Whatever_You_Say_(film)"}, "Title": {"type": "literal", "value": "Whatever You Say"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Guillaume_Canet"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Clotilde_Courau|http://dbpedia.org/resource/Daniel_Pr\u00e9vost|http://dbpedia.org/resource/Diane_Kruger|http://dbpedia.org/resource/Fran\u00e7ois_Berl\u00e9and"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:French_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "Whatever You Say (original title: Mon idole) is a 2002 French comedy-drama film directed by Guillaume Canet and starring Fran\u00e7ois Berl\u00e9and, Guillaume Canet, Diane Kruger, Daniel Pr\u00e9vost, and Clotilde Courau."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Touch_of_Pink"}, "Title": {"type": "literal", "value": "Touch of Pink"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ian_Iqbal_Rashid"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jimi_Mistry|http://dbpedia.org/resource/Kristen_Holden-Ried|http://dbpedia.org/resource/Kyle_MacLachlan|http://dbpedia.org/resource/Suleka_Mathew"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:British_romantic_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Touch of Pink is a 2004 Canadian-British gay-themed romantic comedy film written and directed by Ian Iqbal Rashid. The film takes its title from the Cary Grant film That Touch of Mink."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Mongrel_Media|http://dbpedia.org/resource/Redbus_Film_Distribution|http://dbpedia.org/resource/Sony_Pictures_Classics"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Prince_Avalanche"}, "Title": {"type": "literal", "value": "Prince Avalanche"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_Gordon_Green"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Prince Avalanche is a 2013 American comedy-drama film starring Paul Rudd and Emile Hirsch. It was directed by David Gordon Green, who also wrote the screenplay based on the 2011 Icelandic film Either Way (\u00c1 annan veg). The film was shot in Bastrop, Texas, after the Bastrop County Complex fire."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Magnolia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Barbershop:_The_Next_Cut"}, "Title": {"type": "literal", "value": "Barbershop: The Next Cut"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Malcolm_D._Lee"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anthony_Anderson|http://dbpedia.org/resource/Cedric_the_Entertainer|http://dbpedia.org/resource/Common_(rapper)|http://dbpedia.org/resource/Deon_Cole|http://dbpedia.org/resource/Eve_(rapper)|http://dbpedia.org/resource/J._B._Smoove|http://dbpedia.org/resource/Lamorne_Morris|http://dbpedia.org/resource/Maryum_Ali|http://dbpedia.org/resource/Nicki_Minaj|http://dbpedia.org/resource/Regina_Hall|http://dbpedia.org/resource/Sean_Patrick_Thomas|http://dbpedia.org/resource/Tyga"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "Barbershop: The Next Cut is a 2016 American comedy film directed by Malcolm D. Lee and written by Kenya Barris and Tracy Oliver. It is the sequel to 2004's Barbershop 2: Back in Business and the fourth film in the Barbershop film series and stars an ensemble cast, including returning actors Ice Cube, Cedric the Entertainer, Anthony Anderson, Eve, Sean Patrick Thomas, Deon Cole and Troy Garity, and new cast members Regina Hall, Nicki Minaj, Common, Maryum Ali, J. B. Smoove, Tyga and Lamorne Morris. The film was released on April 15, 2016."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Metro-Goldwyn-Mayer|http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Cube_Vision|http://dbpedia.org/resource/New_Line_Cinema"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tenacious_D_in_The_Pick_of_Destiny"}, "Title": {"type": "literal", "value": "Tenacious D in The Pick of Destiny"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Liam_Lynch_(musician)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jack_Black|http://dbpedia.org/resource/Kyle_Gass"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Tenacious D in The Pick of Destiny is a 2006 American rock musical black comedy film about comedy rock duo Tenacious D. Written, produced by and starring Tenacious D members Jack Black and Kyle Gass, it is directed and co-written by musician and puppeteer Liam Lynch. Despite being about an actual band, the film is a fictitious story set in the 1990s about the band's origins, and their journey to find a pick belonging to Satan that allows its users to become rock legends. The film was released on November 22, 2006 and was a box office bomb. The soundtrack, The Pick of Destiny, was also released in 2006 as the band's second studio album."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/New_Line_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sabdhan_Pancha_Aashche"}, "Title": {"type": "literal", "value": "Sabdhan Pancha Aashche"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Arin_Paul"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/June_Maliah|http://dbpedia.org/resource/Rii_Sen|http://dbpedia.org/resource/Rudranil_Ghosh|http://dbpedia.org/resource/Subrat_Dutt"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Sabdhan Pancha Aashche is an unreleased Bengali film by Arin Paul."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Cuci_(film)"}, "Title": {"type": "literal", "value": "Cuci"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Hans_Isaac"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/AC_Mizal|http://dbpedia.org/resource/Afdlin_Shauki|http://dbpedia.org/resource/Awie|http://dbpedia.org/resource/Erra_Fazira|http://dbpedia.org/resource/Hans_Isaac|http://dbpedia.org/resource/Rahim_Razali|http://dbpedia.org/resource/Umie_Aida|http://dbpedia.org/resource/Yusni_Jaafar"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Cuci (Malay for \"Wash\") is a Malaysian comedy film released on 28 January 2008."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Doll_&_Em"}, "Title": {"type": "literal", "value": "Doll & Em"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Azazel_Jacobs"}, "Author": {"type": "literal", "value": "http://dbpedia.org/resource/Azazel_Jacobs"}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dolly_Wells|http://dbpedia.org/resource/Emily_Mortimer"}, "Published": {"type": "literal", "value": "2014-02-18"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:British_comedy_television_programmes"}, "Genre": {"type": "literal", "value": "http://dbpedia.org/resource/Comedy"}, "Duration": {"type": "literal", "value": "22"}, "Description": {"type": "literal", "value": "Doll & Em is a British episodic television comedy created by and starring Emily Mortimer and Dolly Wells. A six-episode order was commissioned by Sky Living in 2013. The series was directed and co-written by Azazel Jacobs. A 124-minute theatrical cut of the series was shown at the London Film Festival, premiering 10 October 2013. Sky Living premiered Doll & Em on 18 February 2014. American cable network HBO acquired the series in September 2013, and premiered it on 19 March 2014. On 16 October 2014, Sky Living renewed the show for a second series. The second series started broadcasting on 3 June 2015 on Sky Atlantic in the UK."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Straight_A's"}, "Title": {"type": "literal", "value": "Straight A's"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Cox_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anna_Paquin|http://dbpedia.org/resource/Luke_Wilson|http://dbpedia.org/resource/Ryan_Phillippe"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Straight A's is a 2013 American romantic comedy film directed by James Cox and produced by Jamie Adamic. It stars Anna Paquin, Ryan Phillippe and Luke Wilson in the lead role. The film was released on January 13, 2013, in Brazil, on March 19, 2013, in the USA and on June 5, 2013, in the Netherlands. The film was distributed by Millennium Entertainment."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Alchemy_(company)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Free_Fall_(2014_film)"}, "Title": {"type": "literal", "value": "Free Fall"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Gy\u00f6rgy_P\u00e1lfi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Mikl\u00f3s_Benedek|http://dbpedia.org/resource/Piroska_Moln\u00e1r"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "Free Fall (Hungarian: Szabades\u00e9s) is a 2014 Hungarian comedy film directed by Gy\u00f6rgy P\u00e1lfi."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Good_Dinosaur"}, "Title": {"type": "literal", "value": "The Good Dinosaur"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Peter_Sohn"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/A._J._Buckley|http://dbpedia.org/resource/Anna_Paquin|http://dbpedia.org/resource/Frances_McDormand|http://dbpedia.org/resource/Jeffrey_Wright_(actor)|http://dbpedia.org/resource/Raymond_Ochoa|http://dbpedia.org/resource/Sam_Elliott|http://dbpedia.org/resource/Steve_Zahn"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_fantasy-comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "The Good Dinosaur is a 2015 American 3D computer-animated comedy adventure film produced by Pixar Animation Studios and released by Walt Disney Pictures. The film is directed by Peter Sohn in his directorial debut from a screenplay by Meg LeFauve from an original idea by Bob Peterson. Set on a fictional Earth in which dinosaurs never became extinct, the film follows a young Apatosaurus named Arlo, who meets an unlikely human friend while traveling through a harsh and mysterious landscape. The film features the voices of Raymond Ochoa, Jack Bright, Sam Elliott, Anna Paquin, A.J. Buckley, Steve Zahn, Jeffrey Wright, and Frances McDormand. Peterson, who came up with the idea for the story, directed the film until August 2013. In October 2014, Sohn was announced as the new director. The film, along with Inside Out, marks the first time that Pixar has released two feature films in the same year. The Good Dinosaur premiered on November 10, 2015 in Paris. It was released in the United States on November 25, 2015, and received positive reviews from critics. The film grossed $332.2 million worldwide, making it Pixar's lowest-grossing film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Pixar|http://dbpedia.org/resource/Walt_Disney_Pictures"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Yuvakudu"}, "Title": {"type": "literal", "value": "Yuvakudu"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/A._Karunakaran"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bhumika_Chawla|http://dbpedia.org/resource/Jayasudha|http://dbpedia.org/resource/Sumanth"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Yuvakudu (English: Youngman)is a Telugu film released in August 2000, which was produced by Akkineni Nagarjuna and N.Sudhakar Reddy, directed by A. Karunakaran. It stars Sumanth and Bhumika Chawla. The film was the second venture for both Karunakaran and Sumanth."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Angry_Video_Game_Nerd:_The_Movie"}, "Title": {"type": "literal", "value": "Angry Video Game Nerd: The Movie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Rolfe"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Eddie_Pepitone|http://dbpedia.org/resource/James_Rolfe|http://dbpedia.org/resource/Jeremy_Suarez|http://dbpedia.org/resource/Sarah_Glendening"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "Angry Video Game Nerd: The Movie is a 2014 American independent science fiction adventure comedy film written and directed by James Rolfe and Kevin Finn. It is based on the web series of the same name, also created by Rolfe, with himself as the title role. The story centers around the then urban legend of the mass burial of millions copies of the 1982 Atari 2600 video game E.T. the Extra-Terrestrial, proclaimed as the \"worst video game of all time\". After a longstanding refusal to address the game in his web series, the Nerd succumbs to pressure by fans to review the video game, embarking on a quest to prove that there is nothing buried there. However, the crew is pursued by federal authorities, led by the villainous General Dark Onward, who believes he is investigating Area 51 and the crash of an unidentified flying object. The film premiered July 21, 2014 at Grauman's Egyptian Theatre in Hollywood, and was released online via video-on-demand on September 2, 2014. The Blu-ray version of the film was released on December 14, 2014 through Amazon.com, with the DVD version released on May 13, 2015. The film's budget of over US$325,000 came entirely from Internet crowdfunding."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/What_Love_Is"}, "Title": {"type": "literal", "value": "What Love Is"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mars_Callahan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anne_Heche|http://dbpedia.org/resource/Cuba_Gooding,_Jr.|http://dbpedia.org/resource/Gina_Gershon|http://dbpedia.org/resource/Matthew_Lillard|http://dbpedia.org/resource/Sean_Astin"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "What Love Is is a 2007 romantic comedy film, written and directed by Mars Callahan, starring Cuba Gooding, Jr., Matthew Lillard, Sean Astin, Anne Heche, and Gina Gershon."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Big_Sky_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Barbershop_(film)"}, "Title": {"type": "literal", "value": "Barbershop"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tim_Story"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anthony_Anderson|http://dbpedia.org/resource/Cedric_the_Entertainer|http://dbpedia.org/resource/DeRay_Davis|http://dbpedia.org/resource/Eve_(rapper)|http://dbpedia.org/resource/Ice_Cube|http://dbpedia.org/resource/Keith_David|http://dbpedia.org/resource/Michael_Ealy|http://dbpedia.org/resource/Sean_Patrick_Thomas|http://dbpedia.org/resource/Troy_Garity"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Barbershop is a 2002 American comedy film directed by Tim Story, produced by State Street Pictures and released by Metro-Goldwyn-Mayer on September 13, 2002. Starring Ice Cube, Cedric the Entertainer, and Anthony Anderson, the movie revolves around social life in a barbershop on the South Side of Chicago. Barbershop also proved to be a star-making vehicle for acting newcomers Eve and Michael Ealy. It is a first film in the Barbershop film series."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Metro-Goldwyn-Mayer"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sadda_Adda"}, "Title": {"type": "literal", "value": "Sadda Adda"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Muazzam_Beg"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dr._Kadambari_Jethwani|http://dbpedia.org/resource/Karanvir_Sharma_(actor)|http://dbpedia.org/resource/Maryam_Zakaria|http://dbpedia.org/resource/Shaurya_Chauhan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "Sadda Adda is a 2012 Indian comedy film directed by Muazzam Beg. The film was Muazzam Beg's directorial debut. Sadda Adda was produced by Rajeev Agarwal, Ramesh Agarwal and Tarun Agarwal, under the banner of Rajtaru Studios Limited."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Toh_Baat_Pakki!"}, "Title": {"type": "literal", "value": "Toh Baat Pakki"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kedar_Shinde"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ayub_Khan_(actor)|http://dbpedia.org/resource/Sharman_Joshi|http://dbpedia.org/resource/Tabu_(actress)|http://dbpedia.org/resource/Vatsal_Seth|http://dbpedia.org/resource/Yuvika_Chaudhary"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "122"}, "Description": {"type": "literal", "value": "Toh Baat Pakki! (Hindi: \u0924\u094b \u092c\u093e\u0924 \u092a\u0915\u094d\u0915\u0940, English: Then it's Final! ) is a 2010 Hindi romantic comedy film directed by Kedar Shinde. The film, produced by Ramesh S Taurani under Tips Music Films, stars Tabu, Sharman Joshi, Vatsal Seth, Yuvika Chaudhary and Ayub Khan in the lead roles. The movie marked the directorial debut of a Marathi filmmaker, Kedar Shinde. The film tells the story of a middle class woman in search for a match for her sister. She happens to meet two matches and lands up in a dilemma to choose one. The woman and her sister have different choices. The rest of the film reveals the hilarious chaos created. The film was released on 19 February 2010, and received mostly negative reviews from critics."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Tips_Industries"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kadhalil_Sodhappuvadhu_Yeppadi"}, "Title": {"type": "literal", "value": "Kadhalil Sodhappuvadhu Yeppadi/|Love Failure"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Balaji_Mohan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amala_Paul|http://dbpedia.org/resource/Siddharth_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Kadhalil Sodhappuvadhu Yeppadi (How to Mess Up in Love) is a 2012 Indian romantic comedy film based on the same-titled short film directed by debutant Balaji Mohan. It was simultaneously shot in Tamil and Telugu (titled Love Failure) languages. The film stars Siddharth and Amala Paul in the lead roles. It was released worldwide on 17 February 2012 to critical acclaim and was declared a hit."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Dil_Raju"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/I_Love_You,_Man"}, "Title": {"type": "literal", "value": "I Love You, Man"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/John_Hamburg"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Samberg|http://dbpedia.org/resource/J._K._Simmons|http://dbpedia.org/resource/Jaime_Pressly|http://dbpedia.org/resource/Jane_Curtin|http://dbpedia.org/resource/Jason_Segel|http://dbpedia.org/resource/Jon_Favreau|http://dbpedia.org/resource/Paul_Rudd|http://dbpedia.org/resource/Rashida_Jones"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "I Love You, Man is a 2009 American romantic comedy film originally titled Let's Be Friends and written by Larry Levin before John Hamburg rewrote and directed the film. It stars Paul Rudd and Jason Segel. Rudd stars as a friendless man looking for a best man for his upcoming wedding. However, his new friend is straining his relationship with his bride. The film was released theatrically in North America on March 20, 2009, to mostly positive reviews and took second spot in the box office during its opening week (to Knowing). The film was released on home video on August 11, 2009."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/DreamWorks"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/2_Days_in_the_Valley"}, "Title": {"type": "literal", "value": "2 Days in the Valley"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/John_Herzfeld"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Charlize_Theron|http://dbpedia.org/resource/Danny_Aiello|http://dbpedia.org/resource/Eric_Stoltz|http://dbpedia.org/resource/Glenne_Headly|http://dbpedia.org/resource/James_Spader|http://dbpedia.org/resource/Jeff_Daniels|http://dbpedia.org/resource/Marsha_Mason|http://dbpedia.org/resource/Paul_Mazursky|http://dbpedia.org/resource/Teri_Hatcher"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_criminal_comedy_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2 Days in the Valley is a 1996 American black comedy crime film directed by John Herzfeld, that revolves around the events over 48 hours in the lives of a group of people who are drawn together by a murder"}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Metro-Goldwyn-Mayer"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Chance_(film)"}, "Title": {"type": "literal", "value": "Chance"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Amber_Benson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amber_Benson|http://dbpedia.org/resource/Andy_Hallett|http://dbpedia.org/resource/Christine_Estabrook|http://dbpedia.org/resource/James_Marsters"}, "Published": {"type": "literal", "value": "2002-09-22"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "75"}, "Description": {"type": "literal", "value": "Chance is a 2002 film, the directing debut of actress Amber Benson (best known from her role as Tara Maclay on Buffy the Vampire Slayer). Benson directed, wrote, produced and starred in this film. Many of Benson's co-stars from Buffy, including co-star James Marsters (Spike), appeared in the film. It was estimated to cost $25,000. As documented on Chance's official site, the cost of making the film ended up being more than triple the estimate. Though Benson originally thought that she would foot the bill herself, she decided to ask fans for support. Signed photos of Benson on the set of the film, as well as scripts and props, were sold to raise money. Benson's production company, Benson Entertainment, distributes the movie on DVD and video. \n*  Running time: 75 Mins \n*  Filming Dates: March\u2013April 2001"}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/We're_the_Millers"}, "Title": {"type": "literal", "value": "We're the Millers"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rawson_Marshall_Thurber"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_criminal_comedy_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "We're the Millers is a 2013 American comedy film directed by Rawson Marshall Thurber. The film's screenplay was written by Bob Fisher, Steve Faber, Sean Anders, and John Morris, based on a story by Fisher and Faber. It stars Jennifer Aniston, Jason Sudeikis, Emma Roberts, Will Poulter, Nick Offerman, Kathryn Hahn, and Ed Helms. The plot follows a small-time pot dealer (Sudeikis) who convinces his neighbors to create a fake family, in order to smuggle in drugs from Mexico onto US soil. The film was released on August 7, 2013 by New Line Cinema through Warner Bros. Pictures. It received mixed reviews from film critics, but was a box-office success, grossing $270 million worldwide during its theatrical run, against a $37 million budget. The film was nominated for four People's Choice Awards, and six MTV Movie Awards, winning two. A sequel is currently in development, with Adam Sztykiel set to write the script."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros._Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Meet_the_Blacks"}, "Title": {"type": "literal", "value": "Meet the Blacks"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Deon_Taylor"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bresha_Webb|http://dbpedia.org/resource/Gary_Owen_(comedian)|http://dbpedia.org/resource/George_Lopez|http://dbpedia.org/resource/Lil_Duval|http://dbpedia.org/resource/Mike_Epps|http://dbpedia.org/resource/Mike_Tyson|http://dbpedia.org/resource/Zulay_Henao"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Meet the Blacks is a 2016 American comedy film directed by Deon Taylor, written by Taylor and Nicole DeMasi, and is a parody of the 2013 film The Purge. It stars Mike Epps, Gary Owen, Zulay Henao, Lil Duval, Bresha Webb, George Lopez and Mike Tyson, and was released on April 1, 2016, by Freestyle Releasing."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Freestyle_Releasing"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Benki_Birugali"}, "Title": {"type": "literal", "value": "Benki Birugali"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/SK_Basheed"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Monica_(actress)|http://dbpedia.org/resource/Namitha|http://dbpedia.org/resource/Rekha_Vedavyas|http://dbpedia.org/resource/Richard_Rishi|http://dbpedia.org/resource/Rishika_Singh|http://dbpedia.org/resource/SK_Basheed|http://dbpedia.org/resource/Sandhya_(actress)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "135"}, "Description": {"type": "literal", "value": "Benki Birugali is a 2013 Indian Kannada action comedy film directed and produced by S. K. Basheed who is making his debut in Sandalwood as a lead actor. The film also has Rishi, Kadhal Sandhya, Rekha, Monica, Banu Mehra, \u2018Bullet\u2019 Prakash, Layendra and Janardhan. While KS Cheluvaraj is the cinematographer of the film, MM Srilekha has composed the music. The film was launched in January 2011. It was shot at various locations in Karnataka and Andhra Pradesh. Benki Birugali released on 26 April. The film was supposed to be originally a bilingual \u2013 Telugu and Kannada - however, the Telugu version Fire, will not be released."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Smell_of_Success"}, "Title": {"type": "literal", "value": "The Smell of Success"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Polish_brothers"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Billy_Bob_Thornton|http://dbpedia.org/resource/Ed_Helms|http://dbpedia.org/resource/Kyle_MacLachlan|http://dbpedia.org/resource/T\u00e9a_Leoni"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "The Smell of Success is an Initiate Productions film directed by Michael Polish, starring Billy Bob Thornton, T\u00e9a Leoni, Kyle MacLachlan, and Ed Helms. The film\u2019s original title was Manure."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Cinedigm"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Our_Family_Wedding"}, "Title": {"type": "literal", "value": "Our Family Wedding"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rick_Famuyiwa"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/America_Ferrera|http://dbpedia.org/resource/Carlos_Mencia|http://dbpedia.org/resource/Forest_Whitaker|http://dbpedia.org/resource/Lance_Gross|http://dbpedia.org/resource/Regina_King|http://dbpedia.org/resource/Shannyn_Sossamon"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Our Family Wedding is a romantic comedy film starring Forest Whitaker, America Ferrera, Carlos Mencia, Lance Gross, Shannyn Sossamon, Charlie Murphy and Regina King. It received its wide release on March 12, 2010."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Searchlight_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Zoom_(2016_film)"}, "Title": {"type": "literal", "value": "Zoom"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Prashant_Raj"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ganesh_(actor)|http://dbpedia.org/resource/Radhika_Pandit"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "159"}, "Description": {"type": "literal", "value": "Zoom is a 2016 Indian Kannada romantic comedy film directed by Prashant Raj starring Ganesh and Radhika Pandit in the lead roles. The supporting cast features Dev Gill, Sadhu Kokila and Kashinath. The music is scored by S. Thaman and cinematography is by Santhosh Rai Pathaje. The film released on 1 July 2016 across Karnataka and other countries. Upon release, the film faced criticism for its adulterated comedy and also for its plot copying from decades old Hollywood classic Lover Come Back (1961)."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Best_Plan_Is_No_Plan"}, "Title": {"type": "literal", "value": "The Best Plan Is No Plan"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Patrick_Kong"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Hong_Kong_comedy-drama_films|http://dbpedia.org/resource/Category:Hong_Kong_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "The Best Plan Is No Plan is a 2013 Hong Kong romantic comedy drama film directed by Patrick Kong. It was released on October 17."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Going_Down_in_LA-LA_Land"}, "Title": {"type": "literal", "value": "Going Down in LA-LA Land"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Casper_Andreas"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Allison_Lane|http://dbpedia.org/resource/Matthew_Ludwinski|http://dbpedia.org/resource/Michael_Medico"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Going Down in LA-LA Land is a 2011 comedy-drama film written and directed by Swedish filmmaker Casper Andreas and based on the novel by Andy Zeffer. It was released in New York City on April 20, 2012 and in Los Angeles on May 18, 2012."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Samba_(2014_film)"}, "Title": {"type": "literal", "value": "Samba"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Olivier_Nakache_&_\u00c9ric_Toledano"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Charlotte_Gainsbourg|http://dbpedia.org/resource/Iz\u00efa|http://dbpedia.org/resource/Omar_Sy|http://dbpedia.org/resource/Tahar_Rahim"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "119"}, "Description": {"type": "literal", "value": "Samba is a 2014 French comedy-drama film co-written and directed by Olivier Nakache and \u00c9ric Toledano. It is the second collaboration between Sy and directors Nakache and Toledano after 2012's The Intouchables. The film premiered at the 2014 Toronto International Film Festival on 7 September 2014. It had a theatrical release on 15 October 2014 in France. The U.S. theatrical release is set for July 24, 2015."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Gaumont_Film_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ljubav_i_drugi_zlo\u010dini"}, "Title": {"type": "literal", "value": "Ljubav i drugi zlo\u010dini|Love and Other Crimes"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Stefan_Arsenijevi\u0107"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anica_Dobra|http://dbpedia.org/resource/Hanna_Schwamborn|http://dbpedia.org/resource/Vuk_Kosti\u0107"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:Serbian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "Ljubav i drugi zlo\u010dini, or Love and Other Crimes in English, is a 2008 Serbian romantic comedy directed by Stefan Arsenijevi\u0107, and written by Arsenijevi\u0107 and Sr\u0111an Koljevi\u0107, and stars Anica Dobra and Vuk Kosti\u0107. The film won Arsenijevi\u0107 an award for Best Director at the 2008 Sofia International Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Human_Traffic"}, "Title": {"type": "literal", "value": "Human Traffic"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Justin_Kerrigan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Danny_Dyer|http://dbpedia.org/resource/John_Simm|http://dbpedia.org/resource/Lorraine_Pilkington|http://dbpedia.org/resource/Nicola_Reynolds|http://dbpedia.org/resource/Shaun_Parkes"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films|http://dbpedia.org/resource/Category:Irish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99.5"}, "Description": {"type": "literal", "value": "Human Traffic is a 1999 British-Irish independent film written and directed by Welsh filmmaker Justin Kerrigan. The film explores themes of coming of age, drug and club cultures, as well as relationships. It includes scenes provoking social commentary and the use of archive footage to provide political commentary. The plot of the film revolves around five twenty-something friends and their wider work and social circle, the latter devotees of the club scene, taking place over the course of a drug-fuelled weekend in Cardiff, Wales. A central feature is the avoidance of moralising about the impact of 1990s dance lifestyle; instead the film concentrates on recreating the \"vibe, the venues and the mood\" of the dance movement from the 1988-89 \"second summer of love\" to the film's release in 1999. In the first 25 minutes of the film Lee, the 17-year-old brother of central character Nina, enthuses \"I am about to be part of the chemical generation\" and lists, using the slang of the period, a series of drugs that he might experiment with later that night. The film is narrated by one of the stars, John Simm, featuring numerous cameo appearances. It is also the film debut of Danny Dyer as well as referencing another drug culture film of the era, Trainspotting. With an original budget of \u00a3340,000, the production eventually came in for \u00a32,200,000; the film was a financial success, taking in \u00a32,500,000 at the UK box office alone, also enjoying good VHS and DVD sales. Human Traffic was critically well-received with largely positive reviews, and has achieved cult status, especially amongst subcultures such as the rave culture."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Weekend_Getaway"}, "Title": {"type": "literal", "value": "Weekend Getaway"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Desmond_Elliot"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alexx_Ekubo|http://dbpedia.org/resource/Beverly_Naya|http://dbpedia.org/resource/Bryan_Okwara|http://dbpedia.org/resource/Genevieve_Nnaji|http://dbpedia.org/resource/Ini_Edo|http://dbpedia.org/resource/Monalisa_Chinda|http://dbpedia.org/resource/Ramsey_Nouah|http://dbpedia.org/resource/Uru_Eke|http://dbpedia.org/resource/Uti_Nwachukwu"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Weekend Getaway is a 2012 Nigerian romantic drama film directed by Desmond Elliot, starring Genevieve Nnaji, Uti Nwachukwu, Ini Edo and Ramsey Nouah. It received 11 nominations and eventually won 4 awards at the 2013 Nollywood & African Film Critics Awards (NAFCA). It also received 2 nominations at the 2013 Best of Nollywood Awards with Alex Ekubo eventually winning the award for Best Actor in a supporting role. The film was a box-office success in Nigerian cinemas generally because of its star-studded cast."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Digger_(1993_film)"}, "Title": {"type": "literal", "value": "Digger"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rob_Turner"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Hann-Byrd|http://dbpedia.org/resource/Barbara_Williams_(actress)|http://dbpedia.org/resource/Joshua_Jackson|http://dbpedia.org/resource/Leslie_Nielsen|http://dbpedia.org/resource/Olympia_Dukakis|http://dbpedia.org/resource/Timothy_Bottoms"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Digger is a 1993 Canadian comedy-drama film starring Leslie Nielsen, Adam Hann-Byrd, Joshua Jackson, Timothy Bottoms, Barbara Williams, Olympia Dukakis and Leslie Nielsen. The film premiered on September 30, 1993 at the Vancouver International Film Festival. The Film was released in Canada on April 22, 1994."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Skouras_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/One_Man_Up"}, "Title": {"type": "literal", "value": "One Man Up"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Paolo_Sorrentino"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Toni_Servillo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "One Man Up (Italian: L'uomo in pi\u00f9) is a 2001 Italian comedy-drama film. It entered the \"Cinema del presente\" section at the 58th Venice International Film Festival. It marked the directorial debut of Paolo Sorrentino, who was awarded Nastro d'Argento for Best New Director. The film also won the Ciak d'oro for the script and the Grolla d'oro to actor Toni Servillo."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Baywatch_(film)"}, "Title": {"type": "literal", "value": "Baywatch"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Seth_Gordon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alexandra_Daddario|http://dbpedia.org/resource/David_Hasselhoff|http://dbpedia.org/resource/Dwayne_Johnson|http://dbpedia.org/resource/Ilfenesh_Hadera|http://dbpedia.org/resource/Jon_Bass|http://dbpedia.org/resource/Kelly_Rohrbach|http://dbpedia.org/resource/Pamela_Anderson|http://dbpedia.org/resource/Priyanka_Chopra|http://dbpedia.org/resource/Zac_Efron"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Baywatch is an upcoming American action comedy film directed by Seth Gordon, based on the 1989 series of the same name. The film stars Dwayne Johnson, Zac Efron, Alexandra Daddario, Kelly Rohrbach, Jon Bass, Yahya Abdul-Mateen II, David Hasselhoff,Priyanka Chopra and Pamela Anderson, Ilfenesh Hadera. Principal photography began on February 22, 2016 in Miami, Florida and Savannah, Georgia. The film will be released by Paramount Pictures on May 19, 2017. It is the second film to feature Johnson and Daddario, the first being San Andreas."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Only_One_(film)"}, "Title": {"type": "literal", "value": "The Only One"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Geoffrey_Enthoven"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Belgian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "The Only One (French: Vidange perdue) is a 2006 Belgian comedy-drama film. The film was directed by Geoffrey Enthoven and written by Jaak Boon and Enthoven. It was named best Belgian film of 2006 by the Belgian Film Critics Association winning the Andr\u00e9 Cavens Award, and received two awards at the International Filmfestival Mannheim-Heidelberg."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Soccer_Dog:_The_Movie"}, "Title": {"type": "literal", "value": "Soccer Dog: The Movie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tony_Giglio"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Burton_Gilliam|http://dbpedia.org/resource/James_Marshall_(actor)|http://dbpedia.org/resource/Jeremy_Foley_(actor)|http://dbpedia.org/resource/Olivia_d'Abo|http://dbpedia.org/resource/Sam_McMurray"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy-drama_films|http://dbpedia.org/resource/Category:Sports_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Soccer Dog: The Movie is a 1999 film that follows a dog who has an uncanny ability to play soccer."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_TriStar_Home_Video"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Death_of_a_Dynasty"}, "Title": {"type": "literal", "value": "Death of a Dynasty"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Damon_Dash"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Capone_(rapper)|http://dbpedia.org/resource/Charlie_Murphy|http://dbpedia.org/resource/Damon_Dash|http://dbpedia.org/resource/Devon_Aoki|http://dbpedia.org/resource/Ebon_Moss-Bachrach|http://dbpedia.org/resource/Kevin_Hart_(actor)|http://dbpedia.org/resource/Rashida_Jones"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Death of a Dynasty is a comedy film first screened in 2003. It is a satire of the hip hop music industry centered on Roc-A-Fella Records, and stars Ebon Moss-Bachrach, Capone and Damon Dash. It also features cameo appearances by musicians, actors and celebrities such as Jay-Z, Mariah Carey, Chlo\u00eb Sevigny, Carson Daly, and Aaliyah."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/TLA_Releasing"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Very_Ordinary_Couple"}, "Title": {"type": "literal", "value": "Very Ordinary Couple"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Roh_Deok"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kim_Min-hee_(actress,_born_1982)|http://dbpedia.org/resource/Lee_Min-ki"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "Very Ordinary Couple (Hangul: \uc5f0\uc560\uc758 \uc628\ub3c4; RR: Yeon-ae-ui Ondo; lit. \"Temperature of Love\" or \"Degree of Love\") is a 2013 South Korean romantic comedy film written and directed by Roh Deok (alternatively spelled Noh Deok), starring Kim Min-hee and Lee Min-ki as a recently separated couple who, being employees at the same bank, must deal with the prospect of continually seeing each other on a daily basis. This inevitably leads to tension and flareups, but over time their feelings towards each other begin to change. This is Roh Deok's feature directorial debut. She based the screenplay on her own love life and those of her circle of friends."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lotte_(conglomerate)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Five-Year_Engagement"}, "Title": {"type": "literal", "value": "The Five-Year Engagement"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nicholas_Stoller"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alison_Brie|http://dbpedia.org/resource/Chris_Pratt|http://dbpedia.org/resource/Emily_Blunt|http://dbpedia.org/resource/Rhys_Ifans"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "124"}, "Description": {"type": "literal", "value": "The Five-Year Engagement is a 2012 American comedy film co-written, directed, and produced by Nicholas Stoller. Produced with Judd Apatow and Rodney Rothman, it is co-written by Jason Segel, who also stars in the lead roles with Emily Blunt as a couple whose relationship becomes strained when their engagement is continually extended. The film was released in North America on April 27, 2012 and in the United Kingdom on June 22, 2012."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Minghags:_The_Movie"}, "Title": {"type": "literal", "value": "Minghags"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bam_Margera"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bam_Margera|http://dbpedia.org/resource/Brandon_Dicamillo|http://dbpedia.org/resource/Brandon_Novak|http://dbpedia.org/resource/Don_Vito|http://dbpedia.org/resource/Ryan_Dunn"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Minghags, previously known as Kiss a Good Man's Ass, is a 2008 film by director/skater Bam Margera."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Chalet_Girl"}, "Title": {"type": "literal", "value": "Chalet Girl"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Phil_Traill"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Austrian_comedy_films|http://dbpedia.org/resource/Category:British_romantic_comedy_films|http://dbpedia.org/resource/Category:German_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "Chalet Girl is a 2011 British-German-Austrian romantic comedy and sports film directed by Phil Traill. The film stars Felicity Jones, Ed Westwick, Tamsin Egerton, Ken Duken, Sophia Bush, Bill Bailey, Brooke Shields and Bill Nighy. The film was produced by Pippa Cross, Harriet Rees, Dietmar Guentsche and Wolfgang Behr, and written by Tom Williams. It was filmed on location in Sankt Anton am Arlberg, Austria and in Garmisch-Partenkirchen, Germany. Critical reaction to the film was mixed, but overall praised Felicity Jones in the leading role. The film earned $4,811,510 on a \u00a38,000,000 budget."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Mother_of_Invention"}, "Title": {"type": "literal", "value": "The Mother of Invention"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Bowser|http://dbpedia.org/resource/Joseph_M._Petrick"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Bowser|http://dbpedia.org/resource/Craig_Anton|http://dbpedia.org/resource/Dee_Wallace|http://dbpedia.org/resource/Jimmi_Simpson|http://dbpedia.org/resource/Kevin_Corrigan|http://dbpedia.org/resource/Mark_Boone_Junior|http://dbpedia.org/resource/Ruby_Wendell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "The Mother of Invention is a 2009 American \"mockumentary\"-style comedy film directed by Joseph M. Petrick and Andrew Bowser, with screenplay by Petrick. The film stars Jimmi Simpson, Kevin Corrigan, Mark Boone Junior, Dee Wallace, Craig Anton, Ruby Wendell, F. Jason Whitaker and Chris Hardwick. It features cameos by Dave Allen, Chris Franjola, Keir O'Donnell, Martha Madison and Ron Lynch. The film premiered at the 2009 Sci-Fi-London film festival internationally and the Hollywood Film Festival domestically. The original score was composed and performed by Jim Hanft and the credits feature an original song by the band Copeland. The film was released on DVD and digitally on June 14, 2011 and can be purchased at the iTunes Store and Amazon.com. It became available on Netflix for instant streaming on August 2, 2011."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Old_School_(film)"}, "Title": {"type": "literal", "value": "Old School"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Todd_Phillips"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ellen_Pompeo|http://dbpedia.org/resource/Jeremy_Piven|http://dbpedia.org/resource/Luke_Wilson|http://dbpedia.org/resource/Vince_Vaughn|http://dbpedia.org/resource/Will_Ferrell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91|92"}, "Description": {"type": "literal", "value": "Old School is a 2003 American comedy film released by DreamWorks Pictures and The Montecito Picture Company and directed by Todd Phillips. The story was written by Court Crandall, and the film was written by Phillips and Scot Armstrong. The film stars Luke Wilson, Vince Vaughn, and Will Ferrell as three depressed thirty-somethings who seek to re-live their college days by starting a fraternity, and the tribulations they encounter in doing so."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/DreamWorks_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bikini_Bloodbath"}, "Title": {"type": "literal", "value": "Bikini Bloodbath"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Thomas_Edward_Seymour"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Debbie_Rochon|http://dbpedia.org/resource/Robert_Cosgrove|http://dbpedia.org/resource/Russ_Russo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "72"}, "Description": {"type": "literal", "value": "Bikini Bloodbath is a 2006 comedy film that parodies the horror-slasher movies of the 1980s. Written and directed by Thomas Edward Seymour and Jonathan Gorman, the film focuses on a high school girls\u2019 volleyball team that plans to host an end-of-semester party. Two members of the boys\u2019 football team crash the party, but problems begin when the maniacal Chef Death, a serial killer portrayed by Rob Coz, who wields meat cleavers and culinary one-liners, interrupts the proceedings by slaying the partygoers. Shot on locations across Connecticut in 2005, Bikini Bloodbath was planned as the first in an ongoing horror/comedy series. The film was released on DVD in December 2007, and its sequels \u2013 Bikini Bloodbath Car Wash (named the \"#1 Ridiculous(ly Awesome) Horror Movie Titles of all time in 2010 by Mark H. Harris, About.com Guide). and Bikini Bloodbath Christmas are also out on DVD. Co-director Seymour cited the Peter Jackson Lord of the Rings trilogy for the inspiration of creating back-to-back films. Additional films in the Bikini Bloodbath series are being planned. Debbie Rochon stars in all three films as a lesbian volleyball coach. Other actors in the series include Lloyd Kaufman, Rachael Robbins, Monique GATA Dupree and Sheri Lynn."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Five_Hours_from_Paris"}, "Title": {"type": "literal", "value": "Five Hours from Paris"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Leonid_Prudovsky"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Israeli_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Five Hours from Paris (Hebrew: Hamesh Shaot me'Pariz\u200e\u200e) is a 2009 Israeli comedy film by Leonid Prudovsky. It premiered as an official selection at the Toronto International Film Festival on 12 September 2009. A French cinema chain caused controversy when they cancelled its release following the Gaza flotilla raid and instead screened a French documentary about Rachel Corrie, an American protestor killed by an Israeli bulldozer in 2004."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Family_Law_(film)"}, "Title": {"type": "literal", "value": "Family Law"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Daniel_Burman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adriana_Aizemberg|http://dbpedia.org/resource/Arturo_Goetz|http://dbpedia.org/resource/Daniel_Hendler|http://dbpedia.org/resource/Julieta_D\u00edaz"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Family Law (Spanish: Derecho de familia) is a 2006 Argentine, French, Italian, and Spanish, comedy-drama film, written and directed by Daniel Burman. The picture was produced by Diego Dubcovsky, Jos\u00e9 Mar\u00eda Morales, and Marc Sillam, and co-produced by Amedeo Pagani.Family Law was Argentina official submission for the 2004 Academy Award for Best Foreign Language Film"}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/BD_Cine|http://dbpedia.org/resource/IFC_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dysfunctional_Friends"}, "Title": {"type": "literal", "value": "Dysfunctional Friends"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Corey_Grant"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Christian_Keyes|http://dbpedia.org/resource/Datari_Turner|http://dbpedia.org/resource/Hosea_Chanchez|http://dbpedia.org/resource/Jason_Weaver|http://dbpedia.org/resource/Meagan_Good|http://dbpedia.org/resource/Meghan_Markle|http://dbpedia.org/resource/Persia_White|http://dbpedia.org/resource/Reagan_Gomez-Preston|http://dbpedia.org/resource/Stacey_Dash|http://dbpedia.org/resource/Stacy_Keibler|http://dbpedia.org/resource/Tatyana_Ali|http://dbpedia.org/resource/Terrell_Owens|http://dbpedia.org/resource/Wesley_Jonathan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "Dysfunctional Friends  is a 2012 American drama comedy film starring Stacey Dash, Reagan Gomez-Preston, Wesley Jonathan, Datari Turner, Tatyana Ali, Meagan Good, Jason Weaver, Persia White, Terrell Owens, Stacy Keibler, Hosea Chanchez, Meghan Markle and Christian Keyes. The film was released in theaters February 3, 2012."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sawako_Decides"}, "Title": {"type": "literal", "value": "Sawako Decides"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Yuya_Ishii_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hikari_Mitsushima|http://dbpedia.org/resource/Masashi_End\u014d"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:Japanese_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "Sawako Decides (\u5ddd\u306e\u5e95\u304b\u3089\u3053\u3093\u306b\u3061\u306f Kawa no Soko kara Konnichiwa, \"Hello from the bottom of the river\") is a 2009 Japanese comedy-drama film directed by Yuya Ishii. The film stars Hikari Mitsushima as Sawako. Sawako Decides premiered at Tokyo at the PIA Film Festival in 2009. At the Fantasia Film Festival, the film won the award for Best Feature Film and Best Actress for Hikari Mitsushima."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_World's_End_(film)"}, "Title": {"type": "literal", "value": "The World's End"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Edgar_Wright"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films|http://dbpedia.org/resource/Category:Comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "The World's End is a 2013 British comic science fiction film directed by Edgar Wright, written by Wright and Simon Pegg, and starring Pegg, Nick Frost, Paddy Considine, Martin Freeman, Rosamund Pike and Eddie Marsan. The film follows a group of friends who discover an alien invasion during an epic pub crawl in their home town. Wright has described the film as \"social science fiction\" in the tradition of John Wyndham and Samuel Youd (John Christopher). It is the third and final film in the Three Flavours Cornetto trilogy, following Shaun of the Dead (2004) and Hot Fuzz (2007). The film was produced by Relativity Media, StudioCanal, Big Talk Productions, and Working Title Films."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Paranthe_Wali_Gali"}, "Title": {"type": "literal", "value": "Paranthe Wali Gali"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sachin_Gupta"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anuj_Saxena"}, "Published": {"type": "literal", "value": "2014-01-17"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "(For the food street, see Gali Paranthe Wali.) Paranthe Wali Gali is a 2014 Indian romance comedy film directed and produced by the award winning playwright and theatre director Sachin Gupta under Chilsag-Civitech Motion Pictures. It is produced by Sachin Gupta and Sushma Gupta and co-produced by Subodh Goel and Alka Goel. The film stars Anuj Saxena and Neha Pawar in the lead roles."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Reliance_BIG_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Full_Strike"}, "Title": {"type": "literal", "value": "Full Strike"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Derek_Kwok"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Edmond_Leung|http://dbpedia.org/resource/Ekin_Cheng|http://dbpedia.org/resource/Josie_Ho|http://dbpedia.org/resource/Ronald_Cheng|http://dbpedia.org/resource/Siu_Yam-yam|http://dbpedia.org/resource/Tse_Kwan-ho|http://dbpedia.org/resource/Wilfred_Lau"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Hong_Kong_action_comedy_films|http://dbpedia.org/resource/Category:Hong_Kong_comedy-drama_films|http://dbpedia.org/resource/Category:Sports_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "Full Strike (Chinese: \u5168\u529b\u6263\u6bba) is a 2015 Hong Kong sports-comedy-drama film directed by Derek Kwok and Henri Wong. The film was released on 7 May 2015."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Teenage_Textbook_Movie"}, "Title": {"type": "literal", "value": "The Teenage Textbook Movie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Phillip_Lim"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Caleb_Goh|http://dbpedia.org/resource/Chong_Chee_Kin|http://dbpedia.org/resource/Lim_Hwee_Sze|http://dbpedia.org/resource/Melody_Chen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "The Teenage Textbook Movie is a film adaptation of Adrian Tan's bestselling 1988 novel The Teenage Textbook. It is a lighthearted look at the lives of four students in Singapore as they start junior college. The film was well-received critically and topped the Singapore box office for four weeks, beating Hollywood offerings. Its stars, who were unknowns, eventually became household names on television. Its soundtrack was all-Singaporean, a first for English-language Singapore films."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Cathay"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/FUBAR_(film)"}, "Title": {"type": "literal", "value": "FUBAR"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Dowse"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Paul_Spence"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "76"}, "Description": {"type": "literal", "value": "FUBAR is a 2002 mockumentary film, directed by Michael Dowse, based on the lives of two lifelong friends and head-bangers living out their lives, constantly drinking beer. FUBAR debuted at the Sundance Film Festival in the 'Park City at Midnight' category, which previously launched such films as The Blair Witch Project. Since its release, it has gained critical acclaim and a cult status in North America, but especially within Western Canada. It was both filmed and set in Alberta, particularly in and around Calgary. It was filmed entirely with digital cinematography, on a shoestring budget that required many involved with the project to max out their credit cards in order to complete the movie (according to an interview on their official website). Many of the people featured in the movie (including the fist-fighters) were bystanders who thought that the filmmakers were shooting a documentary on the common man. FUBAR features characters partly based on a comedy routine performed by David Lawrence and Paul Spence that they developed based on the head-banger subculture. David Lawrence, Paul Spence, and S.C. Lim also appear in Michael Dowse's movie, It's All Gone Pete Tong. (Dr. S.C. Lim plays himself in FUBAR as Dean's doctor. Lim actually is Michael Dowse's doctor.) The characters of Terry and Dean were later seen again, featured in the Michael Dowse-directed music video \"The Slow Descent Into Alcoholism\" by The New Pornographers."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Odeon_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Citizen_Mavzik"}, "Title": {"type": "literal", "value": "Citizen Mavzik"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alan_Melikdjanian"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Citizen Mavzik is a 2006 direct-to-video film from Vilalan Productions, and directed by independent filmmaker Alan Melikdjanian. The film was shot in South Florida"}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Un_Natale_Stupefacente"}, "Title": {"type": "literal", "value": "Un Natale Stupefacente"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Volfango_De_Biasi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Lillo_&_Greg"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Italian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Un Natale Stupefacente is a 2014 Italian comedy film written and directed by Volfango De Biasi. It grossed $7,015,989 at the Italian box office."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Interview"}, "Title": {"type": "literal", "value": "The Interview"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Evan_Goldberg|http://dbpedia.org/resource/Seth_Rogen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/James_Franco"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:Political_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "The Interview is a 2014 American political satire comedy film directed by Seth Rogen and Evan Goldberg. It is their second directorial work, following This Is the End (2013). The screenplay is by Dan Sterling, based upon a story he co-authored with Rogen and Goldberg. The film stars Rogen and James Franco as journalists who set up an interview with North Korean leader Kim Jong-un (Randall Park), and are recruited by the CIA to assassinate him. The film is also heavily inspired by a Vice documentary which was shot in 2012. Rogen and Goldberg developed the idea for The Interview in the late 2000s, with Kim Jong-il as the original assassination target. In 2011, after Jong-il's death, Jong-un replaced him as the North Korean leader. Rogen and Goldberg re-developed the script with the focus on Jong-un's character. The announcement for the film was made in March 2013, along with the beginning of pre-production. Principal photography took place in Vancouver from October to December 2013. In June 2014, the North Korean government threatened action against the United States if Columbia Pictures released the film. Columbia delayed the release from October to December, and reportedly re-edited the film to make it more acceptable to North Korea. In November, the computer systems of parent company Sony Pictures Entertainment were hacked by the \"Guardians of Peace\", a group the FBI claims has ties to North Korea. The group also threatened terrorist attacks against cinemas that showed the film. Major cinema chains opted not to release the film, leading Sony to release it for online rental and purchase on December 24, 2014, followed by a limited release at select cinemas the next day. The Interview grossed $40 million in digital rentals, making it Sony's most successful digital release, and earned an additional $11.2 million worldwide at the box office on a $44 million budget. It received mixed reviews for its humor and subject matter, although critics praised the performances of Rogen, Franco, Park and Diana Bang."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Point_Grey_Pictures"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Waiting..._(film)"}, "Title": {"type": "literal", "value": "Waiting..."}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rob_McKittrick"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alanna_Ubach|http://dbpedia.org/resource/Anna_Faris|http://dbpedia.org/resource/Chi_McBride|http://dbpedia.org/resource/David_Koechner|http://dbpedia.org/resource/John_Francis_Daley|http://dbpedia.org/resource/Justin_Long|http://dbpedia.org/resource/Kaitlin_Doubleday|http://dbpedia.org/resource/Luis_Guzm\u00e1n|http://dbpedia.org/resource/Ryan_Reynolds"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Waiting... is a 2005 American workplace comedy film starring Ryan Reynolds, Anna Faris, and Justin Long. It was written and directed by Rob McKittrick. McKittrick wrote the screenplay while working as a waiter. The film is the first effort by McKittrick as a writer-director. The script was initially sold in a film deal to Artisan Entertainment, but was released by Lions Gate Entertainment (which purchased Artisan in 2003). Producers Chris Moore and Jeff Balis of Live Planet's Project Greenlight fame also took notice of the project and assisted. The film made over US$6,000,000, more than twice the budget of the film, in its opening weekend."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lionsgate_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Double_(2013_film)"}, "Title": {"type": "literal", "value": "The Double"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Richard_Ayoade"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jesse_Eisenberg|http://dbpedia.org/resource/Mia_Wasikowska"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_black_comedy_films|http://dbpedia.org/resource/Category:Comedy_thriller_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "The Double is a 2013 British black comedy thriller film written and directed by Richard Ayoade and starring Jesse Eisenberg and Mia Wasikowska. The film is based on the novella The Double by Fyodor Dostoyevsky. It is about a man driven to breakdown when he is usurped by a doppelg\u00e4nger. The film was produced by Alcove Entertainment, with Michael Caine, Graeme Cox (Attercop), Tessa Ross (Film4) and Nigel Williams as executive producers."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/StudioCanal"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Alcove_Entertainment|http://dbpedia.org/resource/British_Film_Institute|http://dbpedia.org/resource/Film4_Productions"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Vive_la_France"}, "Title": {"type": "literal", "value": "Vive la France"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Micha\u00ebl_Youn"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jos\u00e9_Garcia_(actor)|http://dbpedia.org/resource/Micha\u00ebl_Youn"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Vive la France is a 2013 French comedy film directed by Micha\u00ebl Youn."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/God_of_Love_(film)"}, "Title": {"type": "literal", "value": "God of Love"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Luke_Matheny"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Elizabeth_Olin|http://dbpedia.org/resource/Luke_Matheny"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "18"}, "Description": {"type": "literal", "value": "God of Love is a 2010 American live action short film. The film's run time is approximately 18 minutes. It was written and directed by Luke Matheny, and produced by Gigi Dement, Ryan Silbert, and Stefanie Walmsley. The film was shot in black and white on the Red One camera by director of photography Bobby Webster. In the film, a lounge singer and championship dart player named Raymond Goodfellow is desperately in love with a fellow band-mate, but she only has love for his best friend. The crooner prays daily to God for a way for his beloved to fall in love with him. One evening, his prayers are answered when he's given a box of magical darts with Cupid-like powers. Raymond decides to use the darts to make his own love connection. The film is included as a special feature in the Blu-ray release of 127 Hours."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Who_Killed_Johnny"}, "Title": {"type": "literal", "value": "Who Killed Johnny"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Yangzom_Brauen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Carlos_Leal|http://dbpedia.org/resource/Max_Loong|http://dbpedia.org/resource/Melanie_Winiger"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_criminal_comedy_films|http://dbpedia.org/resource/Category:Screwball_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "Who Killed Johnny is a Swiss\u2013US screwball-comedy film by Yangzom Brauen, filmed and produced in Los Angeles in 2013."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Free_Fire"}, "Title": {"type": "literal", "value": "Free Fire"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Wheatley"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Armie_Hammer|http://dbpedia.org/resource/Brie_Larson|http://dbpedia.org/resource/Cillian_Murphy|http://dbpedia.org/resource/Jack_Reynor|http://dbpedia.org/resource/Sharlto_Copley"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Free Fire is a 2016 British action comedy thriller film directed by Ben Wheatley, from a screenplay by Wheatley and Amy Jump. It stars Brie Larson, Sharlto Copley, Armie Hammer, Cillian Murphy and Jack Reynor. The film had its world premiere at the Toronto International Film Festival on September 8, 2016. The film will serve as the closer of the 2016 BFI London Film Festival on 16 October 2016. The film is scheduled to be released in the United Kingdom on 31 March 2017 by StudioCanal UK."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/StudioCanal_UK"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Paddington_2"}, "Title": {"type": "literal", "value": "Paddington 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Paul_King_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Whishaw|http://dbpedia.org/resource/Brendan_Gleeson|http://dbpedia.org/resource/Hugh_Bonneville|http://dbpedia.org/resource/Hugh_Grant|http://dbpedia.org/resource/Imelda_Staunton|http://dbpedia.org/resource/Jim_Broadbent|http://dbpedia.org/resource/Julie_Walters|http://dbpedia.org/resource/Madeleine_Harris|http://dbpedia.org/resource/Peter_Capaldi|http://dbpedia.org/resource/Sally_Hawkins|http://dbpedia.org/resource/Samuel_Joslin"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Paddington 2 is an upcoming British family-comedy film directed by Paul King, co-written by him and Simon Farnaby, and produced by David Heyman. A sequel to Paddington (2014), the film stars Hugh Grant, Brendan Gleeson, Hugh Bonneville, Sally Hawkins, Julie Walters, Jim Broadbent, Peter Capaldi, Madeleine Harris, Samuel Joslin, and the voices of Ben Whishaw and Imelda Staunton. Production began in October 2016 for a 10 November 2017 release."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Unmade_Beds"}, "Title": {"type": "literal", "value": "Unmade beds"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alexis_Dos_Santos"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/D\u00e9borah_Fran\u00e7ois|http://dbpedia.org/resource/Iddo_Goldberg|http://dbpedia.org/resource/Katia_Winter|http://dbpedia.org/resource/Michiel_Huisman|http://dbpedia.org/resource/Richard_Lintern"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:British_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Unmade Beds is a 2009 British comedy-drama film directed by Argentine film director Alexis Dos Santos. The film was featured at the 2009 Sundance Film Festival and at Febiofest 2010."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Soda_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Trailer_Town"}, "Title": {"type": "literal", "value": "Trailer Town"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Giuseppe_Andrews"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bill_Nowlin|http://dbpedia.org/resource/Bill_Tyree|http://dbpedia.org/resource/Stan_Patrick|http://dbpedia.org/resource/Walt_Dongo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "Trailer Town is a 2003 low-budget film shot on digital video, written and directed by Giuseppe Andrews and distributed by Troma Entertainment. The film is set in the trailer park where Andrews lives and stars many of the people who were his neighbors at the time. The film has drawn comparisons to the cult films of John Waters, Larry Clark, and Harmony Korine for its semi-realistic yet off-the-wall portrayal of lower-class individuals."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Troma_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lucky_Di_Unlucky_Story"}, "Title": {"type": "literal", "value": "Lucky Di Unluky Story"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Smeep_Kang"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Binnu_Dhillon|http://dbpedia.org/resource/Gippy_Grewal|http://dbpedia.org/resource/Gurpreet_Ghuggi|http://dbpedia.org/resource/Jaswinder_Bhalla|http://dbpedia.org/resource/Karamjit_Anmol|http://dbpedia.org/resource/Sameksha|http://dbpedia.org/resource/Surveen_Chawla"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Lucky Di Unlucky Story is a 2013 Punjabi comedy film directed by Smeep Kang, and featuring Gippy Grewal, Jaswinder Bhalla, Gurpreet Ghuggi and Binnu Dhillon in lead roles; the group earlier came together for 2012 Punjabi comedy Carry On Jatta. The story is based on the lives of ladiesman Lucky; and his three married friends and how they enchance minor trouble. The film released on 26 April 2013 and became an instant blockbuster at the Indian box office apparently. Smeep Kang copied the script of this film from Tamil blockbuster Panchathanthiram starring Kamal Haasan & Simran. Panchathanthiram's story was written by Kamal Haasan & Crazy Mohan."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Maid_for_Each_Other_(1992_film)"}, "Title": {"type": "literal", "value": "Maid for Each Other"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Paul_Schneider_(director)"}, "Author": {"type": "literal", "value": "http://dbpedia.org/resource/Dinah_Manoff|http://dbpedia.org/resource/Don_Enright|http://dbpedia.org/resource/Les_Alexander|http://dbpedia.org/resource/Rob_Gilmer"}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dinah_Manoff|http://dbpedia.org/resource/Garrett_Morris|http://dbpedia.org/resource/Joyce_Van_Patten|http://dbpedia.org/resource/Nell_Carter|http://dbpedia.org/resource/Robert_Costanzo"}, "Published": {"type": "literal", "value": "1992-01-13"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Maid for Each Other is a 1992 television film starring Nell Carter and Dinah Manoff. It was written by Manoff, Robb Gilmer, Les Alexander, Don Enright and Andrew Smith, produced by Enright and Alexander, and directed by Paul Schneider."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Metalheads_(film)"}, "Title": {"type": "literal", "value": "Metalheads"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Gregory_Cahill"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Mercedes_Arn-Horn"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Metalheads is a 90\u2019s based comedy film written by Gregory Cahill. It stars Mercedes Arn-Horn from Courage My Love as Amanda Rozek. The film is thought to be like an Airheads meets Superbad cross."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Amazon_Women_on_the_Moon"}, "Title": {"type": "literal", "value": "Amazon Women on the Moon"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Carl_Gottlieb|http://dbpedia.org/resource/Joe_Dante|http://dbpedia.org/resource/John_Landis|http://dbpedia.org/resource/Peter_Horton|http://dbpedia.org/resource/Robert_K._Weiss"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Arsenio_Hall|http://dbpedia.org/resource/B.B._King|http://dbpedia.org/resource/Carrie_Fisher|http://dbpedia.org/resource/Ed_Begley,_Jr.|http://dbpedia.org/resource/Griffin_Dunne|http://dbpedia.org/resource/Henny_Youngman|http://dbpedia.org/resource/Howard_Hesseman|http://dbpedia.org/resource/Kelly_Preston|http://dbpedia.org/resource/Lou_Jacobi|http://dbpedia.org/resource/Monique_Gabrielle|http://dbpedia.org/resource/Paul_Bartel|http://dbpedia.org/resource/Ralph_Bellamy|http://dbpedia.org/resource/Rosanna_Arquette|http://dbpedia.org/resource/Russ_Meyer|http://dbpedia.org/resource/Steve_Allen|http://dbpedia.org/resource/Steve_Forrest_(actor)|http://dbpedia.org/resource/Steve_Guttenberg|http://dbpedia.org/resource/Sybil_Danning"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1980s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Amazon Women on the Moon is a 1987 American satirical comedy film that parodies the experience of watching low-budget movies on late-night television. The film, featuring a large ensemble cast, was written by Michael Barrie and Jim Mulholland, and takes the form of a compilation of 21 comedy skits directed by five different directors: Joe Dante, Carl Gottlieb, Peter Horton, John Landis, and Robert K. Weiss. The title Amazon Women on the Moon refers to the central film-within-a-film, a spoof of science-fiction movies from the 1950s that borrows heavily from Queen of Outer Space (1958) starring Zsa Zsa Gabor, itself a movie that recycles elements of earlier science-fiction works such as Cat-Women of the Moon (1953), Fire Maidens from Outer Space (1955), and Forbidden Planet (1956). Film actors making cameo appearances in various sketches included Rosanna Arquette, Ralph Bellamy, Griffin Dunne, Carrie Fisher, Steve Forrest, Steve Guttenberg, Michelle Pfeiffer, Kelly Preston, and Henry Silva, alongside television actors such as Ed Begley, Jr., Bryan Cranston, David Alan Grier, Howard Hesseman, Peter Horton, William Marshall, Joe Pantoliano, Robert Picardo, and Roxie Roker. Other notable people in the cast included voice actors Corey Burton and Phil Hartman, talk show host Arsenio Hall, adult film actress Monique Gabrielle, science-fiction writer Forrest J. Ackerman, B-movie stars Lana Clarkson and Sybil Danning, musician B. B. King, radio personalities Roger Barkley and Al Lohman, composer Ira Newborn, director Russ Meyer, model Corinne Wahl, comedian Andrew Dice Clay, Firesign Theater member Phil Proctor, and independent film actor Paul Bartel. John Landis had previously directed The Kentucky Fried Movie (1977), which employed a similar sketch anthology format."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Yamla_Pagla_Deewana"}, "Title": {"type": "literal", "value": "Yamla Pagla Deewana"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Samir_Karnik"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anupam_Kher|http://dbpedia.org/resource/Bobby_Deol|http://dbpedia.org/resource/Dharmendra|http://dbpedia.org/resource/Kulraj_Randhawa|http://dbpedia.org/resource/Sunny_Deol"}, "Published": {"type": "literal", "value": "2011-01-14"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Yamla Pagla Deewana is a 2011 Hindi action comedy drama film directed by Samir Karnik, featuring Dharmendra, Sunny Deol, and Bobby Deol in the lead roles. The film marks the second pair-up between the Deol family, after their last sports hit, Apne (2007). The film's title is inspired from the song \"Main Jat Yamla Pagla Deewana\" from the 1975 film, Pratigya also starring Dharmendra. The theatrical trailer of the film unveiled on 5 November 2010, whilst the film released on 14 January 2011, and received good response upon release. It turned out to be an box office hit."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dachimawa_Lee"}, "Title": {"type": "literal", "value": "Dachimawa Lee"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ryoo_Seung-wan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gong_Hyo-jin|http://dbpedia.org/resource/Im_Won-hee|http://dbpedia.org/resource/Park_Si-yeon"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:South_Korean_comedy_films|http://dbpedia.org/resource/Category:Spy_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "Dachimawa Lee (Hangul: \ub2e4\ucc0c\ub9c8\uc640 \ub9ac: \uc545\uc778\uc774\uc5ec \uc9c0\uc625\ud589 \uae09\ud589\uc5f4\ucc28\ub97c \ud0c0\ub77c!; RR: Dajjimawa Ri: Aginiyeo Jiokhaeng Geuphaengyeolchareul Tara; lit. \"Dajjimawa Lee: Bye, Villain! Take the Express Train to Hell\") is a 2008 South Korean film. It has been released via online streaming in the United States under the title \"Dachimawa Lee: Gangnam Spy\"."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Showbox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kontroll"}, "Title": {"type": "literal", "value": "Kontroll (control)"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nimr\u00f3d_Antal"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/S\u00e1ndor_Cs\u00e1nyi|http://dbpedia.org/resource/Zolt\u00e1n_Mucsi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Hungarian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Kontroll is a 2003 Hungarian comedy\u2013thriller film. Shown internationally, mainly in art house theatres, the film is set on a fictionalized version of the Budapest Metro system. \"Kontroll\" in Hungarian refers to the act of ticket inspectors checking to ensure a rider has paid their fare. The story revolves around the ticket inspectors, riders, and a possible killer. The film was written and directed by Nimr\u00f3d Antal and stars S\u00e1ndor Cs\u00e1nyi, Zolt\u00e1n Mucsi, and Csaba Pindroch. The film was entered in a number of film festivals in Europe and North America. It won the Gold Hugo Award at the Chicago International Film Festival and was screened in the Un Certain Regard section at the 2004 Cannes Film Festival. It was also Hungary's submission for Best Foreign Language Film for the 2004 Academy Awards."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Adventures_of_Elmo_in_Grouchland"}, "Title": {"type": "literal", "value": "The Adventures of Elmo in Grouchland"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Gary_Halvorson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Clash|http://dbpedia.org/resource/Mandy_Patinkin|http://dbpedia.org/resource/Vanessa_L._Williams"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "77"}, "Description": {"type": "literal", "value": "The Adventures of Elmo in Grouchland is a 1999 American-German musical fantasy-comedy film directed by Gary Halvorson. It is the second theatrical feature-length film based on the popular U.S. children's series Sesame Street. Produced by Jim Henson Pictures in association with the Children's Television Workshop (now Sesame Workshop) and released by Columbia Pictures on October 1, 1999, the film co-stars Mandy Patinkin and Vanessa L. Williams. The film was shot in Wilmington, North Carolina at EUE/Screen Gems in 1998. This is one of the few Sesame Street productions directly produced by The Jim Henson Company."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Moshidora_(film)"}, "Title": {"type": "literal", "value": "Moshidora"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Makoto_Tanaka"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Japanese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Moshi K\u014dk\u014d Yaky\u016b no Joshi Manager ga Drucker no \"Management\" o Yondara (\u3082\u3057\u9ad8\u6821\u91ce\u7403\u306e\u5973\u5b50\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u304c\u30c9\u30e9\u30c3\u30ab\u30fc\u306e\u300e\u30de\u30cd\u30b8\u30e1\u30f3\u30c8\u300f\u3092\u8aad\u3093\u3060\u3089 What if the Manager of a High School Baseball Team Read Drucker's \"Management\"?) (or Moshidora for short) is a 2011 Japanese live-action film directed by Makoto Tanaka which was released in Japanese cinemas on 4 June 2011. It is based on the bestselling book of the same name and followed a preceding anime series also of the same name."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Toho"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Harry_Hill_Movie"}, "Title": {"type": "literal", "value": "The Harry Hill Movie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Steve_Bendelack"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Harry_Hill|http://dbpedia.org/resource/Johnny_Vegas|http://dbpedia.org/resource/Julie_Walters|http://dbpedia.org/resource/Matt_Lucas|http://dbpedia.org/resource/Simon_Bird"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "The Harry Hill Movie is a 2013 British musical comedy film directed by Steve Bendelack and starring Harry Hill. It was written by Hill along with Jon Foster and James Lamont. It revolves around a fictional version of Harry Hill's adventures with his diesel-drinking nan and misdiagnosed hamster. The film was released on 20 December 2013 in the United Kingdom and Ireland."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Entertainment_Film_Distributors"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Spring_Break_'83"}, "Title": {"type": "literal", "value": "Spring Break '83"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mars_Callahan|http://dbpedia.org/resource/Scott_Spiegel"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Caldwell_(actor)|http://dbpedia.org/resource/Jamie_Kennedy|http://dbpedia.org/resource/Joe_Pantoliano|http://dbpedia.org/resource/Joe_Piscopo|http://dbpedia.org/resource/John_Goodman|http://dbpedia.org/resource/Lee_Majors|http://dbpedia.org/resource/Mars_Callahan|http://dbpedia.org/resource/Martin_Spanjers|http://dbpedia.org/resource/Morgan_Fairchild|http://dbpedia.org/resource/Raviv_Ullman|http://dbpedia.org/resource/Sophie_Monk|http://dbpedia.org/resource/Terrance_Morgan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Spring Break '83 is a Mars Callahan and Scott Spiegel\u2013directed comedy. To date, it has still not been released."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Big_Sky_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Before_I_Disappear"}, "Title": {"type": "literal", "value": "Before I Disappear"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Shawn_Christensen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Emmy_Rossum|http://dbpedia.org/resource/F\u00e1tima_Ptacek|http://dbpedia.org/resource/Ron_Perlman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Before I Disappear is a 2014 American drama film directed by Shawn Christensen. The film is a feature-length adaptation of his 2012 Oscar-winning short film, Curfew. The film had its world premiere at South by Southwest Film on March 10, 2014. The film was acquired for distribution by IFC Films on August 5, 2014 and released on November 28, 2014."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Animal_Kingdom:_Let's_Go_Ape"}, "Title": {"type": "literal", "value": "Animal Kingdom: Let's Go Ape"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jamel_Debbouze"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jamel_Debbouze|http://dbpedia.org/resource/M\u00e9lissa_Theuriau"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Animal Kingdom: Let's Go Ape (French: Pourquoi j'ai pas mang\u00e9 mon p\u00e8re), also titled Evolution Man and Why I Did (Not) Eat My Father, is a 2015 French 3D computer-animated comedy film directed by Jamel Debbouze. The film is based on the novel The Evolution Man by Roy Lewis."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Path\u00e9"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Woods_(2011_film)"}, "Title": {"type": "literal", "value": "The Woods"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Matthew_Lessner"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "The Woods is a 2011 film written and directed by Matthew Lessner. The script was written by Matthew Lessner with contributing writer Adam Mortemore, and additional dialogue by Toby David and Justin Phillips. The film was co-produced by Matthew Lessner, Jett Steiger and Max Knies, and made history as the first film to premiere at the Sundance Film Festival that used Kickstarter for production financing. The film premiered at the 2011 Sundance Film Festival. The Woods premiered in New York at the BAMcinemaFest held at the Brooklyn Academy of Music . The Woods premiered internationally at the Cologne Conference in Cologne, Germany."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sexy_Evil_Genius"}, "Title": {"type": "literal", "value": "Sexy Evil Genius"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Shawn_Piller"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Harold_Perrineau|http://dbpedia.org/resource/Katee_Sackhoff|http://dbpedia.org/resource/Michelle_Trachtenberg|http://dbpedia.org/resource/Seth_Green|http://dbpedia.org/resource/William_Baldwin"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:Direct-to-video_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Sexy Evil Genius is a 2013 American dark comedy film written by Scott Lew and directed by Shawn Piller. Several people in a bar realize that they have all dated the same woman and that she has manipulated them into appearing there for mysterious purposes."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tai_Chi_0"}, "Title": {"type": "literal", "value": "Tai Chi 0 / Tai Chi Zero"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Stephen_Fung"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Angelababy|http://dbpedia.org/resource/Jayden_Yuan|http://dbpedia.org/resource/Tony_Leung_Ka-fai"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Martial_arts_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "Tai Chi 0 or Tai Chi Zero (\u592a\u6975\u4e4b\u96f6\u958b\u59cb) or (\u592a\u6975\uff1a\u5f9e\u96f6\u958b\u59cb) is a 2012 Chinese 3D martial arts film directed by Stephen Fung. It is a fictitious retelling of how the Chen style of the martial art t'ai chi ch'uan, that for generations was kept within the Chen family of Chenjiagou, was taught to the first outsider, Yang Luchan, by Chen Changxing. This is the first film to be produced by Stephen Fung's and Daniel Wu's new production company, Diversion Pictures and also marks the acting debut of Jayden Yuan, who plays the lead role. This film was shot back-to-back with its sequel, Tai Chi Hero. They are to be followed by a third as-of-yet undeveloped movie named Tai Chi Summit."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Baby_on_Board_(film)"}, "Title": {"type": "literal", "value": "Baby on Board"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Brian_Herzlinger"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Heather_Graham_(actress)|http://dbpedia.org/resource/Jerry_O'Connell|http://dbpedia.org/resource/John_Corbett_(actor)|http://dbpedia.org/resource/Lara_Flynn_Boyle"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Baby on Board is a 2009 comedy film starring Heather Graham, John Corbett, Jerry O'Connell, Anthony Starke and Lara Flynn Boyle."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lucky_Monkey_Pictures|http://dbpedia.org/resource/National_Entertainment_Media"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Maid_(2009_film)"}, "Title": {"type": "literal", "value": "The Maid"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sebasti\u00e1n_Silva_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Catalina_Saavedra"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Chilean_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "The Maid (Spanish: La Nana) is a 2009 comedy-drama film, directed by Sebasti\u00e1n Silva and co-written by Silva and Pedro Peirano. It has won numerous awards since its premiere at the 25th Annual Sundance Film Festival. The film has had much critical acclaim, particularly for Catalina Saavedra's award-winning performance as the lead character."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Cloudy_with_a_Chance_of_Meatballs_2"}, "Title": {"type": "literal", "value": "Cloudy with a Chance of Meatballs 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Cody_Cameron"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Samberg|http://dbpedia.org/resource/Anna_Faris|http://dbpedia.org/resource/Benjamin_Bratt|http://dbpedia.org/resource/Bill_Hader|http://dbpedia.org/resource/James_Caan|http://dbpedia.org/resource/Kristen_Schaal|http://dbpedia.org/resource/Neil_Patrick_Harris|http://dbpedia.org/resource/Terry_Crews|http://dbpedia.org/resource/Will_Forte"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Cloudy with a Chance of Meatballs 2 is a 2013 American computer-animated comic science fiction comedy film produced by Sony Pictures Animation and distributed by Columbia Pictures. The film is the sequel to the 2009 film Cloudy with a Chance of Meatballs, which was loosely based on Judi and Ron Barrett's book of the same name. It was directed by Cody Cameron and Kris Pearn, produced by Kirk Bodyfelt, and executive produced by the directors of the first film, Phil Lord and Chris Miller. The film was released on September 27, 2013. The film grossed over $274 million worldwide against its budget of $78 million. The screenplay was written by John Francis Daley, Jonathan Goldstein, and Erica Rivinoja, and it is based on an original story idea, not on that of Pickles to Pittsburgh, the Barretts' follow up book. It continues right after the first film, in which Flint's food-making machine gets out of control, but Flint manages to stop it with the help of his friends. In the sequel, Flint and his friends are forced to leave their home town, but when the food machine reawakens\u2014this time producing sentient food beasts\u2014they must return to save the world. Most of the main cast reprised their roles: Bill Hader as Flint Lockwood, Anna Faris as Sam Sparks, James Caan as Tim Lockwood, Andy Samberg as Brent McHale, Neil Patrick Harris as Steve, and Benjamin Bratt as Manny. Will Forte, who voiced Joseph Towne in the first film, voices Chester V in this one. New cast includes Kristen Schaal as orangutan Barb and Terry Crews as Officer Earl, replacing Mr. T in the role."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Revolution_of_Pigs"}, "Title": {"type": "literal", "value": "Revolution of Pigs"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jaak_Kilmi|http://dbpedia.org/resource/Ren\u00e9_Reinum\u00e4gi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Arvo_Kukum\u00e4gi|http://dbpedia.org/resource/Jass_Seljamaa|http://dbpedia.org/resource/Lilian_Alto|http://dbpedia.org/resource/Uku_Uusberg"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "The Revolution of Pigs (Estonian: Sigade revolutsioon) is an 2004 Estonian comedy film that was a feature film debut for 2 young Estonian directors Ren\u00e9 Reinum\u00e4gi and Jaak Kilmi. Fueled by a great soundtrack of classic \u201880s pop, the revolution is brewing. Set in the summer of 1986, hundreds of teenagers have gathered in the woods for Estonian student summer camp\u2014three days full of adventures, falling in love and partying. But, when the teens are forced to comply with rules of proper behavior, camp in a totalitarian system isn\u2019t all it\u2019s cracked up to be. The political metaphor of the counselors\u2019 control leads to an uprising of the students. The main character is 16-year-old Tanel, who initially is as focused on losing his virginity and getting drunk as overthrowing the system. But taking part in the revolt, he discovers himself."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/AS_MPDE_Eesti:_cinemas_in_Estonia|http://dbpedia.org/resource/Internetcinema|http://dbpedia.org/resource/Sigade_revolutsioon_o\u00fc"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Two_Friends_(2015_film)"}, "Title": {"type": "literal", "value": "Two Friends"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Louis_Garrel"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Golshifteh_Farahani|http://dbpedia.org/resource/Vincent_Macaigne"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Two Friends (French: Les Deux Amis) is a 2015 French romantic dramedy film directed by Louis Garrel and co-written by Garrel and Christophe Honor\u00e9. The film is loosely based on the play The Moods of Marianne by Alfred de Musset. It was selected to screen in the International Critics' Week section at the 2015 Cannes Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Keep_Smiling_(2012_film)"}, "Title": {"type": "literal", "value": "Keep Smiling"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rusudan_Chkonia"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Eka_Kartvelishvili|http://dbpedia.org/resource/Gia_Roinishvili|http://dbpedia.org/resource/Ia_Sukhitashvili|http://dbpedia.org/resource/Maka_Chichua|http://dbpedia.org/resource/Nana_Shonia|http://dbpedia.org/resource/Olga_Babluani|http://dbpedia.org/resource/Shorena_Begashvili|http://dbpedia.org/resource/Tamuna_Bukhnikashvili"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Keep Smiling (Georgian: \u10d2\u10d0\u10d8\u10e6\u10d8\u10db\u10d4\u10d7, translit. Gaigimet) is a 2012 Georgian-French-Luxemburg produced black comedy-drama written and directed by Rusudan Chkonia. The film was selected as the Georgian entry for the Best Foreign Language Oscar at the 85th Academy Awards, but it did not make the final list. The script was the winner of 2010 GNFC competition of debut full length feature films and went on to be the most successful release in Georgia of 2012 also enjoying a theatrical run in French cinemas."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hysteria_(2011_film)"}, "Title": {"type": "literal", "value": "Hysteria"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tanya_Wexler"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Felicity_Jones|http://dbpedia.org/resource/Hugh_Dancy|http://dbpedia.org/resource/Maggie_Gyllenhaal"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:British_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Hysteria is a 2011 British period romantic comedy film directed by Tanya Wexler. It stars Hugh Dancy and Maggie Gyllenhaal, with Felicity Jones, Jonathan Pryce, and Rupert Everett appearing in key supporting roles. The film, set in the Victorian era, shows how the medical management of hysteria led to the invention of the vibrator. The film's title refers to the once-common medical diagnosis of female hysteria."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Go_for_Broke_(2002_film)"}, "Title": {"type": "literal", "value": "Go for Broke"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jean-Claude_La_Marre"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bobby_Brown|http://dbpedia.org/resource/Kira_Madallo_Sesay|http://dbpedia.org/resource/LisaRaye|http://dbpedia.org/resource/Michael_A._Goorjian|http://dbpedia.org/resource/Pras"}, "Published": {"type": "literal", "value": "2002-06-27"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "Go for Broke is a 2002 urban comedy film, written by Jean-Claude La Marre, who also directed and co-produced the film, which stars Pras, Michael A. Goorjian, LisaRaye, Kira Madallo Sesay, and Bobby Brown."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Artisan_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Go_Lala_Go!"}, "Title": {"type": "literal", "value": "Go Lala Go!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Xu_Jinglei"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Karen_Mok|http://dbpedia.org/resource/Li_Ai|http://dbpedia.org/resource/Pace_Wu|http://dbpedia.org/resource/Stanley_Huang|http://dbpedia.org/resource/Xu_Jinglei"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Chinese_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Go Lala Go! (simplified Chinese: \u675c\u62c9\u62c9\u5347\u804c\u8bb0; traditional Chinese: \u675c\u62c9\u62c9\u5347\u8077\u8a18; pinyin: D\u00f9 L\u0101l\u0101 sh\u0113ngzh\u00ed j\u00ec; literally: \"Du Lala's promotion\") is a 2010 Chinese romantic comedy film about a Chinese woman who learns how to balance a relationship and professional work in a work place. It is directed by Xu Jinglei, who also plays the title character, and is based on a novel, Du Lala's Promotion, by Li Ke. The film also stars Stanley Huang and Karen Mok. Go Lala Go! was released to Mainland Chinese audiences on April 15, 2010, where it competed for ticket sales with the American remake, Clash of the Titans. After the success of \"Go Lala Go!\", Xu Jinglei directed another film Dear Enemy and co-starred with Stanley Huang again. The film is said to be like an updated and improved version of \"Go Lala Go!\""}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/China_Film_Group_Corporation"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Eight_Legged_Freaks"}, "Title": {"type": "literal", "value": "Eight Legged Freaks"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ellory_Elkayem"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/David_Arquette|http://dbpedia.org/resource/Doug_E._Doug|http://dbpedia.org/resource/Kari_W\u00fchrer|http://dbpedia.org/resource/Scarlett_Johansson|http://dbpedia.org/resource/Scott_Terra"}, "Published": {"type": "literal", "value": "2002-07-17"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Eight Legged Freaks is a 2002 German-Australian-American horror-comedy film directed by Ellory Elkayem and stars David Arquette, Kari W\u00fchrer, Scott Terra, and Scarlett Johansson. The plot concerns a collection of spiders that are exposed to toxic waste, causing them to grow to gigantic proportions and begin killing and harvesting. The film was dedicated to the memory of several people: One was Lewis Arquette, father of the star of the film David Arquette, who had died in 2001 from heart failure, and the other two were Don Devlin and Pilar Seurat, the parents of producer Dean Devlin, who both died of lung cancer in 2000 and 2001, respectively."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros._Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Desire_Street_(film)"}, "Title": {"type": "literal", "value": "Desire Street"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Roberto_F._Canuto|http://dbpedia.org/resource/Xu_Xiaoxi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "Desire Street, also known as La Calle Del Deseo or Calle Deseo, is a 2011 Spanish, Chinese, and U.S. co-production drama film, written and directed by Roberto F. Canuto and Xu Xiaoxi. Headed by actress Alexandra Smothers, the film features an ensemble cast also starring Alejandra Walker, Ellen Clifford, Javier Lopez, Kjord Davis, and Jesus Guevara. Revolving around an eccentric and dysfunctional Mexican immigrant family living in Los Angeles, California, the film is divided into three parts, each one with a story reflecting a family member (mother Carmen, daughter Bess and son Andrea) and the relationship that they establish with a new neighbor, a prostitute (Lucy Bell)."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Anniversary_(2009_film)"}, "Title": {"type": "literal", "value": "The Anniversary"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/John_Campea"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Erin_Cummings|http://dbpedia.org/resource/Gavin_Grazer|http://dbpedia.org/resource/Jana_Thompson|http://dbpedia.org/resource/Julia_Voth|http://dbpedia.org/resource/Manolis_Zontanos"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "The Anniversary is a 2009 romantic comedy written and directed by Canadian film-maker and film journalist John Campea. The film explores the stresses, stereotypes, and stigmas associated with thirty-something dating and relationships."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Cop_Out_(2010_film)"}, "Title": {"type": "literal", "value": "Cop Out"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Smith"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bruce_Willis|http://dbpedia.org/resource/Kevin_Pollak|http://dbpedia.org/resource/Seann_William_Scott|http://dbpedia.org/resource/Tracy_Morgan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:Police_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "Cop Out is a 2010 American buddy cop comedy film directed and edited by Kevin Smith, written by Mark and Robb Cullen, and starring Bruce Willis, Tracy Morgan, Kevin Pollak and Seann William Scott. The plot revolves around two veteran NYPD partners (portrayed by Willis and Morgan) on the trail of a stolen, rare, mint-condition baseball card who find themselves up against a relentless, memorabilia-obsessed bloodthirsty gangster. This is the first film that Smith directed that he did not also write. Upon its release, the film was met with negative reviews by critics and underperformed at the box office."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Eli_(2015_film)"}, "Title": {"type": "literal", "value": "Eli"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Yuvaraj_Dhayalan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Sadha|http://dbpedia.org/resource/Vadivelu"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_criminal_comedy_films|http://dbpedia.org/resource/Category:Criminal_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "154"}, "Description": {"type": "literal", "value": "Eli (English: Rat) is a 2015 Indian Tamil-language spy comedy film written and directed by Yuvaraj Dhayalan. The film features Vadivelu and Sadha in the lead roles. Vidyasagar composed the film's music. Eli was released on 19 June 2015 to negative reviews."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Recep_\u0130vedik"}, "Title": {"type": "literal", "value": "Recep Ivedik"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Togan_G\u00f6kbakar"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/\u015eahan_G\u00f6kbakar"}, "Published": {"type": "literal", "value": "2008-02-22"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Turkish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Recep \u0130vedik is a 2008 Turkish comedy film, directed by Togan G\u00f6kbakar, and the name of the main character (also in the sequels Recep \u0130vedik 2, Recep \u0130vedik 3 and Recep \u0130vedik 4), an oafish man played by \u015eahan G\u00f6kbakar. Recep \u0130vedik takes up residence in an expensive Antalya hotel to win back his childhood love. The film, which went on nationwide general release across Turkey on February 22, 2008, was the highest grossing Turkish film of 2008. The film's titular comic character was created by \u015eahan G\u00f6kbakar for his Turkish comedy television show Dikkat \u015eahan \u00c7\u0131kabilir, which ran from 2005 to 2006, and has subsequently gone on to feature in a series of sequel films. The film was shot on location in Istanbul and Antalya, Turkey."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tai_Chi_Hero"}, "Title": {"type": "literal", "value": "Tai Chi Hero"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Stephen_Fung"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Angelababy|http://dbpedia.org/resource/Eddie_Peng|http://dbpedia.org/resource/Jayden_Yuan|http://dbpedia.org/resource/Tony_Leung_Ka-fai|http://dbpedia.org/resource/William_Feng"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Martial_arts_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Tai Chi Hero (\u592a\u6975\uff12 \u82f1\u96c4\u5d1b\u8d77) is a 2012 Hong Kong-Chinese 3D martial arts film directed by Stephen Fung, written and produced by Kuo-fu Chen. It is the sequel to Fung's 2012 film Tai Chi Zero. It was released in Hong Kong on 25 October 2012. It is to be followed by a third undeveloped movie named Tai Chi Summit."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Larrikins_(film)"}, "Title": {"type": "literal", "value": "Larrikins"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Miller_(animator)|http://dbpedia.org/resource/Tim_Minchin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Mendelsohn|http://dbpedia.org/resource/Hugh_Jackman|http://dbpedia.org/resource/Margot_Robbie|http://dbpedia.org/resource/Naomi_Watts|http://dbpedia.org/resource/Rose_Byrne"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_musical_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Larrikins is an upcoming 2018 American computer animated musical comedy film directed by Tim Minchin and Chris Miller and starring Margot Robbie and Hugh Jackman, from a script by Harry Cripps. Produced by DreamWorks Animation and distributed by Universal Pictures, it follows the story of an uptight bilby who escapes his sheltered life from his family burrow, he ventures out and finds himself launched on a musical adventure across the mystical Australian outback. It is currently scheduled for a February 16, 2018 release."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dream_for_an_Insomniac"}, "Title": {"type": "literal", "value": "Dream for an Insomniac"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tiffanie_DeBartolo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ione_Skye|http://dbpedia.org/resource/Jennifer_Aniston"}, "Published": {"type": "literal", "value": "1998-06-19"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Dream for an Insomniac is a 1996 romantic comedy movie written and directed by Tiffanie DeBartolo. It stars Ione Skye, Jennifer Aniston, Mackenzie Astin and Michael Landes."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Safety_Not_Guaranteed"}, "Title": {"type": "literal", "value": "Safety Not Guaranteed"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Colin_Trevorrow"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aubrey_Plaza|http://dbpedia.org/resource/Jake_Johnson|http://dbpedia.org/resource/Jeff_Garlin|http://dbpedia.org/resource/Karan_Soni|http://dbpedia.org/resource/Kristen_Bell|http://dbpedia.org/resource/Mark_Duplass|http://dbpedia.org/resource/Mary_Lynn_Rajskub"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Safety Not Guaranteed is a 2012 American science-fiction romantic comedy film directed by Colin Trevorrow. The film was inspired by a 1997 Backwoods Home Magazine classified ad, itself written as a joke filler by Backwoods employee John Silveira, by a person asking for someone to accompany him in a time-travelling excursion. It was screened at the 2012 Sundance Film Festival, where it won the Waldo Salt Screenwriting Award."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/FilmDistrict"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Make_It_Big_(film)"}, "Title": {"type": "literal", "value": "Make It Big"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Cho_Ui-seok"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kwon_Sang-woo|http://dbpedia.org/resource/Lee_Beom-soo|http://dbpedia.org/resource/Song_Seung-heon"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:South_Korean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "Make It Big (Hangul: \uc77c\ub2e8 \ub6f0\uc5b4; RR: Ildan Dwieo) is a 2002 South Korean comedy film. Song Seung-heon, Kim Young-jun and Kwon Sang-woo play three high school students who are startled when a bagful of money and a dead man fall on top of their car. Once they realize just how much money is in the bag, they give up any thought of calling the police."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kamara's_Tree"}, "Title": {"type": "literal", "value": "Kamara's Tree"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Desmond_Elliot"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Nigerian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Kamara's Tree is a 2013 Nigerian comedy drama film, directed by Desmond Elliot, and starring Desmond Elliot, Lydia Forson, Ivie Okujaye, Tessy Abubakar, Bobby Obodo, Ginnefine Kanu, Morris K Sesay and Dabota Lawson. The film which is set and was shot in Freetown, Sierra Leone, tells the story of a family who gather in Freetown to attend the wedding of their sister, after long years of separation; each of the family members has to deal with the diverse behaviours of the others as a result."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tick_Tock_Lullaby"}, "Title": {"type": "literal", "value": "Tick Tock Lullaby"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lisa_Gornick"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Lisa_Gornick|http://dbpedia.org/resource/Raquel_Cassidy|http://dbpedia.org/resource/Sarah_Patterson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:British_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "73"}, "Description": {"type": "literal", "value": "Tick Tock Lullaby is a British indie comedy-drama film of 2007 written and directed by Lisa Gornick."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dil_Chahta_Hai"}, "Title": {"type": "literal", "value": "Dil Chahta Hai"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Farhan_Akhtar"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aamir_Khan|http://dbpedia.org/resource/Akshaye_Khanna|http://dbpedia.org/resource/Dimple_Kapadia|http://dbpedia.org/resource/Preity_Zinta|http://dbpedia.org/resource/Saif_Ali_Khan|http://dbpedia.org/resource/Sonali_Kulkarni"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "184"}, "Description": {"type": "literal", "value": "Dil Chahta Hai (English: The Heart Desires) is a 2001 Indian comedy-drama film starring Aamir Khan, Saif Ali Khan, Akshaye Khanna, Preity Zinta, Sonali Kulkarni, and Dimple Kapadia. The first film written and directed by Farhan Akhtar, it is set in modern-day urban Mumbai and Sydney, and focuses on a major period of transition in the lives of three young friends. In 2001, the film won National Film Award for Best Feature Film in Hindi. It performed better in the urban areas of the country compared to the rural areas, which was attributed by critics to the city-oriented lifestyle depicted in which all the characters are from rich or upper-middle-class families. Over the years, it has attained a cult status."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Excel_Entertainment_Pvt._Ltd."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Southland_Tales"}, "Title": {"type": "literal", "value": "Southland Tales"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Richard_Kelly_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bai_Ling|http://dbpedia.org/resource/Dwayne_Johnson|http://dbpedia.org/resource/Justin_Timberlake|http://dbpedia.org/resource/Mandy_Moore|http://dbpedia.org/resource/Miranda_Richardson|http://dbpedia.org/resource/Sarah_Michelle_Gellar|http://dbpedia.org/resource/Seann_William_Scott|http://dbpedia.org/resource/Wallace_Shawn"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "144|160"}, "Description": {"type": "literal", "value": "Southland Tales is a 2006 science fiction comedy-drama thriller film and the second film written and directed by Richard Kelly. The title refers to the Southland, a name used by locals to refer to Southern California and Greater Los Angeles. Set in the then-near future of 2008, as part of an alternate history, the film is a portrait of Los Angeles, and a satiric commentary on the military\u2013industrial complex and the infotainment industry. The film features an ensemble cast including Dwayne Johnson, Seann William Scott, Sarah Michelle Gellar, Mandy Moore, and Justin Timberlake. Original music for the film was provided by Moby. The film is an international co-production of the United States, Germany and France. The film premiered May 21, 2006 at the 2006 Cannes Film Festival, where it was poorly received. After significant edits, the final version premiered at Fantastic Fest on September 22, 2007. It opened in limited release in California on November 14, 2007 and in Canada as well as nationwide in United States, in just 63 theaters, on November 16, 2007. The film opened in the United Kingdom on December 7, 2007."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Destination_Films|http://dbpedia.org/resource/Samuel_Goldwyn_Films|http://dbpedia.org/resource/Universal_Studios|http://dbpedia.org/resource/Wild_Bunch_(company)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Temptation_of_St._Tony"}, "Title": {"type": "literal", "value": "The Temptation of St. Tony"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Veiko_\u00d5unpuu"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "The Temptation of St. Tony (Estonian: P\u00fcha T\u00f5nu kiusamine) is a 2009 Estonian film written and directed by Veiko \u00d5unpuu, starring Taavi Eelmaa. The plot has been described as a black comedy and centers around a successful, middle aged man who becomes interested in questions about morality. The film was a co-production between companies from Estonia, Sweden and Finland."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Everybody's_Fine_(2016_film)"}, "Title": {"type": "literal", "value": "Everybody's Fine"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Zhang_Meng_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Chinese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Everybody's Fine is a 2016 Chinese family comedy film directed by Zhang Meng. It was released in China on January 1, 2016."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sumolah"}, "Title": {"type": "literal", "value": "Sumolah"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Afdlin_Shauki"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Afdlin_Shauki|http://dbpedia.org/resource/Awie|http://dbpedia.org/resource/Gurmit_Singh|http://dbpedia.org/resource/Inthira_Charoenpura|http://dbpedia.org/resource/Patrick_Teoh"}, "Published": {"type": "literal", "value": "2007-05-10"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Sumolah (Let's Sumo!) is a 2007 Malaysian action-comedy film starring Afdlin Shauki and featuring the Japanese sport of sumo wrestling. The film was shot in Malaysia and Japan. The film has a multi-national cast including Thai actress Inthira Charoenpura who was previously known for her performance in Nang Nak, and Singaporean actor Gurmit Singh known for his performance in the sitcom Phua Chu Kang. The plot of the film revolves about what would happen if an unambitious Malay mat rempit is forced to enter the challenging world of sumo. This film is rated PG13 for intense sumo violence, some drug content, sexual references and brief strong language. This film is financial failure despite critical success."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Going_in_Style_(2017_film)"}, "Title": {"type": "literal", "value": "Going in Style"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Zach_Braff"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alan_Arkin|http://dbpedia.org/resource/Ann-Margret|http://dbpedia.org/resource/Joey_King|http://dbpedia.org/resource/Matt_Dillon|http://dbpedia.org/resource/Michael_Caine|http://dbpedia.org/resource/Morgan_Freeman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:2010s_criminal_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Going in Style is an upcoming American heist comedy film based on the 1979 film of the same name, directed by Zach Braff, written by Theodore Melfi, and stars Morgan Freeman, Michael Caine, Alan Arkin, Joey King, Matt Dillon and Ann-Margret. The film is scheduled to be released on April 7, 2017."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros._Pictures"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/De_Line_Pictures|http://dbpedia.org/resource/New_Line_Cinema|http://dbpedia.org/resource/RatPac-Dune_Entertainment"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Freetime_Machos"}, "Title": {"type": "literal", "value": "Freetime Machos"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mika_Ronkainen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Freetime Machos is a Finnish documentary film about the world's most northerly rugby club called OYUS Rugby based in Oulu, Finland. The film is directed by Mika Ronkainen and it was premiered at IDFA in November 2009. The film got its North American premiere at Tribeca Film Festival in April 2010. It was also part of the Edinburgh International Film Festival in June 2010."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Wild_West_Comedy_Show:_30_Days_and_30_Nights_\u2013_Hollywood_to_the_Heartland"}, "Title": {"type": "literal", "value": "Wild West Comedy Show: 30 Days and 30 Nights - Hollywood to the Heartland"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ari_Sandel"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ahmed_Ahmed|http://dbpedia.org/resource/Bret_Ernst|http://dbpedia.org/resource/John_Caparulo|http://dbpedia.org/resource/Justin_Long|http://dbpedia.org/resource/Keir_O'Donnell|http://dbpedia.org/resource/Peter_Billingsley|http://dbpedia.org/resource/Sean_Fitzgerald|http://dbpedia.org/resource/Sebastian_Maniscalco|http://dbpedia.org/resource/Vince_Vaughn"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Documentary_films_about_comedy_and_comedians"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Wild West Comedy Show: 30 Days and 30 Nights \u2013 Hollywood to the Heartland is a comedy documentary film directed by Ari Sandel and follows the 30 day comedy of tour of several stand up comedians. It premiered September 8, 2006 at the Toronto International Film Festival. It opened in wide release in the United States on February 8, 2008."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Picturehouse_(company)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dead_Snow"}, "Title": {"type": "literal", "value": "Dead Snow"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tommy_Wirkola"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ane_Dahl_Torp|http://dbpedia.org/resource/Bj\u00f8rn_Sundquist|http://dbpedia.org/resource/Charlotte_Frogner|http://dbpedia.org/resource/Jenny_Skavlan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Dead Snow (Norwegian: D\u00f8d sn\u00f8) is a 2009 Norwegian zombie splatter film directed by Tommy Wirkola, starring Charlotte Frogner, Stig Frode Henriksen, Vegar Hoel, Jeppe Laursen, Evy Kasseth R\u00f8sten, Jenny Skavlan, and Lasse Valdal. The film centers on a group of students surviving a Nazi zombie attack in the mountains of Norway. The premise of the film is similar to that of the draugr - a Scandinavian folkloric undead greedily protecting its (often stolen) treasures. NYAV Post has produced an English dub of this film for the home media release."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Euforia_Film"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Buongiorno_pap\u00e0"}, "Title": {"type": "literal", "value": "Buongiorno pap\u00e0"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Edoardo_Leo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Edoardo_Leo|http://dbpedia.org/resource/Marco_Giallini|http://dbpedia.org/resource/Raoul_Bova"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Italian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "Buongiorno pap\u00e0 (Italian for Good Morning Dad) is a 2013 Italian comedy film written, directed and starred by Edoardo Leo. It was nominated for two David di Donatello, for best supporting actor (Marco Giallini) and best original song, and for two Nastri d'argento, for best comedy film and for best actor (a nominee tied between Raoul Bova and Marco Giallini)."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fulvio_Lucisano"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Infestation_(film)"}, "Title": {"type": "literal", "value": "Infestation"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kyle_Rankin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Brooke_Nevin|http://dbpedia.org/resource/Chris_Marquette|http://dbpedia.org/resource/Deborah_Geffner|http://dbpedia.org/resource/Ray_Wise"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Infestation is a 2009 Horror-Comedy feature film by American writer/director Kyle Rankin. It was produced by Mel Gibson's Icon Entertainment and starring Chris Marquette, E. Quincy Sloan, Brooke Nevin, Kinsey Packard, Deborah Geffner and Ray Wise. It was filmed in Bulgaria."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Icon_Productions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/What_a_Man_(2011_film)"}, "Title": {"type": "literal", "value": "What a Man"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Matthias_Schweigh\u00f6fer"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Matthias_Schweigh\u00f6fer|http://dbpedia.org/resource/Sibel_Kekilli"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:German_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "What a Man is a 2011 German comedy film directed by Matthias Schweigh\u00f6fer. It was well received by German critics and also a success at the box office."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Twentieth_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hasee_Toh_Phasee"}, "Title": {"type": "literal", "value": "Hasee Toh Phasee"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Vinil_Mathew"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adah_Sharma|http://dbpedia.org/resource/Manoj_Joshi_(actor)|http://dbpedia.org/resource/Parineeti_Chopra|http://dbpedia.org/resource/Sharat_Saxena|http://dbpedia.org/resource/Sidharth_Malhotra"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "141"}, "Description": {"type": "literal", "value": "Hasee Toh Phasee (English: She Smiles, She's Snared!) is a 2014 Indian romantic comedy-drama film directed by Vinil Mathew and produced by Karan Johar and Anurag Kashyap. The film features Parineeti Chopra, Sidharth Malhotra and Adah Sharma in the lead roles. The film was released on 7 February 2014 and received positive reviews. The movie collected around \u20b9620 million (US$9.2 million) worldwide."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Chaar_Din_Ki_Chandni"}, "Title": {"type": "literal", "value": "Chaar Din Ki Chandni"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Samir_Karnik"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kulraj_Randhawa|http://dbpedia.org/resource/Tusshar_Kapoor"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Chaar Din Ki Chandni (English: 4 nights of moonlight) is a 2012 Hindi romantic comedy film directed and produced by Samir Karnik. The film stars Tusshar Kapoor and Kulraj Randhawa in the lead roles while Anupam Kher, Om Puri and Anita Raj appear in supporting roles. It released on 9 March 2012, received generally negative reviews, and also failed to do well at the box office."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hell_Baby"}, "Title": {"type": "literal", "value": "Hell Baby"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Robert_Ben_Garant|http://dbpedia.org/resource/Thomas_Lennon_(actor)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dave_Holmes_(actor)|http://dbpedia.org/resource/Keegan_Michael_Key|http://dbpedia.org/resource/Kumail_Nanjiani|http://dbpedia.org/resource/Leslie_Bibb|http://dbpedia.org/resource/Michael_Ian_Black|http://dbpedia.org/resource/Paul_Scheer|http://dbpedia.org/resource/Riki_Lindhome|http://dbpedia.org/resource/Rob_Corddry|http://dbpedia.org/resource/Rob_Huebel|http://dbpedia.org/resource/Robert_Ben_Garant|http://dbpedia.org/resource/Thomas_Lennon_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Hell Baby is an American horror-comedy film written and directed by Robert Ben Garant and Thomas Lennon. The film stars Rob Corddry, Leslie Bibb, Keegan Michael Key, Riki Lindhome, Rob Huebel, and Paul Scheer. Writer-directors Garant and Lennon also co-star as a pair of priests. The film premiered at the Sundance Film Festival on January 20, 2013. The film is available on VOD beginning on July 25, 2013 before its theatrical release on September 6, 2013."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Gravitas_Ventures|http://dbpedia.org/resource/Millennium_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Along_Came_Polly"}, "Title": {"type": "literal", "value": "Along Came Polly"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/John_Hamburg"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alec_Baldwin|http://dbpedia.org/resource/Ben_Stiller|http://dbpedia.org/resource/Bryan_Brown|http://dbpedia.org/resource/Debra_Messing|http://dbpedia.org/resource/Hank_Azaria|http://dbpedia.org/resource/Jennifer_Aniston|http://dbpedia.org/resource/Philip_Seymour_Hoffman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Along Came Polly is a 2004 American romantic comedy film written and directed by John Hamburg, starring Ben Stiller and Jennifer Aniston in the lead roles."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mongolian_Ping_Pong"}, "Title": {"type": "literal", "value": "Mongolian Ping Pong"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ning_Hao"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hurichabilike"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Mongolian Ping Pong (simplified Chinese: \u7eff\u8349\u5730; traditional Chinese: \u7da0\u8349\u5730; pinyin: L\u00fc cao di) is a 2005 Mongolian language Chinese film written and directed by Chinese director Ning Hao. The story is a gentle art film about a Mongolian boy who discovers a ping pong ball and his journey of discovery about its origins."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Bavaria_Film_International"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Babu_Bangaram"}, "Title": {"type": "literal", "value": "Babu Bangaaram"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Maruthi_Dasari"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Daggubati_Venkatesh|http://dbpedia.org/resource/Nayanthara"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "150"}, "Description": {"type": "literal", "value": "Babu Bangaram (English: Golden Boy) is a 2016 Telugu action romantic comedy film, produced by S. Naga Vamshi, P. D. V. Prasad on Sitara Entertainments banner, written and directed by Maruthi. Starring Venkatesh, Nayanthara in the lead roles and music composed by Ghibran. The film was launched on 16 December 2015 in Hyderabad and principle photography began the following day. The first look poster of the film was released on 7 April 2016 on the eve of Ugadi. Babu Bangaram obtained a U/A from the censor board. The film had a worldwide release on 12 August 2016 amid much fanfare. The film was simultaneously released with a Tamil dubbed version titled Selvi."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/S._Radha_Krishna"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Center_of_my_World"}, "Title": {"type": "literal", "value": "Center of my World"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jakob_M._Erwa"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Clemens_Rehbein|http://dbpedia.org/resource/Inka_Friedrich|http://dbpedia.org/resource/Jannik_Sch\u00fcmann|http://dbpedia.org/resource/Louis_Hofmann|http://dbpedia.org/resource/Nina_Proll|http://dbpedia.org/resource/Sabine_Timoteo|http://dbpedia.org/resource/Svenja_Jung"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:German_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "Center of my World (German: Die Mitte der Welt) is a 2016 German coming-of-age romantic drama film directed by Jakob M. Erwa, based on the 1998 bestselling novel The Center of the World by Andreas Steinh\u00f6fel."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bring_Me_the_Head_of_the_Machine_Gun_Woman"}, "Title": {"type": "literal", "value": "Bring Me the Head of the Machine Gun Woman"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ernesto_D\u00edaz_Espinoza"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Fernanda_Urrejola"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "73"}, "Description": {"type": "literal", "value": "Bring Me the Head of the Machine Gun Woman, also known under its original release title of Tr\u00e1iganme la cabeza de la mujer metralleta, is a 2012 Chilean action comedy that was directed by Ernesto D\u00edaz Espinoza. The film had its world premiere on 23 September 2012 at the Austin Fantastic Fest and was released in Chile on 23 May 2013."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jatra:_Hyalagaad_Re_Tyalagaad"}, "Title": {"type": "literal", "value": "Jatra"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kedar_Shinde"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bharat_Jadhav|http://dbpedia.org/resource/Kranti_Redkar|http://dbpedia.org/resource/Siddarth_Jadhav"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "133"}, "Description": {"type": "literal", "value": "Jatra is a 2006 Indian Marathi-language comedy film. The music was composed by the duo Ajay and Atul Gogavale. Jatra features the song Kombadi Palali Ajay and Atul later used same tune from the song \"Kombdi Palali\" when composing the item song \"Chikni Chameli\" for the Hindi film Agneepath in 2012."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Phone_Swap"}, "Title": {"type": "literal", "value": "Phone Swap"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kunle_Afolayan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Nigerian_comedy_films|http://dbpedia.org/resource/Category:Nigerian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110|117"}, "Description": {"type": "literal", "value": "Phone Swap is a 2012 Nigerian romance comedy drama film written by Kemi Adesoye, directed and produced by Kunle Afolayan. It stars Nse Ikpe Etim, Wale Ojo, Joke Silva, Chika Okpala, Lydia Forson and Hafeez Oyetoro. The film was conceived after a brief from an advertising agency to create a movie that would cut across ages 15 to 45. It narrates the story of Mary, a warm-hearted fashion designer who works under a very stringent boss, and Akin, an arrogant, withdrawn and bossy business executive. They accidentally swap their mobile phones at a busy airport, which leads to an exchange in their destinations and the need to help carryout each other's assignments. Phone Swap was shot in Lagos and made in partnership with Globacom and BlackBerry. It also got financial support from Meelk Properties, IRS Airlines, Seven-up Bottling Company, Honeywell Flour Mill and several others. The scripting stage for the film took two years, while the production and post production stages took six weeks and three months respectively. The film received critical acclaim and was highly successful at the box office. It received 4 nominations at the 8th Africa Movie Academy Awards which includes the category Best Nigerian Film and won the award Achievement in Production Design."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/It's_a_Disaster"}, "Title": {"type": "literal", "value": "It's a Disaster"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Todd_Berger"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/America_Ferrera|http://dbpedia.org/resource/Blaise_Miller|http://dbpedia.org/resource/David_Cross|http://dbpedia.org/resource/Erinn_Hayes|http://dbpedia.org/resource/Jeff_Grace|http://dbpedia.org/resource/Julia_Stiles|http://dbpedia.org/resource/Kevin_M._Brennan|http://dbpedia.org/resource/Rachel_Boston"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "It's a Disaster is a 2012 American art-house black comedy film written and directed by Todd Berger. The film was made by Los Angeles-based comedy group The Vacationeers and stars Rachel Boston, David Cross, America Ferrera, Jeff Grace, Erinn Hayes, Kevin M. Brennan, Blaise Miller, Julia Stiles, and Todd Berger. The film premiered on June 20, 2012, at the Los Angeles Film Festival. It's a Disaster was commercially released in US theaters by Oscilloscope Laboratories, which acquired the US distribution rights to the film, on April 12, 2013."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Oscilloscope_Laboratories"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mary_and_Max"}, "Title": {"type": "literal", "value": "Mary and Max"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Elliot"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bethany_Whitmore|http://dbpedia.org/resource/Eric_Bana|http://dbpedia.org/resource/Philip_Seymour_Hoffman|http://dbpedia.org/resource/Toni_Collette"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:Australian_comedy_films|http://dbpedia.org/resource/Category:Black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Mary and Max is a 2009 Australian stop motion animated comedy-drama film written and directed by Adam Elliot as his first animated feature film with music by Dale Cornelius and produced by Melanie Coombs and Melodrama Pictures. The voice cast included Philip Seymour Hoffman, Toni Collette, Eric Bana, Bethany Whitmore with narration by Barry Humphries. The film premiered on the opening night of the 2009 Sundance Film Festival on January 15, 2009. The film won the Annecy Cristal in June 2009 from the Annecy International Animated Film Festival, and Best Animated Feature Film at the Asia Pacific Screen Awards in November 2009. The film was theatrically released on April 9, 2009 by Icon Entertainment International. Mary and Max received very positive reviews from critics and it earned $1.7 million USD on a $8.2 million AUD budget."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Icon_Productions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Spellbound_(2011_film)"}, "Title": {"type": "literal", "value": "Spellbound"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Hwang_In-ho"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Lee_Min-ki|http://dbpedia.org/resource/Son_Ye-jin"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "Spellbound (Hangul: \uc624\uc2f9\ud55c \uc5f0\uc560; hanja: \uc624\uc2f9\ud55c \u6200\u611b; RR: Ossakhan Yeonae; lit. \"Chilling Romance\") is a 2011 South Korean horror romantic comedy film, starring Son Ye-jin and Lee Min-ki. It is about a magician who falls in love with a woman who can see ghosts. It was written and directed by Hwang In-ho which also marks his directorial debut."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/CJ_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Rab_Ne_Bana_Di_Jodi"}, "Title": {"type": "literal", "value": "Rab Ne Bana Di Jodi"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Aditya_Chopra"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anushka_Sharma|http://dbpedia.org/resource/Shah_Rukh_Khan|http://dbpedia.org/resource/Vinay_Pathak"}, "Published": {"type": "literal", "value": "2008-12-12"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "164"}, "Description": {"type": "literal", "value": "Rab Ne Bana Di Jodi (English: A Match Made By God) is a 2008 Indian romantic comedy film written and directed by Aditya Chopra and produced by Yash Chopra and Aditya Chopra under the banner Yash Raj Films. The film stars Shah Rukh Khan and Anushka Sharma. Khan plays a mild-mannered office worker named Surinder Sahni, whose love for the beautiful and vivacious Taani (Anushka Sharma) causes him to transform himself into the loud and fun-loving \"Raj\" to win her love. It was released worldwide on 12 December 2008 and marked Aditya Chopra's return to directing after an eight-year break, following his previous film, Mohabbatein. The film was not heavily promoted pre-release, contrary to previous Khan or Yash Raj films, mainly because of the filmmakers' decision to keep it low-profile because of the terror attacks in Mumbai. Upon release, the film received positive reviews and broke many box office records. It was declared a blockbuster despite the fact that it was released only two weeks after the 2008 Mumbai attacks, amidst uncertainty and apprehensions from the trade regarding market conditions at the time. At the end of its theatrical run, it grossed over \u20b91.58 billion (US$23 million) worldwide and was also the highest-grossing film of the year in the overseas market, thus becoming Yash Raj Films and Shahrukh Khan's highest-grossing film at the time of its release. The film's soundtrack was composed by Salim-Sulaiman, and it became the first Bollywood soundtrack to reach the top ten albums sales for the iTunes Store. The film's script was recognised by a number of critics and was invited to be included in the Margaret Herrick Library of the Academy of Motion Picture Arts and Sciences, just a day after its release. The script is accessible for research purposes only; students, filmmakers, writers and actors are among the regular patrons."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Macadam_Stories"}, "Title": {"type": "literal", "value": "Macadam Stories"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Samuel_Benchetrit"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gustave_Kervern|http://dbpedia.org/resource/Isabelle_Huppert|http://dbpedia.org/resource/Michael_Pitt|http://dbpedia.org/resource/Valeria_Bruni_Tedeschi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Macadam Stories (French: Asphalte) is a 2015 French comedy-drama film written and directed by Samuel Benchetrit, and based on the first volume of Benchetrit's autobiography Les Chroniques de l'Asphalte. The film was selected to be screened in the Special Screenings section at the 2015 Cannes Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/It_Takes_a_Man_and_a_Woman"}, "Title": {"type": "literal", "value": "It Takes a Man and a Woman"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Cathy_Garcia-Molina"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Isabelle_Daza|http://dbpedia.org/resource/John_Lloyd_Cruz|http://dbpedia.org/resource/Sarah_Geronimo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "127"}, "Description": {"type": "literal", "value": "It Takes a Man and a Woman is a 2013 Filipino romantic comedy film directed by Cathy Garcia-Molina and written by Carmi Raymundo. It is a sequel to two earlier films A Very Special Love (2008) and You Changed My Life (2009). John Lloyd Cruz and Sarah Geronimo reprise their roles as Miggy Montenegro and Laida Magtalas respectively. The film is set two years after their break-up which occurred in a depicted flashback scene following events (not shown) in the preceding film. Released in the Philippines on 30 March 2013, It Takes a Man and a Woman was a major commercial success. The film grossed PHP 405 million (est. $9.1 million; nominal values) after seven weeks in domestic theaters. It is the 2nd highest-grossing film and the highest-grossing Filipino film released in the Philippines in 2013. During the FAMAS Award in 2014, it received three nominations including Best Actor, Best Actress and Best Editing."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Star_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/72_Tenants_of_Prosperity"}, "Title": {"type": "literal", "value": "72 Tenants of Prosperity"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Eric_Tsang|http://dbpedia.org/resource/Patrick_Kong"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anita_Yuen|http://dbpedia.org/resource/Bernice_Liu|http://dbpedia.org/resource/Bosco_Wong|http://dbpedia.org/resource/Charmaine_Sheh|http://dbpedia.org/resource/Dicky_Cheung|http://dbpedia.org/resource/Eric_Tsang|http://dbpedia.org/resource/Jacky_Cheung|http://dbpedia.org/resource/Kate_Tsui|http://dbpedia.org/resource/Linda_Chung|http://dbpedia.org/resource/Michael_Tse|http://dbpedia.org/resource/Raymond_Lam|http://dbpedia.org/resource/Stephy_Tang|http://dbpedia.org/resource/Wayne_Lai|http://dbpedia.org/resource/Wong_Cho_Lam"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "72 Tenants of Prosperity (72\u5bb6\u79df\u5ba2) is a 2010 Hong Kong comedy film produced by the Shaw Brothers Studio, Television Broadcasts Limited, United Filmmakers Organization, Sil-Metropole Organisation and Sun Wah Media Group. It was directed by Eric Tsang and starred Tsang himself and various other actors. It was released in Hong Kong, Malaysia, Australia, and New Zealand on 11 February 2010. This film used the 1973 film The House of 72 Tenants as a blueprint. However, this story is a new creation, of which only some roles identical. This is the first film to introduce the new 2010 Shaw opening theme with a shortened version of the original fanfare. The film spoofs other movies such as Ip Man and Murderer, and makes references to Hong Kong culture and events that were figured in the media that year, such as the death of Michael Jackson and the Mong Kok acid attacks."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Intercontinental_Film_Distributors"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Killing_Winston_Jones"}, "Title": {"type": "literal", "value": "Killing Winston Jones"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Joel_David_Moore"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aly_Michalka|http://dbpedia.org/resource/Danny_Glover|http://dbpedia.org/resource/Danny_Masterson|http://dbpedia.org/resource/Joely_Fisher|http://dbpedia.org/resource/Jon_Heder|http://dbpedia.org/resource/Lesley-Ann_Brandt|http://dbpedia.org/resource/Lin_Shaye|http://dbpedia.org/resource/Richard_Dreyfuss|http://dbpedia.org/resource/Tyler_Labine"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "Killing Winston Jones is an upcoming American dark comedy film produced and distributed by RadioactiveGiant."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/RadioactiveGiant"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/A_Day_with_the_Meatball"}, "Title": {"type": "literal", "value": "A Day with the Meatball"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nicholaus_Goossen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Erinn_Bartlett|http://dbpedia.org/resource/J.D._Donaruma"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "2"}, "Description": {"type": "literal", "value": "A Day with the Meatball is a 2002 short comedy film directed by Nicholaus Goossen. It features Meatball, a bulldog owned by comedian Adam Sandler, who also starred in the short. It was released with Eight Crazy Nights during theatrical releases."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Family_United"}, "Title": {"type": "literal", "value": "Family United"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Daniel_S\u00e1nchez_Ar\u00e9valo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Antonio_de_la_Torre_(actor)|http://dbpedia.org/resource/Roberto_\u00c1lamo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Family United (Spanish: La gran familia espa\u00f1ola) is a 2013 Spanish comedy film directed by Daniel S\u00e1nchez Ar\u00e9valo."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mau_Mau_Maria"}, "Title": {"type": "literal", "value": "Mau Mau Maria"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jos\u00e9_Alberto_Pinheiro"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Portuguese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Mau Mau Maria is a 2014 Portuguese comedy film directed by Jos\u00e9 Alberto Pinheiro. It was released on 30 October 2014."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lammbock"}, "Title": {"type": "literal", "value": "Lammbock"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Christian_Z\u00fcbert"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alexandra_Neldel|http://dbpedia.org/resource/Elmar_Wepper|http://dbpedia.org/resource/Marie_Zielcke|http://dbpedia.org/resource/Moritz_Bleibtreu"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:German_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Lammbock is a 2001 German stoner film. The protagonists of the movie are two pizza delivery men who decide to up their income by adding marijuana to the menu and get into trouble after attracting the attention of an undercover cop. There are numerous subplots, and the movie is essentially split up into various chapters, each dealing with different episodes. It is filmed in and around the Franconian city of W\u00fcrzburg."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Angry_Babies_in_Love"}, "Title": {"type": "literal", "value": "Angry Babies in Love"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Saji_Surendran"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anoop_Menon|http://dbpedia.org/resource/Bhavana_(Malayalam_actress)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Angry Babies in Love is a 2014 Malayalam romantic comedy film directed by Saji Surendran and scripted by Krishna Poojappura. It stars Anoop Menon and Bhavana. The film, produced by Darshan Ravi under the banner of Demac Creations, has music composed by Bijibal and cinematography by Anil Nair. The film was released on 14 June 2014 and received mixed reviews from critics. The music label for the movie is Muzik247"}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/That_Thing_Called_Tadhana"}, "Title": {"type": "literal", "value": "That Thing Called Tadhana"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Antoinette_Jadaone"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Angelica_Panganiban|http://dbpedia.org/resource/JM_de_Guzman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Philippine_romantic_comedy_films|http://dbpedia.org/resource/Category:Star_Cinema_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "That Thing Called Tadhana (Official English: That Thing Called Meant-To-Be and Literal English: That Thing Called Fate) is a Filipino romantic comedy film starring Angelica Panganiban and JM de Guzman. Prior to its commercial release in 2015, it was an entry to the 2014 Cinema One Originals Film Festival where it earned top honors notably the Best Actress award for Panganiban. It is directed by critically acclaimed rookie director, Antoinette Jadaone who had worked with Panganiban in the 2014 comedy flick, Beauty in a Bottle. In upcoming parody in Regal Films named That Thing Called Tanga Na. The film met both commercial and critical success and is penned as the highest grossing Filipino independent film of all time yet breaching \u20b1134 million gross revenue in under 3 weeks, despite facing piracy issues online during its run. It has received an average rating of 8.8/10 in IMDB and a perfect five stars in local film review site ClickTheCity.com. Furthermore, it was graded \"A\" by the Cinema Evaluation Board and given a Rated PG by the MTRCB."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Star_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Scenes_from_a_Gay_Marriage"}, "Title": {"type": "literal", "value": "Scenes from a Gay Marriage"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Matt_Riddlehoover"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Domiziano_Arcangeli|http://dbpedia.org/resource/Jared_Allman|http://dbpedia.org/resource/Matt_Riddlehoover"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Scenes from a Gay Marriage (2012) is a romantic comedy film written and directed by Matt Riddlehoover, which was shot in Nashville, Tennessee. The film was successful enough to spawn a sequel, More Scenes from a Gay Marriage (2014)."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Clash_of_Egos"}, "Title": {"type": "literal", "value": "Clash of Egos"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tomas_Villum_Jensen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Nikolaj_Lie_Kaas|http://dbpedia.org/resource/Ulrich_Thomsen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Clash of Egos (Danish: Spr\u00e6ngfarlig bombe) is a 2006 Danish comedy film directed by Tomas Villum Jensen."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Island_Dreams_(film)"}, "Title": {"type": "literal", "value": "Island Dreams"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Aloy_Adlawan|http://dbpedia.org/resource/Gino_M._Santos"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Irma_Adlawan|http://dbpedia.org/resource/Louise_delos_Reyes"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Philippine_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Island Dreams is a 2013 Filipino romantic comedy film directed by Gino M. Santos and Aloy Adlawan, written by Adlawan, and starring Louise delos Reyes and Alexis Petitprez. It was an official selection in the 39th Metro Manila Film Festival under the New Wave Category and won the Most Gender-Sensitive Film Award."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Well_Wishes"}, "Title": {"type": "literal", "value": "Well Wishes"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Anderson_Boyd"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Shane_Callahan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Well Wishes is a 2015 American independent comedy film written and directed by Anderson Boyd, starring Shane Callahan, Anna Stromberg, Cullen Moss and Don Henderson Baker. The film was released digitally on May 10, 2016 and began streaming on Netflix in the United States, Canada, France, United Kingdom, Italy, and Japan on July 1, 2016."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sorority_Wars"}, "Title": {"type": "literal", "value": "Sorority Wars"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Hayman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amanda_Schull|http://dbpedia.org/resource/Courtney_Thorne-Smith|http://dbpedia.org/resource/Faith_Ford|http://dbpedia.org/resource/Lucy_Hale|http://dbpedia.org/resource/Phoebe_Strole|http://dbpedia.org/resource/Rob_Mayes"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Sorority Wars, is a 2009 American made-for-television film that aired on Lifetime, starring Lucy Hale, Phoebe Strole, Amanda Schull, Chelan Simmons, and Faith Ford. It was directed by James Hayman and filmed in Vancouver."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Nepal_Forever"}, "Title": {"type": "literal", "value": "Nepal Forever"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alyona_Polunina"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Russian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Nepal Forever (Russian: \u041d\u0435\u043f\u0430\u043b \u0444\u043e\u0440\u0435\u0432\u0430) is a 2013 documentary comedy by Russian filmmaker Alyona Polunina."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Take_This_Waltz_(film)"}, "Title": {"type": "literal", "value": "Take This Waltz"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sarah_Polley"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Luke_Kirby|http://dbpedia.org/resource/Michelle_Williams_(actress)|http://dbpedia.org/resource/Sarah_Silverman|http://dbpedia.org/resource/Seth_Rogen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Canadian_comedy-drama_films|http://dbpedia.org/resource/Category:Japanese_comedy_films|http://dbpedia.org/resource/Category:Spanish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "Take This Waltz is a 2011 drama film. The film centers on Margot, a 28-year-old freelance writer who lives in a charming house on a leafy street in Toronto's Little Portugal neighbourhood, as she struggles with and examines her feelings for Lou, her husband of five years, while exploring a new relationship with Daniel, an artist and rickshaw driver who lives across the street. This is the second full-length film directed by Sarah Polley. The cast includes Michelle Williams, Seth Rogen, Sarah Silverman, and Luke Kirby."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Magnolia_Pictures|http://dbpedia.org/resource/Mongrel_Media"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Krampus_(film)"}, "Title": {"type": "literal", "value": "Krampus"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Dougherty"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Scott_(actor)|http://dbpedia.org/resource/Allison_Tolman|http://dbpedia.org/resource/Conchata_Ferrell|http://dbpedia.org/resource/David_Koechner|http://dbpedia.org/resource/Emjay_Anthony|http://dbpedia.org/resource/Stefania_LaVie_Owen|http://dbpedia.org/resource/Toni_Collette"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:Comedy_thriller_films|http://dbpedia.org/resource/Category:Horror_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Krampus is a 2015 American Christmas comedy horror film based upon the eponymous character from Germanic folklore, directed by Michael Dougherty and written by Dougherty, Todd Casey and Zach Shields. The film stars Adam Scott, Toni Collette, David Koechner, Allison Tolman, Conchata Ferrell, Emjay Anthony, Stefania LaVie Owen and Krista Stadler. It was released in the United States on December 4, 2015, by Universal Pictures."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Legendary_Pictures"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Art_of_Love_(2011_film)"}, "Title": {"type": "literal", "value": "The Art of Love"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Emmanuel_Mouret"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Emmanuel_Mouret|http://dbpedia.org/resource/Fran\u00e7ois_Cluzet|http://dbpedia.org/resource/Pascale_Arbillot"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "The Art of Love (French: L'Art d'aimer) is a 2011 French comedy film directed and written by Emmanuel Mouret. The film stars Mouret himself, Pascale Arbillot, Ariane Ascaride, Fr\u00e9d\u00e9rique Bel, Fran\u00e7ois Cluzet, Julie Depardieu, Judith Godr\u00e8che, Stanislas Merhar, Elodie Navarre, Laurent Stocker and Gaspard Ulliel, and is narrated by Philippe Torreton. The Art of Love premiered at the Locarno International Film Festival on 7 August 2011. Although it garnered rather mixed reviews by film critics, it won the Best Screenplay Award at the Montr\u00e9al World Film Festival, and the Foreign Press Award at Filmfest Hamburg."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Premium_(film)"}, "Title": {"type": "literal", "value": "Premium"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pete_Chatmon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dorian_Missick|http://dbpedia.org/resource/Eva_Pigford|http://dbpedia.org/resource/Frankie_Faison|http://dbpedia.org/resource/Hill_Harper|http://dbpedia.org/resource/William_Sadler_(actor)|http://dbpedia.org/resource/Zoe_Saldana"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Premium is a 2006 romantic comedy-drama film written and directed by Pete Chatmon."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/CodeBlack_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mother/Daughter"}, "Title": {"type": "literal", "value": "Mother/Daughter"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jonathan_Levine"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amy_Schumer|http://dbpedia.org/resource/Christopher_Meloni|http://dbpedia.org/resource/Goldie_Hawn|http://dbpedia.org/resource/Ike_Barinholtz|http://dbpedia.org/resource/Oscar_Jaenada|http://dbpedia.org/resource/Wanda_Sykes"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Mother/Daughter is an upcoming American comedy film directed by Jonathan Levine and written by Amy Schumer, Katie Dippold, and Kim Caramele. The film stars Schumer and Goldie Hawn along with an ensemble cast that includes Christopher Meloni, Ike Barinholtz, Oscar Jaenada, and Wanda Sykes."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/That_Girl_in_Pinafore"}, "Title": {"type": "literal", "value": "That Girl in Pinafore"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chai_Yee_Wei"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Daren_Tan|http://dbpedia.org/resource/Hayley_Woo|http://dbpedia.org/resource/Jayley_Woo|http://dbpedia.org/resource/Julie_Tan|http://dbpedia.org/resource/Kelvin_Mun|http://dbpedia.org/resource/Kenny_Khoo|http://dbpedia.org/resource/Seah_Jiaqing|http://dbpedia.org/resource/Xavier_Ong"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Singaporean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "That Girl in Pinafore (Chinese: \u6211\u7684\u670b\u53cb, \u6211\u7684\u540c\u5b66, \u6211\u7231\u8fc7\u7684\u4e00\u5207; literally: \"My friend, my classmate, all that I've ever loved\") is a 2013 Singaporean comedy-musical film directed by Chai Yee Wei and starring Daren Tan, Julie Tan, Hayley Woo, Jayley Woo, Kenny Khoo, Seah Jiaqing and Kelvin Mun ."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Inkwell"}, "Title": {"type": "literal", "value": "The Inkwell"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Matty_Rich"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Glynn_Turman|http://dbpedia.org/resource/Joe_Morton|http://dbpedia.org/resource/Larenz_Tate|http://dbpedia.org/resource/Suzzanne_Douglas"}, "Published": {"type": "literal", "value": "1994-04-22"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "The Inkwell is a 1994 romantic comedy/drama film, directed by Matty Rich. The film stars Larenz Tate, Joe Morton, Suzzanne Douglass, Glynn Turman, Jada Pinkett Smith and Vanessa Bell Calloway."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Grow_Up,_Tony_Phillips"}, "Title": {"type": "literal", "value": "Grow Up, Tony Phillips"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Emily_Hagins"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Grow Up, Tony Phillips is a 2013 comedy film by American director Emily Hagins and her fourth feature film. It was first released on October 31, 2013 at the South by Southwest film festival and stars Tony Vespe as Tony Phillips, a young teenager's love for Halloween. Unlike her prior feature-length films, Grow Up, Tony Phillips does not feature any supernatural elements seen in past films such as Pathogen or My Sucky Teen Romance."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Secret_Life_of_Happy_People"}, "Title": {"type": "literal", "value": "The Secret Life of Happy People"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/St\u00e9phane_Lapointe"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Catherine_de_L\u00e9an|http://dbpedia.org/resource/Gilbert_Sicotte|http://dbpedia.org/resource/Marc_Paquet"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "The Secret Life of Happy People (French: La vie secr\u00e8te des gens heureux) is a 2006 Canadian comedy-drama film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Christal_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Shaukeens"}, "Title": {"type": "literal", "value": "The Shaukeens"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Abhishek_Sharma"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Akshay_Kumar|http://dbpedia.org/resource/Annu_Kapoor|http://dbpedia.org/resource/Anupam_Kher|http://dbpedia.org/resource/Lisa_Haydon|http://dbpedia.org/resource/Piyush_Mishra"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films|http://dbpedia.org/resource/Category:Indian_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "125"}, "Description": {"type": "literal", "value": "The Shaukeens is a 2014 Indian comedy film directed by Abhishek Sharma. The film features Anupam Kher, Annu Kapoor, Piyush Mishra and Lisa Haydon in the lead roles and Akshay Kumar in a supporting role. The project is a remake of the 1982 film Shaukeen directed by Basu Chatterjee, starring Ashok Kumar, Utpal Dutt, A. K. Hangal, Rati Agnihotri and Mithun Chakraborty. Partly shot in Mauritius, The Shaukeens was released on 7 November 2014."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sleeping_Princess_(film)"}, "Title": {"type": "literal", "value": "Sleeping Princess"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/\u00c7a\u011fan_Irmak"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "Sleeping Princess (Turkish: Prensesin Uykusu) is a 2010 Turkish comedy-drama film written and directed by \u00c7a\u011fan Irmak about a librarian whose quiet life is changed by a new neighbour and her 10-year-old daughter. The film, which went on nationwide general release across Turkey on October 19, 2010, had its world premiere on the opening night of the 16th London Turkish Film Festival (November 4\u201318, 2010)."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/A_Very_Harold_&_Kumar_3D_Christmas"}, "Title": {"type": "literal", "value": "A Very Harold & Kumar 3D Christmas"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Todd_Strauss-Schulson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amir_Blumenfeld|http://dbpedia.org/resource/Danneel_Harris|http://dbpedia.org/resource/Danny_Trejo|http://dbpedia.org/resource/John_Cho|http://dbpedia.org/resource/Kal_Penn|http://dbpedia.org/resource/Neil_Patrick_Harris|http://dbpedia.org/resource/Paula_Garc\u00e9s"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "A Very Harold & Kumar 3D Christmas is a 2011 3D stoner comedy Christmas film directed by Todd Strauss-Schulson, written by Jon Hurwitz and Hayden Schlossberg, and starring John Cho, Kal Penn, and Neil Patrick Harris. It is a sequel to the 2008 film Harold & Kumar Escape from Guantanamo Bay and the third installment of the Harold & Kumar series. The plot follows Harold (Cho) and Kumar (Penn), two estranged friends who embark on an adventure to find a new Christmas tree after Kumar destroys the original. The film was released on November 4, 2011, and is the first installment of the series to be shown in 3D."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros._Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Brother's_Justice"}, "Title": {"type": "literal", "value": "Brother's Justice"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_Palmer_(film_maker)|http://dbpedia.org/resource/Dax_Shepard"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dax_Shepard"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "Brother's Justice is a 2010 comedy film written by Dax Shepard. Brother's Justice is a satirical mockumentary about Dax Shepard's transformation from comedian to a silver screen martial arts star. Shepard exploits any and all Hollywood connections on his quest to become the next Chuck Norris. The film represents the unglorified Hollywood film producing process; Dax's constant failure warranted a unique enough plot to win an Austin Film Festival award. Despite its low budget, Brother's Justice was made available on demand. It also stars Ashton Kutcher, Tom Arnold, Bradley Cooper, David Koechner, Jon Favreau, and Nate Tuck."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/All_About_My_Wife"}, "Title": {"type": "literal", "value": "All About My Wife"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Min_Kyu-dong"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Im_Soo-jung_(actress)|http://dbpedia.org/resource/Lee_Sun-kyun|http://dbpedia.org/resource/Ryu_Seung-ryong"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "121"}, "Description": {"type": "literal", "value": "All About My Wife (Hangul: \ub0b4 \uc544\ub0b4\uc758 \ubaa8\ub4e0 \uac83; RR: Nae anaeui modeun geot; MR: Nae anae \u016di mod\u016dn k\u014ft) is a 2012 South Korean romantic comedy directed by Min Kyu-dong, about a timid husband who hires a professional Casanova to seduce his seemingly perfect but fearsome wife, hoping this will make her divorce him. Starring Im Soo-jung, Lee Sun-kyun and Ryu Seung-ryong, the movie was released in theaters on May 17, 2012. It is a remake of the Argentinean film Un novio para mi mujer (\"A Boyfriend for My Wife\")."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Haggard:_The_Movie"}, "Title": {"type": "literal", "value": "Haggard: The Movie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bam_Margera"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bam_Margera|http://dbpedia.org/resource/Brandon_DiCamillo|http://dbpedia.org/resource/Raab_Himself|http://dbpedia.org/resource/Rake_Yohn|http://dbpedia.org/resource/Ryan_Dunn"}, "Published": {"type": "literal", "value": "2003-06-24"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "Haggard: The Movie is a 2003 American independent comedy film based on the true story of how reality television personality Ryan Dunn's promiscuous girlfriend cheated on him. The film was financed, directed and produced by Bam Margera."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Big_Hero_6_(film)"}, "Title": {"type": "literal", "value": "Big Hero 6"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Williams_(director)|http://dbpedia.org/resource/Don_Hall_(filmmaker)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alan_Tudyk|http://dbpedia.org/resource/Damon_Wayans,_Jr.|http://dbpedia.org/resource/Daniel_Henney|http://dbpedia.org/resource/G\u00e9nesis_Rodr\u00edguez|http://dbpedia.org/resource/James_Cromwell|http://dbpedia.org/resource/Jamie_Chung|http://dbpedia.org/resource/Maya_Rudolph|http://dbpedia.org/resource/Ryan_Potter|http://dbpedia.org/resource/Scott_Adsit|http://dbpedia.org/resource/T._J._Miller"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films|http://dbpedia.org/resource/Category:Animated_comedy_films|http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Big Hero 6 is a 2014 American 3D computer-animated superhero-comedy film produced by Walt Disney Animation Studios and released by Walt Disney Pictures. It is the 54th Disney animated feature film. The film is based on the Marvel Comics superhero team of the same name. Directed by Don Hall and Chris Williams, the film tells the story of a young robotics prodigy named Hiro Hamada who forms a superhero team to combat a masked villain. The film features the voices of Scott Adsit, Ryan Potter, Daniel Henney, T. J. Miller, Jamie Chung, Damon Wayans, Jr., G\u00e9nesis Rodr\u00edguez, Alan Tudyk, James Cromwell, and Maya Rudolph. Big Hero 6 is the first Disney animated film to feature Marvel Comics characters, whose parent company was acquired by The Walt Disney Company in 2009. Walt Disney Animation Studios created new software technology to produce the film's animated visuals. Big Hero 6 premiered at the 27th Tokyo International Film Festival on October 23, 2014, and at the Abu Dhabi Film Festival on October 31; it was theatrically released in the Disney Digital 3-D and RealD 3D formats in the United States on November 7, 2014. The film was met with both critical and commercial success, grossing over $657 million worldwide and becoming the highest-grossing animated film of 2014. It won the Academy Award for Best Animated Feature and the Kids' Choice Award for Favorite Animated Movie. It also received nominations for the Annie Award for Best Animated Feature, the Golden Globe Award for Best Animated Feature Film, and the BAFTA Award for Best Animated Film. Big Hero 6 was released on DVD and Blu-ray Disc on February 24, 2015."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Size_Zero_(film)"}, "Title": {"type": "literal", "value": "Inji Iduppazhagi / Size Zero"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Prakash_Kovelamudi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Akhil_(actor)|http://dbpedia.org/resource/Anushka_Shetty|http://dbpedia.org/resource/Pavani_Gangireddy|http://dbpedia.org/resource/Prakash_Raj|http://dbpedia.org/resource/Sonal_Chauhan|http://dbpedia.org/resource/Urvashi_(actress)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_romantic_comedy_films|http://dbpedia.org/resource/Category:Romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "125"}, "Description": {"type": "literal", "value": "Size Zero, titled Inji Iduppazhagi in Tamil (English: One Inch Waist Beauty), is an 2015 Indian Tamil and Telugu bilingual romantic comedy film directed by Prakash Kovelamudi. The film was simultaneously made in Telugu and Tamil. Produced by Prasad V Potluri, the film features Anushka Shetty in the lead role while Arya, Urvashi, Prakash Raj and Sonal Chauhan play supporting roles."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/PVP_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Maheshinte_Prathikaaram"}, "Title": {"type": "literal", "value": "Maheshinte Prathikaaram"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dileesh_Pothan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alencier_Ley_Lopez|http://dbpedia.org/resource/Anusree|http://dbpedia.org/resource/Aparna_Balamurali|http://dbpedia.org/resource/Fahadh_Faasil|http://dbpedia.org/resource/Soubin_Shahir"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Comedy_films_based_on_actual_events|http://dbpedia.org/resource/Category:Indian_comedy-drama_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "Maheshinte Prathikaaram (English: The Revenge of Mahesh) is a 2016 Indian Malayalam-language comedy-drama film directed by Dileesh Pothan (in his directorial debut) and produced by Aashiq Abu. The film stars Fahadh Faasil, Anusree, Alencier Ley Lopez, Aparna Balamurali, and Soubin Shahir. Written by Syam Pushkaran, its story is based on an incident in the life of Thampan Purushan from Thuravoor, Cherthala. Shyju Khalid was the film's cinematographer, and its soundtrack and score were composed by Bijibal. The film tells the story of Mahesh Bhavana (Faasil), a photographer, who attempts to defuse a conflict between his friend Crispin (Shahir) and a group of youngsters passing through their village, and is knocked to the ground. Defeated in the tussle and unable to fight back, he is embarrassed in front of his neighbours. Mahesh publicly vows that he will not wear his slippers again until he has avenged the humiliation. Maheshinte Prathikaaram's development began in 2013, when Pothan was working as an associate director for Abu (who was directing Idukki Gold, co-written by Pushkaran). Pushkaran suggested a story idea to Pothan which was based on an incident in his native village. At Pothan's insistence, Pushkaran wrote the first draft of a screenplay that year and Abu later became interested in producing the film. Production was scheduled to commence from December 2014 after completing the casting process. Due to scheduling conflicts with Faasil's other projects, it was postponed to August 2015. Principal photography began in early August in Idukki and nearby locations, where it was predominantly filmed. Shooting was completed in late October. The film was released in Kerala on 5 February 2016, in the rest of India on 12 February and globally on 26 February. Maheshinte Prathikaaram was a commercial success, grossing \u20b917.35 crore (\u20b9173.5 million) at the Kerala box office. The performances of its cast, humour, music, cinematography, editing, and screenplay were praised by critics. The film was released on Blu-ray and DVD on 10 May 2016."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/National_Lampoon's_Vacation_(film_series)"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Amy_Heckerling|http://dbpedia.org/resource/Harold_Ramis|http://dbpedia.org/resource/Jeremiah_Chechik|http://dbpedia.org/resource/John_Francis_Daley|http://dbpedia.org/resource/Jonathan_Goldstein_(screenwriter)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Beverly_D'Angelo|http://dbpedia.org/resource/Chevy_Chase"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Comedy_films_by_series"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The National Lampoon's Vacation film series is a comedy film series initially based on John Hughes' short story \"Vacation '58\" that was originally published by National Lampoon magazine. The series is distributed by Warner Bros. and consists of seven films, two of which are not sponsored by National Lampoon. In recent years, the series has been the inspiration for various advertising campaigns featuring some of the original cast members. The series portrays the misadventures of the Griswold family, whose attempts to enjoy vacations and holidays are plagued with continual disasters and strangely embarrassing predicaments."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Wild_Child_(film)"}, "Title": {"type": "literal", "value": "Wild Child"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nick_Moore_(film_director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aidan_Quinn|http://dbpedia.org/resource/Alex_Pettyfer|http://dbpedia.org/resource/Emma_Roberts|http://dbpedia.org/resource/Juno_Temple|http://dbpedia.org/resource/Kimberley_Nixon|http://dbpedia.org/resource/Linzey_Cocker|http://dbpedia.org/resource/Natasha_Richardson|http://dbpedia.org/resource/Sophie_Wu"}, "Published": {"type": "literal", "value": "2008-08-15"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:British_comedy-drama_films|http://dbpedia.org/resource/Category:British_comedy_films|http://dbpedia.org/resource/Category:French_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy_films|http://dbpedia.org/resource/Category:Teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Wild Child is a 2008 British-French-American teen romantic comedy film starring Emma Roberts, Georgia King, Alex Pettyfer and Natasha Richardson. Wild Child is Richardson's last on-screen film appearance."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/May_(film)"}, "Title": {"type": "literal", "value": "May"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lucky_McKee"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Angela_Bettis|http://dbpedia.org/resource/Anna_Faris|http://dbpedia.org/resource/James_Duval|http://dbpedia.org/resource/Jeremy_Sisto"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "May is a 2002 American psychological horror film written and directed by Lucky McKee in his directorial debut. Starring Angela Bettis, Jeremy Sisto, Anna Faris, and James Duval, the film follows a lonely young woman (Bettis) traumatized by a difficult childhood, and her increasingly desperate attempts to connect with the people around her."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lions_Gate_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Shaandaar"}, "Title": {"type": "literal", "value": "Shaandaar"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Vikas_Bahl"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alia_Bhatt|http://dbpedia.org/resource/Shahid_Kapoor"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "144"}, "Description": {"type": "literal", "value": "Shaandaar (tr. Magnificent) is an Indian romantic-comedy film, directed by Vikas Bahl and produced by Anurag Kashyap and Vikramaditya Motwane. It stars Alia Bhatt and Shahid Kapoor in lead roles, with Pankaj Kapur and Sanjay Kapoor in supporting roles. The Times of India described Shaandar as \"India's first destination wedding film\". Principal photography began in August 2014 in Leeds, and the film released on 22 October 2015."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Star_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ultra_Reinforcement"}, "Title": {"type": "literal", "value": "Ultra Reinforcement"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lam_Chi-chung"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cheung_Tat-ming|http://dbpedia.org/resource/Dylan_Kuo|http://dbpedia.org/resource/Jing_Tian|http://dbpedia.org/resource/Wallace_Huo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Chinese_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Ultra Reinforcement is a 2012 Chinese historical romantic comedy film directed and written by Lam Chi-chung, starring Wallace Huo, Jing Tian, Dylan Kuo, and Cheung Tat-ming. The film was released in China on 24 January 2012."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bran_Nue_Dae_(film)"}, "Title": {"type": "literal", "value": "Bran Nue Dae"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rachel_Perkins"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ernie_Dingo|http://dbpedia.org/resource/Geoffrey_Rush|http://dbpedia.org/resource/Jessica_Mauboy|http://dbpedia.org/resource/Missy_Higgins|http://dbpedia.org/resource/Rocky_McKenzie"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_musical_comedy_films|http://dbpedia.org/resource/Category:Australian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Bran Nue Dae is a 2009 Australian musical comedy-drama film directed by Rachel Perkins and written by Perkins and Reg Cribb. A feature film adaptation of the 1990 stage musical Bran Nue Dae by Jimmy Chi, the film tells the story of the coming of age of an Aboriginal Australian teenager on a road trip in the late 1960s."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Freestyle_Releasing|http://dbpedia.org/resource/Roadshow_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Film_Victoria|http://dbpedia.org/resource/Robyn_Kershaw|http://dbpedia.org/resource/Screen_Australia"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Where_Do_We_Go_Now%3F"}, "Title": {"type": "literal", "value": "Where Do We Go Now?"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nadine_Labaki"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "Where Do We Go Now? (Arabic: \u0648\u0647\u0644\u0651\u0623 \u0644\u0648\u064a\u0646\u061f w halla' la wayn\u200e\u200e, French: Et maintenant, on va o\u00f9) is a 2011 film by Lebanese director Nadine Labaki. The film premiered during the 2011 Cannes Film Festival as part of Un Certain Regard . The film was selected to represent Lebanon for the 84th Academy Awards, but it did not make the final shortlist. The film won the People's Choice Award at the 2011 Toronto International Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/American_High_School_(film)"}, "Title": {"type": "literal", "value": "American High School"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sean_Patrick_Cannon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alex_Murrel|http://dbpedia.org/resource/Aubrey_O'Day|http://dbpedia.org/resource/Brian_Drolet|http://dbpedia.org/resource/Davida_Williams|http://dbpedia.org/resource/Jillian_Murray|http://dbpedia.org/resource/Martin_Klebba|http://dbpedia.org/resource/Talan_Torriero"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "American High School is a 2009 direct-to-DVD coming-of-age romantic comedy film written and directed by Sean Patrick Cannon and starring Jillian Murray, Aubrey O'Day, Talan Torriero and Martin Klebba. It was released on April 7, 2009 in the US. Trini Lopez makes a guest appearance as the performer at the Prom."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Anchor_Bay_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/George_in_Civvy_Street"}, "Title": {"type": "literal", "value": "George in Civvy Street"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Henry|http://dbpedia.org/resource/Marcel_Varnel"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/George_Formby|http://dbpedia.org/resource/Ian_Fleming_(actor)|http://dbpedia.org/resource/Ronald_Shiner|http://dbpedia.org/resource/Rosalyn_Boulter"}, "Published": {"type": "literal", "value": "1946-07-08"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1940s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "George in Civvy Street is a 1946 British comedy film directed and produced by Marcel Varnel and stars George Formby, Ronald Shiner, and Ian Fleming. It was made by the British subsidiary of Columbia Pictures. This was Formby's last big screen appearance. After the film flopped at the box office, he resumed his career in the music hall. The working title for the film was \"Remember the Unicorn\"."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures_Corporation"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Can_of_Worms_(film)"}, "Title": {"type": "literal", "value": "Can of Worms"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Paul_Schneider_(director)"}, "Author": {"type": "literal", "value": "http://dbpedia.org/resource/Kathy_Mackel"}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Wylie|http://dbpedia.org/resource/Erika_Christensen|http://dbpedia.org/resource/Michael_Shulman_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Can of Worms is a science fiction comedy film and is part of the Disney Channel Original Movie lineup. It premiered on Disney Channel on April 10, 1999, and is based on the novel of the same name by Kathy Mackel, which was a Young Reader's Choice Nominee in 2002 and a nominee for the 2001 Rhode Island Children's Book Award."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Disney-ABC_Domestic_Television"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Park_(2007_film)"}, "Title": {"type": "literal", "value": "The Park"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Yin_Lichuan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Li_Kezhu|http://dbpedia.org/resource/Wang_Deshun|http://dbpedia.org/resource/Wang_Xuebing|http://dbpedia.org/resource/Xu_Tao"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "The Park is the 2007 directorial debut of Chinese writer-director Yin Lichuan. Produced by Filmblog Media (which also handled international distribution) and Beijing Wide Angle Lens, the comedy-drama film is part of producer Lola Zhang's Yunnan New Film Project, ten proposed films by female Chinese directors. The Park is the second of the ten to be released, after Wang Fen's The Case (2007). Each of the films was required to take place in the southern province of Yunnan. The Park tells the story of a father's reconnection with his daughter after he moves in with her in the provincial capital of Kunming. Upset over her relationship with a younger man with no job prospects, he begins to tout her name in a local park to other elderly parents looking to marry off their children."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Filmblog_Media"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Live_Feed"}, "Title": {"type": "literal", "value": "Live Feed"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ryan_Nicholson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "81"}, "Description": {"type": "literal", "value": "Live Feed is a 2006 horror film directed by Ryan Nicholson and starring Kevan Ohtsji, Taayla Markell and Stephen Chang."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Swinging_with_the_Finkels"}, "Title": {"type": "literal", "value": "Swinging with the Finkels"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jonathan_Newman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Mandy_Moore|http://dbpedia.org/resource/Martin_Freeman|http://dbpedia.org/resource/Melissa_George"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Swinging with the Finkels is a 2011 British comedy film directed by Jonathan Newman, starring Mandy Moore, Martin Freeman and Melissa George. A wealthy London couple decide to take up \"swinging\" (as in \"partner swapping\") in an attempt to save their struggling marriage. It was picked up by Freestyle Releasing and had a limited release date in the United States on 26 August 2011."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Freestyle_Releasing"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Our_Futures"}, "Title": {"type": "literal", "value": "Our Futures"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/R\u00e9mi_Bezan\u00e7on"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/M\u00e9lanie_Bernier|http://dbpedia.org/resource/Pierre_Rochefort|http://dbpedia.org/resource/Pio_Marma\u00ef"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Our Futures (French: Nos futurs) is a 2015 French comedy-drama film directed by R\u00e9mi Bezan\u00e7on. The film stars Pio Marma\u00ef, Pierre Rochefort and M\u00e9lanie Bernier."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Gaumont_Film_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Brief_Interviews_with_Hideous_Men_(film)"}, "Title": {"type": "literal", "value": "Brief Interviews with Hideous Men"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/John_Krasinski"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Julianne_Nicholson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "Brief Interviews with Hideous Men is a 2009 American comedy-drama film written, produced, and directed by John Krasinski, based on a short story collection of the same name by David Foster Wallace."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/For_a_Good_Time,_Call..."}, "Title": {"type": "literal", "value": "For a Good Time, Call..."}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jamie_Travis"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ari_Graynor|http://dbpedia.org/resource/James_Wolk|http://dbpedia.org/resource/Justin_Long|http://dbpedia.org/resource/Lauren_Miller|http://dbpedia.org/resource/Mark_Webber_(actor)|http://dbpedia.org/resource/Mimi_Rogers|http://dbpedia.org/resource/Nia_Vardalos|http://dbpedia.org/resource/Stephanie_Beard"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85|87"}, "Description": {"type": "literal", "value": "For a Good Time, Call... is a 2012 American comedy film directed by Jamie Travis. It stars Ari Graynor, Lauren Miller, Justin Long, Sugar Lyn Beard, Mimi Rogers, Nia Vardalos, Mark Webber, and James Wolk. The film premiered at the Sundance Film Festival in January, 2012 where it secured a worldwide distribution deal with Focus Features. It was released theatrically in the United States on August 31, 2012."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Focus_Features"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Love_Is_in_the_Air_(2005_film)"}, "Title": {"type": "literal", "value": "Love Is in the Air"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/R\u00e9mi_Bezan\u00e7on"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gilles_Lellouche|http://dbpedia.org/resource/Marion_Cotillard|http://dbpedia.org/resource/Vincent_Elbaz"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "Love Is in the Air (French: Ma vie en l'air) is a 2006 French comedy film directed by R\u00e9mi Bezan\u00e7on."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Viva_l'Italia"}, "Title": {"type": "literal", "value": "Viva l'Italia"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Massimiliano_Bruno"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ambra_Angiolini|http://dbpedia.org/resource/Raoul_Bova"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Viva l'Italia is a 2012 Italian comedy film written and directed by Massimiliano Bruno."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Fubar_2"}, "Title": {"type": "literal", "value": "FUBAR 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Dowse"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "FUBAR 2 (also known as FUBAR: Balls to the Wall or FUBAR: Gods of Blunder) is a 2010 comedy film and the sequel to the 2002 cult film FUBAR. It was released on October 1, 2010 in Canada. It made its world premiere by opening the Midnight Madness program at the 2010 Toronto International Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Alliance_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Extreme_Adventures_of_Super_Dave"}, "Title": {"type": "literal", "value": "The Extreme Adventures of Super Dave"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Peter_MacDonald_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bob_Einstein"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "The Extreme Adventures of Super Dave is a 2000 comedy film starring the comedian Bob Einstein as Super Dave Osborne. The movie went direct to DVD."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Vampires_of_Bloody_Island"}, "Title": {"type": "literal", "value": "The Vampires of Bloody Island"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Allin_Kempthorne"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "The Vampires of Bloody Island is a 2009 British comedy horror film directed by Allin Kempthorne and starring his wife Pamela Kempthorne who had previously appeared in Harry Potter and the Chamber of Secrets and Shaun of the Dead. The film also starred Oliver Gray, John Snelling and Leon Hamilton. The film was released in the UK at the cinema in August 2009. It was released on DVD in January 2010 several weeks ahead of its planned February release date due to an email campaign organised by fans of the film. It was released on DVD in the US in June 2010. The Vampires of Bloody Island features music from the bands Inkubus Sukkubus, Vampire Division, Fever, Theatres des Vampires, The Suburban Vamps and Corpse Nocturna. The title song is Place of the Dead by Vampire Division, which reached number one in the Goth Soundclick charts."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/My_Little_Pony:_Equestria_Girls_\u2013_Rainbow_Rocks"}, "Title": {"type": "literal", "value": "My Little Pony: Equestria Girls \u2013 Rainbow Rocks"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jayson_Thiessen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andrea_Libman|http://dbpedia.org/resource/Ashleigh_Ball|http://dbpedia.org/resource/Cathy_Weseluck|http://dbpedia.org/resource/Diana_Kaarina|http://dbpedia.org/resource/Kazumi_Evans|http://dbpedia.org/resource/Maryke_Hendrikse|http://dbpedia.org/resource/Rebecca_Shoichet|http://dbpedia.org/resource/Tabitha_St._Germain|http://dbpedia.org/resource/Tara_Strong"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "71"}, "Description": {"type": "literal", "value": "My Little Pony: Equestria Girls \u2013 Rainbow Rocks is a 2014 American-Canadian animated fantasy musical film produced by DHX Media's 2D animation studio in Vancouver, Canada for Hasbro Studios in the United States, as a sequel to 2013's My Little Pony: Equestria Girls. The film is a part of music-themed Rainbow Rocks lineup, launched in the same year by Hasbro as a second installment in the Equestria Girls toy line and media franchise which is a spin-off of My Little Pony. Written by Meghan McCarthy and directed by Jayson Thiessen, the film premiered in select theaters across the United States and Canada on September 27, 2014, which was followed by broadcast on Discovery Family, a joint venture between Discovery Communications and Hasbro, on October 17, 2014, and then a home media release on October 28, 2014. Like the first film, Rainbow Rocks re-envisions the main characters of parent franchise, normally ponies, as teenage human characters in a high school setting. Set between the television series' fourth and fifth seasons, the film's plot involves Twilight Sparkle returning to Canterlot High School to compete in a Battle of the Bands alongside her human friends \u2013 including Sunset Shimmer, reformed from her previous state \u2013 to save the school from a band of sirens from Equestria. Critical reviews have usually been positive, with the film being described as \"far superior\" to the first installment. Within the franchise, a third installment, entitled Friendship Games, received a television network premiere on Discovery Family on September 26, 2015. A fourth film, subtitled Legend of Everfree, was released on Netflix on October 1, 2016."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Screenvision"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Hasbro_Studios|http://dbpedia.org/resource/Studio_B_Productions"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Igor_(film)"}, "Title": {"type": "literal", "value": "Igor"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tony_Leondis"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Arsenio_Hall|http://dbpedia.org/resource/Christian_Slater|http://dbpedia.org/resource/Eddie_Izzard|http://dbpedia.org/resource/Jay_Leno|http://dbpedia.org/resource/Jennifer_Coolidge|http://dbpedia.org/resource/John_Cleese|http://dbpedia.org/resource/John_Cusack|http://dbpedia.org/resource/Molly_Shannon|http://dbpedia.org/resource/Sean_Hayes_(actor)|http://dbpedia.org/resource/Steve_Buscemi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Fantasy-comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Igor is a 2008 French-American computer-animated fantasy comedy family film about the stock character Igor who dreams of winning first place at the Evil Science Fair. It was produced by Exodus Film Group and animated by Sparx Animation Studios. Metro-Goldwyn-Mayer released it on September 19, 2008, and it grossed $30.7 million on a $25 million budget. It is MGM's first fully computer-animated film. It was directed by Tony Leondis and written by Chris McKenna, John Hoffman and Dimitri Toscas. The film features the voices of John Cusack, Molly Shannon, Steve Buscemi, Sean Hayes, Jennifer Coolidge, Arsenio Hall, Eddie Izzard, Jay Leno, Christian Slater and John Cleese. The film received an Annie Award nomination for Character Design in an Animated Feature Production."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Metro-Goldwyn-Mayer"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tiny_Times_4"}, "Title": {"type": "literal", "value": "Tiny Times 4"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Guo_Jingming"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amber_Kuo|http://dbpedia.org/resource/Bea_Hayden|http://dbpedia.org/resource/Chen_Xuedong|http://dbpedia.org/resource/Xie_Yilin|http://dbpedia.org/resource/Yang_Mi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Chinese_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "Tiny Times 4 (Chinese: \u5c0f\u65f6\u4ee34\uff1a\u7075\u9b42\u5c3d\u5934) is a 2015 Chinese comedy romance film directed by Guo Jingming. Originally scheduled for release in February 2015; it was delayed to July 2015. Ko Chen-tung's scenes were edited out from the film due to his drug use in September 2014."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Me,_Myself_and_Her"}, "Title": {"type": "literal", "value": "Me, Myself and Her"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Maria_Sole_Tognazzi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Fabrizio_Bentivoglio|http://dbpedia.org/resource/Margherita_Buy"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Italian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Me, Myself and Her (Italian: Io e lei Italian pronunciation: [\u02c8i\u02d0o e l\u025bi]) is a 2015 comedy-drama film written and directed by Maria Sole Tognazzi and starring Margherita Buy and Sabrina Ferilli."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Waiting_for_the_Messiah"}, "Title": {"type": "literal", "value": "Waiting for the Messiah"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Daniel_Burman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Daniel_Hendler|http://dbpedia.org/resource/Enrique_Pi\u00f1eyro_(actor)|http://dbpedia.org/resource/H\u00e9ctor_Alterio"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Waiting for the Messiah (Spanish: Esperando al mes\u00edas) is a 2000 Argentine, Spanish, and Italian comedy drama film directed by Daniel Burman. The film features Daniel Hendler, Enrique Pi\u00f1eyro, H\u00e9ctor Alterio, Melina Petriella, Stefania Sandrelli, Imanol Arias and Dolores Fonzi, among others. The film won many awards including Best Film at the Lleida Latin-American Film Festival in Spain. The film takes place in a Jewish community of Buenos Aires."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Aqua_Films|http://dbpedia.org/resource/BD_Cine|http://dbpedia.org/resource/TLA_Releasing"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/3_Hari_Untuk_Selamanya"}, "Title": {"type": "literal", "value": "3 Hari Untuk Selamanya"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Riri_Riza"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:Indonesian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "3 Hari Untuk Selamanya (Three Days to Forever) is a 2007 Indonesian comedy-drama film directed by Riri Riza. The story is about a young man and a woman who drive from Jakarta to Jogjakarta. During the trip they discover many things and discuss sex, marriage and religion. The film had a successful run at several international film festivals, winning best direction (Riri Riza) at the Brussels International Independent Film Festival 2008 and best Indonesian film at the Jakarta International Film Festival 2007."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Zombie_Night_(2003_film)"}, "Title": {"type": "literal", "value": "Zombie Night"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_J._Francis"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:Zombie_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Zombie Night is a 2003 Canadian horror film directed by David J. Francis, written by Francis and Amber Lynn Francis, and starring Danny Ticknovich and Sandra Segovic."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/My_Little_Pony:_Equestria_Girls_(film)"}, "Title": {"type": "literal", "value": "My Little Pony: Equestria Girls"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jayson_Thiessen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andrea_Libman|http://dbpedia.org/resource/Ashleigh_Ball|http://dbpedia.org/resource/Cathy_Weseluck|http://dbpedia.org/resource/Rebecca_Shoichet|http://dbpedia.org/resource/Tabitha_St._Germain|http://dbpedia.org/resource/Tara_Strong"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "70"}, "Description": {"type": "literal", "value": "My Little Pony: Equestria Girls is a 2013 American-Canadian animated fantasy musical film produced by DHX Media's 2D animation studio in Vancouver, Canada for Hasbro Studios in the United States. The film is a part of Hasbro's toy line and media franchise of the same name that launched in the same year, which is itself an anthropomorphized spin-off of the 2010 relaunch of the main My Little Pony franchise, and also commemorates the thirtieth anniversary of the launch of the original My Little Pony toy line. Written by Meghan McCarthy and directed by Jayson Thiessen, the film premiered at the Los Angeles Film Festival on June 15, 2013, followed by limited release in the United States and Canada on June 16, 2013, with a home media release on August 6, 2013. The film re-envisions the main characters of parent franchise, normally ponies, as teenage human characters in a high school setting. Set between the third and fourth seasons of My Little Pony: Friendship Is Magic, the film's plot involves the pony Twilight Sparkle pursuing her stolen crown into an alternate world where she transforms into a human, teenage girl. While learning how to behave as a human, Twilight encounters human counterparts of her pony friends, who help her in her search for her crown. Other films in the franchise include a sequel, Rainbow Rocks, which was released on September 27, 2014, at various theaters across the United States and Canada, a third film, Friendship Games, which premiered on American and Canadian television a year later on September 26, 2015, and a fourth installment, Legend of Everfree, which was released on Netflix on October 1, 2016."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Screenvision"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Hasbro_Studios|http://dbpedia.org/resource/Studio_B_Productions"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Death_and_Return_of_Superman_(film)"}, "Title": {"type": "literal", "value": "The Death and Return of Superman"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Max_Landis"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Elden_Henson|http://dbpedia.org/resource/Elijah_Wood|http://dbpedia.org/resource/Mandy_Moore|http://dbpedia.org/resource/Max_Landis"}, "Published": {"type": "literal", "value": "2012-02-03"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Death and Return of Superman is a short film released in 2012 on YouTube, by Chronicle writer Max Landis. The film, as its title implies, is a monologue about \"The Death and Return of Superman\" storyline from DC Comics over parody-like sketches. The film was produced by Bryan Basham, creator of COPS: Skyrim."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Think_Like_a_Man_Too"}, "Title": {"type": "literal", "value": "Think Like a Man Too"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tim_Story"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "Think Like a Man Too is a 2014 romantic comedy film directed by Tim Story and the sequel to Story's 2012 film Think Like a Man based on Steve Harvey's book Act Like a Lady, Think Like a Man. The script is written by David A. Newman and Keith Merryman. The film was released on June 20, 2014. The cast from the first film returned to reprise their roles."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Screen_Gems"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Pitch_Perfect_2"}, "Title": {"type": "literal", "value": "Pitch Perfect 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Elizabeth_Banks"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_DeVine|http://dbpedia.org/resource/Anna_Camp|http://dbpedia.org/resource/Anna_Kendrick|http://dbpedia.org/resource/Ben_Platt_(actor)|http://dbpedia.org/resource/Brittany_Snow|http://dbpedia.org/resource/Hailee_Steinfeld|http://dbpedia.org/resource/John_Michael_Higgins|http://dbpedia.org/resource/Katey_Sagal|http://dbpedia.org/resource/Rebel_Wilson|http://dbpedia.org/resource/Skylar_Astin"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_musical_comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "Pitch Perfect 2 is a 2015 American comedy film directed and co-produced by Elizabeth Banks and written by Kay Cannon. It is a sequel to the 2012 film Pitch Perfect. The film centers on the fictional Barden University and The Bellas, an all-female a cappella singing group. The film features an ensemble cast, including Anna Kendrick, Rebel Wilson, Hailee Steinfeld, Brittany Snow, Alexis Knapp, Hana Mae Lee, Ester Dean, Chrissie Fit, Kelley Jakle and Shelley Regner as The Bellas. It was released on May 15, 2015 by Universal Pictures. The film grossed over $287 million and surpassed the total gross of the original film ($115.4 million) in five days, and also became the highest-grossing music comedy film of all-time, overtaking School of Rock ($131.3 million). A sequel, Pitch Perfect 3, is set to be released on December 22, 2017."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Eating_Out_5:_The_Open_Weekend"}, "Title": {"type": "literal", "value": "Eating Out: The Open Weekend"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Q._Allan_Brocka"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aaron_Milo|http://dbpedia.org/resource/Chris_Puckett|http://dbpedia.org/resource/Chris_Salvatore"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "Eating Out 5: The Open Weekend (2012) is the fifth film in the Eating Out franchise. The film is co-written (with Phillip J. Bartell) and directed by Q. Allan Brocka. Only Rebekah Kochan has appeared in all five films."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Action_Jackson_(2014_film)"}, "Title": {"type": "literal", "value": "Action Jackson"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Prabhu_Deva"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ajay_Devgn|http://dbpedia.org/resource/Anandaraj|http://dbpedia.org/resource/Kunaal_Roy_Kapur|http://dbpedia.org/resource/Manasvi_Mamgai|http://dbpedia.org/resource/Sonakshi_Sinha|http://dbpedia.org/resource/Yami_Gautam"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "144"}, "Description": {"type": "literal", "value": "Action Jackson is a 2014 Indian action comedy film directed by Prabhu Deva and produced by Gordhan Tanwani and Sunil Lulla. It features Ajay Devgn in dual roles, alongside Sonakshi Sinha, Yami Gautam and Manasvi Mamgai as the female leads. Kunaal Roy Kapur appears in a supporting role with Anandaraj portraying the main antagonist. Prabhu Deva and Ajay Devgn have paired for the first time with this film. Action Jackson released on 5 December 2014."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Eros_International"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dilwale_(2015_film)"}, "Title": {"type": "literal", "value": "Dilwale"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rohit_Shetty"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kajol|http://dbpedia.org/resource/Kriti_Sanon|http://dbpedia.org/resource/Shah_Rukh_Khan|http://dbpedia.org/resource/Varun_Dhawan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_action_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "154"}, "Description": {"type": "literal", "value": "Dilwale (translation: The Big Hearted) is a 2015 Indian romantic action comedy film directed by Rohit Shetty, and produced by Gauri Khan and Rohit Shetty under the banner of Red Chillies Entertainment and Rohit Shetty Productions respectively. The film stars Shah Rukh Khan, Kajol, Varun Dhawan, and Kriti Sanon in lead roles, with Johnny Lever and Varun Sharma in supporting roles. Dilwale has grossed over \u20b9372 crore (US$55 million) worldwide, becoming the second highest-grossing film starring Shah Rukh Khan after Chennai Express, also directed by Shetty. The song \"Gerua\" performed well in the charts. However, Khan expressed disappointment with the box office collections and the film's performance, especially in India, as did Kajol, who stated that she regretted doing the film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Red_Chillies_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Red_Chillies_Entertainment"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Yes,_My_Love"}, "Title": {"type": "literal", "value": "Yes, My Love"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Fernando_M\u00e9ndez"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Lilia_Michel|http://dbpedia.org/resource/Pedro_Infante|http://dbpedia.org/resource/Rafael_Baled\u00f3n"}, "Published": {"type": "literal", "value": "1953-05-14"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1950s_comedy_films|http://dbpedia.org/resource/Category:Mexican_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Yes, My Love (Spanish: S\u00ed, mi vida) is a 1953 Mexican musical comedy film directed by Fernando M\u00e9ndez and starring Lilia Michel, Rafael Baled\u00f3n and Pedro Infante."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Comet_(film)"}, "Title": {"type": "literal", "value": "Comet"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sam_Esmail"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Emmy_Rossum|http://dbpedia.org/resource/Justin_Long"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Comet is a 2014 American romance comedy drama film directed and written by Sam Esmail. The film stars Emmy Rossum and Justin Long. The movie had its world premiere at Los Angeles Film Festival on June 13, 2014. The film was released on December 5, 2014 by IFC Films."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/21_&_Over_(film)"}, "Title": {"type": "literal", "value": "21 & Over"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jon_Lucas|http://dbpedia.org/resource/Scott_Moore_(screenwriter)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Justin_Chon|http://dbpedia.org/resource/Miles_Teller|http://dbpedia.org/resource/Sarah_Wright|http://dbpedia.org/resource/Skylar_Astin"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "21 & Over is a 2013 American comedy film written and directed by Jon Lucas and Scott Moore in their directorial debut. The film stars Justin Chon, Miles Teller, and Skylar Astin."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Relativity_Media"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lake_Placid_(film_series)"}, "Title": {"type": "literal", "value": "Lake Placid"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Don_Michael_Paul|http://dbpedia.org/resource/Griff_Furst|http://dbpedia.org/resource/Steve_Miner"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Comedy_films_by_series"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "355"}, "Description": {"type": "literal", "value": "Lake Placid is an American series of monster horror/comedy films which started with Lake Placid in 1999 and was followed by three made for television sequels, Lake Placid 2 (2007), Lake Placid 3 (2010) and Lake Placid: The Final Chapter (2012), as well as a made for television crossover film with the Anaconda series, titled Lake Placid vs. Anaconda (2015). Each installment revolves around the presence of giant, 30-foot-long man-eating crocodiles in the fictional location of Black Lake, Maine, and the efforts of various groups to capture or destroy the creatures. All of the films reference members of the fictitious \"Bickerman\" family."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox|http://dbpedia.org/resource/Stage_6_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Watch_Out_(film)"}, "Title": {"type": "literal", "value": "Watch Out"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Steve_Balderson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Matt_Riddlehoover"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Watch Out is a 2008 film directed by Steve Balderson (Firecracker) based on the novel by Joseph Suglia and starring Matt Riddlehoover. Though the story is set in Benton Harbor, Michigan, the film was shot guerrilla-style, without permits, in March and April on location in Wamego, Kansas. Watch Out premiered at the Raindance Film Festival in London, where it was nominated for Best International Feature. It was released theatrically in the \"Stop Turning Me On\" world tour in New York (Coney Island Film Festival), Nashville, Chicago, Washington D.C (Reel Affirmations Festival), Seattle (Lesbian & Gay Film Festival), San Francisco, Asheville, Charlottesville (Virginia Film Festival), Kansas City, Lawrence KS, Austin (Alamo Drafthouse), and Los Angeles."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Inseparable_(film)"}, "Title": {"type": "literal", "value": "Inseparable"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dayyan_Eng"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Daniel_Wu|http://dbpedia.org/resource/Gong_Beibi|http://dbpedia.org/resource/Kenneth_Tsang_Kong|http://dbpedia.org/resource/Kevin_Spacey|http://dbpedia.org/resource/Peter_Stormare|http://dbpedia.org/resource/Yan_Ni"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Inseparable (Chinese: \u5f62\u5f71\u4e0d\u79bb) is a 2011 Chinese psychological comedy-drama film written and directed by Dayyan Eng, and stars Kevin Spacey (whose involvement made him the first Hollywood star to headline a 100% Chinese-funded film), Gong Beibi and Daniel Wu."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Oy_Vey!_My_Son_Is_Gay!!"}, "Title": {"type": "literal", "value": "Oy Vey! My Son Is Gay!!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Evgeny_Afineevsky"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bruce_Vilanch|http://dbpedia.org/resource/Carmen_Electra|http://dbpedia.org/resource/Jai_Rodriguez|http://dbpedia.org/resource/John_Lloyd_Young|http://dbpedia.org/resource/Lainie_Kazan|http://dbpedia.org/resource/Saul_Rubinek|http://dbpedia.org/resource/Vincent_Pastore"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Oy Vey! My Son Is Gay!! is a 2009 comedy film directed, written, and produced by Evgeny Afineevsky which stars Lainie Kazan, Saul Rubinek, Vincent Pastore, John Lloyd Young, Jai Rodriguez, Bruce Vilanch, and Carmen Electra. The theme song, \"The Word Is Love\" is written by Desmond Child and performed by Lulu. \"The Word is Love\" was contending for nominations in the Original Song category for the 82nd Academy Awards."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Saugatuck_Cures"}, "Title": {"type": "literal", "value": "Saugatuck Cures"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Matthew_Ladensack"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Judith_Chapman|http://dbpedia.org/resource/Max_Adler_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Saugatuck Cures is an American LGBT comedy-drama film. It was directed and produced by Matthew Ladensack, written by Jay Paul Deratany, and stars Max Adler, Danny Mooney, and Judith Chapman. The film premiered at the 2014 Palm Springs International LGBT Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Fido_(film)"}, "Title": {"type": "literal", "value": "Fido"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Currie_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Billy_Connolly|http://dbpedia.org/resource/Carrie-Anne_Moss|http://dbpedia.org/resource/Dylan_Baker|http://dbpedia.org/resource/Henry_Czerny|http://dbpedia.org/resource/K'Sun_Ray|http://dbpedia.org/resource/Tim_Blake_Nelson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:Canadian_comedy_films|http://dbpedia.org/resource/Category:Zombie_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Fido is a 2006 Canadian zombie comedy film directed by Andrew Currie and written by Robert Chomiak, Currie, and Dennis Heaton from an original story by Heaton. It was produced by Blake Corbet, Mary Anne Waterhouse, Trent Carlson and Kevin Eastwood of Anagram Pictures, and released in the United States by Lions Gate Entertainment."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lions_Gate_Entertainment|http://dbpedia.org/resource/Roadside_Attractions|http://dbpedia.org/resource/TVA_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Salt_N'_Pepper"}, "Title": {"type": "literal", "value": "Salt N' Pepper"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Aashiq_Abu"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Asif_Ali_(actor)|http://dbpedia.org/resource/Baburaj_(actor)|http://dbpedia.org/resource/Lal_(actor)|http://dbpedia.org/resource/Mythili|http://dbpedia.org/resource/Shweta_Menon"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "118"}, "Description": {"type": "literal", "value": "Salt N' Pepper is a 2011 Indian Malayalam romantic comedy film directed by Aashiq Abu and produced for Lucsam Creations by Sadanandan Rangorath. The film stars Lal, Asif Ali, Shweta Menon and Mythili in the lead roles while Baburaj and Vijayaraghavan play supporting roles. Cinematography is by Shyju Kahild, whose debut was Traffic (2011). The screenplay was written by Syam Pushkaran and Dileesh Nair. The film follows the love stories of two couples. The main characters are: Kalidasan (Lal), an archaeologist; Maya (Shwetha Menon), a dubbing artiste; Meenakshi (Mythili), an IELTS student; Manu (Asif Ali), a happy-go-lucky management graduate; and Babu (Baburaj), Kalidasan's chef. Food plays an important role in the story and the tagline of the film is  \u0d12\u0d30\u0d41 \u0d26\u0d4b\u0d38 \u0d09\u0d28\u0d4d\u0d26\u0d3e\u0d15\u0d4d\u0d15\u0d3f\u0d2f \u0d15\u0d25 oruDosa und\u0101kkiya katha (\"The story of making a Dosa\"). The film has an original score by Bijibal, with three songs composed by Bijibal and the song \"Aanakkallan\" written and sung by Malayalam rock band Avial. The film was produced by Lucsam Cinema and released by Lal. Principal production for the film started on 3 January 2011 and it was released in theatres on 8 July 2011 to positive reviews and good initial viewing figures. Salt N' Pepper's Kannada, Tamil, Telugu and Hindi remake rights have been bought by actor-director Prakash Raj. It was remade in Tamil as Un Samayal Arayil and was shot simultaneously in Telugu and Kannada as Ulavacharu Biriyani and Oggarane. Prakash Raj directed the remakes and appeared in the lead role playing Lal's character while Sneha did the role of Shweta Menon's character. Prakash is directing Hindi remake titled Tadka."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Spivs_(film)"}, "Title": {"type": "literal", "value": "Spivs"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Colin_Teague"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dominic_Monaghan|http://dbpedia.org/resource/Jack_Dee|http://dbpedia.org/resource/Kate_Ashfield|http://dbpedia.org/resource/Ken_Stott|http://dbpedia.org/resource/Nick_Moran"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:British_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Spivs is a 2004 British crime film directed by Colin Teague, who also co-wrote the screenplay along with screenwriters Gary Young, and Mike Loveday. It is the second of three undertakings by Teague and Young, the others being Shooters and The Last Drop, respectively. Incidentally, director Glenn Durfort, who worked with Teague on Shooters, appears briefly in all three of these films."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Image_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/G.B.F._(film)"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Darren_Stein"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andrea_Bowen|http://dbpedia.org/resource/Evanna_Lynch|http://dbpedia.org/resource/JoJo|http://dbpedia.org/resource/Michael_J._Willett|http://dbpedia.org/resource/Molly_Tarlov|http://dbpedia.org/resource/Paul_Iacono|http://dbpedia.org/resource/Sasha_Pieterse|http://dbpedia.org/resource/Xosha_Roquemore"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "G.B.F. (Gay Best Friend) is a 2013 American teen comedy film directed by Darren Stein and produced by School Pictures, Parting Shots Media, and Logolite Entertainment. The film made its first official screening at the 2013 Tribeca Film Festival in April 2013 and got its theatrical release on January 17, 2014 by Vertical Entertainment. G.B.F. focuses on closeted gay high school students Tanner and Brent. When Tanner is outed, he is picked up by the cool girls and he begins to surpass still-closeted Brent in popularity. The film stars Michael J. Willett, Paul Iacono, Sasha Pieterse, Andrea Bowen, Xosha Roquemore, Molly Tarlov, Evanna Lynch, Joanna \"JoJo\" Levesque, and Megan Mullally. G.B.F's soundtrack includes new compositions by \"Hi Fashion\" & \"Veva\"."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Vertical_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Recep_\u0130vedik_2"}, "Title": {"type": "literal", "value": "Recep \u0130vedik 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Togan_G\u00f6kbakar"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Sahan_Gokbakar"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Turkish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "Recep \u0130vedik 2 is a 2009 Turkish comedy film, directed by Togan G\u00f6kbakar, which stars \u015eahan G\u00f6kbakar as an oafish character who tries to find a job and a wife to please his ailing grandmother. The film, which went on nationwide general release across Turkey on Feb. 13, 2009, was the highest grossing Turkish film of 2009. The film's titular comic character was created by \u015eahan G\u00f6kbakar for his Turkish comedy television show Dikkat \u015eahan \u00c7\u0131kabilir, which ran from 2005 to 2006, and has subsequently gone on to feature in a series of sequel films starting with Recep \u0130vedik (2008), to which this is the sequel."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Get_Married_3"}, "Title": {"type": "literal", "value": "Get Married 3"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Monty_Tiwa"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Fedi_Nuril|http://dbpedia.org/resource/Nirina_Zubir"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Get Married 3 is an Indonesian romantic comedy directed by Monty Tiwa and released in 2011. A sequel to Hanung Bramantyo's Get Married and Get Married 2, it stars Nirina Zubir and Fedi Nuril as a married couple attempting to raise their triplets while under intense pressure from their family and friends. The film was a commercial success and received favourable reviews in The Jakarta Post and Suara Karya."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Starvision_Plus"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Computer_Chess_(film)"}, "Title": {"type": "literal", "value": "Computer Chess"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Bujalski"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gerald_Peary|http://dbpedia.org/resource/Patrick_Riester|http://dbpedia.org/resource/Robin_Schwartz|http://dbpedia.org/resource/Wiley_Wiggins"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Computer Chess is a 2013 independent comedy-drama film written and directed by Andrew Bujalski. The film premiered at the 2013 Sundance Film Festival, where it won the Alfred P. Sloan Feature Film Prize, and subsequently screened at such festivals as South by Southwest and the Maryland Film Festival. It is Bujalski's second black-and-white film, and was shot with analog videocameras. It is more improvisatory than his previous films, with only an eight-page treatment for a script. Bujalski also cast nonprofessional actors who were knowledgeable in computer technology."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Kino_International_(company)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Submarine_(2010_film)"}, "Title": {"type": "literal", "value": "Submarine"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Richard_Ayoade"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Craig_Roberts|http://dbpedia.org/resource/Noah_Taylor|http://dbpedia.org/resource/Paddy_Considine|http://dbpedia.org/resource/Sally_Hawkins|http://dbpedia.org/resource/Yasmin_Paige"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:British_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Submarine is a 2010 coming-of-age comedy-drama film adapted from the 2008 novel of the same name by Joe Dunthorne. The film was written and directed by Richard Ayoade, and starred Craig Roberts, Yasmin Paige, Noah Taylor, Paddy Considine, and Sally Hawkins. Submarine is Ayoade's directorial debut."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Optimum_Releasing|http://dbpedia.org/resource/The_Weinstein_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Little_White_Lies_(2010_film)"}, "Title": {"type": "literal", "value": "Little White Lies"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Guillaume_Canet"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Beno\u00eet_Magimel|http://dbpedia.org/resource/Fran\u00e7ois_Cluzet|http://dbpedia.org/resource/Gilles_Lellouche|http://dbpedia.org/resource/Jean_Dujardin|http://dbpedia.org/resource/Laurent_Lafitte|http://dbpedia.org/resource/Marion_Cotillard|http://dbpedia.org/resource/Pascale_Arbillot|http://dbpedia.org/resource/Val\u00e9rie_Bonneton"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy-drama_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "154"}, "Description": {"type": "literal", "value": "Little White Lies is a 2010 French comedy-drama film written and directed by Guillaume Canet, starring an ensemble cast of Fran\u00e7ois Cluzet, Marion Cotillard, Beno\u00eet Magimel, Gilles Lellouche, Jean Dujardin, Laurent Lafitte, Val\u00e9rie Bonneton and Pascale Arbillot. The original French title is Les petits mouchoirs, which means \"the small handkerchiefs\" (see explanation below). The film was released in France on 20 October 2010."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/She's_the_Man"}, "Title": {"type": "literal", "value": "She's the Man"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Fickman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alex_Breckenridge|http://dbpedia.org/resource/Amanda_Bynes|http://dbpedia.org/resource/Channing_Tatum|http://dbpedia.org/resource/David_Cross|http://dbpedia.org/resource/Emily_Perkins|http://dbpedia.org/resource/Jonathan_Sadowski|http://dbpedia.org/resource/Laura_Ramsey|http://dbpedia.org/resource/Robert_Hoffman_(actor)|http://dbpedia.org/resource/Vinnie_Jones"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "She's the Man is a 2006 American romantic sport-comedy film directed by Andy Fickman, inspired by William Shakespeare's play Twelfth Night. The film stars Amanda Bynes, Channing Tatum, Laura Ramsey, and Vinnie Jones. The film centers on teenager Viola Hastings who enters her brother's school in his place, pretending to be male, in order to play with the boys' soccer team."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/DreamWorks_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Fired_Up!"}, "Title": {"type": "literal", "value": "Fired Up!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Will_Gluck"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/AnnaLynne_McCord|http://dbpedia.org/resource/David_Walton_(actor)|http://dbpedia.org/resource/Eric_Christian_Olsen|http://dbpedia.org/resource/Molly_Sims|http://dbpedia.org/resource/Nicholas_D'Agosto|http://dbpedia.org/resource/Sarah_Roemer"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films|http://dbpedia.org/resource/Category:Teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Fired Up! is a 2009 American teen comedy film directed by Will Gluck and written by Freedom Jones. The main plot revolves around two popular high school student football players (portrayed by Eric Christian Olsen and Nicholas D'Agosto) who attend a cheerleading camp for the summer to get close to its 300 female cheerleaders."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Screen_Gems"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Boss_(2016_film)"}, "Title": {"type": "literal", "value": "The Boss"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Falcone"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kathy_Bates|http://dbpedia.org/resource/Kristen_Bell|http://dbpedia.org/resource/Peter_Dinklage|http://dbpedia.org/resource/Tyler_Labine"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "The Boss is a 2016 American comedy film directed by Ben Falcone and written by Falcone, Melissa McCarthy and Steve Mallory. The film stars McCarthy, Kristen Bell, Ella Anderson, Tyler Labine, Kathy Bates, Annie Mumolo, Timothy Simons and Peter Dinklage. The film was released on April 8, 2016, by Universal Pictures and was a moderate box office success, despite receiving largely negative reviews."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Falcone|http://dbpedia.org/resource/Gary_Sanchez_Productions"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/10_Years_(2011_film)"}, "Title": {"type": "literal", "value": "10 Years"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jamie_Linden_(writer)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aaron_Yoo|http://dbpedia.org/resource/Anthony_Mackie|http://dbpedia.org/resource/Ari_Graynor|http://dbpedia.org/resource/Aubrey_Plaza|http://dbpedia.org/resource/Brian_Geraghty|http://dbpedia.org/resource/Channing_Tatum|http://dbpedia.org/resource/Chris_Pratt|http://dbpedia.org/resource/Jenna_Dewan|http://dbpedia.org/resource/Justin_Long|http://dbpedia.org/resource/Kate_Mara|http://dbpedia.org/resource/Lynn_Collins|http://dbpedia.org/resource/Max_Minghella|http://dbpedia.org/resource/Oscar_Isaac|http://dbpedia.org/resource/Ron_Livingston|http://dbpedia.org/resource/Rosario_Dawson|http://dbpedia.org/resource/Scott_Porter"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "10 Years is a 2011 American romantic comedy directed by Jamie Linden in his directorial debut. The film stars with an ensemble cast including Channing Tatum, Justin Long, Kate Mara, Chris Pratt, Scott Porter, Brian Geraghty, Anthony Mackie, Rosario Dawson, Oscar Isaac, Lynn Collins, Max Minghella, Kelly Noonan, Juliet Lopez and Jenna Dewan. The film was released on September 14, 2012, in select theaters."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Anchor_Bay_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Beauty_in_a_Bottle"}, "Title": {"type": "literal", "value": "Beauty in a Bottle"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Antoinette_Jadaone"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Angelica_Panganiban|http://dbpedia.org/resource/Angeline_Quinto|http://dbpedia.org/resource/Assunta_de_Rossi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Philippine_romantic_comedy_films|http://dbpedia.org/resource/Category:Star_Cinema_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Beauty in a Bottle is a 2014 Filipino satirical comedy drama film by Antoinette Jadaone. The film stars Angelica Panganiban, Angeline Quinto, and Assunta de Rossi and tells the story of three women and their struggles with their insecurities about how they look as they get caught up in the building craze for a new beauty product. It was produced by Quantum Films, Skylight Films and Star Cinema for its 20th Anniversary. The film had its commercial release on 29 October 2014"}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Regal_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Balls_of_Fury"}, "Title": {"type": "literal", "value": "Balls of Fury"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Robert_Ben_Garant"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Christopher_Walken|http://dbpedia.org/resource/Dan_Fogler|http://dbpedia.org/resource/George_Lopez|http://dbpedia.org/resource/Jason_Scott_Lee|http://dbpedia.org/resource/Maggie_Q|http://dbpedia.org/resource/Robert_Patrick|http://dbpedia.org/resource/Thomas_Lennon_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_sports_comedy_films|http://dbpedia.org/resource/Category:Martial_arts_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Balls of Fury is a 2007 American sports comedy film directed by Ben Garant. It stars Dan Fogler, George Lopez, Christopher Walken, and Maggie Q. The film was released in the United States on August 29, 2007."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Rogue_(company)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/A_Fuchsia_Elephant"}, "Title": {"type": "literal", "value": "A Fuchsia Elephant"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dianna_Agron"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dave_Franco|http://dbpedia.org/resource/Dianna_Agron|http://dbpedia.org/resource/Eddie_Hargitay|http://dbpedia.org/resource/Max_Crumm"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "10"}, "Description": {"type": "literal", "value": "A Fuchsia Elephant is a 2009 American short comedy film screenplay and directed by Dianna Agron, starring Dianna Agron and Dave Franco. The film was never released."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Big_Dreams_Little_Tokyo"}, "Title": {"type": "literal", "value": "Big Dreams Little Tokyo"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dave_Boyle"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Big Dreams Little Tokyo (2006) is a feature-length motion picture written and directed by Dave Boyle. The film premiered November 2, 2006 at the AFI Festival in Hollywood, California and is released on DVD through Echo Bridge on July 22, 2008."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Salami_Aleikum"}, "Title": {"type": "literal", "value": "Salami Aleikum"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ali_Samadi_Ahadi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anna_B\u00f6ger|http://dbpedia.org/resource/Eva-Maria_Radoy|http://dbpedia.org/resource/Michael_Niavarani|http://dbpedia.org/resource/Nav\u00edd_Akhavan|http://dbpedia.org/resource/Proschat_Madani|http://dbpedia.org/resource/Wolfgang_Stumph"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "Salami Aleikum is a 2009 Comedy film by Ali Samadi Ahadi about an Iranian migrant family in Germany who try to cope with life in exile. There are animation parts and some musical videoclips (Iranian music and dance) are included. Salami Aleikum was a successful film in Germany."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Trust_the_Man"}, "Title": {"type": "literal", "value": "Trust The Man"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bart_Freundlich"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Billy_Crudup|http://dbpedia.org/resource/David_Duchovny|http://dbpedia.org/resource/Eva_Mendes|http://dbpedia.org/resource/James_LeGros|http://dbpedia.org/resource/Julianne_Moore|http://dbpedia.org/resource/Maggie_Gyllenhaal"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "Trust the Man is a 2005 romantic comedy film starring David Duchovny, Billy Crudup, Julianne Moore, and Maggie Gyllenhaal. It was directed and written by Bart Freundlich. The film primarily deals with three relationships, and a realization of just how important those relationships are. It had a limited release on August 18, 2006."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Searchlight_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/All_You_Need_Is_Pag-Ibig"}, "Title": {"type": "literal", "value": "All You Need Is Pag-Ibig"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Antoinette_Jadaone"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bimby_Aquino_Yap|http://dbpedia.org/resource/Derek_Ramsay|http://dbpedia.org/resource/Ian_Veneracion|http://dbpedia.org/resource/Jodi_Sta._Maria|http://dbpedia.org/resource/Kim_Chiu|http://dbpedia.org/resource/Kris_Aquino|http://dbpedia.org/resource/Nova_Villa|http://dbpedia.org/resource/Ronaldo_Valdez|http://dbpedia.org/resource/Xian_Lim"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Philippine_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "All You Need Is Pag-Ibig (lit. \"All You Need is Love\") is a 2015 Filipino romantic-comedy film released by Star Cinema as their official entry to 2015 Metro Manila Film Festival. It stars an ensemble cast including Kris Aquino, Bimby Aquino Yap, Derek Ramsay, Kim Chiu, Xian Lim, Jodi Sta. Maria and Ian Veneracion. It also marks the film debut of Julia Concio and Talia Concio. This marks as Aquino-Yap's third film fest entry."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Star_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Take_Me_Home_Tonight_(film)"}, "Title": {"type": "literal", "value": "Take Me Home Tonight"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Dowse"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anna_Faris|http://dbpedia.org/resource/Dan_Fogler|http://dbpedia.org/resource/Teresa_Palmer|http://dbpedia.org/resource/Topher_Grace"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Take Me Home Tonight is a 2011 American retro comedy film directed by Michael Dowse and starring an ensemble cast led by Topher Grace and Anna Faris; prior to release the film was titled Young Americans and Kids in America. The screenplay was written by Jackie and Jeff Filgo, former writers of the television sitcom That '70s Show, of which Grace was a cast member. Shooting began on the week starting February 19, 2007, in Phoenix, Arizona. The film received its wide theatrical release on March 4, 2011. The title comes from the 1986 Eddie Money song of the same name, also played in the theatrical trailer. Despite having the same name, this 1986 song is never played in the film, though the song is included in the first trailer as well as the menu screen of the Blu-ray and DVD versions of the movie."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Relativity_Media|http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Lovers_(2017_film)"}, "Title": {"type": "literal", "value": "The Lovers"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Azazel_Jacobs"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Debra_Winger|http://dbpedia.org/resource/Tracy_Letts"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Lovers is an upcoming film directed by Azazel Jacobs."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/A24_(company)"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/A24_(company)"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lifeu_Ishtene"}, "Title": {"type": "literal", "value": "Lifeu Ishtene"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pawan_Kumar_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Diganth|http://dbpedia.org/resource/Samyukta_Hornad|http://dbpedia.org/resource/Sathish_Ninasam|http://dbpedia.org/resource/Sindhu_Lokanath"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "130"}, "Description": {"type": "literal", "value": "Lifeu Ishtene (Kannada: \u0cb2\u0cc8\u0cab\u0cc1 \u0c87\u0cb7\u0ccd\u0c9f\u0cc7\u0ca8\u0cc6) is a 2011 Indian dark comedy-drama Kannada written and directed by Pawan Kumar. It stars Diganth, Sindhu Lokanath and Samyukta Hornad in the lead roles. Sathish Ninasam, Achyuth Kumar and Veena Sundar feature in supporting roles. The plot revolves around the adult life of a carefree youngster, who falls in love easily with multiple women, and observes the consequences, \"realizing the meaning of life\" and that it comes a \"full circle\". The title of the film which translates to \"this is all life is\", was taken from a track of the 2010 Kannada film Pancharangi. The film score and soundtrack was composed by Mano Murthy, with lyrics for the tracks penned by Yogaraj Bhat, Jayant Kaikini and Pawan Kumar. The cinematography was done by Sugnaan, and was edited by Sanath and Suresh. The film was released on 9 September 2011 to critical acclaim. Following a 9-week run at theatres, it emerged as a commercial success, and was declared one of the best Kannada films of 2011. Having been nominated in three categories, Chethan Sosca won the award for Best Male Playback Singer at the Filmfare Awards."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Linda_Linda_Linda"}, "Title": {"type": "literal", "value": "Linda Linda Linda"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nobuhiro_Yamashita"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aki_Maeda|http://dbpedia.org/resource/Bae_Doona|http://dbpedia.org/resource/Shiori_Sekine|http://dbpedia.org/resource/Yu_Kashii"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_musical_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "Linda Linda Linda (\u30ea\u30f3\u30c0 \u30ea\u30f3\u30c0 \u30ea\u30f3\u30c0) is a 2005 Japanese film directed by Nobuhiro Yamashita. It stars Bae Doona, Aki Maeda, Yu Kashii, and Shiori Sekine (of the band Base Ball Bear) as teenagers who form a band to cover songs by the Japanese punk rock band the Blue Hearts; the film's title comes from the hit Blue Hearts song \"Linda Linda\". A subtitled DVD was released on May 8, 2007. The band, Paranmaum (Korean for \"the Blue Hearts\"), released a CD single in Japan and Korea titled We Are Paranmaum. The film is licensed for the US market by VIZ Media."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Covers&Co"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Alpha_and_Omega_(film_series)"}, "Title": {"type": "literal", "value": "Alpha and Omega"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Anthony_Bell_(director)|http://dbpedia.org/resource/Richard_Rich_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Diskin|http://dbpedia.org/resource/Hayden_Panettiere|http://dbpedia.org/resource/Justin_Long|http://dbpedia.org/resource/Kate_Higgins"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Alpha and Omega is a series of five animated films released by Crest Animation Productions and distributed by Lionsgate Films. The first film was released in 2010 and featured the voices of Justin Long and Hayden Panettiere, though subsequent movies were direct-to-video and therefore featured a smaller cast, primarily Ben Diskin and Kate Higgins."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lionsgate_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Zeroville_(film)"}, "Title": {"type": "literal", "value": "Zeroville"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Franco"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Danny_McBride|http://dbpedia.org/resource/Dave_Franco|http://dbpedia.org/resource/Jacki_Weaver|http://dbpedia.org/resource/James_Franco|http://dbpedia.org/resource/Megan_Fox|http://dbpedia.org/resource/Seth_Rogen|http://dbpedia.org/resource/Will_Ferrell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "Zeroville is an upcoming American comedy-drama film directed by James Franco, based on the 2007 novel of the same name by Steve Erickson. The film stars Franco, Seth Rogen, Jacki Weaver, Megan Fox, Will Ferrell and Danny McBride. Filming began on October 24, 2014, in Los Angeles."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Alchemy_(company)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/They're_Watching"}, "Title": {"type": "literal", "value": "They're Watching"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jay_Lender|http://dbpedia.org/resource/Micah_Wright"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Brigid_Brannagh|http://dbpedia.org/resource/David_Alpay|http://dbpedia.org/resource/Dimitri_Diatchenko|http://dbpedia.org/resource/Kris_Lemche"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "They're Watching is a 2016 American found footage horror comedy film directed and written by Jay Lender and Micah Wright. The film stars Brigid Brannagh, David Alpay, Kris Lemche and Dimitri Diatchenko and was released in theaters and On Demand on March 25, 2016."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Amplify_(distributor)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Anomalisa"}, "Title": {"type": "literal", "value": "Anomalisa"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Charlie_Kaufman|http://dbpedia.org/resource/Duke_Johnson_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/David_Thewlis|http://dbpedia.org/resource/Jennifer_Jason_Leigh|http://dbpedia.org/resource/Tom_Noonan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Anomalisa is a 2015 American stop-motion comedy-drama film directed and produced by Charlie Kaufman and Duke Johnson, and written by Kaufman based on his 2005 play of the same name. It was released on 30 December 2015, by Paramount Pictures after what Variety called \"strong reviews\" during its festival run. The film follows a lonely customer service expert (voiced by David Thewlis) who perceives everyone (Tom Noonan) as identical until he meets a unique woman (Jennifer Jason Leigh) in a Cincinnati hotel. Anomalisa was nominated for an Academy Award for Best Animated Feature (the first R-rated film to be nominated), a Golden Globe Award for Best Animated Feature Film, and five Annie Awards. It became the first animated film to win the Grand Jury Prize at the 72nd Venice International Film Festival, after premiering at the Telluride Film Festival on 4 September 2015."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Easy_A"}, "Title": {"type": "literal", "value": "Easy A"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Will_Gluck"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aly_Michalka|http://dbpedia.org/resource/Amanda_Bynes|http://dbpedia.org/resource/Cam_Gigandet|http://dbpedia.org/resource/Dan_Byrd|http://dbpedia.org/resource/Emma_Stone|http://dbpedia.org/resource/Lisa_Kudrow|http://dbpedia.org/resource/Malcolm_McDowell|http://dbpedia.org/resource/Patricia_Clarkson|http://dbpedia.org/resource/Penn_Badgley|http://dbpedia.org/resource/Stanley_Tucci|http://dbpedia.org/resource/Thomas_Haden_Church"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Easy A (stylized as easy A) is a 2010 American teen comedy film written by Bert V. Royal, directed by Will Gluck, and starring Emma Stone, with Stanley Tucci, Patricia Clarkson, Thomas Haden Church, Dan Byrd, Amanda Bynes, Penn Badgley, Cam Gigandet, Lisa Kudrow and Aly Michalka playing key supporting roles. The screenplay was partially inspired by the novel The Scarlet Letter by Nathaniel Hawthorne. Shot at Screen Gems studios and in Ojai, California, the film was released on September 17, 2010 to positive reviews."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Screen_Gems"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Night_Before_(2015_film)"}, "Title": {"type": "literal", "value": "The Night Before"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jonathan_Levine"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anthony_Mackie|http://dbpedia.org/resource/Jillian_Bell|http://dbpedia.org/resource/Joseph_Gordon-Levitt|http://dbpedia.org/resource/Lizzy_Caplan|http://dbpedia.org/resource/Michael_Shannon|http://dbpedia.org/resource/Mindy_Kaling"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "The Night Before is a 2015 American Christmas comedy film directed by Jonathan Levine, written by Levine, Evan Goldberg, Kyle Hunter and Ariel Shaffir. The film stars Joseph Gordon-Levitt, Seth Rogen and Anthony Mackie as three childhood friends who annually reunite on Christmas Eve. Principal photography began on August 11, 2014, in New York City. Good Universe and Point Grey Pictures produced the film, which Columbia Pictures released on November 20, 2015."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Point_Grey_Pictures"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Demain_tout_commence"}, "Title": {"type": "literal", "value": "Demain tout commence"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Hugo_G\u00e9lin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Omar_Sy"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Demain tout commence is a 2016 French comedy-drama film directed by Hugo G\u00e9lin and starring Omar Sy."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hardcover_(film)"}, "Title": {"type": "literal", "value": "Hardcover"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Christian_Z\u00fcbert"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Lucas_Gregorowicz|http://dbpedia.org/resource/Wotan_Wilke_M\u00f6hring"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:German_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Hardcover is a 2008 German comedy film directed by Christian Z\u00fcbert."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Me_You_Them"}, "Title": {"type": "literal", "value": "Me You Them"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andrucha_Waddington"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Lima_Duarte|http://dbpedia.org/resource/Regina_Cas\u00e9"}, "Published": {"type": "literal", "value": "2000-05-16"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:Brazilian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "Me You Them (Portuguese: Eu Tu Eles) is a 2000 Brazilian drama film directed by Andrucha Waddington."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/How_to_Eat_Fried_Worms_(film)"}, "Title": {"type": "literal", "value": "How to Eat Fried Worms"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bob_Dolman|http://dbpedia.org/resource/Genndy_Tartakovsky"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Hicks|http://dbpedia.org/resource/Hallie_Eisenberg|http://dbpedia.org/resource/Kimberly_Williams-Paisley|http://dbpedia.org/resource/Luke_Benward|http://dbpedia.org/resource/Tom_Cavanagh"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "How to Eat Fried Worms is a 2006 American children's comedy film directed and written by Bob Dolman and produced by Mark Johnson and Philip Steuer with music by Mark Mothersbaugh and Robert Mothersbaugh. It is loosely based on Thomas Rockwell's 1973 children's book of the same name. It was also produced by Walden Media and distributed by New Line Cinema. Development began in 1998 and theatrical release for the U.S. and Canada was August 25, 2006. The film stars Luke Benward, Adam Hicks, Hallie Eisenberg, Austin Rogers, Andrew Gillingham, Alexander Gould, Blake Garrett, and Philip Daniel Bolden. The film received mixed reviews from critics."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/New_Line_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jay_and_Silent_Bob_Strike_Back"}, "Title": {"type": "literal", "value": "Jay and Silent Bob Strike Back"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Smith"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ali_Larter|http://dbpedia.org/resource/Ben_Affleck|http://dbpedia.org/resource/Chris_Rock|http://dbpedia.org/resource/Eliza_Dushku|http://dbpedia.org/resource/Jason_Lee_(actor)|http://dbpedia.org/resource/Jason_Mewes|http://dbpedia.org/resource/Jennifer_Schwalbach_Smith|http://dbpedia.org/resource/Shannon_Elizabeth|http://dbpedia.org/resource/Will_Ferrell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "Jay and Silent Bob Strike Back is a 2001 American comedy film directed, written by, and starring Kevin Smith as Silent Bob, the fifth to be set in his View Askewniverse, a growing collection of characters and settings that developed out of his cult favorite Clerks. It focuses on the two eponymous characters, played respectively by Jason Mewes and Smith. The film features a large number of cameo appearances by famous actors and directors. The title and logo for Jay and Silent Bob Strike Back are direct references to The Empire Strikes Back. Originally intended to be the last film set in the Askewniverse, or to feature Jay and Silent Bob, Strike Back features many characters from the previous Askew films, some in dual roles and reprising roles from the previous entries. The film was a minor commercial success, grossing $33.8 million worldwide from a $22 million budget, and received mixed reviews from critics. Five years later and following the commercial failure of Jersey Girl, Smith reconsidered and decided to continue the series with Clerks II, resurrecting Jay and Silent Bob in supporting roles. Smith has additionally decided to make a second sequel to Clerks, titled Clerks III, and, as of 2016, is in development."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Miramax"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Dimension_Films|http://dbpedia.org/resource/View_Askew_Productions"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Gigantic_(2018_film)"}, "Title": {"type": "literal", "value": "Gigantic"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Meg_LeFauve|http://dbpedia.org/resource/Nathan_Greno"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_musical_comedy_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Gigantic is an upcoming American 3D computer-animated musical fantasy-comedy film produced by Walt Disney Animation Studios and released by Walt Disney Pictures. It is loosely based on the English fairy tale Jack and the Beanstalk, which was previously adapted in the 1947 Disney film Fun and Fancy Free as the segment \"Mickey and the Beanstalk\". The film is scheduled to be released on November 21, 2018."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Going_Greek"}, "Title": {"type": "literal", "value": "Going Greek"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Justin_Zackham"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Owen_(actor)|http://dbpedia.org/resource/Dublin_James|http://dbpedia.org/resource/Dylan_Bruno|http://dbpedia.org/resource/Laura_Harris|http://dbpedia.org/resource/Simon_Rex"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Going Greek is a 2001 American comedy film written and directed by Justin Zackham."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Hart_Sharp_Video"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Deb_and_Sisi"}, "Title": {"type": "literal", "value": "Deb and Sisi"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mark_Kenneth_Woods"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Mark_Kenneth_Woods|http://dbpedia.org/resource/Michael_Venus_(entertainer)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Black_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "81"}, "Description": {"type": "literal", "value": "Deb and Sisi is a blue comedy/dark comedy feature film, written, produced and directed by Mark Kenneth Woods, which had its debut at the Out On Screen Vancouver Queer Film Festival in August, 2008. The DVD was released May 25, 2010 through MKW Productions and the film aired on television for the first time on October 30, 2011 on OUTtv in Canada."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Josie_and_the_Pussycats_(film)"}, "Title": {"type": "literal", "value": "Josie and the Pussycats"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Deborah_Kaplan|http://dbpedia.org/resource/Harry_Elfont"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alan_Cumming|http://dbpedia.org/resource/Gabriel_Mann|http://dbpedia.org/resource/Parker_Posey|http://dbpedia.org/resource/Rachael_Leigh_Cook|http://dbpedia.org/resource/Rosario_Dawson|http://dbpedia.org/resource/Tara_Reid"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Josie and the Pussycats is a 2001 American musical comedy film released by Columbia Pictures, Universal Pictures, and Metro-Goldwyn-Mayer. Directed and co-written by Harry Elfont and Deborah Kaplan, the film is loosely based upon the Archie comic of the same name, as well as the Hanna-Barbera cartoon. The film is about a young all-female band which signs a record contract with a New York City record label, only to discover that the company does not have the musicians' best interests at heart. The film stars Rachael Leigh Cook, Tara Reid, and Rosario Dawson as the Pussycats, with Alan Cumming, Parker Posey, and Gabriel Mann in supporting roles. The film received mixed reviews and was a box office bomb, earning about $15 million against a $39 million budget."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures|http://dbpedia.org/resource/Metro-Goldwyn-Mayer|http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jacky_in_Women's_Kingdom"}, "Title": {"type": "literal", "value": "Jacky in the Kingdom of Women"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Riad_Sattouf"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/An\u00e9mone|http://dbpedia.org/resource/Charlotte_Gainsbourg|http://dbpedia.org/resource/Didier_Bourdon|http://dbpedia.org/resource/No\u00e9mie_Lvovsky|http://dbpedia.org/resource/Vincent_Lacoste"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Jacky in the Kingdom of Women (French: Jacky au royaume des filles; also known as Jacky in the Kingdom of Women) is a 2014 French comedy film directed by Riad Sattouf and starring Vincent Lacoste, Charlotte Gainsbourg and Didier Bourdon."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Path\u00e9"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Attahasam"}, "Title": {"type": "literal", "value": "Attahasam"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Saran_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ajith_Kumar|http://dbpedia.org/resource/Pooja_(actress)|http://dbpedia.org/resource/Sujatha_(actress)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "157"}, "Description": {"type": "literal", "value": "Attahasam (English: Defiance) is a 2004 Tamil action masala film written and directed by Saran featuring Ajith Kumar in dual lead roles with Pooja playing the female lead. Sujatha, Karunas and Ramesh Khanna play pivotal roles in the film, while the score and soundtrack are composed by Bharathwaj the film became a hit on his career"}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Ayngaran_International"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sex_Tape_(film)"}, "Title": {"type": "literal", "value": "Sex Tape"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jake_Kasdan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cameron_Diaz|http://dbpedia.org/resource/Ellie_Kemper|http://dbpedia.org/resource/Jason_Segel|http://dbpedia.org/resource/Rob_Corddry|http://dbpedia.org/resource/Rob_Lowe"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Sex Tape is a 2014 American comedy film directed by Jake Kasdan and written by Kate Angelo, Jason Segel, and Nicholas Stoller. Starring Segel, Cameron Diaz, Rob Corddry, Ellie Kemper, and Rob Lowe, the film was released on July 18, 2014, by Columbia Pictures. The film received generally negative reviews from critics."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Singham"}, "Title": {"type": "literal", "value": "Singham"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rohit_Shetty"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ajay_Devgn|http://dbpedia.org/resource/Kajal_Aggarwal|http://dbpedia.org/resource/Prakash_Raj"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "142"}, "Description": {"type": "literal", "value": "Singham (Hindustani pronunciation: [s\u026an\u0261\u02b1\u0259m] \"Lion\") is a 2011 Indian action film directed by Rohit Shetty, starring Ajay Devgn in the title role alongside Kajal Aggarwal and Prakash Raj as the antagonist. It is a remake of the 2010 Tamil film Singam featuring Suriya and Anushka Shetty. The film is produced under Reliance Entertainment, which co-produced the original Tamil movie. The theatrical trailer was released with Ready in June 2011. A sequel titled Singham Returns was released in August 2014."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Reliance_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Superstar_(2012_film)"}, "Title": {"type": "literal", "value": "Superstar"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Xavier_Giannoli"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kad_Merad"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "Superstar is a 2012 French comedy film directed by Xavier Giannoli. The film was selected to compete for the Golden Lion at the 69th Venice International Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Wild_Bunch_Distribution"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Funny_Ha_Ha"}, "Title": {"type": "literal", "value": "Funny Ha Ha"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Bujalski"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Christian_Rudder|http://dbpedia.org/resource/Kate_Dollenmayer"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Funny Ha Ha is a 2002 American film written and directed by Andrew Bujalski. It has been described as the first mumblecore film. The film was shot on 16 mm film on a very low budget. It deals with the lives of people in their twenties as they try to come to terms with life after college and confront the responsibilities of adulthood, if only to put them off for as long as possible."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sundance_Channel_(United_States)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Intervention_(film)"}, "Title": {"type": "literal", "value": "The Intervention"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Clea_DuVall"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alia_Shawkat|http://dbpedia.org/resource/Ben_Schwartz|http://dbpedia.org/resource/Clea_DuVall|http://dbpedia.org/resource/Cobie_Smulders|http://dbpedia.org/resource/Jason_Ritter|http://dbpedia.org/resource/Melanie_Lynskey|http://dbpedia.org/resource/Natasha_Lyonne|http://dbpedia.org/resource/Vincent_Piazza"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "The Intervention is a 2016 American comedy-drama film written and directed by Clea DuVall in her directorial debut. The film stars DuVall, Melanie Lynskey, Natasha Lyonne, Vincent Piazza, Jason Ritter, Ben Schwartz, Alia Shawkat and Cobie Smulders. The Intervention had its world premiere at the 2016 Sundance Film Festival on January 26, 2016. It was released in a limited release and through video on demand on August 26, 2016, by Samuel Goldwyn Films and Paramount Pictures."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures|http://dbpedia.org/resource/Samuel_Goldwyn_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Todas_las_azafatas_van_al_cielo"}, "Title": {"type": "literal", "value": "Todas las azafatas van al cielo"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Daniel_Burman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alfredo_Casero|http://dbpedia.org/resource/Emilio_Disi|http://dbpedia.org/resource/Ingrid_Rubio|http://dbpedia.org/resource/Norma_Aleandro|http://dbpedia.org/resource/Valentina_Bassi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Todas las azafatas van al cielo (English: Every Stewardess Goes to Heaven) is a 2002 Argentine and Spanish comedy drama film directed by Daniel Burman and written by Burman and Emiliano Torres. The picture was produced by Pablo Bossi, Pedro D'Angelo, Diego Dubcovsky and Jos\u00e9 Mar\u00eda Morales. It features Alfredo Casero as Juli\u00e1n and Ingrid Rubio as the air hostess Teresa. The metaphorical romantic comedy-drama is about a widowed ophthalmologist and a free-spirited airline flight-attendant (who the director believes seems to hold a certain fascination in western culture)."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/BD_Cine"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mengejar_Mas-Mas"}, "Title": {"type": "literal", "value": "Mengejar Mas-Mas"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rudy_Soedjarwo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dina_Olivia|http://dbpedia.org/resource/Dwi_Sasono|http://dbpedia.org/resource/Elmayana_Sabrenia|http://dbpedia.org/resource/Ira_Wibowo|http://dbpedia.org/resource/Poppy_Sovia|http://dbpedia.org/resource/Roy_Marten"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Mengejar Mas-Mas is an Indonesia drama comedy movie. Shanaz (Poppy Sovia) felt guilty for her father's death. Her relationship with her mother disharmonize, and things get worse when her mother decides to marry her boyfriend within 8 months since her father died. Disappointed, Shanaz runs away to Jogjakarta to follow her boyfriend Mika, but she lost contact with him. With no money, she\u2019s been strayed to Pasar Kembang (Sarkem), the worst localization in Jogjakarta. She meets Ningsih (Dina Olivia), a prostitute who saves her from a bad guy. Ningsih lets Shanaz stays with her, and they get close. Then Shanaz meet Parno (Dwi Sasono), Ningsih\u2019s former boyfriend. They often spend their time together during Ningsih absence for \u201cwork\u201d. Even he\u2019s 20 years older than Shanaz, Parno\u2019s crushed to Shanaz\u2019s heart. Shanaz secretly falls in love with him, but Ningsih and Parno still care for each other."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Movie_43"}, "Title": {"type": "literal", "value": "Movie 43"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bob_Odenkirk|http://dbpedia.org/resource/Brett_Ratner|http://dbpedia.org/resource/Elizabeth_Banks|http://dbpedia.org/resource/Griffin_Dunne|http://dbpedia.org/resource/James_Gunn_(filmmaker)|http://dbpedia.org/resource/Peter_Farrelly|http://dbpedia.org/resource/Rusty_Cundieff|http://dbpedia.org/resource/Steve_Carr|http://dbpedia.org/resource/Steven_Brill_(scriptwriter)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anna_Faris|http://dbpedia.org/resource/Chlo\u00eb_Grace_Moretz|http://dbpedia.org/resource/Christopher_Mintz-Plasse|http://dbpedia.org/resource/Elizabeth_Banks|http://dbpedia.org/resource/Emma_Stone|http://dbpedia.org/resource/Gerard_Butler|http://dbpedia.org/resource/Halle_Berry|http://dbpedia.org/resource/Hugh_Jackman|http://dbpedia.org/resource/Jason_Sudeikis|http://dbpedia.org/resource/Jeremy_Allen_White|http://dbpedia.org/resource/Johnny_Knoxville|http://dbpedia.org/resource/Josh_Duhamel|http://dbpedia.org/resource/Justin_Long|http://dbpedia.org/resource/Kate_Bosworth|http://dbpedia.org/resource/Kate_Winslet|http://dbpedia.org/resource/Kristen_Bell|http://dbpedia.org/resource/Leslie_Bibb|http://dbpedia.org/resource/Liev_Schreiber|http://dbpedia.org/resource/Naomi_Watts|http://dbpedia.org/resource/Richard_Gere|http://dbpedia.org/resource/Seann_William_Scott|http://dbpedia.org/resource/Terrence_Howard|http://dbpedia.org/resource/Uma_Thurman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94|98"}, "Description": {"type": "literal", "value": "Movie 43 is a 2013 American anthology comedy film co-directed and produced by Peter Farrelly, and written by Rocky Russo and Jeremy Sosenko among others. The film features fourteen different storylines, each one by a different director, including Elizabeth Banks, Steven Brill, Steve Carr, Rusty Cundieff, James Duffy, Griffin Dunne, Patrik Forsberg, James Gunn, Bob Odenkirk, Brett Ratner, Will Graham, and Jonathan van Tulleken. It stars an ensemble cast that is led by Elizabeth Banks, Kristen Bell, Halle Berry, Gerard Butler, Leslie Bibb, Kate Bosworth, Josh Duhamel, Anna Faris, Richard Gere, Terrence Howard, Hugh Jackman, Johnny Knoxville, Justin Long, Christopher Mintz-Plasse, Chlo\u00eb Grace Moretz, Liev Schreiber, Seann William Scott, Emma Stone, Jason Sudeikis, Uma Thurman, Naomi Watts, and Kate Winslet. The film took almost a decade to get into production as most studios rejected the script, which was eventually picked up by Relativity Media for $6 million. The film was shot over a period of several years, as casting also proved to be a challenge for the producers. Some actors, including George Clooney, declined to take part, while others, such as Richard Gere, attempted to get out of the project. Released on January 25, 2013, Movie 43 has been widely panned by critics, with Richard Roeper calling it \"the Citizen Kane of awful\", joining others who labeled it as one of the worst films of all time. The film won three awards at the 34th Golden Raspberry Awards, including Worst Picture."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Relativity_Media"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Les_Mis\u00e9rables_(2012_film)"}, "Title": {"type": "literal", "value": "Les Mis\u00e9rables"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tom_Hooper"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amanda_Seyfried|http://dbpedia.org/resource/Anne_Hathaway|http://dbpedia.org/resource/Eddie_Redmayne|http://dbpedia.org/resource/Helena_Bonham_Carter|http://dbpedia.org/resource/Hugh_Jackman|http://dbpedia.org/resource/Russell_Crowe|http://dbpedia.org/resource/Sacha_Baron_Cohen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Best_Musical_or_Comedy_Picture_Golden_Globe_winners|http://dbpedia.org/resource/Category:Films_featuring_a_Best_Musical_or_Comedy_Actor_Golden_Globe_winning_performance"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "158"}, "Description": {"type": "literal", "value": "Les Mis\u00e9rables is a 2012 British-American musical drama film directed by Tom Hooper and scripted by William Nicholson, Boublil, Sch\u00f6nberg, and Herbert Kretzmer, based on the musical of the same name by Alain Boublil and Claude-Michel Sch\u00f6nberg which is in turn based on the 1862 French novel by Victor Hugo. The film is a British and American venture produced by Relativity Media, Working Title Films and Cameron Mackintosh Ltd. and distributed by Universal Pictures. The film stars an ensemble cast led by Hugh Jackman, Russell Crowe, Anne Hathaway, and Amanda Seyfried. Set in France during the early 19th century, the film tells the story of Jean Valjean, an ex-convict who, inspired by a kindly bishop, decides to turn his life around. He eventually becomes mayor of a local town and owner of its factory. He is always alert to the risk of being captured again by police inspector Javert, who is ruthless in hunting down law-breakers, believing they cannot change for the better. One of Valjean's factory workers, Fantine, blames him for her being cast into a life of prostitution. When she dies, he feels responsible and agrees to take care of her illegitimate daughter Cosette \u2014 though he must first escape Javert. Later, when Cosette is grown, they are swept up in the political turmoil in Paris, which culminates in the Paris Uprising of 1832. Attempts to adapt a Les Mis\u00e9rables film from the stage musical had taken place since the late 1980s. In June 2011, from a screenplay by Nicholson, production of the film officially began with Hooper and Mackintosh serving as director and producer, and the main characters were cast later that year. Principal photography commenced in March 2012, and took place in various English locations, including Greenwich, London, Chatham, Winchester, Bath and Portsmouth; as well as in Gourdon, France. Les Mis\u00e9rables premiered in London 5 December 2012, and was released 25 December 2012 in the United States and 11 January 2013 in the United Kingdom. The film received generally favourable reviews, with many critics praising the cast, and Jackman, Hathaway, Eddie Redmayne and Samantha Barks being the most often singled out for praise. The film won the Golden Globe Award for Best Motion Picture \u2013 Musical or Comedy, the Golden Globe Award for Best Actor \u2013 Motion Picture Musical or Comedy for Jackman and the Golden Globe Award for Best Supporting Actress \u2013 Motion Picture for Hathaway. It also won four British Academy Film Awards (BAFTA), including the Best Actress in a Supporting Role (Hathaway). It received eight Academy Award nominations including Best Picture (the first musical nominated since 2002's winner Chicago) and Best Actor for Jackman, and won three, for Best Sound Mixing, Best Makeup and Hairstyling and Best Supporting Actress for Hathaway."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Prenup"}, "Title": {"type": "literal", "value": "The Prenup"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jun_Lana"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jennylyn_Mercado|http://dbpedia.org/resource/Sam_Milby"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Philippine_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "118"}, "Description": {"type": "literal", "value": "The Prenup is a 2015 Filipino romantic comedy film starring Jennylyn Mercado and Sam Milby. It is written and directed by Jun Lana. It was released on October 14, 2015 by Regal Entertainment. The film is about two people meet on a plane and fall in love in New York. They're all set to get married back in the Philippines, but the guy's rich parents are suspicious of the girl's intentions and insist on a prenuptial agreement."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Regal_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bridge_and_Tunnel_(film)"}, "Title": {"type": "literal", "value": "Bridge and Tunnel"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jason_Michael_Brescia"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Annet_Mahendru|http://dbpedia.org/resource/Mary_Kate_Wiles"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Bridge and Tunnel is a 2014 American comedy-drama film written and directed by Jason Michael Brescia and released by Glacier Road Productions. The film stars Ryan Metcalf, Mary Kate Wiles and Annet Mahendru and tells the story of a group of twentysomething millennials coming of age in Long Island, New York. The film highlights the psychological impact of 9/11 on the generation that grew up in the early part of the twenty-first century, the effects of the great recession on America's youth, and the destruction caused by Hurricane Sandy."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Gravitas_Ventures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/London_Betty"}, "Title": {"type": "literal", "value": "London Betty"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Thomas_Edward_Seymour"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Clint_Howard|http://dbpedia.org/resource/Daniel_von_Bargen|http://dbpedia.org/resource/Nicole_Lewis|http://dbpedia.org/resource/Russ_Russo|http://dbpedia.org/resource/Thomas_Edward_Seymour"}, "Published": {"type": "literal", "value": "2009-01-20"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_adventure_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "London Betty is a 2009 American comedy/adventure film directed and written by Thomas Edward Seymour. The film includes performances by Nicole Lewis, Daniel von Bargen (in his final performance), Russ Russo, and director Seymour, as well as narration by Clint Howard. London Betty made the list of \"Top Films of the Year\" on Moviesmademe.com in 2009. Originally having a theatrical release in 2009, the film was released on DVD in 2010 through Maverick Entertainment on their Platinum Label. In May 2011 London Betty hit the #3 spot for British comedy on Amazon on Demand."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Maverick_Entertainment_Group"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Other_People_(film)"}, "Title": {"type": "literal", "value": "Other People"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Kelly_(writer)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bradley_Whitford|http://dbpedia.org/resource/J._J._Totah|http://dbpedia.org/resource/Jesse_Plemons|http://dbpedia.org/resource/John_Early_(comedian)|http://dbpedia.org/resource/June_Squibb|http://dbpedia.org/resource/Madisen_Beaty|http://dbpedia.org/resource/Maude_Apatow|http://dbpedia.org/resource/Molly_Shannon|http://dbpedia.org/resource/Zach_Woods"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "Other People is a 2016 American comedy-drama film written and directed by Chris Kelly and stars Jesse Plemons, Molly Shannon, Bradley Whitford, Maude Apatow, Madisen Beaty, John Early, Zach Woods, J.J. Totah and June Squibb. The film had its world premiere at the 2016 Sundance Film Festival on January 21, 2016. The film was released on September 9, 2016, by Vertical Entertainment."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Vertical_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Uncle_Boonmee_Who_Can_Recall_His_Past_Lives"}, "Title": {"type": "literal", "value": "Uncle Boonmee Who Can Recall His Past Lives"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Apichatpong_Weerasethakul"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "Uncle Boonmee Who Can Recall His Past Lives (Thai: \u0e25\u0e38\u0e07\u0e1a\u0e38\u0e0d\u0e21\u0e35\u0e23\u0e30\u0e25\u0e36\u0e01\u0e0a\u0e32\u0e15\u0e34; rtgs: Lung Bunmi Raluek Chat) is a 2010 art drama Thai film written, produced and directed by Apichatpong Weerasethakul. The film, which explores the theme of reincarnation, won the Palme d'Or at the 2010 Cannes Film Festival, becoming the first Thai film to do so."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Being_Mrs_Elliot"}, "Title": {"type": "literal", "value": "Being Mrs. Elliot"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Omoni_Oboli"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ayo_Makun|http://dbpedia.org/resource/Majid_Michel|http://dbpedia.org/resource/Omoni_Oboli|http://dbpedia.org/resource/Sylvia_Oluchy|http://dbpedia.org/resource/Uru_Eke"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Nigerian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Being Mrs Elliot is a 2014 Nigerian romantic comedy film, co-produced and directed by Omoni Oboli. It stars Majid Michel, Omoni Oboli, Ayo Makun, Sylvia Oluchy and Seun Akindele. It premiered at Nollywood Film Festival in Paris on 5 June 2014. It received 6 nominations at the 2014 Best of Nollywood Awards and was also nominated in 9 categories at the 2014 Golden Icons Academy Movie Awards taking place in October."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/D.E.B.S._(2003_film)"}, "Title": {"type": "literal", "value": "D.E.B.S."}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Angela_Robinson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alex_Breckenridge|http://dbpedia.org/resource/Clare_Kramer|http://dbpedia.org/resource/Jill_Ritchie|http://dbpedia.org/resource/Shanti_Lowry|http://dbpedia.org/resource/Tammy_Lynn_Michaels"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films|http://dbpedia.org/resource/Category:Teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "11"}, "Description": {"type": "literal", "value": "D.E.B.S. is a 2003 action/comedy independent short film written and directed by Angela Robinson. D.E.B.S. made the film festival circuit including the Sundance Film Festival, L.A. Outfest and New York Lesbian and Gay Film Festival, receiving a total of seven film festival awards. D.E.B.S. is both a parody and an emulation of the Charlie's Angels format. It features a lesbian love story between one of the heroes and the villain."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/POWER_UP"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ride_Along_(film)"}, "Title": {"type": "literal", "value": "Ride Along"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tim_Story"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Police_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Ride Along is a 2014 American buddy cop action comedy film directed by Tim Story and starring Ice Cube, Kevin Hart, John Leguizamo, Bryan Callen, Tika Sumpter and Laurence Fishburne. Greg Coolidge, Jason Mantzoukas, Phil Hay, and Matt Manfredi wrote the screenplay based on a story originally from Coolidge. The film follows Ben Barber (Hart), a high school security guard who must prove to his girlfriend's brother, James Payton (Ice Cube), that he is worthy of marrying her. James, a police officer out to catch Serbian smugglers' boss Omar (Fishburne), takes Ben on a ride along to prove himself. Principal photography began on October 31, 2012 in Atlanta and ended on December 19, 2012. The film was produced by Relativity Media, Cube Vision Productions and Rainforest Films, and distributed by Universal Pictures. Following two premieres in Atlanta and Los Angeles, the film was released worldwide on January 17, 2014, with generally negative reviews. It earned a worldwide total of more than $153 million against a budget of $25 million. The film broke the record for highest domestic opening weekend gross in the month of January, taking in $41.5 million, a record broken again a year later when American Sniper had its wide release. A sequel, Ride Along 2, was released on January 15, 2016."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_F_Word_(2013_film)"}, "Title": {"type": "literal", "value": "The F Word"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Dowse"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Driver|http://dbpedia.org/resource/Daniel_Radcliffe|http://dbpedia.org/resource/Mackenzie_Davis|http://dbpedia.org/resource/Megan_Park|http://dbpedia.org/resource/Rafe_Spall|http://dbpedia.org/resource/Zoe_Kazan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films|http://dbpedia.org/resource/Category:Irish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "The F Word (released in some countries as What If) is a 2013 Irish-Canadian romantic comedy film directed by Michael Dowse and written by Elan Mastai, based on TJ Dawe and Michael Rinaldi's play Toothpaste and Cigars. The film stars Daniel Radcliffe, Zoe Kazan, Megan Park, Adam Driver, Mackenzie Davis and Rafe Spall. It premiered at the 2013 Toronto International Film Festival and was a nominee for Best Picture at the 2nd Canadian Screen Awards, and won for Adapted Screenplay."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Entertainment_One"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Remember_the_Daze"}, "Title": {"type": "literal", "value": "Remember the Daze"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jess_Manafort"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alexa_Vega|http://dbpedia.org/resource/Katrina_Begin|http://dbpedia.org/resource/Leighton_Meester|http://dbpedia.org/resource/Marnette_Patterson|http://dbpedia.org/resource/Melonie_Diaz"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Remember the Daze (originally titled The Beautiful Ordinary) is a 2007 drama film released in theaters in April 2008. The film was directed by Jess Manafort. The plot of the movie has been described as \"a glimpse into the teenage wasteland of suburbia 1999 that takes place over 24-hours, and the teenagers who make their way through the last day of high school in the last year of the past millennium.\" The film has been selected as one of the eight films competing in the Narrative Competition at the 2007 Los Angeles Film Festival which took place June 21-July 1. This was the world premiere of the film. In February 2008, the movie's title was changed from The Beautiful Ordinary. It was released in two theaters in LA, one in New York and one in Washington, D.C. on April 11, 2008 and was released on DVD on June 3, 2008. The movie was filmed primarily in Wilmington, North Carolina during May 2006."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/First_Look_International|http://dbpedia.org/resource/Freestyle_Releasing"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Quiet_Night_In"}, "Title": {"type": "literal", "value": "Quiet Night In"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Christopher_Banks"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Brian_McKay|http://dbpedia.org/resource/Brian_Moore_(actor)|http://dbpedia.org/resource/Kittichon_Helviphat|http://dbpedia.org/resource/Lucy_Gay|http://dbpedia.org/resource/Nicolette_Kenny|http://dbpedia.org/resource/Richard_Lambeth"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:New_Zealand_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "Quiet Night In is a 2005 New Zealand film written, produced and directed by Christopher Banks. It premiered at the Stratford-upon-Avon International Digital Film Festival in the United Kingdom."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Arkles_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Losers'_Club"}, "Title": {"type": "literal", "value": "Losers' Club"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tolga_\u00d6rnek"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "Losers' Club (Turkish: Kaybedenler Kul\u00fcb\u00fc) is a 2011 Turkish comedy-drama film, co-written and directed by Tolga \u00d6rnek based on a true story, starring Nejat \u0130\u015fler and Yi\u011fit \u00d6z\u015fener as the co-hosts of a contorversial mid-90s Istanbul radio show. The film, which opened on March 25, 2011 at number 2 in the Turkish box office, is one of the highest grossing Turkish films of 2011."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Tiglon_Film"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hello_Ghost"}, "Title": {"type": "literal", "value": "Hello Ghost"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kim_Young-tak"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cha_Tae-hyun|http://dbpedia.org/resource/Kang_Ye-won"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:South_Korean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "Hello Ghost (Hangul: \ud5ec\ub85c\uc6b0 \uace0\uc2a4\ud2b8; RR: Hello-u Goseuteu) is a 2010 South Korean comedy film about a man's multiple failed suicide attempts. After the most recent one, he discovers he can see a family of ghosts. The ghosts agree to leave him alone under the condition that he fulfill their requests. The film was the 9th highest grossing Korean film in 2010, with a total of 3,042,021 admissions nationwide. The Chosun Ilbo commented that the film was good for families. Cha Tae-hyun found his role challenging, especially because it required him to smoke cigarettes, which he does not do in real life."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Next_Entertainment_World"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Garden_State_(film)"}, "Title": {"type": "literal", "value": "Garden State"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Zach_Braff"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ian_Holm|http://dbpedia.org/resource/Natalie_Portman|http://dbpedia.org/resource/Peter_Sarsgaard|http://dbpedia.org/resource/Zach_Braff"}, "Published": {"type": "literal", "value": "2004-01-16|2004-07-28"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Garden State is a 2004 American romantic comedy-drama film, written and directed by Zach Braff and starring Braff, Natalie Portman, Peter Sarsgaard, and Ian Holm. The film centers on Andrew Largeman (Braff), a 26-year-old actor/waiter who returns to his hometown in New Jersey after his mother dies. Braff based the film on his real life experiences. It was filmed in April and May 2003 and released on July 28, 2004. New Jersey was the main setting and primary shooting location. Garden State received positive reviews upon its release and has garnered a cult following. It was an official selection of the Sundance Film Festival. The film also spawned a soundtrack for which Braff, who picked the music himself, won a Grammy Award."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Searchlight_Pictures|http://dbpedia.org/resource/Miramax_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Actors"}, "Title": {"type": "literal", "value": "The Actors"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Conor_McPherson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aisling_O'Sullivan|http://dbpedia.org/resource/Ben_Miller|http://dbpedia.org/resource/Dylan_Moran|http://dbpedia.org/resource/Lena_Headey|http://dbpedia.org/resource/Michael_Caine|http://dbpedia.org/resource/Michael_Gambon|http://dbpedia.org/resource/Michael_McElhatton|http://dbpedia.org/resource/Miranda_Richardson|http://dbpedia.org/resource/Simon_Delaney"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Irish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "The Actors is a 2003 film written and directed by Conor McPherson and starring Dylan Moran and Michael Caine. In supporting roles are Michael Gambon, Miranda Richardson and Lena Headey . The Actors is a contemporary comedy set in Dublin. It follows the exploits of two mediocre stage actors as they devise a plan to con a retired gangster out of \u00a350,000. The gangster owes the money to a third party, whom he has never met. The actors take advantage of this fact by impersonating this 'unidentified' third party, and claiming the debt as their own. To pull it off they enlist Moran's eerily intelligent nine-year-old niece, who restructures the plan each time something goes wrong. The two protagonists are acting in a version of Shakespeare's Richard III in which everyone dresses in Nazi uniform, a sly nod to Ian McKellen's production. The film is centred on the Olympia Theatre, and it is noteworthy for featuring the famous glass awning over the entrance which has since been destroyed in a traffic accident. The glass awning has since been rebuilt to its full former glory."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Miramax_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Let_the_Game_Begin"}, "Title": {"type": "literal", "value": "Let the Game Begin"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Amit_Gupta"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Rodriguez|http://dbpedia.org/resource/Diora_Baird|http://dbpedia.org/resource/James_Avery_(actor)|http://dbpedia.org/resource/Ken_Davitian|http://dbpedia.org/resource/Lisa_Ray|http://dbpedia.org/resource/Lochlyn_Munro|http://dbpedia.org/resource/Michael_Madsen|http://dbpedia.org/resource/Natasha_Henstridge|http://dbpedia.org/resource/Stephen_Baldwin|http://dbpedia.org/resource/Thomas_Ian_Nicholas"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_screwball_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Let the Game Begin is a 2010 American romantic comedy from Twisted Light Productions, directed by Amit Gupta. The film stars CSI: Miami actor Adam Rodriguez and Stephen Baldwin. The film was released in Australia on May 5, 2010, and was released in other countries in 2010 and 2011."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Signal_(2007_film)"}, "Title": {"type": "literal", "value": "The Signal"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dan_Bush|http://dbpedia.org/resource/David_Bruckner|http://dbpedia.org/resource/Jacob_Gentry"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/A._J._Bowen|http://dbpedia.org/resource/Anessa_Ramsey|http://dbpedia.org/resource/Justin_Welborn"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "The Signal is an American horror film written and directed by independent filmmakers David Bruckner, Dan Bush and Jacob Gentry. It is told in three parts, in which all telecommunication and audiovisual devices transmit only a mysterious signal turning people mad and activating murderous behaviour in many of those affected. The film's three interconnected chapters (\"transmissions\") are presented in a nonlinear narrative. Each of them manifests elements of (besides the overall genre of psychological horror), respectively, splatter film, black comedy, and a post-apocalyptic love story. The Signal was met with a mixed but largely positive critical reception."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Magnolia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/25_Watts"}, "Title": {"type": "literal", "value": "25 watts"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Juan_Pablo_Rebella|http://dbpedia.org/resource/Pablo_Stoll"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Daniel_Hendler"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "-94"}, "Description": {"type": "literal", "value": ""}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Cinema_Tropical"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Italiano_medio"}, "Title": {"type": "literal", "value": "Italiano medio"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Maccio_Capatonda"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Maccio_Capatonda"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Italiano medio (lit. \"Average Italian Man\") is a 2015 Italian comedy film written, directed and starred by Maccio Capatonda."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Medusa_Film"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/El_Amor_\u2013_primera_parte"}, "Title": {"type": "literal", "value": "El Amor - primera parte"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alejandro_Fadel|http://dbpedia.org/resource/Juan_Schnitman|http://dbpedia.org/resource/Santiago_Mitre"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Leonora_Balcarce|http://dbpedia.org/resource/Luciano_C\u00e1ceres"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "El Amor \u2013 primera parte (English language:The Love-Part One) is a 2004 Argentine independent romantic comedy film directed and written by Alejandro Fadel and Mart\u00edn Mauregui and Juan Schnitman and Santiago Mitre"}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Cabin_Fever_2:_Spring_Fever"}, "Title": {"type": "literal", "value": "Cabin Fever 2: Spring Fever"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ti_West"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Giuseppe_Andrews|http://dbpedia.org/resource/Judah_Friedlander|http://dbpedia.org/resource/Larry_Fessenden|http://dbpedia.org/resource/Marc_Senter|http://dbpedia.org/resource/Mark_Borchardt|http://dbpedia.org/resource/Michael_Bowen_(actor)|http://dbpedia.org/resource/Noah_Segan|http://dbpedia.org/resource/Rider_Strong"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Cabin Fever 2: Spring Fever (also known as Cabin Fever 2 or Cabin Fever: Spring Fever) is an 2009 American horror film. The film is about a high school prom that descends into sheer panic when a deadly flesh-eating virus spreads via a popular brand of bottled water. The film was directed by Ti West and the sequel to the 2002 film, Cabin Fever."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lions_Gate"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Exclusive:_Beat_the_Devil's_Tattoo"}, "Title": {"type": "literal", "value": "The Exclusive: Beat the Devil's Tattoo"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Roh_Deok"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jo_Jung-suk|http://dbpedia.org/resource/Lee_Ha-na|http://dbpedia.org/resource/Lee_Mi-sook"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:South_Korean_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "125"}, "Description": {"type": "literal", "value": "The Exclusive: Beat the Devil's Tattoo (Hangul: \ud2b9\uc885: \ub7c9\uccb8\uc0b4\uc778\uae30; RR: Teukjong: Ryangchensalingi) is a 2015 South Korean thriller film directed by Roh Deok. It was released on October 22, 2015."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lotte_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Money_Money,_More_Money"}, "Title": {"type": "literal", "value": "Money Money, More Money"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/J._D._Chakravarthy"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Brahmanandam|http://dbpedia.org/resource/J._D._Chakravarthy"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "Money Money, More Money is a Telugu film directed by J. D. Chakravarthy. The film is a remake of 2006 film Darwaaza Bandh Rakho. The film is touted as a sequel to the films, Money (1993) and Money Money (1995). The film highlights actor Brahmanandam's noted role as Khan Dada in the earlier series."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Reliance_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Like_a_Virgin_(film)"}, "Title": {"type": "literal", "value": "Like a Virgin"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lee_Hae-jun|http://dbpedia.org/resource/Lee_Hae-young"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Baek_Yoon-sik|http://dbpedia.org/resource/Kim_Yoon-seok|http://dbpedia.org/resource/Lee_Eon|http://dbpedia.org/resource/Ryu_Deok-hwan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:South_Korean_comedy_films|http://dbpedia.org/resource/Category:Teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "Like a Virgin (Hangul: \ucc9c\ud558\uc7a5\uc0ac \ub9c8\ub3c8\ub098; RR: Cheonhajangsa Madonna; lit. \"Strong Man Under Heaven Madonna\") is a 2006 South Korean film, written and directed by Lee Hae-jun and Lee Hae-young. Ryu Deok-hwan stars in the lead role as transgender teenager Oh Dong-ku, and won several domestic awards for his performance, as well as a nomination for the Asia Pacific Screen Award Best Performance by an Actor. The film's English title is a reference to a Madonna song of the same name."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/CJ_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tango_&_Cash"}, "Title": {"type": "literal", "value": "Tango & Cash"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Albert_Magnoli|http://dbpedia.org/resource/Andrei_Konchalovsky|http://dbpedia.org/resource/Peter_MacDonald_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jack_Palance|http://dbpedia.org/resource/Kurt_Russell|http://dbpedia.org/resource/Sylvester_Stallone"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1980s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Tango & Cash is a 1989 American buddy cop action comedy film that was mainly directed by Andrei Konchalovsky, although Albert Magnoli took over in the later stages of filming. It stars Sylvester Stallone, Kurt Russell, Jack Palance, and Teri Hatcher. The film was released in the United States on December 22, 1989, and was the final film to be released in the 1980s. Tango & Cash follows Raymond Tango and Gabriel Cash, two rival LAPD narcotics detectives, who are forced to work together after the criminal mastermind Yves Perret frames both of them for murder."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Devil_Dared_Me_To"}, "Title": {"type": "literal", "value": "The Devil Dared Me To"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Stapp"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bonnie_Soper|http://dbpedia.org/resource/Chris_Stapp|http://dbpedia.org/resource/Dominic_Bowden|http://dbpedia.org/resource/Matt_Heath_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "77"}, "Description": {"type": "literal", "value": "The Devil Dared Me To is a New Zealand film written by and starring Chris Stapp and Matt Heath. The film revolves around a fictional stuntman, Randy Cambell, who aspires to be the greatest living New Zealander in that profession. The character was first developed as the stuntman in Stapp and Heath's Back Of The Y Masterpiece Television. Stapp told the New Zealand Listener: Our aim is to make the greatest New Zealand film since Goodbye Pork Pie\". The film was released in theaters across New Zealand on 11 October 2007. The film grossed $93,950 after four days on 35 screens to rank sixth on the week\u2019s box office top 20; after seven days, it had earned $127,320, and earned another $52,000 over Labour Weekend."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Killer_Bud"}, "Title": {"type": "literal", "value": "Killer Bud"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Karl_T._Hirsch"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Corin_Nemec|http://dbpedia.org/resource/Danielle_Harris|http://dbpedia.org/resource/David_Faustino|http://dbpedia.org/resource/Michael_Wiseman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Killer Bud is an American comedy film released in 2001. It was Robert Stack's final film prior to his death in 2003."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Clown_(2011_film)"}, "Title": {"type": "literal", "value": "The Clown"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Selton_Mello"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Larissa_Manoela|http://dbpedia.org/resource/Paulo_Jos\u00e9|http://dbpedia.org/resource/Selton_Mello"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Brazilian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "The Clown (Portuguese: O Palha\u00e7o) is a 2011 Brazilian comedy-drama film. It is the second feature film directed by Selton Mello, who also stars as the protagonist. The film follows the story of the father and son Benjamin and Valdemar, who work as clowns Pangar\u00e9 and Puro Sangue, running the country roads together with the Circus Hope troupe. The clown Benjamin, however, is in crisis. He thinks that is not funny anymore. The film was selected as the Brazilian entry for the Best Foreign Language Oscar at the 85th Academy Awards."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jigarthanda"}, "Title": {"type": "literal", "value": "Jigarthanda"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Karthik_Subbaraj"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aadukalam_Naren|http://dbpedia.org/resource/Bobby_Simha|http://dbpedia.org/resource/Guru_Somasundaram|http://dbpedia.org/resource/Karunakaran_(actor)|http://dbpedia.org/resource/Lakshmi_Menon_(actress)|http://dbpedia.org/resource/Siddharth_(actor)|http://dbpedia.org/resource/Soundararaja|http://dbpedia.org/resource/Vinodhini_Vaidyanathan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "171"}, "Description": {"type": "literal", "value": "Jigarthanda (English: Cold Heart) is a 2014 Indian Tamil black comedy-musical gangster film written and directed by Karthik Subbaraj. Produced by Kathiresan's Group Company, it features Siddharth, Bobby Simha and Lakshmi Menon in the lead, while the supporting cast includes Nassar, Ambika, Karunakaran and Sangili Murugan. Gavemic U Ary was the film's cinematographer, making his debut in Tamil cinema, and Vivek Harshan was the film's editor. Santhosh Narayanan composed the songs and background score. The film was produced under Kathiresan's production banner, Group company. It also won two National Film Awards for Best Supporting Actor (Bobby Simha) and Best Editing (Vivek Harshan). The plot revolves around Karthik (Siddharth), an assistant director who is thrown out of a reality new filmmakers show, as his short film was disappointing. Heartbroken, Karthik has the support of one of the judges (Aadukalam Naren) who believes he has the stuff to be a great director and is willing to back him if he does a script on a real life gangster. Karthik travels to Madurai looking to make a film based on the life and times of the notorious gangster Assault Sethu (Bobby Simha). The rest of the plot deals with how Karthik makes his film with the help of his friend Oorani (Karunakaran). The shoot of the film, entirely held in Madurai, started on 12 June 2013  and was completed after five months on 21 November 2013. Jigarthanda released on 1 August 2014 worldwide to critical acclaim from critics as well as audience who appreciated the film's script, performances, cinematography and music. The film was deemed as one of the most technically brilliant films in Tamil Cinema. The film was also dubbed into Telugu as Chikkadu Dorakadu, becoming Siddharth's first Telugu release in Telangana and Andhra Pradesh post their bifurcation. It was remade in Kannada with the same title in 2016 which was produced by actor Sudeep. The film completed 50 days at the box office, and was declared a \"Hit\" after it grossed \u20b935 crore (US$5.2 million) against a budget of \u20b910 crore (US$1.5 million)."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Going_the_Distance_(2010_film)"}, "Title": {"type": "literal", "value": "Going the Distance"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nanette_Burstein"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Charlie_Day|http://dbpedia.org/resource/Christina_Applegate|http://dbpedia.org/resource/Drew_Barrymore|http://dbpedia.org/resource/Jason_Sudeikis|http://dbpedia.org/resource/Justin_Long"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Going the Distance is a 2010 American romantic comedy film directed by Nanette Burstein and written by Geoff LaTulippe. It stars Drew Barrymore and Justin Long as a young couple, Erin and Garrett, who fall in love one summer in New York City and try to keep their long-distance relationship alive, when Erin heads home to San Francisco."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/New_Line_Cinema|http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Two-Bit_Waltz"}, "Title": {"type": "literal", "value": "Two-Bit Waltz"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Clara_Mamet"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/David_Paymer|http://dbpedia.org/resource/Jared_Gilman|http://dbpedia.org/resource/Rebecca_Pidgeon|http://dbpedia.org/resource/William_H._Macy"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "Two-Bit Waltz is a 2014 American comedy, drama film, written and directed by Clara Mamet in her directorial debut. It stars Mamet, Jared Gilman, Rebecca Pidgeon, David Paymer and William H. Macy. The film had its world premiere at the Tribeca Film Festival on April 19, 2014, and was released in a limited release on October 24, 2014, by Monterey Media."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/In_the_Land_of_Women"}, "Title": {"type": "literal", "value": "In the Land of Women"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jon_Kasdan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Brody|http://dbpedia.org/resource/Kristen_Stewart|http://dbpedia.org/resource/Meg_Ryan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "In the Land of Women is a 2007 American romantic comedy-drama film directed and written by Jon Kasdan. The film premiered in the United States on April 20, 2007."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros._Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/CHiPs_(film)"}, "Title": {"type": "literal", "value": "CHiPs"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dax_Shepard"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "CHiPs is an upcoming American action comedy film written and directed by Dax Shepard, based on the 1970s television series of the same name created by Rick Rosner. The film stars Shepard as Officer Jon Baker and Michael Pe\u00f1a as Frank \u201cPonch\u201d Poncherello, while the other cast includes Vincent D'Onofrio, Adam Brody, Rosa Salazar, Vida Guerra, and Kristen Bell. Principal photography began on October 21, 2015 in Los Angeles. CHiPs is scheduled to be released on August 11, 2017 by Warner Bros. Pictures. The MPAA has given the film an R rating."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros._Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Adventure_of_Iron_Pussy"}, "Title": {"type": "literal", "value": "The Adventure of Iron Pussy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Apichatpong_Weerasethakul|http://dbpedia.org/resource/Michael_Shaowanasai"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Krissada_Terrence|http://dbpedia.org/resource/Michael_Shaowanasai"}, "Published": {"type": "literal", "value": "2003-11-01"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "The Adventure of Iron Pussy (Thai: \u0e2b\u0e31\u0e27\u0e43\u0e08\u0e17\u0e23\u0e19\u0e07 or Hua jai tor ra nong) is a 2003 Thai musical-action-comedy film written and directed by Apichatpong Weerasethakul and Michael Shaowanasai and starring Shaowanasai. The protagonist is a transvestite Thai secret agent whose alter ego is a gay male convenience clerk. A homage and parody of the 1970s Thai action films, musicals and melodramas, particularly those that starred Mitr Chaibancha and Petchara Chaowarat, the movie premiered at the 2003 Tokyo International Film Festival and has also played at the Berlin Film Festival, the International Film Festival Rotterdam and other festivals. It is a cult film and has screened at several gay and lesbian film festivals as well."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kiss_and_Tell_(2011_film)"}, "Title": {"type": "literal", "value": "Kiss and Tell"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Desmond_Elliot"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Desmond_Elliot|http://dbpedia.org/resource/Joseph_Benjamin_(actor)|http://dbpedia.org/resource/Monalisa_Chinda|http://dbpedia.org/resource/Nse_Ikpe_Etim|http://dbpedia.org/resource/Uche_Jombo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Nigerian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "Kiss and Tell is a 2011 Nigerian romantic comedy film, produced by Emem Isong and directed by Desmond Elliot. It stars Monalisa Chinda, Joseph Benjamin, Desmond Elliot, Nse Ikpe Etim, Uche Jombo and Bhaira Mcwizu. Though the film was a commercial success, it was met with mixed to negative reception. The film revolves around two Casanovas, friends and business partners; Iyke (Joseph Benjamin) and Bernard (Desmond Elliot), and a divorce lawyer, Delphine (Monalisa Chinda), who is a divorcee herself and doesn't want to have anything to do with men again. Bernard strikes a bet with Iyke which involves Iyke having sex with Delphine in ten days or forfeit five percent of his shares to Bernard; if Iyke succeeded, he'd have five percent of Bernard's shares. However, Bernard tells Tena (Nse Ikpe Etim), Delphine's best friend about the bet in order to have an edge, thereby complicating things for Iyke."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mister_Lonely"}, "Title": {"type": "literal", "value": "Mr. Lonely"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Harmony_Korine"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anita_Pallenberg|http://dbpedia.org/resource/Denis_Lavant|http://dbpedia.org/resource/Diego_Luna|http://dbpedia.org/resource/James_Fox|http://dbpedia.org/resource/Samantha_Morton|http://dbpedia.org/resource/Werner_Herzog"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:British_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "113"}, "Description": {"type": "literal", "value": "Mister Lonely is a 2007 British-French-Irish-American comedy-drama film directed by Harmony Korine and co-written with his brother Avi Korine. The film features an ensemble cast of well-known foreign actors, including Diego Luna, Samantha Morton, Denis Lavant, Werner Herzog, James Fox, Anita Pallenberg and Leos Carax."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Films|http://dbpedia.org/resource/Palisades_Tartan"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Troma's_War"}, "Title": {"type": "literal", "value": "Troma's War"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lloyd_Kaufman|http://dbpedia.org/resource/Michael_Herz_(producer)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1980s_comedy_horror_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "Troma's War, also known as 1,000 Ways to Die in the United States, is a 1988 American action/adventure film written by Lloyd Kaufman and Mitchell Dana and directed by Michael Herz and Kaufman (credited as Samuel Weil). It began production in 1986 and was released in theaters in 1988 shortly after Class of Nuke 'Em High was done making its rounds at the box office."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ek_Main_Aur_Ekk_Tu"}, "Title": {"type": "literal", "value": "Ek Main Aur Ekk Tu"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Shakun_Batra"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Boman_Irani|http://dbpedia.org/resource/Imran_Khan_(Indian_actor)|http://dbpedia.org/resource/Kareena_Kapoor|http://dbpedia.org/resource/Ram_Kapoor|http://dbpedia.org/resource/Ratna_Pathak_Shah"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "Ek Main Aur Ekk Tu (English: One me, and one you) is a 2012 Indian romantic comedy film written and directed by Shakun Batra in his directorial debut. It was produced by Karan Johar and Hiroo Yash Johar under the banner of Dharma Productions, alongside Ronnie Screwvala of UTV Motion Pictures. The film features Imran Khan and Kareena Kapoor in lead roles, with Ratna Pathak Shah, Boman Irani and Ram Kapoor in supporting roles. The plot centers on an uptight architect named Rahul Kapoor, living in Las Vegas, Nevada, who loses his job and, following a night of debauchery, accidentally marries a free-spirited hairstylist named Riana Braganza. After mutually deciding to annul the marriage, Rahul begins a one-sided attraction for Riana, which threatens to ruin their new friendship. Development began in 2010, when Johar signed Batra and Khan for a film to be made under his banner. Inspired by the Woody Allen style of film-making, Ayesha Devitre and Batra worked on the script, with principal photography taking place in Vegas, Los Angeles, Pataudi and Mumbai. The features music by Clinton Cerejo and Amit Trivedi, with the former composing the score and the latter composing the songs. The lyrics for songs were written by Amitabh Bhattacharya. Originally slated to release during the fall of 2011, Ek Main Aur Ekk Tu eventually released on 10 February 2012, to positive critical notice, with major praise directed to Kapoor and Khan's performance, and proved a moderate commercial success."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/UTV_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Cheap_Thrills_(film)"}, "Title": {"type": "literal", "value": "Cheap Thrills"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/E._L._Katz"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/David_Koechner|http://dbpedia.org/resource/Ethan_Embry|http://dbpedia.org/resource/Pat_Healy_(actor)|http://dbpedia.org/resource/Sara_Paxton"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_comedy_thriller_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Cheap Thrills is a 2013 black comedy thriller film, directed by E. L. Katz in his directorial debut. It premiered at South by Southwest (SXSW) on March 8, 2013, and was acquired by Drafthouse Films and Snoot Entertainment. It was released on March 24, 2014, in the United States."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Drafthouse_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Specials_(film)"}, "Title": {"type": "literal", "value": "The Specials"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Craig_Mazin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/James_Gunn_(filmmaker)|http://dbpedia.org/resource/Jamie_Kennedy|http://dbpedia.org/resource/Jim_Zulevic|http://dbpedia.org/resource/Jordan_Ladd|http://dbpedia.org/resource/Judy_Greer|http://dbpedia.org/resource/Kelly_Coffield|http://dbpedia.org/resource/Paget_Brewster|http://dbpedia.org/resource/Rob_Lowe|http://dbpedia.org/resource/Sean_Gunn|http://dbpedia.org/resource/Thomas_Haden_Church"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "The Specials is a 2000 American comedy film about a group of ordinary superheroes on their day off. According to the film, the Specials are the sixth or seventh most popular group of superheroes in the world. Unlike most superhero films, The Specials has almost no action and few special effects; instead it focuses on the average day-to-day lives of the heroes. The film was written by James Gunn, directed by Craig Mazin, and produced on a small $1 million budget, which is unusual for a superhero-themed film. The MPAA gave the film an R rating for strong language."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Anchor_Bay_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jiyo_Kaka"}, "Title": {"type": "literal", "value": "Jiyo Kaka"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Parambrata_Chatterjee"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Rudranil_Ghosh|http://dbpedia.org/resource/Saswata_Chattopadhyay"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Jiyo Kaka (Bengali: \u099c\u09bf\u09af\u09bc\u09cb \u0995\u09be\u0995\u09be) is a 2011 Bengali comedy film directed by debutant Parambrata Chattopadhyay, the renowned film actor."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Once_Upon_a_Time_in_the_Midlands"}, "Title": {"type": "literal", "value": "Once Upon a Time in the Midlands"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Shane_Meadows"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kathy_Burke|http://dbpedia.org/resource/Rhys_Ifans|http://dbpedia.org/resource/Ricky_Tomlinson|http://dbpedia.org/resource/Robert_Carlyle|http://dbpedia.org/resource/Shirley_Henderson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:British_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "Once Upon a Time in the Midlands is a 2002 British romantic comedy film written and directed by Shane Meadows, starring Robert Carlyle, Rhys Ifans, Kathy Burke, Ricky Tomlinson and Shirley Henderson. It is set in Nottingham in the northeast Midlands."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Film4"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Persepolis_(film)"}, "Title": {"type": "literal", "value": "Persepolis"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Marjane_Satrapi|http://dbpedia.org/resource/Vincent_Paronnaud"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:Animated_comedy_films|http://dbpedia.org/resource/Category:French_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Persepolis is a 2007 French animated film based on Marjane Satrapi's autobiographical graphic novel of the same name. The film was written and directed by Satrapi with Vincent Paronnaud. The story follows a young girl as she comes of age against the backdrop of the Iranian Revolution. The title is a reference to the historic city of Persepolis. The film was co-winner of the Jury Prize at the 2007 Cannes Film Festivaland was released in France and Belgium on 27 June. In her acceptance speech, Satrapi said \"Although this film is universal, I wish to dedicate the prize to all Iranians.\" The film was also nominated for the Academy Award for Best Animated Feature, but lost to Ratatouille. The film was released in the United States on 25 December 2007."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sony_Pictures_Classics"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dear_Secret_Santa"}, "Title": {"type": "literal", "value": "Dear Secret Santa"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Peter_Sullivan_(screenwriter)"}, "Author": {"type": "literal", "value": "http://dbpedia.org/resource/Peter_Sullivan_(screenwriter)"}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bill_Cobbs|http://dbpedia.org/resource/Della_Reese|http://dbpedia.org/resource/Ernie_Hudson|http://dbpedia.org/resource/Jordin_Sparks|http://dbpedia.org/resource/Lamorne_Morris|http://dbpedia.org/resource/Tatyana_Ali"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Dear Secret Santa (also known as Christmas Card) is a Lifetime Television romantic Christmas film, starring Tatyana Ali, Jordin Sparks, Bill Cobbs, Della Reese, Ernie Hudson and Lamorne Morris. The film was directed by Peter Sullivan. The film premiered on Saturday November 30, 2013 on Lifetime."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Happy_(2006_film)"}, "Title": {"type": "literal", "value": "Happy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/A._Karunakaran"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Allu_Arjun|http://dbpedia.org/resource/Genelia_D'Souza|http://dbpedia.org/resource/Manoj_Bajpayee"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "152"}, "Description": {"type": "literal", "value": "Happy is a 2006 Telugu romantic drama film directed by A. Karunakaran. The film stars Allu Arjun, Genelia D'Souza and Manoj Bajpayee in lead roles; music was scored by Yuvan Shankar Raja. The film was produced by Allu Aravind and released on 27 January 2006. Upon release, the film was dubbed into Malayalam and released with the title Happy be Happy. The Telugu version was moderately successful at the box office whereas the Malayalam version was a smash hit collecting \u20b9 12.22 lakhs in its opening week at Ernakulam.The film ran a total of 170 days in kerala and bought a huge fans to allu arjun in kerala. The film was remade in Bengali under the title Bolo Na Tumi Amar starring Dev and Koel Mallick and in Oriya under the title Loafer starring Babushaan and Archita Sahu. The movie was dubbed into Hindi as Dum."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Geetha_Arts"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Story_of_Luke"}, "Title": {"type": "literal", "value": "The Story Of Luke"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alonso_Mayo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cary_Elwes|http://dbpedia.org/resource/Kristin_Bauer|http://dbpedia.org/resource/Lou_Taylor_Pucci|http://dbpedia.org/resource/Seth_Green"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "The Story Of Luke is a 2012 American comedy-drama film written and directed by Alonso Mayo. It is Mayo's first feature-length film and tells the story of Luke, a young man with autism who embarks on a quest for a job and a girlfriend. It stars Lou Taylor Pucci, Seth Green, Cary Elwes and Kristin Bauer."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Gravitas_Ventures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Vasuvum_Saravananum_Onna_Padichavanga"}, "Title": {"type": "literal", "value": "Vasuvum Saravananum Onna Padichavanga"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/M._Rajesh"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Arya_(actor)|http://dbpedia.org/resource/Karunakaran_(actor)|http://dbpedia.org/resource/Muktha_(actress)|http://dbpedia.org/resource/Santhanam_(actor)|http://dbpedia.org/resource/Tamannaah|http://dbpedia.org/resource/Vidyullekha_Raman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "0.2|158"}, "Description": {"type": "literal", "value": "Vasuvum Saravananum Onna Padichavanga (English Translation: Vasu and Saravanan Studied Together) is an Indian Tamil romantic comedy film written and directed by M. Rajesh. It features Arya and Tamannaah in lead roles while Santhanam plays a prominent role. Actor Vishal made a cameo appearance in this film. Arya himself is producing the film under his production company 'The Show People' associating with Prasad V Potluri's PVP cinema. The soundtrack was composed by D. Imman. Nirav Shah and Vivek Harshan handled cinematography and editing, respectively. The film began production in November 2014 and was released on 14 August 2015. The movie was a flop at the box office."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Shanghai_Kiss"}, "Title": {"type": "literal", "value": "Shanghai Kiss"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_Ren"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hayden_Panettiere|http://dbpedia.org/resource/Kelly_Hu|http://dbpedia.org/resource/Ken_Leung"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:Teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "Shanghai Kiss is a 2007 direct-to-DVD film. The film was released on DVD on October 9, 2007.Hayden Panettiere won the Feature Film Award at the Newport Beach Film Festival for her role as Adelaide. Liam Liu (Ken Leung), a Chinese American actor dwelling in Los Angeles unwittingly gets involved with a high school girl. He suddenly has to go to China after learning from his father that he has inherited his grandmother's home in Shanghai. He's not very appreciative of his Chinese roots and at first only wants to sell the house and get back to the U.S. as fast as possible. He gets a taste of Chinese customs after meeting a girl there and ends up having some big decisions to make."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Anchor_Bay_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Denias,_Senandung_Di_Atas_Awan"}, "Title": {"type": "literal", "value": "Denias, Senandung Di Atas Awan"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/John_de_Rantau"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006-10-19"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Indonesian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "Denias, Senandung Di Atas Awan (Denias, Singing on the Cloud) is a 2006 Indonesian film directed by John de Rantau. This film was starring Albert Fakdawer, Ari Sihasale, Nia Zulkarnaen and Marcella Zalianty. The film received the 2007 Asia Pacific Screen Award for Best Children's Feature Film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Alenia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Out_of_Nature"}, "Title": {"type": "literal", "value": "Out of Nature"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ole_Gi\u00e6ver"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ole_Gi\u00e6ver"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Norwegian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "Out of Nature (Norwegian: Mot naturen) is a 2014 Norwegian comedy film written, directed by and starring Ole Gi\u00e6ver. It was screened in the Contemporary World Cinema section at the 2014 Toronto International Film Festival. It was screened in the Panorama section of the 65th Berlin International Film Festival in February 2015. The film was nominated for the 2015 Nordic Council Film Prize."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hormones_(film)"}, "Title": {"type": "literal", "value": "Hormones"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Songyos_Sugmakanan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chantavit_Dhanasevi|http://dbpedia.org/resource/Charlie_Trairat|http://dbpedia.org/resource/Focus_Jirakul|http://dbpedia.org/resource/Lu_Ting_Wei|http://dbpedia.org/resource/Sora_Aoi|http://dbpedia.org/resource/Ungsumalynn_Sirapatsakmetha"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Hormones (Thai: \u0e1b\u0e34\u0e14\u0e40\u0e17\u0e2d\u0e21\u0e43\u0e2b\u0e0d\u0e48 \u0e2b\u0e31\u0e27\u0e43\u0e08\u0e27\u0e49\u0e32\u0e27\u0e38\u0e48\u0e19; rtgs: Pit Thoem Yai Hua Chai Wa Wun) is a 2008 Thai romantic comedy film directed by Songyos Sugmakanan. The literal meaning of the Thai title is 'restless hearts during school break' or 'school break, hearts aflutter'."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/GMM_Tai_Hub"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Truth_Below"}, "Title": {"type": "literal", "value": "The Truth Below"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Scott_Glosserman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gillian_Zinser|http://dbpedia.org/resource/Reid_Ewing|http://dbpedia.org/resource/Ricky_Mabe"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "The Truth Below is a thriller teen television film. The film stars Gillian Zinser, Ricky Mabe, Reid Ewing and Nick Thurston. The film, which was developed by Glen Echo Entertainment and produced in Calgary, Alberta, by Nomadic Pictures, was directed by Scott Glosserman and written by Wendy Diane Miller. Filming began in April 2010. The film's distributor is MTV Networks. The film heavily features music from American pop-punk band A Day To Remember."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/MTV"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_To_Do_List"}, "Title": {"type": "literal", "value": "The To Do List"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Maggie_Carey"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alia_Shawkat|http://dbpedia.org/resource/Andy_Samberg|http://dbpedia.org/resource/Aubrey_Plaza|http://dbpedia.org/resource/Bill_Hader|http://dbpedia.org/resource/Christopher_Mintz-Plasse|http://dbpedia.org/resource/Clark_Gregg|http://dbpedia.org/resource/Connie_Britton|http://dbpedia.org/resource/Donald_Glover|http://dbpedia.org/resource/Johnny_Simmons|http://dbpedia.org/resource/Rachel_Bilson|http://dbpedia.org/resource/Sarah_Steele|http://dbpedia.org/resource/Scott_Porter"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "The To Do List is a 2013 American romantic comedy film released on July 26, 2013. Written and directed by Maggie Carey in her feature film directorial debut, the film stars Aubrey Plaza, Johnny Simmons, Christopher Mintz-Plasse, Scott Porter, and Rachel Bilson. The film is about a virginal recent high school graduate (Plaza), who feels she needs to have more sexual experiences before she starts college."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/CBS_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Teenage_Mutant_Ninja_Turtles_(2014_film)"}, "Title": {"type": "literal", "value": "Teenage Mutant Ninja Turtles"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jonathan_Liebesman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alan_Ritchson|http://dbpedia.org/resource/Danny_Woodburn|http://dbpedia.org/resource/Jeremy_Howard_(actor)|http://dbpedia.org/resource/Megan_Fox|http://dbpedia.org/resource/Noel_Fisher|http://dbpedia.org/resource/Pete_Ploszek|http://dbpedia.org/resource/Will_Arnett|http://dbpedia.org/resource/William_Fichtner"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Teenage Mutant Ninja Turtles is a 2014 American action adventure film based on the Mirage Studios characters of the same name, produced by Nickelodeon Movies and Platinum Dunes, and distributed by Paramount Pictures. It is the fifth film of the Teenage Mutant Ninja Turtles film series and is also a reboot that features the main characters, portrayed by a new cast and the first in the reboot series. The film was directed by Jonathan Liebesman, written by Josh Appelbaum, Andr\u00e9 Nemec and Evan Daugherty, and stars Megan Fox, Will Arnett, William Fichtner, Minae Noji, Whoopi Goldberg, Abby Elliott and Tohoru Masamune, and featuring voices of Johnny Knoxville, Alan Ritchson, Noel Fisher, Jeremy Howard and Tony Shalhoub. The film was announced shortly before Teenage Mutant Ninja Turtles co-creator Peter Laird sold the rights to the characters to Nickelodeon in October 2009. The film was released on August 8, 2014. The film received generally negative reviews from critics, but was a box office success, earning $493.3 million on a $125 million budget and it became the highest grossing film in the series. The film won the Worst Supporting Actress award at the 35th Golden Raspberry Awards in 2015 for Fox's performance as April O'Neil and also received nominations for Worst Picture, Worst Prequel, Remake, Rip-off or Sequel, Worst Director, and Worst Screenplay. Conversely, it was also nominated at the 28th Kids' Choice Awards for Favorite Movie, Favorite Movie Actor and Favorite Movie Actress. A sequel, Teenage Mutant Ninja Turtles: Out of the Shadows, was released on June 3, 2016."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Worst_Week_of_My_Life_(film)"}, "Title": {"type": "literal", "value": "The Worst Week of My Life"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alessandro_Genovesi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alessandro_Siani|http://dbpedia.org/resource/Cristiana_Capotondi|http://dbpedia.org/resource/Fabio_De_Luigi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Italian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "The Worst Week of My Life (Italian: La peggior settimana della mia vita) is a 2011 Italian comedy film directed by Alessandro Genovesi. It is based on the British sitcom of the same name."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Terri_(film)"}, "Title": {"type": "literal", "value": "Terri"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Azazel_Jacobs"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Creed_Bratton|http://dbpedia.org/resource/Jacob_Wysocki|http://dbpedia.org/resource/John_C._Reilly"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Terri is a 2011 independent comedy-drama film about the friendship that develops between an oversized teen misfit and the garrulous but well-meaning school principal who takes an interest in him. Filming took place in Los Angeles, California."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Me_and_You_and_Everyone_We_Know"}, "Title": {"type": "literal", "value": "Me and You and Everyone We Know"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Miranda_July"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/JoNell_Kennedy|http://dbpedia.org/resource/John_Hawkes_(actor)|http://dbpedia.org/resource/Miranda_July"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Me and You and Everyone We Know is a 2005 American romantic comedy-drama film written and directed by Miranda July (her directorial debut) and stars July, John Hawkes, Miles Thompson, Brandon Ratcliff, Natasha Slayton, Najarra Townsend, Carlie Westerman, and JoNell Kennedy."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/No_Entry_Pudhe_Dhoka_Aahey"}, "Title": {"type": "literal", "value": "No Entry Pudhe Dhoka Aahe"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ankush_Choudhary"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aniket_Vishwasrao|http://dbpedia.org/resource/Ankush_Choudhary|http://dbpedia.org/resource/Bharat_Jadhav|http://dbpedia.org/resource/Kranti_Redkar|http://dbpedia.org/resource/Manwa_Naik|http://dbpedia.org/resource/Sai_Lokur|http://dbpedia.org/resource/Sai_Tamhankar"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "163"}, "Description": {"type": "literal", "value": "No Entry Pudhe Dhoka Aahe is a Marathi comedy film released on 7 September 2012. The film was directed by Ankush Choudhary and produced by Prem Rajagopalan and Nikhil Saini. The film stars Ankush Choudhary, Bharat Jadhav, Aniket Vishwasrao, Kranti Redkar, Manwa Naik, Sai Lokur, Sai Tamhankar and Paddy Kambli. It's a remake of 2002 Tamil film Charlie Chaplin."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Unlucky_Plaza"}, "Title": {"type": "literal", "value": "Unlucky Plaza"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ken_Kwek"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adrian_Pang|http://dbpedia.org/resource/Epy_Quizon|http://dbpedia.org/resource/Guo_Liang_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_criminal_comedy_films|http://dbpedia.org/resource/Category:Black_comedy_films|http://dbpedia.org/resource/Category:Singaporean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "122"}, "Description": {"type": "literal", "value": "Unlucky Plaza is a 2014 Singaporean black comedy thriller film written and directed by Ken Kwek. It stars Epy Quizon as a Filipino immigrant to Singapore who takes hostages after falling for a scam. It premiered at the Toronto International Film Festival and was released in Singapore in April 16, 2015. The story is told in a series of flashbacks from the point of view of a talk show that has reunited the captor and his former hostages."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Shaw_Organisation"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kuch_Kuch_Hota_Hai"}, "Title": {"type": "literal", "value": "Kuch Kuch Hota Hai"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Karan_Johar"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kajol|http://dbpedia.org/resource/Rani_Mukerji|http://dbpedia.org/resource/Shah_Rukh_Khan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "185"}, "Description": {"type": "literal", "value": "Kuch Kuch Hota Hai (English: Something Happens) also known as KKHH, is an Indian Hindi coming-of-age romantic comedy drama film, released in India and the United Kingdom on 16 October 1998. It was written and directed by Karan Johar, and starred the popular on-screen pair of Shah Rukh Khan and Kajol in their fourth film together. Rani Mukerji featured in a supporting role, while Salman Khan had an extended guest appearance. Filmed in India, Mauritius, and Scotland, this was Karan Johar's directorial debut. One of his goals for the film was to set a new level for style in Hindi cinema. The plot combines two love triangles set years apart. The first half covers friends on a college campus, while the second tells the story of a widower's young daughter who tries to reunite her dad with his old friend. The film was extremely successful in India and abroad, becoming the highest-grossing Indian film of the year and the third highest-grossing Indian film ever behind Hum Aapke Hain Koun..! and Dilwale Dulhania Le Jayenge. The film was also the first Bollywood film to enter the UK cinema top ten. Outside India, the film was the highest grossing Hindi film ever until its record was broken by Karan's next directorial, Kabhi Khushi Kabhie Gham... (2001). Kuch Kuch Hota Hai received a positive reception from critics, with special praise directed to Kajol's performance. The soundtrack also became the biggest seller of the year. The film won many major awards including the National Film Award for Best Popular Film Providing Wholesome Entertainment and the \"Best Film\" honor at the Filmfare Awards, Zee Cine Awards, Screen Awards, and Bollywood Movie Awards. The film won 8 Filmfare Awards and is the only film in history to win all the four acting category awards at the ceremony (Best Actor, Best Actress, Best Supporting Actor & Best Supporting Actress). The film remains highly popular on Indian television and has achieved a cult classic status."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Dharma_Productions|http://dbpedia.org/resource/Yash_Raj_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Amos_&_Andrew"}, "Title": {"type": "literal", "value": "Amos & Andrew"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/E._Max_Frye"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Brad_Dourif|http://dbpedia.org/resource/Dabney_Coleman|http://dbpedia.org/resource/Margaret_Colin|http://dbpedia.org/resource/Michael_Lerner_(actor)|http://dbpedia.org/resource/Nicolas_Cage|http://dbpedia.org/resource/Samuel_L._Jackson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "Amos & Andrew is a 1993 comedy starring Nicolas Cage and Samuel L. Jackson, filmed in and around Wilmington, North Carolina. It concerns wealthy African-American playwright Andrew Sterling's (Jackson) purchase of a summer home on a predominantly white island. The film's title parodies that of the sitcom Amos 'n' Andy. The premise also appears to be a riff on The Defiant Ones."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Nirel"}, "Title": {"type": "literal", "value": "Nirel"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ranjith_Bajpe"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anoop_Sagar|http://dbpedia.org/resource/Deepak_Paladka|http://dbpedia.org/resource/Varuna_Shetty"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Nirel (English: Shadow) is a Tulu film directed by Ranjith Bajpe and produced jointly by Shodhan Prasad and San Poojary, starring Anoop Sagar, Varuna Shetty, Deepthi, Sachin Padil, Deepak Paladka in the lead roles. This will be the first film produced overseas and planned to shoot completely in Gulf Region. The film is based on the Kannada Script \"Nadu Naduve\" by Karthik Gowda and later converted to Tulu by Ranjith Bajpe. Karthik Gowda also wrote the screenplay for the movie, and dialogues written by Ranjith Bajpe. Cast for the movie was totally selected by an audition at Fortune Grand Hotel Dubai. The people behind \"Nirel\" is a group of four friends, San Poojary, Ranjith Bajpe, Rajneesh Amin and Sachin Padil."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mendadak_Dangdut"}, "Title": {"type": "literal", "value": "Mendadak Dangdut"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rudy_Soedjarwo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dwi_Sasono|http://dbpedia.org/resource/Kinaryosih|http://dbpedia.org/resource/Titi_Kamal"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Mendadak Dangdut (Suddenly Dangdut) is a 2006 Indonesian dramatic-comedy film directed by Rudy Soedjarwo and written by Monty Tiwa. Starring Titi Kamal, Kinaryosih, and Dwi Sasono, it details the rise and fall of a dangdut singer and her sister-cum-manager. Shot over a period of seven days, Mendadak Dangdut addresses social themes such as poverty. The film's release was preceded by a soundtrack album, which was ultimately more commercially viable than the film itself; one single, \"Jablai\" (\"Rarely Caressed\"), became a staple of dangdut concerts for several months. The film, which received mixed critical reception, proved a breakthrough role for Kamal and won 12 awards, including Favourite Film at the 2007 Indonesian Movie Awards."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/SinemArt"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Pattaya_(film)"}, "Title": {"type": "literal", "value": "Pattaya"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Franck_Gastambide"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Franck_Gastambide|http://dbpedia.org/resource/Malik_Bentalha"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Pattaya is a 2016 French comedy film directed by Franck Gastambide."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Gaumont_Film_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Love_in_the_Buff"}, "Title": {"type": "literal", "value": "Love in the Buff"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pang_Ho-cheung"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Miriam_Yeung|http://dbpedia.org/resource/Shawn_Yue|http://dbpedia.org/resource/Vincent_Kok|http://dbpedia.org/resource/Xu_Zheng_(actor)|http://dbpedia.org/resource/Yang_Mi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Hong_Kong_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "Love in the Buff (Chinese: \u6625\u5b0c\u8207\u5fd7\u660e) is a 2012 Hong Kong romantic comedy film directed by Pang Ho-cheung and starring Miriam Yeung and Shawn Yue. It is the sequel to the 2010 film Love in a Puff. Principal photography began in mid-July 2011 at Hong Kong and was later moved to Beijing in early August, before finally wrapping up 30 August 2011. The movie was released on 29 March 2012 in Hong Kong. For her performance in the film, Miriam Yeung won the Best Actress at the 32nd Hong Kong Film Award for the movie."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Media_Asia_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Raising_Victor_Vargas"}, "Title": {"type": "literal", "value": "Raising Victor Vargas"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Peter_Sollett"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Judy_Marte|http://dbpedia.org/resource/Melonie_Diaz|http://dbpedia.org/resource/Silvestre_Rasuk|http://dbpedia.org/resource/Victor_Rasuk"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Raising Victor Vargas is a 2002 American comedy-drama film directed by Peter Sollett, written by Sollett and Eva Vives. The film follows Victor, a Lower East Side teenager, as he deals with his eccentric family, including his strict grandmother, his bratty sister, and a younger brother who completely idolizes him. Along the way he tries to win the affections of Judy, who is very careful and calculating when it comes to how she deals with men. In a subplot, Judy's friend Melonie is depicted in her own romantic adventure. The film was screened in the Un Certain Regard section at the 2002 Cannes Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fireworks_Entertainment|http://dbpedia.org/resource/Samuel_Goldwyn_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Still_Waiting..."}, "Title": {"type": "literal", "value": "Still Waiting..."}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jeff_Balis"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/John_Michael_Higgins|http://dbpedia.org/resource/Rob_Kerkovich|http://dbpedia.org/resource/Robert_Patrick_Benedict|http://dbpedia.org/resource/Rocco_Botte|http://dbpedia.org/resource/Steve_Howey_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Still Waiting... is a 2009 American independent film starring John Michael Higgins and Robert Patrick Benedict, and the sequel to Waiting.... Some of the cast of the original film appear in the sequel. Adam Carolla and Justin Long appear in cameo roles. It was written by Rob McKittrick."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jeff,_Who_Lives_at_Home"}, "Title": {"type": "literal", "value": "Jeff, Who Lives at Home"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jay_Duplass|http://dbpedia.org/resource/Mark_Duplass"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ed_Helms|http://dbpedia.org/resource/Jason_Segel|http://dbpedia.org/resource/Judy_Greer|http://dbpedia.org/resource/Susan_Sarandon"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "Jeff, Who Lives at Home is an American comedy-drama film starring Jason Segel and Ed Helms, written and directed by Jay and Mark Duplass and co-starring Judy Greer and Susan Sarandon. The film premiered on September 14, 2011 at the 2011 Toronto International Film Festival and then saw a limited release in USA and Canada on March 16, 2012, after having been pushed back from the original date of March 2. The film received positive reviews from critics."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Vantage"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/A_Single_Life_(2014_film)"}, "Title": {"type": "literal", "value": "A Single Life"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Job_Roggeveen|http://dbpedia.org/resource/Joris_Oprins|http://dbpedia.org/resource/Marieke_Blaauw"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Dutch_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "3"}, "Description": {"type": "literal", "value": "A Single Life is a 2014 Dutch animated short film directed by Marieke Blaauw, Joris Oprins and Job Roggeveen, from Dutch animation studio Job, Joris & Marieke. It was nominated for the Academy Award for Best Animated Short Film at the 87th Academy Awards."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Big_Wedding"}, "Title": {"type": "literal", "value": "The Big Wedding"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Justin_Zackham"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amanda_Seyfried|http://dbpedia.org/resource/Ben_Barnes_(actor)|http://dbpedia.org/resource/Diane_Keaton|http://dbpedia.org/resource/Katherine_Heigl|http://dbpedia.org/resource/Robert_De_Niro|http://dbpedia.org/resource/Robin_Williams|http://dbpedia.org/resource/Susan_Sarandon|http://dbpedia.org/resource/Topher_Grace"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Comedy_of_remarriage_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "The Big Wedding is a 2013 American comedy film written and directed by Justin Zackham. It is an American remake of the original 2006 Swiss/French film Mon fr\u00e8re se marie (My Brother is Getting Married), written by Jean-St\u00e9phane Bron and Karine Sudan. The film stars a large ensemble cast including Robert De Niro, Katherine Heigl, Diane Keaton, Amanda Seyfried, Topher Grace, Ben Barnes, Susan Sarandon, and Robin Williams. It was released on April 26, 2013 by Lionsgate in the United States and Canada."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lionsgate"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hansel_&_Gretel:_Witch_Hunters"}, "Title": {"type": "literal", "value": "Hansel & Gretel: Witch Hunters"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tommy_Wirkola"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Derek_Mears|http://dbpedia.org/resource/Famke_Janssen|http://dbpedia.org/resource/Gemma_Arterton|http://dbpedia.org/resource/Jeremy_Renner|http://dbpedia.org/resource/Peter_Stormare|http://dbpedia.org/resource/Thomas_Mann_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:Black_comedy_films|http://dbpedia.org/resource/Category:German_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Hansel & Gretel: Witch Hunters is a 2013 American-German comedy action film written and directed by Tommy Wirkola. It is a continuation to the German folklore fairy tale \"Hansel and Gretel\", in which the titular siblings are now grown up and working as a duo of witch exterminators for hire. The film stars Jeremy Renner, Gemma Arterton, Famke Janssen, Peter Stormare, Thomas Mann, and Derek Mears. Originally scheduled for release in March 2012, Hansel & Gretel was delayed for ten months to accommodate Renner's appearances in The Avengers and The Bourne Legacy and to give Wirkola time to shoot a post-credits scene. It premiered in North America on January 25, 2013, in 2D, 3D, and IMAX 3D, as well in D-Box motion theaters and select international 4DX theaters, and was rated R in the United States. The film had its home media release on June 11, including a longer, unrated version on Blu-ray. The film was panned by mainstream critics, particularly for what they saw as its weak script and gratuitous violence. However, many horror genre critics were more positive, viewing the film as unpretentiously entertaining. The film topped the domestic box office on its opening weekend and was a major hit in Brazil, Russia, Germany, and Mexico. Its worldwide theatrical run gross exceeded $226 million for the production cost of $50 million. Due to the commercial success of the film, which was planned as the first part of a series, its sequel is currently in development."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Metro-Goldwyn-Mayer_Pictures|http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Babelsberg_Studio|http://dbpedia.org/resource/Gary_Sanchez_Productions|http://dbpedia.org/resource/MTV_Films"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Finding_Mr._Right"}, "Title": {"type": "literal", "value": "Finding Mr. Right"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Xue_Xiaolu"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Tang_Wei|http://dbpedia.org/resource/Wu_Xiubo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Chinese_romantic_comedy_films|http://dbpedia.org/resource/Category:Hong_Kong_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "122"}, "Description": {"type": "literal", "value": "Finding Mr. Right (simplified Chinese: \u5317\u4eac\u9047\u4e0a\u897f\u96c5\u56fe; traditional Chinese: \u5317\u4eac\u9047\u4e0a\u897f\u96c5\u5716; pinyin: B\u011bij\u012bng y\u00f9sh\u00e0ng Xiy\u01cet\u00fa) is a 2013 romantic comedy film written and directed by Xue Xiaolu. The film was a box-office hit, grossed nearly US$85 million in China. The title translates literally as \"Beijing Meets Seattle\". The success led to the release of a sequel released in 2016, Finding Mr. Right 2."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Silver_Case"}, "Title": {"type": "literal", "value": "Silver Case"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Christian_Filippella"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Eric_Roberts|http://dbpedia.org/resource/Seymour_Cassel|http://dbpedia.org/resource/Shalim_Ortiz|http://dbpedia.org/resource/Vincent_De_Paul_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Silver Case is a multi-awarded independent feature film, produced and directed by Christian Filippella, starring Oscar Nominees actors Eric Roberts and Seymour Cassel, Brian Keith Gamble, Chris Facey, Vincent De Paul (actor), Shalim Ortiz, Claire Falconer, Kelvin Han Yee, Brad Light, Art Hsu, Stanely B. Herman, and Fernanda Romero. Silver Case premiered at the Rome Film Festival and has received many awards worldwide. The film also won 5 Indie Awards at the Indie Fest, best feature and best director at the LA Film & TV Festival and the Spirit of Independent Award at the 26th Fort Lauderdale International Film Festival. The film was shot at various locations in California and Italy."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Six-String_Samurai"}, "Title": {"type": "literal", "value": "Six-String Samurai"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lance_Mungia"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:Comedy_science_fiction_films|http://dbpedia.org/resource/Category:Martial_arts_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Six-String Samurai is a 1998 post-apocalyptic action/comedy film directed by Lance Mungia, starring Jeffrey Falcon and Justin McGuire. Brian Tyler composed the score for this film along with the Red Elvises, the latter providing the majority of the soundtrack. The film was greeted with a great deal of excitement when shown at Slamdance in 1998, winning the Slamdance awards for best editing and cinematography, and gathering extremely favorable reviews from influential alternative, cult and indie film publications such as Fangoria, Film Threat and Ain't It Cool News. It is billed as a \"post-apocalyptic musical satire\". In a limited theatrical release the film ran for several months in a few theaters, gaining a reputation as a minor cult film; having a budget of $2,000,000, it only made a mere $124,494 at the box offices. An intended trilogy has been discussed but not yet realized, just like the predicted launching of the career of the film's star, Jeffrey Falcon, a martial artist who had appeared in several Hong Kong action movies in the 1980s and early 1990s. While Mungia made several music videos, he did not direct another feature until the 2005 film The Crow: Wicked Prayer."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Palm_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sky_High_(2005_film)"}, "Title": {"type": "literal", "value": "Sky High"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mike_Mitchell_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Danielle_Panabaker|http://dbpedia.org/resource/Kelly_Preston|http://dbpedia.org/resource/Kurt_Russell|http://dbpedia.org/resource/Mary_Elizabeth_Winstead|http://dbpedia.org/resource/Michael_Angarano"}, "Published": {"type": "literal", "value": "2005-07-29"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_fantasy-comedy_films|http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Sky High is a 2005 American superhero comedy film about an airborne school for teenage superheroes. It was directed by Mike Mitchell, and written by Paul Hernandez, Robert Schooley, and Mark McCorkle. The starring cast includes Michael Angarano as Will, an incoming freshman at the school, Danielle Panabaker as his best friend and love interest, Kurt Russell and Kelly Preston as his parents, Mary Elizabeth Winstead as a popular senior, Steven Strait as Will's rival, and Lynda Carter as Principal Powers."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/All_for_Love_(2005_film)"}, "Title": {"type": "literal", "value": "All for Love"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Min_Kyu-dong"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hwang_Jung-min|http://dbpedia.org/resource/Im_Chang-jung|http://dbpedia.org/resource/Uhm_Jung-hwa"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "129"}, "Description": {"type": "literal", "value": "All for Love (Hangul: \ub0b4 \uc0dd\uc560 \uac00\uc7a5 \uc544\ub984\ub2e4\uc6b4 \uc77c\uc8fc\uc77c; RR: Naesaengae gajang areumdawun iljuil; lit. \"The Most Beautiful Week of My Life\"; also known as My Lovely Week) is a 2005 South Korean romance ensemble film. It was Min Kyu-dong's solo directorial debut. The film was the 10th highest grossing Korean production of 2005 with 2,533,103 sold nationwide. A week passes in Seoul, with a diverse group of couples and singles experiencing love or tragedy in strong doses. Broken families and newly formed marriages, struggles with debt or with an uneasy conscience, conflict and resolution, sickness and health, newly discovered love, the resurfacing of old relationships..."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/CJ_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dancing_Queen_(2012_film)"}, "Title": {"type": "literal", "value": "Dancing Queen"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lee_Seok-hoon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hwang_Jung-min|http://dbpedia.org/resource/Uhm_Jung-hwa"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:South_Korean_comedy_films|http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "124"}, "Description": {"type": "literal", "value": "Dancing Queen (Hangul: \ub304\uc2f1\ud038; RR: Daensing Kwin) is 2012 South Korean romantic comedy film starring Uhm Jung-hwa and Hwang Jung-min. The film tells a story of a married couple, who in the midst of their mundane lives decides to pursue their lost dreams. The husband finds himself accidentally running for Mayor of Seoul and his wife decides to become a pop singer. It was produced by JK Film and distributed by CJ Entertainment, and released on January 18, 2012."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/CJ_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kick_2"}, "Title": {"type": "literal", "value": "Kick 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Surender_Reddy"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Rakul_Preet_Singh|http://dbpedia.org/resource/Ravi_Kishan|http://dbpedia.org/resource/Ravi_Teja"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "170"}, "Description": {"type": "literal", "value": "Kick 2 is a 2015 Telugu action comedy film written by Vakkantham Vamsi and directed by Surender Reddy. It features Ravi Teja as the protagonist and is the sequel of the 2009 Telugu film Kick starring Ravi Teja, which was also directed by Surender Reddy. The film is produced by actor Nandamuri Kalyan Ram on the N.T.R. Arts banner. The film was officially launched on 20 August 2014, and the principal photography began on the same day. The audio soundtrack of the movie was composed by S. Thaman and was released on 9 May 2015. The film was released worldwide on 21 August 2015 and was produced on a budget of \u20b940 crore (US$5.9 million). The movie collected around \u20b943.5 crore (US$6.5 million) in its 14-day run. It also became the 9th highest-grossing Telugu film of 2015 in the United States, collecting \u20b92.04 crore (US$300,000)."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Oktapodi"}, "Title": {"type": "literal", "value": "Oktapodi"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Emud_Mokhberi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "2.433333333333333"}, "Description": {"type": "literal", "value": "Oktapodi is a 2007 French computer-animated short film that originated as a Graduate Student Project from Gobelins L'Ecole de L'Image. The film is about a pair of love struck octopuses who through a series of comical events are separated and find each other. Oktapodi was directed by Julien Bocabeille, Fran\u00e7ois-Xavier Chanioux, Olivier Delabarre, Thierry Marchand, Quentin Marmier, and Emud Mokhberi. Music was composed by Kenny Wood. Oktapodi was well received, winning a number of awards, as well as an Academy Award nomination for Best Short Film (Animated) for the 81st Academy Awards. It was also included in the Animation Show of Shows."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Turbo_(film)"}, "Title": {"type": "literal", "value": "Turbo"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_Soren_(animator)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Maya_Rudolph|http://dbpedia.org/resource/Michael_Pe\u00f1a|http://dbpedia.org/resource/Michelle_Rodriguez|http://dbpedia.org/resource/Paul_Giamatti|http://dbpedia.org/resource/Ryan_Reynolds|http://dbpedia.org/resource/Samuel_L._Jackson|http://dbpedia.org/resource/Snoop_Dogg"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_sports_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "Turbo is a 2013 American 3D computer-animated comedy sports film produced by DreamWorks Animation and distributed by 20th Century Fox. It is based on an original idea by David Soren, who also directed the film in his feature debut. Set in Los Angeles, the film features an ordinary garden snail whose dream to become the fastest snail in the world comes true. The film was released on July 17, 2013. The film stars the voices of Ryan Reynolds, Paul Giamatti, Michael Pe\u00f1a, Snoop Dogg, Maya Rudolph, Michelle Rodriguez and Samuel L. Jackson. The film was met with generally positive reviews. Despite earning $282.5 million on a $127 million budget, the studio had to take a total of $15.6 million write-down on behalf of the film. A television series based on the film, titled Turbo FAST (Fast Action Stunt Team), was put into production a year before the film's release, and it first aired on Netflix on December 24, 2013."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Guardians_of_the_Galaxy_(film)"}, "Title": {"type": "literal", "value": "Guardians of the Galaxy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Gunn"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films|http://dbpedia.org/resource/Category:Comedy_science_fiction_films|http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "122"}, "Description": {"type": "literal", "value": "Guardians of the Galaxy (retroactively referred to as Guardians of the Galaxy Vol. 1) is a 2014 American superhero film based on the Marvel Comics superhero team of the same name, produced by Marvel Studios and distributed by Walt Disney Studios Motion Pictures. It is the tenth film in the Marvel Cinematic Universe. The film was directed by James Gunn, who wrote the screenplay with Nicole Perlman, and features an ensemble cast including Chris Pratt, Zoe Saldana, Dave Bautista, Vin Diesel, Bradley Cooper, Lee Pace, Michael Rooker, Karen Gillan, Djimon Hounsou, John C. Reilly, Glenn Close, and Benicio del Toro. In Guardians of the Galaxy, Peter Quill forms an uneasy alliance with a group of extraterrestrial misfits who are fleeing after stealing a powerful artifact. Perlman began working on the screenplay in 2009. Producer Kevin Feige first publicly mentioned Guardians of the Galaxy as a potential film in 2010 and Marvel Studios announced it was in active development at the San Diego Comic-Con International in July 2012. Gunn was hired to write and direct the film that September. In February 2013, Pratt was hired to play Peter Quill/Star-Lord, and the supporting cast members were subsequently confirmed. Principal photography began in July 2013 at Shepperton Studios, England, with filming continuing in London before wrapping up in October 2013. Post-production was finished on July 7, 2014. Guardians of the Galaxy premiered in Hollywood on July 21, 2014. It was released in theaters August 1, 2014 in the United States in the 3D and IMAX 3D formats. The film became a critical and commercial success, grossing $773.3 million worldwide and becoming the highest-grossing superhero film of 2014, as well as the third highest-grossing film in North America of 2014. The film garnered praise for its humor, action, soundtrack, visual effects, direction, musical score, and acting. A sequel titled Guardians of the Galaxy Vol. 2 is scheduled to be released on May 5, 2017."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Let's_Be_Cops"}, "Title": {"type": "literal", "value": "Let's Be Cops"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Luke_Greenfield"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Garc\u00eda|http://dbpedia.org/resource/Damon_Wayans,_Jr.|http://dbpedia.org/resource/Jake_Johnson|http://dbpedia.org/resource/James_D'Arcy|http://dbpedia.org/resource/Nina_Dobrev|http://dbpedia.org/resource/Rob_Riggle"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:Police_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "Let's Be Cops is a 2014 American action comedy film written and directed by Luke Greenfield, and co-written with Nicholas Thomas. The film stars Jake Johnson and Damon Wayans, Jr. as two friends who pretend to be Los Angeles police officers. Co-starring Nina Dobrev, Rob Riggle, James D'Arcy and Keegan-Michael Key, the film was released on August 13, 2014."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/How_to_Cheat_in_the_Leaving_Certificate"}, "Title": {"type": "literal", "value": "How to Cheat in the Leaving Certificate"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Graham_Jones_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bosco_Hogan|http://dbpedia.org/resource/Chris_De_Burgh|http://dbpedia.org/resource/Eamon_Morrissey_(actor)|http://dbpedia.org/resource/Feargal_Quinn|http://dbpedia.org/resource/Joe_Duffy|http://dbpedia.org/resource/Joe_McKinney|http://dbpedia.org/resource/Mary_McEvoy|http://dbpedia.org/resource/Maureen_Potter|http://dbpedia.org/resource/Mick_Lally|http://dbpedia.org/resource/Nuala_N\u00ed_Dhomhnaill|http://dbpedia.org/resource/Shay_Healy|http://dbpedia.org/resource/\u00c9amonn_Lawlor"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:Irish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "How to Cheat in the Leaving Certificate is a 1998 independent Irish film directed by Graham Jones, in which six teenagers devise a plan to cheat in their Leaving Certificate final school examinations. The film was shot in black and white on Super 16mm. After being hailed by critics it was blown up to 35mm for theatrical distribution. Many well known Irish faces made cameo appearances and some commentators regard the 2004 American film, The Perfect Score, as a remake."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Hangover"}, "Title": {"type": "literal", "value": "The Hangover"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Todd_Phillips"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:Best_Musical_or_Comedy_Picture_Golden_Globe_winners"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "(This article is about the film. For other uses, see Hangover (disambiguation).) The Hangover is a 2009 American comedy film directed by Todd Phillips, co-produced with Daniel Goldberg and written by Jon Lucas and Scott Moore. The film stars Bradley Cooper, Ed Helms, Zach Galifianakis, Heather Graham, Justin Bartha and Jeffrey Tambor. It tells the story of Phil Wenneck, Stu Price, Alan Garner and Doug Billings, who travel to Las Vegas for a bachelor party to celebrate Doug's impending marriage. However, Phil, Stu and Alan wake up with Doug missing and no memory of the previous night's events, and must find the groom before the wedding can take place. Lucas and Moore wrote the script after executive producer Chris Bender's friend disappeared and had a large bill after being sent to a strip club. After Lucas and Moore sold it to the studio for $2 million, Philips and Jeremy Garelick rewrote the script to include a tiger as well as a subplot involving a baby and a police cruiser, and also including boxer Mike Tyson. Filming took place in Nevada for 15 days, and during filming, the three main actors (Cooper, Helms, and Galifianakis) formed a real friendship. The Hangover was released on June 5, 2009, and was a critical and commercial success. The film became the tenth-highest-grossing film of 2009, with a worldwide gross of over $467 million. The film won the Golden Globe Award for Best Motion Picture \u2013 Musical or Comedy, and received multiple other accolades. It is the tenth-highest-grossing film of 2009 in the world, as well as the second highest-grossing R-rated comedy ever in the United States, surpassing a record previously held by Beverly Hills Cop for almost 25 years. Out of all R-rated films, it is the fifth-highest-grossing ever in the U.S., behind only The Passion of the Christ, The Matrix Reloaded, American Sniper and Deadpool. A sequel, The Hangover Part II, was released on May 26, 2011, and a third and final film, The Hangover Part III, was released on May 23, 2013. Both sequels were box office hits, but were met with more negative reception from critics."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros._Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Neighbors_(2014_film)"}, "Title": {"type": "literal", "value": "Neighbors"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nicholas_Stoller"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Neighbors is a 2014 American comedy film directed by Nicholas Stoller and written by Andrew Cohen and Brendan O'Brien. The film stars Seth Rogen, Zac Efron, Rose Byrne, Dave Franco and Christopher Mintz-Plasse. The plot follows a couple who come into conflict with a fraternity that has recently moved in next door. The film premiered at South by Southwest on March 8, 2014 and was released on May 9 in the United States. It was a critical and commercial success, grossing over $270 million worldwide. A sequel, titled Neighbors 2: Sorority Rising, was released on May 20, 2016. Stollen returned to direct, with Rogen, Efron, Byrne, Mintz-Plasse, Barinholtz, Gallo, Kudrow, Buress and Franco reprising their roles."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hula_Girls"}, "Title": {"type": "literal", "value": "Hula Girls"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lee_Sang-il_(film_director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Etsushi_Toyokawa|http://dbpedia.org/resource/Ittoku_Kishibe|http://dbpedia.org/resource/Sumiko_Fuji|http://dbpedia.org/resource/Yasuko_Matsuyuki|http://dbpedia.org/resource/Y\u016b_Aoi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Japanese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "Hula Girls (\u30d5\u30e9\u30ac\u30fc\u30eb Fura g\u0101ru) is a Japanese film, directed by Sang-il Lee and co-written by Lee and Daisuke Habara, and first released across Japanese theaters on September 23, 2006. Starring Y\u016b Aoi, Yasuko Matsuyuki, Etsushi Toyokawa, Shizuyo Yamazaki, Ittoku Kishibe, Eri Tokunaga, Yoko Ikezu and Sumiko Fuji, it is based on the real-life event of how a group of enthusiastic girls take on hula dancing to save their small mining village, Iwaki, helping the formation of Joban Hawaiian Center (now known as Spa Resort Hawaiians), which was later to become one of Japan's most popular theme parks. It received its premiere at the Toronto International Film Festival. Hula Girls was critically acclaimed upon release in Japan and nominated for a total of 12 awards at the 2007 Japan Academy Awards, going on to win five major awards, including that of best film, best director, best screenplay, best supporting actress (for Y\u016b Aoi), and most popular film. It also won two major awards at the 80th Kinema Junpo awards, including that of best film and best supporting actress (for Y\u016b Aoi). Since its release in Japan, the film has been shown across theaters and film festivals worldwide."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/School_for_Scoundrels_(2006_film)"}, "Title": {"type": "literal", "value": "School for Scoundrels"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Todd_Phillips"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Stiller|http://dbpedia.org/resource/Billy_Bob_Thornton|http://dbpedia.org/resource/Jacinda_Barrett|http://dbpedia.org/resource/Jon_Heder|http://dbpedia.org/resource/Michael_Clarke_Duncan|http://dbpedia.org/resource/Sarah_Silverman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100|108"}, "Description": {"type": "literal", "value": "School for Scoundrels is a 2006 American feature/comedy film, starring Billy Bob Thornton and Jon Heder, and directed by Todd Phillips. The film is based on the 1960 British film of the same name. The film was released on September 29, 2006. The remake has a similar theme to the original film, but a noticeably different plot and tone."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Dimension_Films|http://dbpedia.org/resource/Metro-Goldwyn-Mayer"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Paddington_(film)"}, "Title": {"type": "literal", "value": "Paddington"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Paul_King_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Paddington is a 2014 British-French family comedy film directed by Paul King, written by King and Hamish McColl, and produced by David Heyman. Based on Paddington Bear by Michael Bond, the film stars Ben Whishaw as the voice of the title character, along with Hugh Bonneville, Sally Hawkins, Julie Walters, Jim Broadbent, Peter Capaldi and Nicole Kidman in live-action roles. The film was co-produced by the French company StudioCanal and the British company Heyday Films. It was released in the United Kingdom on 28 November 2014 and grossed $265.3 million worldwide on a \u20ac38.5 million budget. It received an Empire Award nomination for Best British Film. A sequel, Paddington 2, is scheduled to be released in 2017."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/StudioCanal"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tusk_(2014_film)"}, "Title": {"type": "literal", "value": "Tusk"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Smith"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/G\u00e9nesis_Rodr\u00edguez|http://dbpedia.org/resource/Haley_Joel_Osment|http://dbpedia.org/resource/Justin_Long|http://dbpedia.org/resource/Michael_Parks"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Tusk is a 2014 American comedy horror film written and directed by Kevin Smith, based on a story from his SModcast podcast. The film stars Michael Parks, Justin Long, Haley Joel Osment, G\u00e9nesis Rodr\u00edguez, and Johnny Depp. The film is intended to be the first in Smith's planned True North trilogy. Tusk had its world premiere at the Toronto International Film Festival, before it was released on September 19, 2014, by A24. The film was Smith's first major wide release since Cop Out, and performed poorly at the box office after receiving mixed reviews."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/A24_(company)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Who's_Your_Daddy%3F_(film)"}, "Title": {"type": "literal", "value": "Who's Your Daddy?"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Fickman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ali_Landry|http://dbpedia.org/resource/Brandon_Davis_(actor)|http://dbpedia.org/resource/Charlie_Talbert|http://dbpedia.org/resource/Christine_Lakin|http://dbpedia.org/resource/Colleen_Camp|http://dbpedia.org/resource/Dave_Thomas_(actor)|http://dbpedia.org/resource/David_Varney|http://dbpedia.org/resource/Josh_Jacobson|http://dbpedia.org/resource/Justin_Berfield|http://dbpedia.org/resource/Kadeem_Hardison|http://dbpedia.org/resource/Lin_Shaye|http://dbpedia.org/resource/Marnette_Patterson|http://dbpedia.org/resource/Martin_Starr|http://dbpedia.org/resource/Patsy_Kensit|http://dbpedia.org/resource/Robert_Ri'chard|http://dbpedia.org/resource/Robert_Torti|http://dbpedia.org/resource/Ryan_Bittle|http://dbpedia.org/resource/William_Atherton"}, "Published": {"type": "literal", "value": "2005-01-18"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "109|111"}, "Description": {"type": "literal", "value": "Who's Your Daddy? is a 2002 comedy film directed (and co-scripted) by Andy Fickman."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Couples_Retreat"}, "Title": {"type": "literal", "value": "Couples Retreat"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Peter_Billingsley"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Faizon_Love|http://dbpedia.org/resource/Jason_Bateman|http://dbpedia.org/resource/Jean_Reno|http://dbpedia.org/resource/Jon_Favreau|http://dbpedia.org/resource/Kristen_Bell|http://dbpedia.org/resource/Kristin_Davis|http://dbpedia.org/resource/Malin_\u00c5kerman|http://dbpedia.org/resource/Vince_Vaughn"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "113"}, "Description": {"type": "literal", "value": "Couples Retreat is a 2009 American romantic comedy film directed by Peter Billingsley, marking his directorial debut, and written by Jon Favreau, Vince Vaughn, Dana Fox, Curtis Hanson, and Greg Beeman. Vaughn and Favreau star with Jason Bateman, Faizon Love, Kristin Davis, Malin \u00c5kerman, Kristen Bell, and Jean Reno. It was released on October 9, 2009, in the United States. The film was shot mostly on the island of Bora Bora."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Way,_Way_Back"}, "Title": {"type": "literal", "value": "The Way, Way Back"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jim_Rash|http://dbpedia.org/resource/Nat_Faxon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Allison_Janney|http://dbpedia.org/resource/Amanda_Peet|http://dbpedia.org/resource/AnnaSophia_Robb|http://dbpedia.org/resource/Liam_James|http://dbpedia.org/resource/Maya_Rudolph|http://dbpedia.org/resource/Rob_Corddry|http://dbpedia.org/resource/Sam_Rockwell|http://dbpedia.org/resource/Steve_Carell|http://dbpedia.org/resource/Toni_Collette"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "The Way, Way Back is a 2013 American coming-of-age comedy-drama film written and directed by Nat Faxon and Jim Rash in their directorial debut. The film stars Liam James, Steve Carell, Toni Collette, Allison Janney, AnnaSophia Robb, Sam Rockwell and Maya Rudolph, with Rob Corddry, Amanda Peet, Faxon and Rash in supporting roles. It premiered at the 2013 Sundance Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Searchlight_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Love_Liza"}, "Title": {"type": "literal", "value": "Love Liza"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Todd_Louiso"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kathy_Bates|http://dbpedia.org/resource/Philip_Seymour_Hoffman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:Tragicomedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Love Liza is a 2002 American comedy-drama film directed by Todd Louiso and starring Philip Seymour Hoffman, Kathy Bates, Jack Kehler, Wayne Duvall, Sarah Koskoff and Stephen Tobolowsky."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sony_Pictures_Classics|http://dbpedia.org/resource/Sony_Pictures_Motion_Picture_Group"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/All_About_Actresses"}, "Title": {"type": "literal", "value": "All About Actresses"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ma\u00efwenn"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "All About Actresses (French: Le Bal des actrices), also known as The Actress' Ball, is a 2009 French mockumentary film directed by Ma\u00efwenn. The title is a reference to the film directed by Roman Polanski, The Fearless Vampire Killers (Le Bal des vampires)."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Already_Famous"}, "Title": {"type": "literal", "value": "Already Famous"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michelle_Chong"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alien_Huang|http://dbpedia.org/resource/Michelle_Chong"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Singaporean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "Already Famous (Chinese:\u4e00\u6ce1\u800c\u7ea2: Yi Pao Er Hong) is a 2011 Singaporean comedy film and the feature film directorial debut of Michelle Chong, who also starred in the film alongside Taiwanese idol Alien Huang. The movie released on 1 December 2011 in Singapore and was selected as the Singaporean entry for the Best Foreign Language Oscar at the 85th Academy Awards, but it did not make the final shortlist. Already Famous was well received in Singapore, where it grossed S$1.04 million and viewer demand for the film grew so high that movie theaters had to double the number of screens showing the film."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Miss_Nobody_(2010_film)"}, "Title": {"type": "literal", "value": "Miss Nobody"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tim_Cox"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Goldberg|http://dbpedia.org/resource/Brandon_Routh|http://dbpedia.org/resource/Kathy_Baker|http://dbpedia.org/resource/Leslie_Bibb"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Miss Nobody is a 2010 American black comedy film."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Project_X_(2012_film)"}, "Title": {"type": "literal", "value": "Project X"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nima_Nourizadeh"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jonathan_Daniel_Brown|http://dbpedia.org/resource/Oliver_Cooper|http://dbpedia.org/resource/Thomas_Mann_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Project X is a 2012 American comedy film directed by Nima Nourizadeh and written by Michael Bacall and Matt Drake based on a story by Bacall, and produced by director Todd Phillips. The film follows three friends\u2014Thomas (Thomas Mann), Costa (Oliver Cooper) and J.B. (Jonathan Daniel Brown)\u2014who plan to gain popularity by throwing a party, a plan which quickly escalates out of their control. The title Project X was initially a placeholder for a final title, but interest generated by the secretive title kept it in place. A nationwide open casting call was employed to find fresh faces. The majority of the cast were sourced from this casting call, but a few with prior acting credits, such as Mann, were accepted after multiple auditions. Filming took place on sets in Los Angeles over five weeks on a US$12 million budget. The film is presented as a found footage home video from the perspective of an attendee using a camera to document the night's events. Project X was released in the United States, Canada, and the United Kingdom on March 2, 2012, and grossed over $100 million worldwide during its theatrical run. Criticism focused on the \"loathsome\" behavior of the lead characters, the perceived misogyny and the disregard for the effects of drug use. Other reviews considered it funny and thrilling, and equated it to a modern incarnation of the 1978 comedy Animal House. Following release, incidents of large scale parties referenced or blamed the film as an inspiration."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros._Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/A_Fantastic_Fear_of_Everything"}, "Title": {"type": "literal", "value": "A Fantastic Fear of Everything"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Hopewell|http://dbpedia.org/resource/Crispian_Mills"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amara_Karan|http://dbpedia.org/resource/Clare_Higgins|http://dbpedia.org/resource/Paul_Freeman_(actor)|http://dbpedia.org/resource/Simon_Pegg"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "A Fantastic Fear of Everything is a 2012 British horror comedy film starring Simon Pegg, written and directed by Crispian Mills with Chris Hopewell as co-director. It is based on the novella Paranoia in the Launderette by Bruce Robinson, writer and director of Withnail and I. It has been described as a low-budget \"semicomedy\" about a children\u2019s author-turned-crime-novelist who has become obsessed with murder and murdering. It was released on 8 June 2012 in the United Kingdom and Ireland, and received a limited U.S. theatrical release on 7 February 2014. The BBFC classified the film a 15 certificate in the UK, while the MPAA rated the film R in America. Principal photography began on 6 July 2011. Filmed at Shepperton Studios, the film was the first to be backed by Pinewood Studios' initiative to support low-budget British films. It was released by Universal Pictures in the UK and Indomina Releasing in the US."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Iron_Sky:_The_Coming_Race"}, "Title": {"type": "literal", "value": "Iron Sky: The Coming Race"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Timo_Vuorensola"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jukka_Hilden|http://dbpedia.org/resource/Julia_Dietze|http://dbpedia.org/resource/Kari_Ketonen|http://dbpedia.org/resource/Stephanie_Paul|http://dbpedia.org/resource/Tom_Green|http://dbpedia.org/resource/Udo_Kier"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Action_comedy_films|http://dbpedia.org/resource/Category:Comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Iron Sky: The Coming Race is an upcoming Finnish comic science fiction action film directed by Timo Vuorensola. It is the sequel to Vuorensola's 2012 film Iron Sky. The film is currently being crowdfunded through Indiegogo and is stated for a 2017 release. A major inspiration of the content (and the title) seems to be the Vril conspiracy theory."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Pulp_(2012_film)"}, "Title": {"type": "literal", "value": "Pulp"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Hamdy"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/John_Thomson_(comedian)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Pulp is a British comedy film directed by Adam Hamdy and Shaun Magher, starring Jay Sutherland and John Thomson On March 2013 it was released exclusively on Xbox Live, becoming the first feature film to be distributed via a games console platform."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Let's_Kill_Ward's_Wife"}, "Title": {"type": "literal", "value": "Let's Kill Ward's Wife"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Scott_Foley"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amy_Acker|http://dbpedia.org/resource/Dagmara_Domi\u0144czyk|http://dbpedia.org/resource/Donald_Faison|http://dbpedia.org/resource/Greg_Grunberg|http://dbpedia.org/resource/Marika_Domi\u0144czyk|http://dbpedia.org/resource/Nicolette_Sheridan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "81"}, "Description": {"type": "literal", "value": "Let's Kill Ward's Wife is a 2014 American black comedy film written and directed by Scott Foley. Marking Foley's feature-film directorial debut, the film stars Patrick Wilson, Foley, Donald Faison, and James Carpinello. Foley, Wilson, and Carpinello produced the film, along with Joe Hardesty. The film follows three friends (Wilson, Foley, and Carpinello) who plan to kill their friend Ward's (Faison) abusive wife, Stacy (Dagmara Domi\u0144czyk). The cast consists almost entirely of actors who are related to one another, with many being siblings or spouses. For example, Wilson is married to Domi\u0144czyk, who portrays the wife of Faison's character, and Carpinello is married to Amy Acker, who portrays the wife of Foley's character. The film was released on video on demand on December 23, 2014 prior to its limited release on January 9, 2015. It has received generally negative reviews, with criticism aimed at its humor and portrayal of women, though this is countered by it being somewhat analogous to Murder on the Orient Express, a story written by a woman where an obnoxious man is killed with group consensus."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Tribeca_Film_Institute"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lego_DC_Comics_Super_Heroes:_Justice_League_vs._Bizarro_League"}, "Title": {"type": "literal", "value": "Justice League vs. Bizarro League|Lego DC Comics Super Heroes:"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Brandon_Vietti"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "49"}, "Description": {"type": "literal", "value": "Lego DC Comics Super Heroes: Justice League vs. Bizarro League is a direct-to-video Computer animated comedy film based on the Lego and DC Comics brands, released on February 10, 2015 on Blu-ray and DVD. This is the third Lego DC Comics film following Lego Batman: The Movie \u2013 DC Super Heroes Unite and Lego DC Comics: Batman Be-Leaguered. Some actors from various DC properties reprise their respective roles, including Nolan North as Superman, Khary Payton as Cyborg, Diedrich Bader as Green Lantern (Guy Gardner) and Tom Kenny as The Penguin and Plastic Man."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Home_Video"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Alter_Egos"}, "Title": {"type": "literal", "value": "Alter Egos"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jordan_Galland"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Danny_Masterson|http://dbpedia.org/resource/Geneva_Carr|http://dbpedia.org/resource/Kris_Lemche|http://dbpedia.org/resource/Sean_Lennon"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "77"}, "Description": {"type": "literal", "value": "Alter Egos is a 2012 American superhero comedy film written, edited, and directed by Jordan Galland. The film, starring Kris Lemche, Sean Lennon, Danny Masterson, and Geneva Carr, was distributed by Kevin Smith's SModcast Pictures and Phase 4 Films. It premiered was at the Fantasia Film Festival on July 24, 2012, where it was chosen as an official selection."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Phase_4_Films|http://dbpedia.org/resource/SModcast"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Marrying_the_Mafia_III"}, "Title": {"type": "literal", "value": "Marrying the Mafia III"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jeong_Yong-ki"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Shin_Hyun-joon_(actor)|http://dbpedia.org/resource/Tak_Jae-hoon"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:South_Korean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "128"}, "Description": {"type": "literal", "value": "Marrying the Mafia III (Hangul: \uac00\ubb38\uc758 \ubd80\ud65c - \uac00\ubb38\uc758 \uc601\uad11 3; RR: Gamuneui buhwal - Kamuneui yeonggwang 3) is a 2006 South Korean film."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Taxi_(2004_film)"}, "Title": {"type": "literal", "value": "Taxi"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tim_Story"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gisele_B\u00fcndchen|http://dbpedia.org/resource/Jennifer_Esposito|http://dbpedia.org/resource/Jimmy_Fallon|http://dbpedia.org/resource/Queen_Latifah"}, "Published": {"type": "literal", "value": "2004-10-08"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_screwball_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Taxi is a 2004 American remake of the 1998 French film of the same name, starring Queen Latifah, Jimmy Fallon, and Gisele B\u00fcndchen. It is directed by Tim Story."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/True_Memoirs_of_an_International_Assassin"}, "Title": {"type": "literal", "value": "True Memoirs of an International Assassin"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jeff_Wadlow"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Howard|http://dbpedia.org/resource/Andy_Garcia|http://dbpedia.org/resource/Kelen_Coleman|http://dbpedia.org/resource/Kevin_James|http://dbpedia.org/resource/Rob_Riggle|http://dbpedia.org/resource/Zulay_Henao"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:Spy_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "True Memoirs of an International Assassin is an upcoming American action comedy film directed by Jeff Wadlow and written by Jeff Morris. The film stars Kevin James, Zulay Henao, Andy Garcia, Maurice Compte, Kelen Coleman, Andrew Howard, and Rob Riggle. The film is slated to be released on November 11, 2016."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Netflix"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Filth_(film)"}, "Title": {"type": "literal", "value": "Filth"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jon_S._Baird"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Eddie_Marsan|http://dbpedia.org/resource/Imogen_Poots|http://dbpedia.org/resource/James_McAvoy|http://dbpedia.org/resource/Jamie_Bell|http://dbpedia.org/resource/Jim_Broadbent|http://dbpedia.org/resource/Joanne_Froggatt"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:British_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Filth is a 2013 British crime comedy-drama film written and directed by Jon S. Baird, based on Irvine Welsh's novel Filth. The film was released on 27 September 2013 in Scotland, 4 October 2013 elsewhere in the UK and Ireland, 30 May 2014 in the United States. It stars James McAvoy, Jamie Bell and Jim Broadbent."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lions_Gate_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mannar_Mathai_Speaking_2"}, "Title": {"type": "literal", "value": "Mannar Mathai Speaking 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mamas_K._Chandran"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aparna_Gopinath|http://dbpedia.org/resource/Biju_Menon|http://dbpedia.org/resource/Innocent_(actor)|http://dbpedia.org/resource/Janardhanan_(actor)|http://dbpedia.org/resource/Mukesh_(actor)|http://dbpedia.org/resource/Saikumar_(Malayalam_actor)|http://dbpedia.org/resource/Shammi_Thilakan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Mannar Mathai Speaking 2 is Malayalam comedy thriller film, directed by Mamas. It is a sequel to the 1995 cult comedy classic, Mannar Mathai Speaking and the third installment in the celebrated Ramji Rao franchise. Actors Mukesh, Saikumar, Innocent, Janardhanan reprise their roles; while Aparna Gopinath, Shammi Thilakan and a few others are also included in the cast. The film features original music & background score composed by Rahul Raj.The film an average grosser at the box office."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ongole_Githa"}, "Title": {"type": "literal", "value": "Ongole Gittha"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bhaskar_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ahuti_Prasad|http://dbpedia.org/resource/Ajay_(actor)|http://dbpedia.org/resource/Kriti_Kharbanda|http://dbpedia.org/resource/Prabhu|http://dbpedia.org/resource/Prakash_Raj|http://dbpedia.org/resource/Ram_Pothineni"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Ongole Gittha is a 2013 Telugu action masala comedy film written and directed by Bhaskar and produced by B. V. S. N. Prasad under Sri Venkateswara Cine Chitra. The film features Ram Pothineni and Kriti Kharbanda in the lead roles. The soundtrack was composed by G. V. Prakash Kumar, Mani Sharma also scored one song for the film and given the background score. The film was released on 1 February 2013 to negative reviews from critics and commercial failure at the box office. The Hindi dub of the film was renamed as Mahaveer no.1."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/How_to_Stop_Being_a_Loser"}, "Title": {"type": "literal", "value": "How To Stop Being a Loser"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dominic_Burns"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adele_Silva|http://dbpedia.org/resource/Billy_Murray_(actor)|http://dbpedia.org/resource/Colin_Salmon|http://dbpedia.org/resource/Craig_Conway_(actor)|http://dbpedia.org/resource/Gemma_Atkinson|http://dbpedia.org/resource/Martin_Kemp|http://dbpedia.org/resource/Richard_E._Grant|http://dbpedia.org/resource/Simon_Phillips_(actor)|http://dbpedia.org/resource/Stephanie_Leonidas"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "How To Stop Being a Loser (2011) is a British independent comedy starring Billy Murray, Gemma Atkinson, Richard E. Grant, Simon Phillips, and Colin Salmon."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Nick_&_Norah's_Infinite_Playlist"}, "Title": {"type": "literal", "value": "Nick & Norah's Infinite Playlist"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Peter_Sollett"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aaron_Yoo|http://dbpedia.org/resource/Alexis_Dziena|http://dbpedia.org/resource/Ari_Graynor|http://dbpedia.org/resource/Jay_Baruchel|http://dbpedia.org/resource/Kat_Dennings|http://dbpedia.org/resource/Michael_Cera"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Nick & Norah's Infinite Playlist is a 2008 romantic comedy-drama film directed by Peter Sollett and starring Michael Cera and Kat Dennings. Written by Lorene Scafaria and based on the novel of the same name by Rachel Cohn and David Levithan, the story tells of teenagers Nick (Cera) and Norah (Dennings), who meet when Norah asks Nick to pretend to be her boyfriend for five minutes. Over the course of the night, they try to find their favorite band's secret show and search for Norah's drunken best friend. The film came into development in 2003 when producer Kerry Kohansky Roberts found Cohn and Levithan's novel and decided to adapt it for film. Scafaria was hired to write the script in 2005, and Sollett signed on to direct the film in 2006. Principal photography took place over 29 days from October to December 2007, primarily in Manhattan and Brooklyn, New York City. The film premiered on September 6, 2008 at the 2008 Toronto International Film Festival and was released theatrically on October 3, 2008. It tripled its US$10 million budget with a total gross of US$33.5 million. An accompanying soundtrack was released on September 23, 2008, and the film was released on DVD and Blu-ray on February 3, 2009. It attracted generally positive reviews from critics and received nominations for three Satellite Awards, one GLAAD Media Award, one MTV Movie Award and one Golden Reel Award."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures|http://dbpedia.org/resource/Screen_Gems"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Armless"}, "Title": {"type": "literal", "value": "Armless"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Habib_Azar"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Daniel_London|http://dbpedia.org/resource/Janel_Moloney|http://dbpedia.org/resource/Matt_Walton|http://dbpedia.org/resource/Zoe_Lister-Jones"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "Armless is a 2010 comedy film directed by Habib Azar and written by Kyle Jarrow, starring Daniel London, Janel Moloney, Matt Walton, Zoe Lister-Jones and Laurie Kennedy. It was an official selection of the 2010 Sundance Film Festival, as part of the new category 'NEXT' which selects films for their innovative and original work in low- and no-budget filmmaking."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Crazy_Racer"}, "Title": {"type": "literal", "value": "Crazy Racer"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ning_Hao"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Huang_Bo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Black_comedy_films|http://dbpedia.org/resource/Category:Chinese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "Crazy Racer, also known in some countries as Silver Medalist, is a 2009 Chinese black comedy movie directed and written by Ning Hao, filmed mostly in the southern coastal city of Xiamen, PROC."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/China_Film_Group"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Masterpiece_(film)"}, "Title": {"type": "literal", "value": "The Masterpiece"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Franco"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dave_Franco|http://dbpedia.org/resource/Josh_Hutcherson|http://dbpedia.org/resource/Zac_Efron"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Masterpiece is an upcoming American biographical comedy film directed by, co-produced by, and starring James Franco. Based on Greg Sestero's non-fiction book The Disaster Artist, the film depicts the early friendship of Sestero and Tommy Wiseau, the filmmaker behind the 2003 cult film The Room, and the making of the film itself. The film stars James and Dave Franco alongside a supporting cast featuring Seth Rogen, Josh Hutcherson, Ari Graynor, Jacki Weaver, Hannibal Buress, Andrew Santino, Zac Efron, Alison Brie, Sharon Stone and Bryan Cranston. Principal photography of the film began on December 8, 2015. It is scheduled to be theatrically released in 2017."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/My_Super_Psycho_Sweet_16"}, "Title": {"type": "literal", "value": "My Super Psycho Sweet 16"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jacob_Gentry"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Zylka|http://dbpedia.org/resource/Julianna_Guill|http://dbpedia.org/resource/Lauren_McKnight|http://dbpedia.org/resource/Matt_Angel"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "My Super Psycho Sweet 16 is a 2009 American teen drama horror slasher television film, based on the MTV show, My Super Sweet 16. The film follows two girls: an outcast named Skye Rotter (Lauren McKnight), and an extremely spoiled girl named Madison Penrose (Julianna Guill). Madison convinces her parents to re-open the Roller Dome for her sweet sixteenth birthday party. The Roller Dome\u2014a roller skating rink that Skye's father used to own\u2014had been closed because a series of brutal murders took place there ten years ago. The killer, who happens to be Skye's father, comes back to wreak havoc during Madison's party, however. The film was followed by two sequels, My Super Psycho Sweet 16: Part 2 and My Super Psycho Sweet 16: Part 3."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Casa_de_Mi_Padre"}, "Title": {"type": "literal", "value": "Casa de Mi Padre"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Matt_Piedmont"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adrian_Martinez_(actor)|http://dbpedia.org/resource/Diego_Luna|http://dbpedia.org/resource/Efren_Ramirez|http://dbpedia.org/resource/Gael_Garc\u00eda_Bernal|http://dbpedia.org/resource/G\u00e9nesis_Rodr\u00edguez|http://dbpedia.org/resource/Nick_Offerman|http://dbpedia.org/resource/Pedro_Armend\u00e1riz,_Jr.|http://dbpedia.org/resource/Will_Ferrell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Casa de Mi Padre (English: House of My Father or simply My Father's House) is a 2012 Spanish-language American comedy film. The film stars Will Ferrell, Gael Garc\u00eda Bernal, Diego Luna and G\u00e9nesis Rodr\u00edguez with Matt Piedmont directing a screenplay written by Andrew Steele. The film has been described to be in the style of an \"overly dramatic telenovela\" and tells the story of Armando \u00c1lvarez, who must save his father's ranch from a powerful drug lord. Casa de Mi Padre was released on March 16, 2012."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Pantelion_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mutual_Appreciation"}, "Title": {"type": "literal", "value": "Mutual Appreciation"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Bujalski"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Bujalski|http://dbpedia.org/resource/Justin_Rice|http://dbpedia.org/resource/Rachel_Clift|http://dbpedia.org/resource/Seung-Min_Lee_(actress)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "Mutual Appreciation is a 2005 independent film by Andrew Bujalski who previously directed Funny Ha Ha (2002). The script is primarily dialogue between a group of young people as they try to determine where they fit in the world. It is considered part of the mumblecore movement."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Goodbye_Cruel_Releasing"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Star_Wreck:_In_the_Pirkinning"}, "Title": {"type": "literal", "value": "Star Wreck: In the Pirkinning"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Timo_Vuorensola"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Antti_Satama|http://dbpedia.org/resource/Atte_Joutsen|http://dbpedia.org/resource/Janos_Honkonen|http://dbpedia.org/resource/Jari_Ahola|http://dbpedia.org/resource/Kari_V\u00e4\u00e4n\u00e4nen|http://dbpedia.org/resource/Samuli_Torssonen|http://dbpedia.org/resource/Satu_Heli\u00f6|http://dbpedia.org/resource/Timo_Pekurinen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "Star Wreck: In the Pirkinning is a 2005 parody film produced by five friends in a two-room flat with a small budget and the support of a few hundred fans and several dozen acquaintances. It is the seventh production in the Star Wreck movie series, and the first of professional quality and feature length. It is a dark science fiction comedy about domination of the world and the universe, and a parody of the Star Trek and Babylon 5 franchises. The original version (\"net version\") of the film is available as an authorized and legal download on the Internet under the Creative Commons BY-ND-NC license."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Energia_Productions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Grave_Decisions"}, "Title": {"type": "literal", "value": "Grave Decisions"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Marcus_H._Rosenm\u00fcller"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Fritz_Karl|http://dbpedia.org/resource/Markus_Krojer"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:German_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Grave Decisions (German: Wer fr\u00fcher stirbt ist l\u00e4nger tot - literally The sooner you die, the longer you are dead) is a 2006 comedy directed by Marcus H. Rosenm\u00fcller about an 11-year-old Bavarian boy (Sebastian Schneider) who feels responsible for his mother's death, who died during his birth, and naively attempts multiple ways to reach immortality (Procreation, Reincarnation, Sanctification, Rockstardom) to prevent his tenure in hell."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Myth_of_the_American_Sleepover"}, "Title": {"type": "literal", "value": "The Myth of the American Sleepover"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_Robert_Mitchell"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amanda_Bauer_(actress)|http://dbpedia.org/resource/Amy_Seimetz|http://dbpedia.org/resource/Brett_Jacobsen|http://dbpedia.org/resource/Claire_Sloma|http://dbpedia.org/resource/Jade_Ramsey|http://dbpedia.org/resource/Marlon_Morton|http://dbpedia.org/resource/Nikita_Ramsey"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "The Myth of the American Sleepover is a 2010 American coming-of-age film written and directed by David Robert Mitchell and distributed by IFC Films."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Oh_My_God_(2015_film)"}, "Title": {"type": "literal", "value": "Oh My God"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Leste_Chen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chen_Xuedong|http://dbpedia.org/resource/Li_Xiaolu|http://dbpedia.org/resource/Zhang_Yixing"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Chinese_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Oh My God (Chinese: \u4ece\u5929\u513f\u964d) (also known as The Baby from the Universe and Children Fallen from the Skies) is a 2015 Chinese romantic comedy sci-fi film directed by Leste Chen and produced by Zhang Ziyi. The film stars Zhang Yixing, Li Xiaolu, Chen Xuedong and Coco Jiang Wen."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/My_Super_Psycho_Sweet_16:_Part_2"}, "Title": {"type": "literal", "value": "My Super Psycho Sweet 16: Part 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jacob_Gentry"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Zylka|http://dbpedia.org/resource/Kirsten_Prout|http://dbpedia.org/resource/Lauren_McKnight|http://dbpedia.org/resource/Matt_Angel|http://dbpedia.org/resource/Stella_Maeve"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "My Super Psycho Sweet 16: Part 2 is a 2010 American teen horror slasher film, the sequel to the 2009 film My Super Psycho Sweet 16. Skye Rotter (Lauren McKnight), in her journey to disappear from the lives of her friends trying to move on from the horrible Roller-Dome massacre. The police are looking for her as she is the only one who really knows what happened to Madison Penrose (Julianna Guill). Now she encounters a new life when she goes to live with her mother and her mother's new husband and daughter Alex (Kirsten Prout), not knowing that the killer, who is Skye's father, has come back to wreak havoc on her new life."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Surviving_Christmas"}, "Title": {"type": "literal", "value": "Surviving Christmas"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mike_Mitchell_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Affleck|http://dbpedia.org/resource/Bill_Macy|http://dbpedia.org/resource/Catherine_O'Hara|http://dbpedia.org/resource/Christina_Applegate|http://dbpedia.org/resource/David_Selby|http://dbpedia.org/resource/James_Gandolfini|http://dbpedia.org/resource/Jennifer_Morrison|http://dbpedia.org/resource/Josh_Zuckerman_(actor)|http://dbpedia.org/resource/Stephanie_Faracy|http://dbpedia.org/resource/Stephen_Root|http://dbpedia.org/resource/Udo_Kier"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Surviving Christmas is a 2004 American romantic comedy film directed by Mike Mitchell starring Ben Affleck, James Gandolfini, Christina Applegate and Catherine O'Hara. Originally slated for a December 2003 release, DreamWorks SKG pushed the release date back to October 2004, in order to avoid clashing with Affleck's 2003 film Paycheck. Surviving Christmas received negative reviews and was a box office failure. It was released on DVD on December 21, 2004, just two months after it had its theatrical release."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/DreamWorks_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Black_Pond"}, "Title": {"type": "literal", "value": "Black Pond"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tom_Kingsley|http://dbpedia.org/resource/Will_Sharpe"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amanda_Hadingue|http://dbpedia.org/resource/Chris_Langham|http://dbpedia.org/resource/Colin_Hurley|http://dbpedia.org/resource/Simon_Amstell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:British_black_comedy_films|http://dbpedia.org/resource/Category:British_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "Black Pond is the debut, low budget, independent feature by young British directors Tom Kingsley and Will Sharpe. The film was nominated for the 2012 BAFTA Outstanding British Debut Award. The film stars Chris Langham in his first acting role since being convicted of child pornography charges. The film is reported as having cost \u00a325,000 to make. It is a black comedy about a family who are accused of murder when a stranger comes to dinner. Screen International reported that \"The film premiered at the Raindance Film Festival, going on to be nominated for the Raindance award at the BIFAs and two Evening Standard Awards for Best Debut and Best Comedy.\"The Guardian reported that the film had also been shortlisted for the Guardian First Film Award."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Goon_(film)"}, "Title": {"type": "literal", "value": "Goon"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Dowse"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films|http://dbpedia.org/resource/Category:Sports_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Goon is a 2011 Canadian-American sports comedy film directed by Michael Dowse, written by Jay Baruchel and Evan Goldberg, and starring Seann William Scott, Jay Baruchel, Liev Schreiber, Alison Pill, Marc-Andr\u00e9 Grondin, Kim Coates and Eugene Levy. The main plot depicts an exceedingly nice but somewhat dimwitted man who becomes the enforcer for a minor league ice hockey team. A sequel, Goon: Last of the Enforcers, is currently in development, with Baruchel serving as director."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Alliance_Films|http://dbpedia.org/resource/Magnet_Releasing"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Aqua_Teen_Hunger_Force_Colon_Movie_Film_for_Theaters"}, "Title": {"type": "literal", "value": "Aqua Teen Hunger Force|Colon Movie Film for Theaters"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dave_Willis|http://dbpedia.org/resource/Matt_Maiellaro"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Merrill|http://dbpedia.org/resource/Bruce_Campbell|http://dbpedia.org/resource/C._Martin_Croker|http://dbpedia.org/resource/Carey_Means|http://dbpedia.org/resource/Chris_Kattan|http://dbpedia.org/resource/Dana_Snyder|http://dbpedia.org/resource/Mike_Schatz|http://dbpedia.org/resource/Neil_Peart"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films|http://dbpedia.org/resource/Category:Surreal_comedy"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Aqua Teen Hunger Force Colon Movie Film for Theaters is a 2007 American Flash animated surreal comedy film based on the Adult Swim animated series Aqua Teen Hunger Force. The film features the voices of Dana Snyder, Carey Means, Willis, Maiellaro, Mike Schatz, Andy Merrill, C. Martin Croker, Bruce Campbell, Neil Peart and Chris Kattan. The film was written and directed by the show's creators, Matt Maiellaro and Dave Willis. The film was theatrically released on April 13, 2007. The film marks the first time an Adult Swim series was adapted into a feature film. The film grossed $5.5 million compared to its $750,000 budget. Warner Home Video released the film in a two-disc DVD edition on August 14, 2007."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/First_Look_Pictures"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Adult_Swim|http://dbpedia.org/resource/Cartoon_Network|http://dbpedia.org/resource/Williams_Street"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Breakup_Buddies"}, "Title": {"type": "literal", "value": "Breakup Buddies"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ning_Hao"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Huang_Bo|http://dbpedia.org/resource/Xu_Zheng_(actor)|http://dbpedia.org/resource/Yuan_Quan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Chinese_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "Breakup Buddies is a 2014 Chinese romantic comedy and road film, directed by Ning Hao. It stars Huang Bo and Xu Zheng as buddies on a wild 3,000-kilometre cross-country journey from Beijing to Dali City (via Zhangjiajie). The film premiered at the 2014 Toronto International Film Festival on September 7, 2014, and was released domestically on September 30, 2014. It grossed over $195 million to become one of the highest-grossing films in China."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Nerdland"}, "Title": {"type": "literal", "value": "Nerdland"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Prynoski"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hannibal_Buress|http://dbpedia.org/resource/John_Ennis_(actor)|http://dbpedia.org/resource/Kate_Micucci|http://dbpedia.org/resource/Mike_Judge|http://dbpedia.org/resource/Patton_Oswalt|http://dbpedia.org/resource/Paul_Rudd|http://dbpedia.org/resource/Riki_Lindhome"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "Nerdland is a 2016 American animated comedy film directed by Chris Prynoski and written by Andrew Kevin Walker. The film stars Paul Rudd, Patton Oswalt, Hannibal Buress, Kate Micucci, Riki Lindhome, John Ennis and Mike Judge."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Samuel_Goldwyn_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/How_to_Use_Guys_with_Secret_Tips"}, "Title": {"type": "literal", "value": "How to Use Guys with Secret Tips"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lee_Won-suk"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Lee_Si-young|http://dbpedia.org/resource/Oh_Jung-se|http://dbpedia.org/resource/Park_Yeong-gyu"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "How to Use Guys with Secret Tips (Hangul: \ub0a8\uc790\uc0ac\uc6a9\uc124\uba85\uc11c; RR: Namja Sayongseolmyungseo; lit. \"A Manual on How to Use Men\") is a 2013 South Korean romantic comedy film starring Lee Si-young and Oh Jung-se, and directed by Lee Won-suk."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Showbox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Achy_Breaky_Hearts"}, "Title": {"type": "literal", "value": "The Achy Breaky Hearts"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Antoinette_Jadaone"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ian_Veneracion|http://dbpedia.org/resource/Jodi_Sta._Maria|http://dbpedia.org/resource/Richard_Yap"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Philippine_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Achy Breaky Hearts is a 2016 Filipino romantic comedy film directed by Antoinette Jadaone, starring Ian Veneracion, Richard Yap, and Jodi Sta. Maria. The film was produced by Star Cinema and to be released on June 29, 2016 in theaters nationwide. The film was inspired by the 1992 pop hit of the same title by American singer Billy Ray Cyrus. The film was also intended to cash-in from the success of two of Jodi Sta. Maria's previous TV projects: Be Careful With My Heart, where she starred opposite Richard Yap, and Pangako Sa 'Yo remake where she starred opposite Ian Veneracion."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Star_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Fun_Size"}, "Title": {"type": "literal", "value": "Fun Size"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Josh_Schwartz"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chelsea_Handler|http://dbpedia.org/resource/Jackson_Nicoll|http://dbpedia.org/resource/Jane_Levy|http://dbpedia.org/resource/Osric_Chau|http://dbpedia.org/resource/Riki_Lindhome|http://dbpedia.org/resource/Thomas_Mann_(actor)|http://dbpedia.org/resource/Thomas_McDonell|http://dbpedia.org/resource/Thomas_Middleditch|http://dbpedia.org/resource/Victoria_Justice"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Fun Size (known as Half Pint in some countries) is a 2012 American teen comedy film written by Max Werner and directed by Josh Schwartz. It stars Victoria Justice, Jane Levy, Thomas Mann, Jackson Nicoll, Chelsea Handler, Thomas McDonell, Riki Lindhome, and Osric Chau. It was the second time a Nickelodeon film received a PG-13 rating, since Angus, Thongs and Perfect Snogging, which was released straight-to-DVD in the US, and two years before Teenage Mutant Ninja Turtles, which was released in theatres. However, it is the studio's first American and theatrically released film with that rating. The film grossed $11 million against its $14 million budget."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Chumscrubber"}, "Title": {"type": "literal", "value": "The Chumscrubber"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Arie_Posin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:German_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "The Chumscrubber is a 2005 American-German comedy-drama film, directed by Arie Posin, starring an ensemble cast led by Jamie Bell. The plot, written by Posin and Zac Stanford, focuses on the chain of events that follow the suicide of a teenage drug dealer in an idealistic but superficial town. Some of the themes addressed in the film are the lack of communication between teenagers and their parents and the inauthenticity of suburbia. The titular Chumscrubber is a character in a fictional video game that represents the town and its inhabitants. Posin and Stanford had originally planned to shoot the film using their own funds, but they sent the script to producers Lawrence Bender and Bonnie Curtis who agreed to produce the film and help to raise the budget. Bell was cast in the lead role after an extensive auditioning process, and the film was shot in various California locations over 30 days in April 2004. The Chumscrubber premiered at the Sundance Film Festival on January 25, 2005 and was released theatrically on August 26, 2005. An accompanying soundtrack, composed mostly by James Horner, was released on October 18, 2005. The film was both a critical and commercial failure, receiving mostly negative reviews and earning back only US$350,000 of its $10 million budget."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/DreamWorks|http://dbpedia.org/resource/Go_Fish_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Intouchables"}, "Title": {"type": "literal", "value": "The Intouchables"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Olivier_Nakache_&_\u00c9ric_Toledano"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Fran\u00e7ois_Cluzet|http://dbpedia.org/resource/Omar_Sy"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "113"}, "Description": {"type": "literal", "value": "The Intouchables (French: Intouchables [\u025b\u0303tu\u0283abl], UK: Untouchable) is a 2011 French buddy comedy-drama film directed by Olivier Nakache & \u00c9ric Toledano. It stars Fran\u00e7ois Cluzet and Omar Sy. Nine weeks after its release in France on 2 November 2011, it became the second biggest box office hit in France, just behind the 2008 film Welcome to the Sticks. The film was voted the cultural event of 2011 in France with 52% of votes in a poll by Fnac. The film has received several award nominations. In France, the film was nominated for eight C\u00e9sar Awards and earned Omar Sy the C\u00e9sar Award for Best Actor."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/The_Weinstein_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Little_Athens"}, "Title": {"type": "literal", "value": "Little Athens"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tom_Zuber"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/DJ_Qualls|http://dbpedia.org/resource/Erica_Leerhsen|http://dbpedia.org/resource/Jill_Ritchie|http://dbpedia.org/resource/John_Patrick_Amedori|http://dbpedia.org/resource/Michael_Pe\u00f1a|http://dbpedia.org/resource/Michelle_Horn|http://dbpedia.org/resource/Rachel_Miner"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "Little Athens is a 2005 American independent film directed by Tom Zuber, which stars John Patrick Amedori, Erica Leerhsen, DJ Qualls, Rachel Miner, Eric Szmanda, Michael Pe\u00f1a, and more. Despite premiering at Toronto Film Festival in 2005, it wasn't released on DVD until November 21, 2006."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hunt_for_the_Wilderpeople"}, "Title": {"type": "literal", "value": "Hunt for the Wilderpeople"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Taika_Waititi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Julian_Dennison|http://dbpedia.org/resource/Sam_Neill"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:New_Zealand_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Hunt for the Wilderpeople is a 2016 New Zealand adventure comedy-drama film written and directed by Taika Waititi who co-produced with Carthew Neal, Leanne Saunders and Matt Noonan, based on the book Wild Pork and Watercress by Barry Crump. The film stars Sam Neill and Julian Dennison as a father figure and son who become caught in a manhunt. The film premiered In Competition at the 2016 Sundance Film Festival on 22 January 2016. The film opened New Zealand wide on 31 March 2016. The film received a limited North American release on 24 June 2016."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Madman_Entertainment|http://dbpedia.org/resource/The_Orchard_(company)|http://dbpedia.org/resource/Vertigo_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Supernatural_Activity"}, "Title": {"type": "literal", "value": "Supernatural Activity"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Derek_Lee_Nixon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Supernatural Activity is a 2012 comedy film directed by Derek Lee Nixon. It parodies various supernatural films, such as Paranormal Activity, The Last Exorcism, and The Exorcism of Emily Rose. It stars Joey Oglesby, Donny Boaz, Andrew Pozza, Devin Bonn\u00e9e, and Lizabeth Waters as paranormal investigators."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Harvie_Krumpet"}, "Title": {"type": "literal", "value": "Harvie Krumpet"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Elliot"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/John_Flaus|http://dbpedia.org/resource/Julie_Forsyth|http://dbpedia.org/resource/Kamahl"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:Black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "22"}, "Description": {"type": "literal", "value": "Harvie Krumpet is a 2003 Australian clay animation comedy-drama short film written, directed and animated by Adam Elliot, and narrated by Geoffrey Rush. It tells the life story of Harvie Krumpet, a Polish-Australian man whose life is plagued by bad luck but who nevertheless remains optimistic. The film was funded by SBS Independent, the Australian Film Commission and Film Victoria, and it was filmed and animated by Adam Elliot and two assistants over 15 months in 2001\u20132003, using models made of plasticine and other materials. The production was completed in May 2003 and Harvie Krumpet premiered a month later at the Annecy International Animated Film Festival, followed by over 100 subsequent film festival screenings. It won many accolades, including the Academy Award for Best Animated Short Film in 2004."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Atom_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Skinny_(film)"}, "Title": {"type": "literal", "value": "The Skinny"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Patrik-Ian_Polk"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Blake_Young-Fountain|http://dbpedia.org/resource/Jeffrey_Bowyer-Chapman|http://dbpedia.org/resource/Jussie_Smollett"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Skinny is a 2012 American romantic comedy-drama film from the creator of the LOGO television series, Noah's Arc. It was released on April 6, 2012 in select theaters. Producers include Juan Battle and Michael Bennett."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bommarillu"}, "Title": {"type": "literal", "value": "Bommarillu"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bhaskar_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Genelia_D'Souza|http://dbpedia.org/resource/Jayasudha|http://dbpedia.org/resource/Kota_Srinivasa_Rao|http://dbpedia.org/resource/Prakash_Raj|http://dbpedia.org/resource/Siddharth_Narayan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "168"}, "Description": {"type": "literal", "value": "Bommarillu (English: Dollhouse) () is a 2006 Telugu romantic comedy film directed and co-written by Bhaskar, and produced by Dil Raju. The film stars Siddharth Narayan, Genelia D'Souza, Prakash Raj and Jayasudha. Following the film's box office success it was remade in Tamil as Santosh Subramaniam (2008), in Bengali as Bhalobasa Bhalobasa (2008), in Oriya as Dream Girl (2009) and in Hindi as It's My Life (2013). The film primarily revolves around the relationship between a father and son, in which the father's excessive concern for his son, and interference in his life, leads to the latter harbouring bitterness towards his overbearing father. The film opened to Indian audiences on 9 August 2006. On its way to winning state honors and rave reviews, the film went on to win the South Filmfare Awards among other prominent awards. The film's success broke several records at the box office during its prime and is one of the highest grossing Telugu films."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sri_Venkateswara_Creations"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Broken_Hearts_Club:_A_Romantic_Comedy"}, "Title": {"type": "literal", "value": "The Broken Hearts Club: A Romantic Comedy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Greg_Berlanti"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Keegan|http://dbpedia.org/resource/Ben_Weber_(actor)|http://dbpedia.org/resource/Billy_Porter_(Broadway_performer)|http://dbpedia.org/resource/Dean_Cain|http://dbpedia.org/resource/Matt_McGrath_(actor)|http://dbpedia.org/resource/Timothy_Olyphant|http://dbpedia.org/resource/Zach_Braff"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "The Broken Hearts Club: A Romantic Comedy is a 2000 American film written and directed by Greg Berlanti. It follows the lives of a group of gay friends in West Hollywood, centered on a restaurant owned by the fatherly Jack (John Mahoney) and the softball team he sponsors. The friends rely on each other for friendship and support as they search for love, deal with loss, and discover themselves. The Broken Hearts Club was Berlanti's first feature film, based around his circle of friends at the time. The movie was met with generally favorable reviews from critics, receiving praise for portraying homosexuality as normal and its characters as average gay men. The film focuses on \"the universal themes of romance, acceptance and family\", as opposed to AIDS, coming out, and sex, which are more controversial and stereotypical topics commonly covered in LGBT films."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sony_Pictures_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/LolliLove"}, "Title": {"type": "literal", "value": "LolliLove"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jenna_Fischer"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/James_Gunn_(filmmaker)|http://dbpedia.org/resource/Jason_Segel|http://dbpedia.org/resource/Jenna_Fischer|http://dbpedia.org/resource/Judy_Greer|http://dbpedia.org/resource/Linda_Cardellini|http://dbpedia.org/resource/Lloyd_Kaufman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "64"}, "Description": {"type": "literal", "value": "LolliLove is a 2004 American mockumentary co-written by, directed by and starring Jenna Fischer. The film satirizes a hip, misguided Southern California couple who decide to make a difference in the lives of the homeless by giving them lollipops with a cheery slogan on the wrapper."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Troma_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Returning_Mickey_Stern"}, "Title": {"type": "literal", "value": "Returning Mickey Stern"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Prywes"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Connie_Stevens|http://dbpedia.org/resource/Joseph_Bologna|http://dbpedia.org/resource/Joshua_Fishbein|http://dbpedia.org/resource/Ren\u00e9e_Taylor|http://dbpedia.org/resource/Tom_Bosley"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Returning Mickey Stern is a 2002 comedy film written and directed by Michael Prywes. It stars Joseph Bologna, Tom Bosley, Ren\u00e9e Taylor, Connie Stevens, and Joshua Fishbein and was shot almost entirely on Fire Island, off the coast of Long Island, NY. It is the story of a former professional baseball player who discovers a second chance at life and love on the island. The film opened in theaters in New York, Los Angeles, and Massachusetts in 2003, and was released by Pathfinder Home Entertainment on DVD in 2006. Returning Mickey Stern was the first film ever to have four of its stars chosen by the worldwide Internet audience. Through the CastOurMovie web portal, web users could view audition video, peruse headshots and resumes, and discuss their opinions about the actors. The web site garnered the attention of Time Magazine, Entertainment Weekly, Industry Standard, the U.S. News and World Report, and many other media outlets. Two million people participated in the online voting, and the winners were: Kylie Delre, Michael Oberlander, Sarah Schoenberg, and John Sloan."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Welcome_Home_Roscoe_Jenkins"}, "Title": {"type": "literal", "value": "Welcome Home Roscoe Jenkins"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Malcolm_D._Lee"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cedric_the_Entertainer|http://dbpedia.org/resource/James_Earl_Jones|http://dbpedia.org/resource/Joy_Bryant|http://dbpedia.org/resource/Louis_C.K.|http://dbpedia.org/resource/Margaret_Avery|http://dbpedia.org/resource/Martin_Lawrence|http://dbpedia.org/resource/Michael_Clarke_Duncan|http://dbpedia.org/resource/Mike_Epps|http://dbpedia.org/resource/Mo'Nique|http://dbpedia.org/resource/Nicole_Ari_Parker"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "Welcome Home Roscoe Jenkins is a 2008 American comedy film written and directed by Malcolm D. Lee and distributed by Universal Pictures. The film features an ensemble cast featuring: Martin Lawrence, Nicole Ari Parker, Margaret Avery, Michael Clarke Duncan, Mike Epps, Mo'Nique, Cedric the Entertainer, Louis CK, and James Earl Jones."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Banglasia"}, "Title": {"type": "literal", "value": "Banglasia"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Namewee"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Namewee|http://dbpedia.org/resource/Saiful_Apek"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Banglasia (Chinese: \u731b\u52a0\u62c9\u6bba\u624b), is an action comedy and Namewee's fourth film. The budget was more than MYR2 million, and was shot in Kuala Lumpur's Petaling Street. Although the title appears to allude to the alleged Malaysian political phenomenon, the director has denied the insinuation. Filming is completed, however on 30 January 2014, Namewee revealed that the Malaysia Censorship Board had banned the film for 31 reasons. The cast included the \"Bengal Andy,\" (Md Shakhawat Hossain Nirab), comedian Saiful Apek, Dato David Arumugam, Zhu Yu-six, female tattooist Kinki Ryusaki, Singaporean artist Ai Dika (Atikah Suhaime), \"Laozhabor\" You Yamin."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Irumbukkottai_Murattu_Singam"}, "Title": {"type": "literal", "value": "Irumbukkottai Murattu Singam"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chimbu_Deven"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films|http://dbpedia.org/resource/Category:Western_(genre)_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "140"}, "Description": {"type": "literal", "value": "Irumbukkottai Murattu Singam (English: The Iron Fort's Furious Lion) is a 2010 Indian Tamil western comedy film directed by Chimbu Deven, starring choreographer-turned-actor Lawrence Raghavendra, Sandhya, Lakshmi Rai and Padmapriya in lead roles. The film is a \"Western adventure comedy film\" based on Cowboy stories, which is set in the 19th century paying homages to many western films. The film's shooting commenced in April 2009 and released on 7 May 2010, positive reviews for its story.In Tamil cinema, after the movie Gangaa, this is a full length cowboy movie being taken after 38 years. The movie was appreciated to be in the standards of an original Italian cowboy movies. The film comically highlights the current world politics."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dirty_Grandpa"}, "Title": {"type": "literal", "value": "Dirty Grandpa"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dan_Mazer"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aubrey_Plaza|http://dbpedia.org/resource/Dermot_Mulroney|http://dbpedia.org/resource/Julianne_Hough|http://dbpedia.org/resource/Robert_De_Niro|http://dbpedia.org/resource/Zac_Efron|http://dbpedia.org/resource/Zoey_Deutch"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102|109"}, "Description": {"type": "literal", "value": "(For other uses, see Grandpa (disambiguation).) Dirty Grandpa is a 2016 American comedy film directed by Dan Mazer and written by John Philips. The film stars Robert De Niro, Zac Efron, Zoey Deutch, Aubrey Plaza and Dermot Mulroney. Filming began on January 19, 2015 in Atlanta and ended on May 9. It was theatrically released on January 22, 2016 by Lionsgate and received negative reviews from critics, but was a box office success, grossing over $99 million worldwide."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lionsgate_Films"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Barry_Josephson|http://dbpedia.org/resource/Bill_Block|http://dbpedia.org/resource/QED_International"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Rent-a-Cat"}, "Title": {"type": "literal", "value": "Rent-a-Cat"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Naoko_Ogigami"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ken_Mitsuishi|http://dbpedia.org/resource/Mikako_Ichikawa|http://dbpedia.org/resource/Reiko_Kusamura"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Japanese_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "Rent-a-Cat (\u30ec\u30f3\u30bf\u30cd\u30b3, Rentaneko) is a 2007 Japanese comedy-drama film written and directed by Naoko Ogigami. It premiered at 2012 Stockholm International Film Festival and was also featured in 17th Busan International Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Randomers"}, "Title": {"type": "literal", "value": "The Randomers"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Graham_Jones_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "70"}, "Description": {"type": "literal", "value": "The Randomers is a 2014 romantic film from the Irish director Graham Jones about a young woman on the west coast of Ireland who places an advertisement seeking a male for a relationship without speaking."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Making_Fiends_(TV_series)"}, "Title": {"type": "literal", "value": "Making Fiends"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dave_Wasson"}, "Author": {"type": "literal", "value": "http://dbpedia.org/resource/Amy_Winfrey|http://dbpedia.org/resource/Madellaine_Paxson"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008-10-04"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_children's_comedy_television_series|http://dbpedia.org/resource/Category:Black_comedy_television_programs"}, "Genre": {"type": "literal", "value": "http://dbpedia.org/resource/Comedy_horror"}, "Duration": {"type": "literal", "value": "21"}, "Description": {"type": "literal", "value": "Making Fiends is an American comedy horror animated television series. Based upon a web series with the same name, the series premiered on October 4, 2008 on Nicktoons Network. The series follows the evil, but dim-witted Vendetta and the new happy girl, Charlotte, at school in the gloomy town of Clamburg. Vendetta hates Charlotte and tries to destroy her in each and every episode. The series is created by Amy Winfrey. She voices Charlotte and her grandmother Charlene, among other characters. Character designer Aglaia Mortcheva is the voice of Vendetta.All of the voice actors from the web cartoon reprise their roles for the TV series, with the addition of a new castmember and crewmember, Dave Wasson. The series premiered with no promotion or press release. At one point, it was the highest rated original program on Nicktoons. Despite positive reviews and good ratings, the show was abruptly cancelled after airing six episodes."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Catch_That_Kid"}, "Title": {"type": "literal", "value": "Catch That Kid!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bart_Freundlich"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Corbin_Bleu|http://dbpedia.org/resource/Jennifer_Beals|http://dbpedia.org/resource/Kristen_Stewart|http://dbpedia.org/resource/Max_Thieriot|http://dbpedia.org/resource/Sam_Robards"}, "Published": {"type": "literal", "value": "2004-02-06"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Catch That Kid is a 2004 American adventure comedy film directed by Bart Freundlich and starring Kristen Stewart, Corbin Bleu, Max Thieriot, Jennifer Beals, and Sam Robards. It is a remake of the Danish blockbuster Klatret\u00f8sen (2002). The movie's working titles were Mission Without Permission (also the film's UK title as well as part of one of the taglines), Catch That Girl, and Catch That Kid!"}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Cake_(2005_film)"}, "Title": {"type": "literal", "value": "Cake"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nisha_Ganatra"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bruce_Gray|http://dbpedia.org/resource/Cheryl_Hines|http://dbpedia.org/resource/David_Sutcliffe|http://dbpedia.org/resource/Heather_Graham|http://dbpedia.org/resource/Keram_Malicki-S\u00e1nchez|http://dbpedia.org/resource/Sandra_Oh|http://dbpedia.org/resource/Sarah_Chalke|http://dbpedia.org/resource/Taye_Diggs"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Cake is a 2005 romantic comedy film directed by Nisha Ganatra."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lions_Gate_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Brahman_Naman"}, "Title": {"type": "literal", "value": "Brahman Naman"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Qaushiq_Mukherjee"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Shashank_Arora"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Brahman Naman is a 2016 Indian comedy film directed by Qaushiq Mukherjee. It was shown in the World Cinema Dramatic Competition section at the 2016 Sundance Film Festival. It was released on Netflix worldwide on 7 July 2016."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Speech_&_Debate"}, "Title": {"type": "literal", "value": "Speech & Debate"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dan_Harris_(screenwriter)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Speech & Debate is an upcoming film in post-production filmed in Jackson in 2015."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Sycamore_Pictures"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Satan,_Hold_My_Hand"}, "Title": {"type": "literal", "value": "Satan, Hold My Hand"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Courtney_Fathom_Sell"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Janeane_Garofalo|http://dbpedia.org/resource/Reverend_Jen_Miller"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "57"}, "Description": {"type": "literal", "value": "Satan, Hold My Hand or Satan Hold My Hand is a 2013 horror-comedy feature film edited, co-produced and directed by Courtney Fathom Sell. Written by Reverend Jen Miller, the film is notable for being the only feature-length film ASS Studios had completed, known mainly for their short subjects, as well as the inclusion of Writer Jonathan Ames as an Executive Producer. The film also marks the return of actor Robert Prichard, recognized for his roles in various Troma films including The Toxic Avenger & Class of Nuke em' High. Following a loose narrative, the film concerns a group of Satanic worshippers, who, after kidnapping two Catholic schoolgirls, soon realize that Satan isn't as evil as they hoped for."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hum_Tum_Shabana"}, "Title": {"type": "literal", "value": "Hum Tum Shabana"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sagar_Ballary"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Minissha_Lamba|http://dbpedia.org/resource/Shreyas_Talpade|http://dbpedia.org/resource/Tusshar_Kapoor"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "126"}, "Description": {"type": "literal", "value": "Hum Tum Shabana is a 2011 Indian comedy and romance film. It stars Tusshar Kapoor, Shreyas Talpade, and Minissha Lamba in lead roles."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Chillerama"}, "Title": {"type": "literal", "value": "Chillerama"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Green_(filmmaker)|http://dbpedia.org/resource/Adam_Rifkin|http://dbpedia.org/resource/Joe_Lynch_(director)|http://dbpedia.org/resource/Tim_Sullivan_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "119"}, "Description": {"type": "literal", "value": "Chillerama is a 2011 horror comedy anthology film consisting of four stories (or segments) that take place at a drive-in theater playing monster movies. Each segment is a homage to a different genre and style. The first is \"Wadzilla\" and was directed and written by Adam Rifkin spoofing 1950s monster movies. The second segment is \"I Was a Teenage Werebear\" and was directed and written by Tim Sullivan which parodies Rebel Without a Cause, Grease and The Twilight Saga and is set in 1962. The third is called \"The Diary of Anne Frankenstein\" and was directed and written by Adam Green and spoofs Hitler and The Diary of Anne Frank. The last segment is \"Zom-B-Movie\", a spoof of zombie films, and was directed and written by Joe Lynch. Tying each segment of the anthology together is a framing story: a worker for the theater, in a drunken state, digs up his deceased wife's body and attempts oral sex on it, only for her to turn into a zombie and bite his genitals, causing him to slowly turn into a zombie between segments as he is working. Filming took place in late 2010 and was release at Fantasy Filmfest on August 22, 2011. On September 29, 2011 it was released to video on demand and on DVD and Blu-ray on November 29, 2011."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Image_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Zack_and_Miri_Make_a_Porno"}, "Title": {"type": "literal", "value": "Zack and Miri Make a Porno"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Smith"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:2000s_sex_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Zack and Miri Make a Porno is a 2008 American romantic sex comedy film written and directed by Kevin Smith and starring Seth Rogen and Elizabeth Banks. It is Smith's second film (after Jersey Girl) not to be set within the View Askewniverse and his first film not set in New Jersey. It was released on October 31, 2008."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/The_Weinstein_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Extraterrestrial_(2011_film)"}, "Title": {"type": "literal", "value": "Extraterrestrial"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nacho_Vigalondo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Carlos_Areces|http://dbpedia.org/resource/Juli\u00e1n_Villagr\u00e1n|http://dbpedia.org/resource/Michelle_Jenner|http://dbpedia.org/resource/Miguel_Noguera|http://dbpedia.org/resource/Ra\u00fal_Cimas"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Spanish_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Extraterrestrial (Spanish: Extraterrestre) is a 2011 Spanish science-fiction romantic comedy. Directed by Nacho Vigalondo (in his second feature), it stars Michelle Jenner, Julian Villagran and Carlos Areces. It was filmed in Cantabria, in northern Spain and premiered in Spain on March 23, 2012. The film has shown worldwide: in the International Film Festival in Toronto, the International Film Festival of San Sebastian, the Sitges Film Festival in Sitges, Spain, and the Fantastic Fest in Austin, Texas."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/V\u00e9rtigo_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Preggoland"}, "Title": {"type": "literal", "value": "Preggoland"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jacob_Tierney"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Danny_Trejo|http://dbpedia.org/resource/James_Caan|http://dbpedia.org/resource/Laura_Harris|http://dbpedia.org/resource/Paul_Campbell_(Canadian_actor)|http://dbpedia.org/resource/Sonja_Bennett"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "Preggoland is a 2014 Canadian comedy film, directed by Jacob Tierney and written by Sonja Bennett. The film stars Bennett as Ruth, a 35-year-old single woman who falsely claims to be pregnant to deflect her friends' and family's mounting disapproval of her directionless, irresponsible lifestyle. The film's cast also includes James Caan, Danny Trejo, Paul Campbell, Laura Harris, Jared Keeso, Lisa Durupt, Carrie Ruscheinsky and Denise Jones. The film premiered on September 5, 2014 in the Special Presentations section of the 2014 Toronto International Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Gravitas_Ventures|http://dbpedia.org/resource/Mongrel_Media"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Matrimonium"}, "Title": {"type": "literal", "value": "Matrimonium"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Akers"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Sandon_Berg"}, "Published": {"type": "literal", "value": "2012-10-23"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Matrominium is a 2005 comedy film directed by Michael Akers, his second feature film after the successful Gone, But Not Forgotten. Co-written and co-produced by him and Sandon Berg, the latter appears in a lead role in the film as Spencer who is having a sham same-sex marriage with the straight character Rick Federman in the role of Malcolm to enable the latter to win the 1-million dollar prize on the nationally broadcast reality television show Matrimonium. The film was featured in Blood Moon's Guide to Gay & Lesbian Film, by Darwin Porter and Danforth Prince and published by Blood Moon Productions in 2006. In that book, Matrimonium is called a \"hilarious spoof on reality television.\""}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/United_Gay_Network"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Footy_Legends"}, "Title": {"type": "literal", "value": "Footy Legends"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Khoa_Do"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Angus_Sampson|http://dbpedia.org/resource/Anh_Do|http://dbpedia.org/resource/Claudia_Karvan|http://dbpedia.org/resource/Emma_Lung"}, "Published": {"type": "literal", "value": "2006-08-03"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Australian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Footy Legends is a 2006 Australian film, directed and co-written by Khoa Do, produced by Megan McMurchy, starring Khoa's older brother Anh Do, Angus Sampson, Emma Lung and Claudia Karvan. It was filmed in and around Sydney, Australia, mostly in the western suburbs. Footy Legends was released in Australia on 3 August 2006."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Khiladi_786"}, "Title": {"type": "literal", "value": "Khiladi 786"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ashish_R_Mohan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Akshay_Kumar|http://dbpedia.org/resource/Asin|http://dbpedia.org/resource/Himesh_Reshammiya|http://dbpedia.org/resource/Mithun_Chakraborty|http://dbpedia.org/resource/Raj_Babbar"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_action_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "141"}, "Description": {"type": "literal", "value": "Khiladi 786 is a 2012 Indian Hindi Punjabi action comedy film directed by Ashish R Mohan, featuring Akshay Kumar in the title role alongside Asin playing the female lead. It features Himesh Reshammiya, Mithun Chakraborty, Raj Babbar and Mukesh Rishi in supporting roles. The film marks the return of Akshay Kumar to his Khiladi series after 12 years. It is mostly shot in Mumbai and Punjab."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Eros_International"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Let_America_Laugh"}, "Title": {"type": "literal", "value": "Let America Laugh"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lance_Bangs"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/David_Cross"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Documentary_films_about_comedy_and_comedians"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Let America Laugh is a 2003 documentary film produced and directed by Lance Bangs of stand-up comedian David Cross's tour of small alternative rock clubs. While it does feature small portions of David's stand-up routines, it consists mostly of interactions between David and the people accompanying him on tour. Each segment on the DVD has a title taken from a Bible tract by Jack T. Chick (Is There Another Christ?, Gomez Is Coming, This Was Your Life). In October 2005, Cross was sued by Nashville club owner Thomas Weber, accusing Cross of taping him without permission for Let America Laugh, in violation of Weber's privacy rights. In April 2006 the case against David Cross himself was dismissed, leaving Thomas Weber to face Warner Music, Sub-Pop, WEA Corporation, and the Alternative Distribution Alliance. In June, the four companies together offered Weber an 'offer of judgement' of $30,000. Weber then attempted to force each of the four companies to pay $30,000 and in the end received nothing. The case was dismissed on July 25, 2006."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sub_Pop"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Relaks,_It's_Just_Pag-Ibig"}, "Title": {"type": "literal", "value": "Relaks, It's Just Pag-Ibig"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Antoinette_Jadaone"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Julian_Estrada|http://dbpedia.org/resource/Sofia_Andres"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Philippine_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Relaks, It's Just Pag-Ibig (English: Relax, It's Just Love) is a 2014 Filipino romantic comedy film starring I\u00f1igo Pascual, Julian Estrada, and Sofia Andres. It was directed by Antoinette Jadaone who was also behind the movies Beauty in a Bottle and That Thing Called Tadhana. The movie was also the debut film of the newbie artists Pascual, Estrada and Andres. The movie was given five perfect stars by the movie critics from the local movie reviewer website ClickTheCity.com, and Rated PG from MTRCB. Aside from this, it also received an average rating of 8.2/10 from IMDB. The movie was also given Graded A by the Cinema Evaluation Board. It also received positive responses from movie watchers and became a trending topic on the social networking site Twitter during its first day of showing."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Star_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Book_of_Love_(2016_film)"}, "Title": {"type": "literal", "value": "Book of Love"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Xue_Xiaolu"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Tang_Wei|http://dbpedia.org/resource/Wu_Xiubo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Chinese_romantic_comedy_films|http://dbpedia.org/resource/Category:Hong_Kong_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "129"}, "Description": {"type": "literal", "value": "Book of Love (Chinese: \u5317\u4eac\u9047\u4e0a\u897f\u96c5\u56fe\u4e4b\u4e0d\u4e8c\u60c5\u4e66), also titled Finding Mr. Right 2 in English, is a 2016 Chinese-Hong Kong romance film directed and written by Xue Xiaolu and starring Tang Wei and Wu Xiubo. It was released in China by EDKO (Beijing) Distribution on April 29, 2016. Book of Love is director-writer Xue Xiaolu's follow-up to the 2013 hit Finding Mr. Right, and it reunites her with lead actors Tang Wei and Wu Xiubo from the first movie, although the two films' plots are not related. Notably, the two leads have separate storylines throughout the movie, only communicating with each other through handwritten letters until their first meeting towards the end of the film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/EDKO_(Beijing)_Distribution"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tammy_(film)"}, "Title": {"type": "literal", "value": "Tammy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Falcone"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Allison_Janney|http://dbpedia.org/resource/Dan_Aykroyd|http://dbpedia.org/resource/Gary_Cole|http://dbpedia.org/resource/Kathy_Bates|http://dbpedia.org/resource/Mark_Duplass|http://dbpedia.org/resource/Susan_Sarandon"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "Tammy is a 2014 American comedy film directed and co-written by Ben Falcone and produced, co-written by, and starring Melissa McCarthy as the title character. The film also stars Susan Sarandon, Allison Janney, Gary Cole, Mark Duplass, Dan Aykroyd, and Kathy Bates and was released on July 2, 2014. The film received negative reviews from critics, but was a box office success, grossing over $100 million from a $20 million budget."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Falcone|http://dbpedia.org/resource/Gary_Sanchez_Productions|http://dbpedia.org/resource/New_Line_Cinema"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kick-Ass_2_(film)"}, "Title": {"type": "literal", "value": "Kick-Ass 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jeff_Wadlow"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:British_black_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films|http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "Kick-Ass 2 is a 2013 British-American superhero comedy film based on the comic book of the same name and Hit-Girl, both by Mark Millar and John Romita, Jr., and is the sequel to the 2010 film Kick-Ass, as well as the second installment of the Kick-Ass film series. The film was written and directed by Jeff Wadlow and co-produced by Matthew Vaughn, who directed the first film. Aaron Taylor-Johnson, Christopher Mintz-Plasse and Chlo\u00eb Grace Moretz reprise their roles from the first film as Dave Lizewski, Chris D'Amico, and Mindy Macready respectively. Other returning actors include Clark Duke as Marty Eisenberg, Yancy Butler as Angie D'Amico, Garrett M. Brown as Mr. Lizewski, Lyndsy Fonseca as Katie Deauxma, and Sophie Wu as Erika Cho. The film was released on 14 August 2013 in the United Kingdom and Ireland and on 16 August in the United States and Canada. Matthew Vaughn's production company Marv Films produced the film alongside Plan B Entertainment, Dentsu and Universal Pictures. The film earned $60.7 million on a $28 million budget."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Wrong_No."}, "Title": {"type": "literal", "value": "Wrong No."}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Yasir_Nawaz"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Danish_Taimoor|http://dbpedia.org/resource/Janita_Asma|http://dbpedia.org/resource/Sohai_Ali_Abro"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Pakistani_action_comedy_films|http://dbpedia.org/resource/Category:Pakistani_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Wrong No. (also written as Wrong Number) is a 2015 Pakistani romantic comedy film directed by Yasir Nawaz and co-produced by Yasir Nawaz, Nida Yasir and Hassan Zia under the production banner YNH Films. The film features Javed Sheikh, Danish Taimoor, Nadeem Jaffri, Danish Nawaz, Shafqat Cheema, Sohai Ali Abro and Janita Asma in lead roles. Wrong No. is the directorial debut of Yasir Nawaz. The film was released by ARY Films in cinemas nationwide on July 18, 2015 (Eid al-Fitr). In its opening weekend, it took in \u20a82.51 crore (US$250,000) at the local box office."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/ARY_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mo'_Money"}, "Title": {"type": "literal", "value": "Mo' Money"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Peter_MacDonald_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Damon_Wayans|http://dbpedia.org/resource/Joe_Santos|http://dbpedia.org/resource/John_Diehl_(actor)|http://dbpedia.org/resource/Marlon_Wayans|http://dbpedia.org/resource/Stacey_Dash"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_criminal_comedy_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Mo' Money is a 1992 American crime comedy film directed by Peter Macdonald, and written by Damon Wayans, who also starred in the film. The film co-stars Stacey Dash, Joe Santos, John Diehl, Harry Lennix, Bernie Mac (in his film debut), and Marlon Wayans. The film was released in the United States on July 24, 1992."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_People_I've_Slept_With"}, "Title": {"type": "literal", "value": "The People I've Slept With"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Quentin_Lee"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Archie_Kao|http://dbpedia.org/resource/Cathy_Shim|http://dbpedia.org/resource/Chris_Zylka|http://dbpedia.org/resource/James_Shigeta|http://dbpedia.org/resource/Karin_Anna_Cheung|http://dbpedia.org/resource/Lynn_Chen|http://dbpedia.org/resource/Randall_Park|http://dbpedia.org/resource/Wilson_Cruz"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "The People I've Slept With is a 2009 American sex comedy film directed by Quentin Lee."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/My_Super_Psycho_Sweet_16:_Part_3"}, "Title": {"type": "literal", "value": "My Super Psycho Sweet 16: Part 3"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jacob_Gentry"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jillian_Rose_Reed|http://dbpedia.org/resource/Kirsten_Prout|http://dbpedia.org/resource/Lauren_McKnight|http://dbpedia.org/resource/Ryan_Sypek"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "My Super Psycho Sweet 16: Part 3 is a 2012 American teen horror slasher film, the film is the third and final installment of My Super Psycho Sweet 16 trilogy. The film premiered on March 13, 2012 on MTV. Skye Rotter, who's ready to break free of \"Psycho Skye\", heads to college for a new life with her new best friend, but she must attend for one last party before she can escape her dark past."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Plastic_(film)"}, "Title": {"type": "literal", "value": "Plastic"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Julian_Gilbey"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alfie_Allen|http://dbpedia.org/resource/Ed_Speleers|http://dbpedia.org/resource/Emma_Rigby|http://dbpedia.org/resource/Graham_McTavish|http://dbpedia.org/resource/Mem_Ferda|http://dbpedia.org/resource/Sebastian_de_Souza|http://dbpedia.org/resource/Thomas_Kretschmann|http://dbpedia.org/resource/Will_Poulter"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Action_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Plastic is a British-American action comedy-crime film directed by Julian Gilbey and co-written by Will Gilbey and Chris Howard. The film stars Ed Speleers, Will Poulter, Alfie Allen, Sebastian de Souza and Emma Rigby."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Cinema_Management_Group|http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Repo!_The_Genetic_Opera"}, "Title": {"type": "literal", "value": "Repo! The Genetic Opera"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Darren_Lynn_Bousman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alexa_Vega|http://dbpedia.org/resource/Anthony_Head|http://dbpedia.org/resource/Bill_Moseley|http://dbpedia.org/resource/Nivek_Ogre|http://dbpedia.org/resource/Paris_Hilton|http://dbpedia.org/resource/Paul_Sorvino|http://dbpedia.org/resource/Sarah_Brightman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:2000s_musical_comedy_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films|http://dbpedia.org/resource/Category:American_musical_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Repo! The Genetic Opera is a 2008 American splatterpunk, rock opera, musical, comedy horror film directed by Darren Lynn Bousman. Based on the , which was written and composed by Darren Smith and Terrance Zdunich, the film stars Alexa Vega, Paul Sorvino, Anthony Stewart Head, Sarah Brightman, Paris Hilton, Bill Moseley, Nivek Ogre, and Terrance Zdunich. Repo! opened in a very limited release on November 7, 2008, on seven screens in Pasadena, Chicago, Mobile, Charlotte, Kansas City, Toronto and Ottawa. The film received mixed to negative reviews and was a box office bomb, but gained a cult following similar to The Rocky Horror Picture Show, managing even to fill theaters with costumed fans performing shadowcast versions, which Zdunich himself often visits to meet fans around the country."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lions_Gate_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Aziz_Ansari:_Live_at_Madison_Square_Garden"}, "Title": {"type": "literal", "value": "Aziz Ansari:|Live at Madison Square Garden"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Aziz_Ansari"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aziz_Ansari"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Stand-up_comedy_concert_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "58"}, "Description": {"type": "literal", "value": "Aziz Ansari: Live at Madison Square Garden is a 2015 American stand-up comedy film written by and starring Aziz Ansari, who also served as director. It was shot at Madison Square Garden in New York City in October 2014."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mivtza_Savta"}, "Title": {"type": "literal", "value": "Operation Grandma"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dror_Shaul"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ami_Smolartchik|http://dbpedia.org/resource/Rami_Heuberger|http://dbpedia.org/resource/Tzach_Spitzen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "51"}, "Description": {"type": "literal", "value": "Operation Grandma (Hebrew: \u05de\u05d1\u05e6\u05e2 \u05e1\u05d1\u05ea\u05d0, Mivtza Savta) is a short 1999 Israeli satirical comedy about the military and kibbutz life directed by Dror Shaul. It was filmed on Kibbutz Yakum and based on Kibbutz Kissufim where Shaul was born and raised."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Addicted_to_Fresno"}, "Title": {"type": "literal", "value": "Addicted to Fresno"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jamie_Babbit"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aubrey_Plaza|http://dbpedia.org/resource/Fred_Armisen|http://dbpedia.org/resource/Judy_Greer|http://dbpedia.org/resource/Molly_Shannon|http://dbpedia.org/resource/Natasha_Lyonne|http://dbpedia.org/resource/Ron_Livingston"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Addicted to Fresno (original title Fresno) is a 2015 dark comedy that was directed by Jamie Babbit and written by Karey Dornetto. The film had its world premiere March 14, 2015 at South by Southwest and stars Natasha Lyonne and Judy Greer as two sisters that find themselves in trouble after Greer accidentally kills someone. The film was released in the United States on September 1, 2015 through video on demand, and was released in a limited release on October 2, 2015, by Gravitas Ventures."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Gravitas_Ventures"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Gamechanger_Films"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Clerks"}, "Title": {"type": "literal", "value": "Clerks"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Smith"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Brian_O'Halloran|http://dbpedia.org/resource/Jason_Mewes|http://dbpedia.org/resource/Jeff_Anderson|http://dbpedia.org/resource/Lisa_Spoonhauer|http://dbpedia.org/resource/Marilyn_Ghigliotti"}, "Published": {"type": "literal", "value": "1994-10-19"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104|92"}, "Description": {"type": "literal", "value": "Clerks is a 1994 American black and white comedy film written and directed by Kevin Smith. Starring Brian O'Halloran as Dante Hicks and Jeff Anderson as Randal Graves, it presents a day in the lives of two store clerks and their acquaintances. Shot entirely in black and white, Clerks is the first of Smith's View Askewniverse films, and introduces several recurring characters, notably Jay and Silent Bob, the latter played by Smith himself. The structure of the movie contains nine scene breaks, signifying the nine rings of hell as in Dante Alighieri's Divine Comedy, from which the main character, Dante, gets his name. Clerks was shot for $27,575 in the convenience and video stores where director Kevin Smith worked in real life. Upon its theatrical release, the film grossed over $3 million in theaters, launching Smith's career."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Miramax_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hop_(film)"}, "Title": {"type": "literal", "value": "Hop"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tim_Hill_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Elizabeth_Perkins|http://dbpedia.org/resource/Gary_Cole|http://dbpedia.org/resource/Hank_Azaria|http://dbpedia.org/resource/Hugh_Laurie|http://dbpedia.org/resource/James_Marsden|http://dbpedia.org/resource/Kaley_Cuoco|http://dbpedia.org/resource/Russell_Brand"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Hop is a 2011 American 3D live-action/computer-animated buddy comedy film from Universal Pictures and Illumination Entertainment, directed by Tim Hill and produced by Chris Meledandri and Michele Imperato Stabile. The film was released on April 1, 2011, in the United States and the United Kingdom. Hop stars the voice of Russell Brand as E.B., a rabbit who does not want to succeed his father, Mr. Bunny (Hugh Laurie), in the role of the Easter Bunny; James Marsden as Fred O'Hare, a human who is out of work and wishes to become the next Easter Bunny himself; and the voice of Hank Azaria as Carlos, a evil chick who plots to take over the Easter organization. It was released on DVD and Blu-ray Disc on March 23, 2012, in Region 1."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Winnie_the_Pooh_(2011_film)"}, "Title": {"type": "literal", "value": "Winnie the Pooh"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Don_Hall_(filmmaker)|http://dbpedia.org/resource/Stephen_J._Anderson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bud_Luckey|http://dbpedia.org/resource/Craig_Ferguson|http://dbpedia.org/resource/Huell_Howser|http://dbpedia.org/resource/Jim_Cummings|http://dbpedia.org/resource/Kristen_Anderson-Lopez|http://dbpedia.org/resource/Tom_Kenny|http://dbpedia.org/resource/Travis_Oates"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:2010s_musical_comedy_films|http://dbpedia.org/resource/Category:Adventure_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_fantasy-comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "63"}, "Description": {"type": "literal", "value": "Winnie the Pooh is a 2011 American animated musical comedy film produced by Walt Disney Animation Studios and released by Walt Disney Pictures. It is the 51st Disney animated feature film. Inspired by A. A. Milne's stories of the same name, the film is part of Disney's Winnie the Pooh franchise, the fifth theatrical Winnie the Pooh film released, and Walt Disney Animation Studios' second adaptation of Winnie-the-Pooh stories. Jim Cummings reprises his vocal roles as Winnie the Pooh and Tigger, while series newcomers Travis Oates, Tom Kenny, Craig Ferguson, Bud Luckey, and Kristen Anderson-Lopez provide the voices of Piglet, Rabbit, Owl, Eeyore, and Kanga, respectively. In the film, the aforementioned residents of the Hundred Acre Wood embark on a quest to save Christopher Robin from an imaginary culprit while Pooh deals with a hunger for honey. The film is directed by Stephen Anderson and Don Hall, written by A. A. Milne and Burny Mattinson, produced by Peter Del Vecho, Clark Spencer, John Lasseter, and Craig Sost, and narrated by John Cleese. The film was released on April 15, 2011 in the United Kingdom, and on July 15, 2011 in the United States. Production for the film began in September 2009 with John Lasseter announcing that they wanted to create a film that would \"transcend generations.\" The film also features six songs by Kristen Anderson-Lopez and Robert Lopez, as well as a rendition of the Sherman Brothers' \"Winnie the Pooh\" theme song by actress and musician Zooey Deschanel. The film is dedicated to Dan Read, who had worked on Disney films including The Emperor's New Groove and Chicken Little, and died on May 25, 2010. That was also Huell Howser's (who voices the Backson in the epilogue) first and only film role."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Animation_Studios|http://dbpedia.org/resource/Walt_Disney_Pictures"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mater_and_the_Ghostlight"}, "Title": {"type": "literal", "value": "Mater and the Ghostlight"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dan_Scanlon|http://dbpedia.org/resource/John_Lasseter"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bonnie_Hunt|http://dbpedia.org/resource/Cheech_Marin|http://dbpedia.org/resource/Larry_the_Cable_Guy|http://dbpedia.org/resource/Michael_Wallis|http://dbpedia.org/resource/Owen_Wilson|http://dbpedia.org/resource/Paul_Newman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "7"}, "Description": {"type": "literal", "value": "Mater and the Ghostlight is a 2006 Pixar computer-animated short created for the DVD of Cars, which was released in the United States and Canada on November 7, 2006. The short, set in the Cars world, tells a story of Mater being haunted by a mysterious blue light."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Home_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dark_Rising"}, "Title": {"type": "literal", "value": "Dark Rising"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Cymek"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Canadian_comedy_television_series|http://dbpedia.org/resource/Category:Comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Dark Rising is a science fiction comedy franchise created by Andrew Cymek and adapted for film and television by Mihkel Harilaid. The original film, Dark Rising: Bring Your Battle Axe, was released in 2007 and featured the introduction of Summer Vale. The story was brought to television as Dark Rising: The Savage Tales of Summer Vale (2011) but shortly returned to feature film with Dark Rising: Summer Strikes Back (2011). Mihkel Harilaid of Black Walk Films leads the series' production as Executive Producer and each component has been directed by Andrew Cymek of Defiant Empire Films. The franchise is once again in production of a one-hour drama series, Dark Rising: Warrior of Worlds, set for release in 2013 in co-operation with Mar Vista Entertainment. The series was picked up by Super Channel 1 in Canada and started on July 20."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Scenesters"}, "Title": {"type": "literal", "value": "The Scenesters"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Todd_Berger"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jeff_Grace|http://dbpedia.org/resource/Sherilyn_Fenn|http://dbpedia.org/resource/Suzanne_May|http://dbpedia.org/resource/Todd_Berger"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "The Scenesters is a 2009 art-house black comedy film written and directed by Todd Berger. The film was made by Los Angeles-based comedy group The Vacationeers and stars Blaise Miller, Suzanne May, Jeff Grace, Kevin M. Brennan, Todd Berger and Sherilyn Fenn. The film was shot in July 2008 in Los Angeles, California, USA, and premiered on October 23, 2009, at the 16th Annual Austin Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Nora's_Hair_Salon"}, "Title": {"type": "literal", "value": "Nora's Hair Salon"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jerry_Lamothe"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jenifer_Lewis|http://dbpedia.org/resource/Tamala_Jones|http://dbpedia.org/resource/Tatyana_Ali"}, "Published": {"type": "literal", "value": "2004-05-25"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "Nora's Hair Salon is a 2004 independent comedy-drama film, written by Chanel Capra and Jean-Claude La Marre, and directed by Jerry LaMothe. This film stars Jenifer Lewis, Tamala Jones, and Tatyana Ali."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/DEJ_Productions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kingsman:_The_Golden_Circle"}, "Title": {"type": "literal", "value": "Kingsman: The Golden Circle"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Matthew_Vaughn"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Channing_Tatum|http://dbpedia.org/resource/Halle_Berry|http://dbpedia.org/resource/Jeff_Bridges|http://dbpedia.org/resource/Julianne_Moore|http://dbpedia.org/resource/Mark_Strong|http://dbpedia.org/resource/Pedro_Pascal|http://dbpedia.org/resource/Taron_Egerton"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films|http://dbpedia.org/resource/Category:Spy_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Kingsman: The Golden Circle is an upcoming 2017 British-American spy action comedy film directed by Matthew Vaughn, and is the sequel to 2014 film Kingsman: The Secret Service. The film stars Taron Egerton, Julianne Moore, Halle Berry, Mark Strong, Pedro Pascal, Channing Tatum and Jeff Bridges, and is scheduled to be released on 16 June 2017."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Rigor_Mortis_(film)"}, "Title": {"type": "literal", "value": "Rigor Mortis"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Juno_Mak"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anthony_Chan_(actor)|http://dbpedia.org/resource/Chin_Siu-ho|http://dbpedia.org/resource/Kara_Hui|http://dbpedia.org/resource/Lo_Hoi-pang|http://dbpedia.org/resource/Paw_Hee-ching"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:Hong_Kong_comedy_films|http://dbpedia.org/resource/Category:Martial_arts_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Rigor Mortis  is a 2013 Hong Kong horror film directed by Juno Mak, and also produced by Takashi Shimizu. The film is a tribute to the Mr. Vampire film series. Many of the former cast are featured in this film: Chin Siu-ho, Anthony Chan, Billy Lau and Richard Ng. Additionally, Chung Fat, who starred in Encounters of the Spooky Kind, is also featured."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Paper_Towns_(film)"}, "Title": {"type": "literal", "value": "Paper Towns"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jake_Schreier"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Austin_Abrams|http://dbpedia.org/resource/Cara_Delevingne|http://dbpedia.org/resource/Halston_Sage|http://dbpedia.org/resource/Justice_Smith|http://dbpedia.org/resource/Nat_Wolff"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "Paper Towns is a 2015 American mystery, comedy-drama film, directed by Jake Schreier, based on the 2008 novel of the same name by John Green. The film was adapted for the screen by Scott Neustadter and Michael H. Weber, the same team that wrote the first film adaption of one of Green's novels, The Fault in Our Stars. The film stars Nat Wolff and Cara Delevingne and was released on July 24, 2015, in the United States by 20th Century Fox. The film follows the coming of age and search by the protagonist, Quentin \"Q\" Jacobsen (Wolff), for Margo Roth Spiegelman (Delevingne), his childhood friend and object of affection. In the process, Quentin explores the relationship with his friends including his compatibility with Margo. It grossed over $85 million worldwide after the theatrical release, against a $12 million budget. It was released on Blu-ray and DVD on October 20, 2015, and grossed over $7 million in total domestic video sales. The film received mixed reviews."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Crazy_Stone_(film)"}, "Title": {"type": "literal", "value": "Crazy Stone"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ning_Hao"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Guo_Tao_(actor)|http://dbpedia.org/resource/Huang_Bo|http://dbpedia.org/resource/Liu_Gang_(actor)|http://dbpedia.org/resource/Liu_Hua_(actor)|http://dbpedia.org/resource/Teddy_Lin|http://dbpedia.org/resource/Xu_Zheng_(actor)"}, "Published": {"type": "literal", "value": "2006-06-30"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Crazy Stone (simplified Chinese: \u75af\u72c2\u7684\u77f3\u5934; traditional Chinese: \u760b\u72c2\u7684\u77f3\u982d; pinyin: F\u0113ngk\u00faang de sh\u00edtou) is a 2006 mainland Chinese black comedy film directed by Ning Hao and produced by Andy Lau. It was immensely popular, earning 6 million RMB in its first week and more than 23 million RMB (US$3 million) in total box office in Mainland China, despite its low budget (3 million HKD/US$400,000) and cast of unknowns. The movie was shot digitally on HD cameras and produced as part of Andy Lau's \"FOCUS: First Cuts\" series."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Totally_Awesome"}, "Title": {"type": "literal", "value": "Totally Awesome"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Neal_Brennan"}, "Author": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Schur|http://dbpedia.org/resource/Neal_Brennan"}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Kattan|http://dbpedia.org/resource/Dominique_Swain|http://dbpedia.org/resource/James_Hong|http://dbpedia.org/resource/Mikey_Day"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "Totally Awesome is a television film produced by VH1. Totally Awesome directly parodies a number of 1980s movies, including Dirty Dancing, Soul Man, Footloose, Some Kind of Wonderful, Sixteen Candles, Teen Wolf, Better Off Dead, Lucas, Pretty in Pink, and The Karate Kid. The film premiered on November 4, 2006, on VH1, and was broadcast to promote the film's DVD release on November 7."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_French_Kissers"}, "Title": {"type": "literal", "value": "The French Kissers"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Riad_Sattouf"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/No\u00e9mie_Lvovsky|http://dbpedia.org/resource/Vincent_Lacoste"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "The French Kissers is a 2009 French teen film. Its original French title is Les Beaux Gosses, which means \"the handsome boys\". It was written and directed by Riad Sattouf, marking his film debut. The film follows Herv\u00e9 (Vincent Lacoste), an average teenage boy who has little luck with finding a girlfriend until the beautiful Aurore (Alice Tr\u00e9moli\u00e8res) takes a liking to him. Sattouf, a graphic novel writer, was invited to write a script based on an idea from producer Anne-Dominique Toussaint, and he completed the screenplay with Marc Syrigas. Sattouf cast non-professional actors as the film's teenage characters, but he chose to use experienced actors such as No\u00e9mie Lvovsky, Ir\u00e8ne Jacob, Emmanuelle Devos and Valeria Golino as the adult characters. Filming took place over eight weeks in Gagny and Rennes. The film was released in France on 10 June 2009, and a soundtrack composed by Flairs was released on 8 June 2009. The film was well received by critics, who particularly praised the humour, the acting and the cinematography. It won the 2010 C\u00e9sar Award for Best First Feature Film and Lacoste also received a nomination for the C\u00e9sar Award for Most Promising Actor. It also won the Prix Jacques Pr\u00e9vert du Sc\u00e9nario for Best Adaptation in 2010."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Path\u00e9"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Men_in_the_City"}, "Title": {"type": "literal", "value": "Men in the City"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Simon_Verhoeven"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Christian_Ulmen|http://dbpedia.org/resource/Nadja_Uhl|http://dbpedia.org/resource/Wotan_Wilke_M\u00f6hring"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:German_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Men in the City (German: ''M\u00e4nnerherzen''; \"Men's Hearts\") is a 2009 German comedy film directed by Simon Verhoeven with Christian Ulmen, Nadja Uhl and Wotan Wilke M\u00f6hring. The film was followed by ''M\u00e4nnerherzen\u2026 und die ganz ganz gro\u00dfe Liebe in 2011."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Prankstar"}, "Title": {"type": "literal", "value": "Prankstar"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tom_Green"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Christa_Campbell|http://dbpedia.org/resource/Rob_Powell|http://dbpedia.org/resource/Ryan_Scott_(actor)|http://dbpedia.org/resource/Tom_Green"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Prankstar is an unreleased mockumentary independent film written by, directed by, and starring Tom Green."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hot_Rod_(film)"}, "Title": {"type": "literal", "value": "Hot Rod"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Akiva_Schaffer"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Samberg|http://dbpedia.org/resource/Bill_Hader|http://dbpedia.org/resource/Danny_McBride|http://dbpedia.org/resource/Ian_McShane|http://dbpedia.org/resource/Isla_Fisher|http://dbpedia.org/resource/Jorma_Taccone"}, "Published": {"type": "literal", "value": "2007-08-03"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Sports_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Hot Rod is a 2007 American comedy film co-written, directed by, and starring members of The Lonely Island (Andy Samberg, Jorma Taccone and Akiva Schaffer). The film stars Samberg as an amateur stuntman whose abusive step-father, Frank (Ian McShane) continuously mocks and disrespects him. When Frank grows ill, Rod raises money for his heart operation by executing his largest stunt yet. In addition to raising money for the operation, he also does so to win Frank's respect, by kicking his butt. The film also stars Taccone, Sissy Spacek, Will Arnett, Danny McBride, Isla Fisher and Bill Hader. It was directed by Schaffer (in his directorial debut) and distributed by Paramount Pictures. The film was originally drafted by Pam Brady (who retains full writing credit) as a vehicle for Saturday Night Live star Will Ferrell, but the project never commenced. Lorne Michaels convinced Paramount to let The Lonely Island, who were growing famous for their work on SNL, take over the film. The group subsequently re-wrote the film with a heavy emphasis on offbeat surreal humor. The film was shot in Vancouver over the summer of 2006. The film's soundtrack was composed by ex-Yes guitarist, Trevor Rabin, and the film features several songs by the Swedish rock band Europe. Hot Rod opened on August 3, 2007 and was a box office failure, grossing only $14 million of its $25 million budget. As the film's producers predicted, it received mixed reviews, criticizing the film's script and humor."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Superl\u00f3pez_(film)"}, "Title": {"type": "literal", "value": "Superl\u00f3pez contra el robot de bolsillo"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Enrique_Gato"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Spanish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "3"}, "Description": {"type": "literal", "value": "Superl\u00f3pez contra el robot de bolsillo (translated as Superl\u00f3pez Against the Pocket Robot) is a 2003 Spanish CGI animation short film directed by Enrique Gato and based on JAN's comics Superl\u00f3pez. Gato, fan of this comic series, wont to make a homage at JAN work with a 3 minutes animation film, although he tried to make a long duration film, but wasn't possible. The plot is about a battle on the street between the main character against a giant robot."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/How_to_Train_Your_Dragon_2"}, "Title": {"type": "literal", "value": "How to Train Your Dragon 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dean_DeBlois"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_adventure_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_fantasy-comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "How to Train Your Dragon 2 is a 2014 American 3D computer-animated fantasy action film produced by DreamWorks Animation and distributed by 20th Century Fox, loosely based on the British book series of the same name by Cressida Cowell. It is the sequel to the 2010 computer-animated film How to Train Your Dragon and the second in the trilogy. The film is written and directed by Dean DeBlois, and stars the voices of Jay Baruchel, Gerard Butler, Craig Ferguson, America Ferrera, Jonah Hill, Christopher Mintz-Plasse, T.J. Miller, and Kristen Wiig, with the addition of Cate Blanchett, Djimon Hounsou, and Kit Harington. The film takes place five years after the first film, featuring Hiccup and his friends as young adults as they meet Valka, Hiccup's long-lost mother, and Drago Bludvist, a madman who wants to conquer the world. DeBlois, who co-directed the first film, agreed to return to direct the second film on the condition that he would be allowed to turn it into a trilogy. He cited The Empire Strikes Back and My Neighbor Totoro as his main inspirations, with the expanded scope of the The Empire Strikes Back being particularly influential. The entire voice cast from the first film returned, and Cate Blanchett and Djimon Hounsou signed on to voice Valka and Drago, respectively. DeBlois and his creative team visited Norway and Svalbard to give them ideas for the setting. Composer John Powell returned to score the film. How to Train Your Dragon 2 benefited from advances in animation technology and was DreamWorks' first film to use scalable multicore processing and the studio's new animation and lighting software. The film was released on June 13, 2014, and like its predecessor, received wide acclaim. Critics praised the film for its animation, voice acting, action scenes, musical score, emotional depth, and darker, more serious tone compared to its predecessor. It received the Golden Globe Award for Best Animated Feature Film and was nominated for an Academy Award for Best Animated Feature. The film won six Annie Awards, including Best Animated Feature and Best Director. The film grossed over $621 million worldwide, making it the 12th-highest grossing film of 2014. It earned less than its predecessor at the US box office, but performed better internationally. A third installment in the trilogy, How to Train Your Dragon 3, is scheduled to be released on May 18, 2018."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Puff,_Puff,_Pass"}, "Title": {"type": "literal", "value": "Puff, Puff, Pass"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mekhi_Phifer"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Danny_Masterson|http://dbpedia.org/resource/John_C._McGinley|http://dbpedia.org/resource/Jonathan_Banks|http://dbpedia.org/resource/LaVan_Davis|http://dbpedia.org/resource/Mekhi_Phifer|http://dbpedia.org/resource/Ronnie_Warner|http://dbpedia.org/resource/Terry_Crews"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Puff, Puff, Pass is a 2006 comedic crime film, also known as Living High, directed by Mekhi Phifer."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Rainforest_Films|http://dbpedia.org/resource/Sony_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sunday_(2008_film)"}, "Title": {"type": "literal", "value": "Sunday"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rohit_Shetty"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ajay_Devgan|http://dbpedia.org/resource/Arshad_Warsi|http://dbpedia.org/resource/Ayesha_Takia|http://dbpedia.org/resource/Irrfan_Khan"}, "Published": {"type": "literal", "value": "2008-01-25"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Comedy_thriller_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "130"}, "Description": {"type": "literal", "value": "Sunday is a 2008 Bollywood mystery comedy film directed by Rohit Shetty. The film stars Ajay Devgn, Ayesha Takia, Arshad Warsi and Irfan Khan in lead roles. It is a remake of the 2005 Telugu film Anukokunda Oka Roju. Sunday released on 25 January 2008, and received mixed response from critics. It also managed to do average business at the box office worldwide."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Eros_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Coldblooded_(film)"}, "Title": {"type": "literal", "value": "Coldblooded"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Wallace_Wolodarsky"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Janeane_Garofalo|http://dbpedia.org/resource/Jason_Priestley|http://dbpedia.org/resource/Kimberly_Williams-Paisley|http://dbpedia.org/resource/Peter_Riegert|http://dbpedia.org/resource/Robert_Loggia"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_thriller_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Coldblooded is a 1995 black comedy/thriller film about hitmen directed by Wallace Wolodarsky and starring Jason Priestley, Peter Riegert, Robert Loggia, Kimberly Williams and Janeane Garofalo."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IRS_Media"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Appropriate_Behavior"}, "Title": {"type": "literal", "value": "Appropriate Behavior"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Desiree_Akhavan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Desiree_Akhavan|http://dbpedia.org/resource/Halley_Feiffer|http://dbpedia.org/resource/Scott_Adsit"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:British_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Appropriate Behavior is an American comedy film, which premiered on January 18, 2014 at the 2014 Sundance Film Festival. Written and directed by Desiree Akhavan, the film stars Akhavan as Shirin, a bisexual Persian American woman in Brooklyn struggling to rebuild her life after breaking up with her girlfriend Maxine (Rebecca Henderson). The film's cast also includes Scott Adsit, Halley Feiffer, Anh Duong, Hooman Majd, Arian Moayed and Aimee Mullins. The film had a theatrical release on January 16, 2015 in the US and was released on March 6, 2015 in the UK."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Gravitas_Ventures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/I'm_Not_Single"}, "Title": {"type": "literal", "value": "I'm Not Single"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pierre_Andre"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Awal_Ashaari|http://dbpedia.org/resource/Farid_Kamil|http://dbpedia.org/resource/Lisa_Surihani"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "I'm Not Single (translates as Aku Bukan Bujang in Malay) is a sophomore romantic comedy film directed by Pierre Andre. It was released on 24 July 2008. A series of road tour has been launched to promote the film."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Joy_of_Fatherhood"}, "Title": {"type": "literal", "value": "Joy of Fatherhood"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Matthias_Schweigh\u00f6fer"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Isabell_Polak|http://dbpedia.org/resource/Matthias_Schweigh\u00f6fer"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:German_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "Joy of Fatherhood (German: Vaterfreuden) is a 2014 German comedy film directed by Matthias Schweigh\u00f6fer."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/What_a_Beautiful_Surprise"}, "Title": {"type": "literal", "value": "What a Beautiful Surprise"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alessandro_Genovesi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Claudio_Bisio"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Italian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "What a Beautiful Surprise (Italian: Ma che bella sorpresa) is a 2015 Italian comedy film written and directed by Alessandro Genovesi and starring Claudio Bisio. It grossed $5,626,528 at the Italian box office."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Crane_World"}, "Title": {"type": "literal", "value": "Crane World"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pablo_Trapero"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adriana_Aizemberg|http://dbpedia.org/resource/Daniel_Valenzuela|http://dbpedia.org/resource/Luis_Margani"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Crane World (Spanish: Mundo gr\u00faa) is an 1999 Argentine film, written and directed by Pablo Trapero. The film was produced by Lita Stantic and Pablo Trapero. It features Luis Margani, Adriana Aizemberg, Daniel Valenzuela, among others. The movie was partly funded by Argentina's INCAA. The picture is about working class life in Argentina that's gritty (filmed in sepia, black and white). The film follows the fortunes in the life of Rulo, an unemployed suburban man, who tries to earn a living as a crane operator in Buenos Aires."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Cinema_Tropical|http://dbpedia.org/resource/INCAA|http://dbpedia.org/resource/Lita_Stantic"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Cabin_in_the_Woods"}, "Title": {"type": "literal", "value": "The Cabin in the Woods"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Drew_Goddard"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anna_Hutchison|http://dbpedia.org/resource/Bradley_Whitford|http://dbpedia.org/resource/Chris_Hemsworth|http://dbpedia.org/resource/Fran_Kranz|http://dbpedia.org/resource/Jesse_Williams_(actor)|http://dbpedia.org/resource/Kristen_Connolly|http://dbpedia.org/resource/Richard_Jenkins"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "The Cabin in the Woods is a 2012 American horror comedy film directed by Drew Goddard in his directorial debut, produced by Joss Whedon, and written by Whedon and Goddard. The film stars Kristen Connolly, Chris Hemsworth, Anna Hutchison, Fran Kranz, Jesse Williams, Richard Jenkins and Bradley Whitford. The plot follows a group of college students who retreat to a remote forest cabin where they fall victim to backwoods zombies and the two technicians who manipulate the ongoing events from an underground facility. Goddard and Whedon, having worked together previously on Buffy the Vampire Slayer and Angel, wrote the screenplay in three days, describing it as an attempt to \"revitalize\" the slasher film genre and as a critical satire on torture porn. The special effects, monster costumes, special makeup, and prosthetic makeup for the movie were done by veteran horror film actress Heather Langenkamp, her husband David LeRoy Anderson, and their company AFX Studio. Filming took place in Vancouver, British Columbia from March to May 2009 on an estimated budget of $30 million. The film was originally slated for release on February 5, 2010 by Metro-Goldwyn-Mayer and United Artists, but was indefinitely shelved due to ongoing financial difficulties. In 2011, Lionsgate picked up the distribution rights. The film premiered on March 9, 2012 at the South by Southwest film festival in Austin, Texas and was released in the United States on April 13, 2012, grossing over $66 million worldwide."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lionsgate_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Pitch_Perfect"}, "Title": {"type": "literal", "value": "Pitch Perfect"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jason_Moore_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_teen_comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "Pitch Perfect is a 2012 American comedy film directed by Jason Moore. It features an ensemble cast, including Anna Kendrick, Skylar Astin, Rebel Wilson, Anna Camp, Brittany Snow, Ester Dean, Alexis Knapp, Hana Mae Lee, Adam DeVine, Ben Platt, John Michael Higgins, and Elizabeth Banks. The plot follows Barden University's all-girl a cappella group, The Barden Bellas, as they compete against another a cappella group from their college to win Nationals. The film is loosely adapted from Mickey Rapkin's non-fiction book, titled Pitch Perfect: The Quest for Collegiate a Cappella Glory. Filming concluded in December 2011, in Baton Rouge, Louisiana. The film premiered in Los Angeles on September 24, 2012. Released on September 28, 2012 in the United States, the film received positive reviews from critics. It became a sleeper hit and earned over $115 million worldwide, becoming the second highest-grossing music comedy film of all time behind School of Rock. The first film in the film series and was followed by two sequels Pitch Perfect 2 (2015) and Pitch Perfect 3 (2017)."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Maaf,_Saya_Menghamili_Istri_Anda"}, "Title": {"type": "literal", "value": "Maaf, Saya Menghamili Istri Anda"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Monty_Tiwa"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Eddie_Karsito|http://dbpedia.org/resource/Mulan_Kwok|http://dbpedia.org/resource/Ringgo_Agus_Rachman|http://dbpedia.org/resource/Shanty_(actress)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Maaf, Saya Menghamili Istri Anda (Sorry, I've Impregnated Your Wife) is a 2007 Indonesia film written and directed by Monty Tiwa."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sinemart"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kamulah_Satu-Satunya"}, "Title": {"type": "literal", "value": "Kamulah Satu-Satunya"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Hanung_Bramantyo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dennis_Adhiswara|http://dbpedia.org/resource/Didi_Petet|http://dbpedia.org/resource/Ence_Bagus|http://dbpedia.org/resource/Fanny_Fadillah|http://dbpedia.org/resource/Junior_Liem|http://dbpedia.org/resource/Nirina_Zubir|http://dbpedia.org/resource/Ringgo_Agus_Rahman|http://dbpedia.org/resource/Tarzan"}, "Published": {"type": "literal", "value": "2007-07-12"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Kamulah Satu-Satunya (You're the Only One) is a 2007 Indonesian comedy film directed by Hanung Bramantyo and starring Nirina Zubir, Junior Liem, Didi Petet, Tarzan, Fanny Fadillah, Ringgo Agus Rahman, and Dennis Adhiswara. The film premiered on July 12, 2007 in Jakarta. Productions by Oreima Films & Starvision."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Starvision_Plus"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Slutty_Summer"}, "Title": {"type": "literal", "value": "Slutty Summer"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Casper_Andreas"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Casper_Andreas|http://dbpedia.org/resource/Christos_Klapsis|http://dbpedia.org/resource/Jesse_Archer"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Slutty Summer is a 2004 romantic comedy film written and directed by Casper Andreas. It stars Casper Andreas, Jesse Archer, and Christos Klapsis. The film was premiered at the New York Lesbian and Gay Film Festival on June 11, 2004, and was shown at various other film festivals before its release in the United States on June 10, 2005."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Embrem_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Get_Him_to_the_Greek"}, "Title": {"type": "literal", "value": "Get Him to the Greek"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nicholas_Stoller"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Colm_Meaney|http://dbpedia.org/resource/Elisabeth_Moss|http://dbpedia.org/resource/Jonah_Hill|http://dbpedia.org/resource/Rose_Byrne|http://dbpedia.org/resource/Russell_Brand|http://dbpedia.org/resource/Sean_Combs"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "Get Him to the Greek is a 2010 American comedy film written, produced and directed by Nicholas Stoller and starring Russell Brand and Jonah Hill. Released on June 4, 2010, the film serves as a spin-off sequel of Stoller's 2008 film Forgetting Sarah Marshall, reuniting director Stoller with stars Hill and Brand. Brand reprises his role as character Aldous Snow from Forgetting Sarah Marshall, while Hill plays an entirely new character. The film also stars Elisabeth Moss, Rose Byrne, Sean \"Diddy\" Combs, and Colm Meaney."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Apatow_Productions|http://dbpedia.org/resource/Relativity_Media|http://dbpedia.org/resource/Spyglass_Entertainment"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Get_Santa"}, "Title": {"type": "literal", "value": "Get Santa"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Christopher_Smith_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jim_Broadbent|http://dbpedia.org/resource/Rafe_Spall|http://dbpedia.org/resource/Warwick_Davis"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Get Santa is a 2014 British Christmas comedy film directed and written by Christopher Smith. The film stars Jim Broadbent, Rafe Spall, Warwick Davis and Kit Connor. It was Tony Scott's last film as producer."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Spider_(2007_film)"}, "Title": {"type": "literal", "value": "Spider"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nash_Edgerton"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Joel_Edgerton|http://dbpedia.org/resource/Mirrah_Foulkes|http://dbpedia.org/resource/Nash_Edgerton"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "9"}, "Description": {"type": "literal", "value": "(This article is about the Nash Edgerton film. For the David Cronenberg film, see Spider (2002 film).) Spider is a 2007 Australian black comedy short film directed by Nash Edgerton and written by David Mich\u00f4d and Nash Edgerton. The film had its world premiere in competition at the Sydney Film Festival on 17 June 2007. After that the film compete at number of film festivals and later theatrically released with Edgerton's feature-film The Square."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Apparition_(company)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Naiyaandi"}, "Title": {"type": "literal", "value": "Naiyaandi"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/A._Sarkunam"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dhanush|http://dbpedia.org/resource/Nazriya_Nazim"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "158"}, "Description": {"type": "literal", "value": "Naiyaandi (English: Mockery) is a 2013 Indian Tamil romantic comedy film written and directed by A. Sarkunam. The film features Dhanush and Nazriya Nazim in the lead roles. The plot focuses on a love story between a Kuthu Vilakku (lamp) shop owner and a BDS student. It received 'U' certificate from Central Board of Film Certification and released on 11 October 2013. The film, inspired from the 1993 Malayalam film Meleparambil Aanveedu, received mostly negative reviews but had a decent collection in terms of the box office."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Pretty_Smart"}, "Title": {"type": "literal", "value": "Pretty Smart"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dimitri_Logothetis"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dennis_Cole|http://dbpedia.org/resource/Patricia_Arquette|http://dbpedia.org/resource/Tricia_Leigh_Fisher"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1980s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Pretty Smart is a 1987 American comedy-drama film starring Tricia Leigh Fisher and Patricia Arquette. It was directed by Dimitri Logothetis. It was Arquette's first film. It was mostly filmed in Athens with most interiors and some exteriors at the Hotel Grande Bretagne."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/New_World_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Cashback_(film)"}, "Title": {"type": "literal", "value": "Cashback"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sean_Ellis"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Emilia_Fox|http://dbpedia.org/resource/Sean_Biggerstaff"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:British_comedy-drama_films|http://dbpedia.org/resource/Category:British_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102|18"}, "Description": {"type": "literal", "value": "Cashback is a 2006 British romantic comedy-drama film written and directed by Sean Ellis. Originally exhibited as a short in 2004, it was expanded to feature length in 2006. Both versions were produced by Lene Bausager, starring Sean Biggerstaff and Emilia Fox. The feature was released by Magnolia Pictures in late 2006 and also starred Michelle Ryan."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Pelli_Choopulu"}, "Title": {"type": "literal", "value": "PelliChoopuluu"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tharun_Bhascker_Dhaassyam"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ritu_Varma|http://dbpedia.org/resource/Vijay_Deverakonda"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "124"}, "Description": {"type": "literal", "value": "Pelli Choopulu (English: Matchmaking) is a 2016 romantic-comedy Telugu film written and directed by Tharun Bhascker Dhaassyam and produced by Raj Kandukuri and Yash Rangineni. It features Vijay Deverakonda and Ritu Varma in the lead roles. The film was released worldwide on 29 July 2016 to positive reviews from critics and received critical and commercial success."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Suresh_Productions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Josh_and_S.A.M."}, "Title": {"type": "literal", "value": "Josh and S.A.M."}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Billy_Weber"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1993-11-24"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Josh and S.A.M. is a 1993 American drama-comedy film revolving around two brothers who hate each other and the way they react to their parents' divorce. It stars Noah Fleiss, his film debut, along with Jacob Tierney, Martha Plimpton, and a young Jake Gyllenhaal. It was directed by Billy Weber and produced by Martin Brest."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lego_Indiana_Jones_and_the_Raiders_of_the_Lost_Brick"}, "Title": {"type": "literal", "value": "''Lego Indiana Jones and|the Raiders of the Lost Brick''"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Peder_Pedersen_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008-05-10"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Adventure_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "5"}, "Description": {"type": "literal", "value": "Lego Indiana Jones and the Raiders of the Lost Brick (2008) is a 3-D computer-animated Lego movie directed by Peder Pedersen. It combines details from all four Indiana Jones features into one continuous adventure with a humorous twist, and includes several inside-jokes for fans of both the Indiana Jones films and the Star Wars series. All four chapters, which combine to form a so-called \"mini-epic\", aired on Cartoon Network from May 10, 2008 and could be seen at the Lego Indiana Jones page on the Cartoon Network website, as well as on the Lego Indiana Jones website. Pedersen had previously spoofed the Indiana Jones films in his music video for \"Doctor Jones\" (1997), a hit song by the Danish/Norwegian dance-pop group Aqua. Lego Indiana Jones and the Raiders of the Lost Brick was followed by Lego Star Wars: The Quest for R2-D2 in 2009, also directed by Pedersen."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Cartoon_Network"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Shaun_of_the_Dead"}, "Title": {"type": "literal", "value": "Shaun of the Dead"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Edgar_Wright"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bill_Nighy|http://dbpedia.org/resource/Dylan_Moran|http://dbpedia.org/resource/Kate_Ashfield|http://dbpedia.org/resource/Lucy_Davis|http://dbpedia.org/resource/Nick_Frost|http://dbpedia.org/resource/Penelope_Wilton"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:British_black_comedy_films|http://dbpedia.org/resource/Category:British_comedy_horror_films|http://dbpedia.org/resource/Category:Zombie_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "Shaun of the Dead is a 2004 British horror comedy film directed by Edgar Wright, written by Wright and Simon Pegg, and starring Pegg and Nick Frost. Pegg plays Shaun, a man attempting to get some kind of focus in his life as he deals with his girlfriend, his mother and stepfather. At the same time, he has to cope with an apocalyptic zombie uprising. The film was a critical and commercial success. Shaun of the Dead was also a BAFTA nominee. Pegg and Wright considered a sequel that would replace zombies with another monster, but decided against it as they were pleased with the first film as a stand-alone product, and thought too many characters died to continue the story. The film is the first in Wright and Pegg's Three Flavours Cornetto trilogy, followed by 2007's Hot Fuzz and 2013's The World's End."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Rogue_Pictures|http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/No_Blood_No_Tears"}, "Title": {"type": "literal", "value": "No Blood No Tears"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ryoo_Seung-wan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jeon_Do-yeon|http://dbpedia.org/resource/Jung_Jae-young|http://dbpedia.org/resource/Lee_Hye-young_(actress,_born_1962)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "No Blood No Tears (Hangul: \ud53c\ub3c4 \ub208\ubb3c\ub3c4 \uc5c6\uc774; RR: Pi-do nunmul-do eobsi) is a 2002 South Korean pulp noir film from director Ryoo Seung-wan."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Cinema_Service"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Beside_Still_Waters_(film)"}, "Title": {"type": "literal", "value": "Beside Still Waters"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Lowell"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Beck_Bennett|http://dbpedia.org/resource/Brett_Dalton|http://dbpedia.org/resource/Britt_Lower|http://dbpedia.org/resource/Jessy_Hodges|http://dbpedia.org/resource/Reid_Scott_(actor)|http://dbpedia.org/resource/Ryan_Eggold"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "76"}, "Description": {"type": "literal", "value": "Beside Still Waters is an American comedy-drama film co-written, produced, and directed by actor Chris Lowell in his directorial debut. The film was released on November 14, 2014."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kick-Ass_(film)"}, "Title": {"type": "literal", "value": "Kick-Ass"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Matthew_Vaughn"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aaron_Taylor-Johnson|http://dbpedia.org/resource/Chlo\u00eb_Grace_Moretz|http://dbpedia.org/resource/Christopher_Mintz-Plasse|http://dbpedia.org/resource/Mark_Strong|http://dbpedia.org/resource/Nicolas_Cage"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:British_black_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films|http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "117"}, "Description": {"type": "literal", "value": "Kick-Ass is a 2010 British-American independent superhero black comedy film based on the comic book of the same name by Mark Millar and John Romita, Jr. The film was directed by Matthew Vaughn, who co-produced with Brad Pitt and co-wrote the screenplay with Jane Goldman. Its general release was on 25 March 2010 in the United Kingdom and on 16 April 2010 in the United States. It is the first installment of the Kick-Ass film series. It tells the story of an ordinary teenager, Dave Lizewski (Aaron Johnson), who sets out to become a real-life superhero, calling himself \"Kick-Ass\". Dave gets caught up in a bigger fight when he meets Big Daddy (Nicolas Cage), a former cop who, in his quest to bring down the crime boss Frank D'Amico (Mark Strong) and his son (Christopher Mintz-Plasse) (Red Mist), has trained his eleven-year-old daughter (Chlo\u00eb Grace Moretz) to be the ruthless vigilante Hit-Girl. Despite having generated some controversy for its profanity and violence performed by a child, Kick-Ass was well received by both critics and audiences. The film has gained a strong cult following since its release on DVD and Blu-ray. A sequel, written and directed by Jeff Wadlow and produced by Vaughn, was released in August 2013, with Johnson, Mintz-Plasse, and Moretz reprising their roles."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lionsgate_Entertainment|http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Marv_Films|http://dbpedia.org/resource/Plan_B_Entertainment"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Student_of_the_Year"}, "Title": {"type": "literal", "value": "Student of the Year"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Karan_Johar"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alia_Bhatt|http://dbpedia.org/resource/Ram_Kapoor|http://dbpedia.org/resource/Rishi_Kapoor|http://dbpedia.org/resource/Ronit_Roy|http://dbpedia.org/resource/Sana_Saeed|http://dbpedia.org/resource/Sidharth_Malhotra|http://dbpedia.org/resource/Varun_Dhawan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "146|188"}, "Description": {"type": "literal", "value": "Student of the Year is a 2012 Indian romantic drama film directed by Karan Johar and produced by Hiroo Yash Johar under the banner of Dharma Productions and in collaboration with Shah Rukh Khan's Red Chillies Entertainment. The movie features newcomers Sidharth Malhotra, Varun Dhawan and Alia Bhatt in the lead roles with Rishi Kapoor, Sana Saeed, Ronit Roy, Ram Kapoor and Farida Jalal in supporting roles. The movie also features Boman Irani, Kajol, Farah Khan and Vaibhavi Merchant in guest appearances. This is Karan Johar's first directorial venture without Shah Rukh Khan. Student of the Year was released on 19 October 2012 in over 1400 locations across India. It was a critical and commercial success and gained positive to mixed reviews from critics and good box office collections. The movie is one of the highest grossing Bollywood films of 2012."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Eros_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dodging_the_Clock"}, "Title": {"type": "literal", "value": "Dodging the Clock|Horloge biologique"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ricardo_Trogi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Dodging the Clock (French: Horloge biologique) is a Quebec film directed by Ricardo Trogi and released in 2005."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Phil_the_Alien"}, "Title": {"type": "literal", "value": "Phil the Alien"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rob_Stefaniuk"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Graham_Greene_(actor)|http://dbpedia.org/resource/Nicole_de_Boer|http://dbpedia.org/resource/Rob_Stefaniuk"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Phil the Alien is a 2004 Canadian comedy film. It was written and directed by Rob Stefaniuk, who also starred as the titular Phil. The film's cast also includes Graham Greene and Ingrid Veninger."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lions_Gate_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Fullmetal_Alchemist:_Brotherhood"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Yasuhiro_Irie"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Comedy-drama_anime_and_manga"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Fullmetal Alchemist: Brotherhood (Japanese: \u92fc\u306e\u932c\u91d1\u8853\u5e2b Hepburn: Hagane no Renkinjutsushi) is an anime series adapted from the Fullmetal Alchemist manga by Hiromu Arakawa. Produced by Bones, the series is directed by Yasuhiro Irie and written by Hiroshi \u014cnogi. Fullmetal Alchemist: Brotherhood is the second anime television series based on Fullmetal Alchemist, the first being 2003's Fullmetal Alchemist. Fullmetal Alchemist: Brotherhood is a 1:1 adaptation directly following the original events of the manga. It was first announced in the manga series' 20th tank\u014dbon volume. In Japan, it is differentiated from the 2003 series by the inclusion of the English language title. The series premiered on April 5, 2009 on MBS-TBS' Sunday 5:00 PM JST anime time block, replacing Mobile Suit Gundam 00, and ran weekly until airing its final episode on July 4, 2010. Voice actors Romi Park and Rie Kugimiya reprise their roles as main characters Edward and Alphonse Elric, respectively. On March 20, 2009, it was announced that the English title of the series was Fullmetal Alchemist: Brotherhood and that it would receive its English language premiere on Animax Asia, with Japanese audio and English subtitles, from April 10, 2009 at 8:30 p.m, five days after its Japanese premiere. On April 3, 2009, Funimation announced they would stream English subtitled episodes four days after they air in Japan. Madman Entertainment would also stream it \"within days\" of the episodes airing in Japan. On February 14, 2010, the English dubbed version of the series began its run on Adult Swim. On February 1, 2016, Funimation announced that they would be losing home video and streaming rights to both Fullmetal Alchemist: Brotherhood, and Fullmetal Alchemist the Movie: Conqueror of Shamballa, by March 31, 2016. The series was transferred to Aniplex of America."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kadavul_Irukaan_Kumaru"}, "Title": {"type": "literal", "value": "Kadavul Irukaan Kumaru"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/M._Rajesh"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anandhi|http://dbpedia.org/resource/G._V._Prakash_Kumar|http://dbpedia.org/resource/Nikki_Galrani|http://dbpedia.org/resource/RJ_Balaji"}, "Published": {"type": "literal", "value": "2016-10-28"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Kadavul Irukaan Kumaru (English: There is a God, Kumar) is an upcoming Indian Tamil comedy film written and directed by M. Rajesh and produced by T. Siva. The film stars G. V. Prakash Kumar, Nikki Galrani and Anandhi in the leading roles, while Prakash Raj and RJ Balaji play supporting roles. The film began production during March 2016, and will be released during late 2016."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kick_(2009_film)"}, "Title": {"type": "literal", "value": "Kick"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Surender_Reddy"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ileana_D'Cruz|http://dbpedia.org/resource/Ravi_Teja"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "155"}, "Description": {"type": "literal", "value": "Kick is a 2009 Indian Telugu-language action comedy film written by Vakkantham Vamsi and directed by Surender Reddy. It features Ravi Teja and Ileana D'Cruz in the lead roles. The film's music was composed by S. Thaman.The film was released worldwide on 8 May 2009 and became blockbuster and was remade into Tamil as Thillalangadi, Hindi as Kick (2014) and in Kannada as Super Ranga. A sequel, Kick 2 with the same lead actor Ravi Teja and director Surender Reddy released worldwide on 21 August 2015."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Suresh_Productions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Pitch_Perfect_(film_series)"}, "Title": {"type": "literal", "value": "Pitch Perfect"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Elizabeth_Banks|http://dbpedia.org/resource/Jason_Moore_(director)|http://dbpedia.org/resource/Trish_Sie"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_DeVine|http://dbpedia.org/resource/Alexis_Knapp|http://dbpedia.org/resource/Anna_Camp|http://dbpedia.org/resource/Anna_Kendrick|http://dbpedia.org/resource/Ben_Platt_(actor)|http://dbpedia.org/resource/Brittany_Snow|http://dbpedia.org/resource/Chrissie_Fit|http://dbpedia.org/resource/Ester_Dean|http://dbpedia.org/resource/Hailee_Steinfeld|http://dbpedia.org/resource/Hana_Mae_Lee|http://dbpedia.org/resource/John_Michael_Higgins|http://dbpedia.org/resource/Katey_Sagal|http://dbpedia.org/resource/Rebel_Wilson|http://dbpedia.org/resource/Skylar_Astin"}, "Published": {"type": "literal", "value": "2012-09-28|2015-05-15|2017-12-22"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "227"}, "Description": {"type": "literal", "value": "Pitch Perfect is a series of musical comedy films created by Kay Cannon, loosely based on the non-fiction book Pitch Perfect: The Quest for Collegiate a Cappella Glory by Mickey Rapkin. Jason Moore directed the first film and Elizabeth Banks directed the second, with the upcoming third installment set to be released on July 21, 2017. Paul Brooks, Max Handelman, and Banks produced the films. It features an ensemble cast, including Anna Kendrick, Rebel Wilson, Anna Camp, Brittany Snow, Skylar Astin, Adam DeVine, Ben Platt, Alexis Knapp, Hana Mae Lee, Ester Dean, Hailee Steinfeld, Chrissie Fit, Katey Sagal, John Michael Higgins, and Banks. The series is distributed by Universal Pictures. The first film was a sleeper hit. It received positive reviews and is financially successful, grossing over $115 million against a $17 million budget. A sequel was made and released in 2015, to much greater financial success, grossing over $287 million against $29 million budget. The series has since gained a cult following and the second film is the current highest grossing musical comedy film of all time, beating School of Rock's record. The third film is set to be released on 2017."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Massu_Engira_Masilamani"}, "Title": {"type": "literal", "value": "Massu Engira Masilamani"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Venkat_Prabhu"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aravind_Akash|http://dbpedia.org/resource/Jayaprakash|http://dbpedia.org/resource/Nayantara|http://dbpedia.org/resource/Parthiban|http://dbpedia.org/resource/Pranitha_Subhash|http://dbpedia.org/resource/Premgi_Amaren|http://dbpedia.org/resource/Riyaz_Khan|http://dbpedia.org/resource/Samuthirakani|http://dbpedia.org/resource/Suriya"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Horror_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "152"}, "Description": {"type": "literal", "value": "Massu Engira Masilamani (English: Masilamani alias Mass), also known by its former title Masss, is a 2015 Indian Tamil-language comedy horror film directed by Venkat Prabhu. and produced by K. E. Gnanavel Raja under his then-newly formed studio Aadnah Arts, it features an ensemble cast including Suriya, Nayantara, Parthiban, Samuthirakani, Premgi Amaren and Pranitha Subhash. Yuvan Shankar Raja composed the music and cinematography was handled by R. D. Rajasekhar. The film was released worldwide on 29 May 2015. A Telugu dubbed version, titled Rakshasudu, was released simultaneously in Andhra Pradesh and Telangana."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Dream_Factory_(distributor)|http://dbpedia.org/resource/Eros_International|http://dbpedia.org/resource/Studio_Green"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Force_Majeure_(film)"}, "Title": {"type": "literal", "value": "Force Majeure"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ruben_\u00d6stlund"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Johannes_Bah_Kuhnke|http://dbpedia.org/resource/Kristofer_Hivju"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy-drama_films|http://dbpedia.org/resource/Category:Norwegian_comedy_films|http://dbpedia.org/resource/Category:Swedish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "119"}, "Description": {"type": "literal", "value": "Force Majeure ([f\u0254rs ma\u0292\u0153r]; Swedish: Turist, \"tourist\") is a 2014 Swedish comedy-drama film directed by Ruben \u00d6stlund. It follows the marital tension resulting from an avalanche during which the husband, named Tomas, is believed by his wife to have prioritized his own escape over the safety of his family. The film's title comes from force majeure, a contractual clause freeing both parties from liability in the event of unexpected disasters. Force Majeure was acclaimed upon release, with critics praising its script and cinematography. It won the Best Film award at the 50th Guldbagge Awards, and was named one of the best films of 2014 by various publications."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/TerrorVision"}, "Title": {"type": "literal", "value": "TerrorVision"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ted_Nicolaou"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alejandro_Rey|http://dbpedia.org/resource/Bert_Remsen|http://dbpedia.org/resource/Chad_Allen_(actor)|http://dbpedia.org/resource/Diane_Franklin|http://dbpedia.org/resource/Gerrit_Graham|http://dbpedia.org/resource/Jon_Gries|http://dbpedia.org/resource/Mary_Woronov"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1980s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:Comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "TerrorVision is an 1986 American horror comedy film directed by Ted Nicolaou, produced and written by Albert and Charles Band and composed by Richard Band, all of whom would go on to found and work with Full Moon Features in 1989. TerrorVision was made by Empire International Pictures, the production company owned by Charles Band prior to Full Moon, and was released on February 1986. The story follows an hungry-driven creature from a nearby alien planet sent down onto Earthy via satellite and ends up inside a household where three kids must take care of it before it goes into a hungry killing rampage. While not a critical and commercial success, it later developed as a cult film, particularly a \"so bad it's good\" film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Empire_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Swim_Little_Fish_Swim"}, "Title": {"type": "literal", "value": "Swim Little Fish Swim"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lola_Bessis|http://dbpedia.org/resource/Ruben_Amar"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anne_Consigny|http://dbpedia.org/resource/Brooke_Bloom|http://dbpedia.org/resource/Dustin_Guy_Defa|http://dbpedia.org/resource/Lola_Bessis|http://dbpedia.org/resource/Olivia_Durling_Costello"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Swim Little Fish Swim is a 2014 French-American indie comedy-drama, written, produced and co-directed by Lola Bessis and Ruben Amar. This film was shot in New York on a shoe-string budget. Once finished, it hit the festival circuit (Rotterdam; S\u00e3o Paulo; Jerusalem; Durban; CPH:PIX) after premiering at South By South West (SXSW) in 2013. Swim Little Fish Swim enjoyed a worldwide theatrical release and it has recently been sold to HBO Europe, Netflix, RTBF and OCS among other international networks."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Motel_(film)"}, "Title": {"type": "literal", "value": "The Motel"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Kang_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jade_Wu|http://dbpedia.org/resource/Jeffrey_Chyau|http://dbpedia.org/resource/Samantha_Futerman|http://dbpedia.org/resource/Sung_Kang"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "76"}, "Description": {"type": "literal", "value": "The Motel (2006) is the debut feature from director Michael Kang. The film won the Humanitas Prize in the Sundance Film Festival category, and was nominated for an Independent Spirit Award for Best First Feature. It is based on the novel Waylaid by Ed Lin."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/PalmPictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Netto_(film)"}, "Title": {"type": "literal", "value": "Netto"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Robert_Thalheim"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Milan_Peschel|http://dbpedia.org/resource/Sebastian_Butz|http://dbpedia.org/resource/Stephanie_Charlotta_Koetz"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "Netto is a 2005 film directed by Robert Thalheim. It is a story of father-son relationship in post-unification Berlin. The song \"Mein bester Kumpel\" by Peter Tschernig is used throughout the film."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Extremely_Tragic_Story_of_Celal_Tan_and_His_Family"}, "Title": {"type": "literal", "value": "The Extremely Tragic Story of Celal Tan and His Family"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Onur_\u00dcnl\u00fc"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "The Extremely Tragic Story of Celal Tan and His Family (Turkish: Celal Tan ve Ailesinin A\u015f\u0131r\u0131 Ac\u0131kl\u0131 Hikayesi) is a 2011 Turkish comedy-drama film, written and directed by Onur \u00dcnl\u00fc, starring Sel\u00e7uk Y\u00f6ntem as a widowed constitutional law professor, whose life takes a turn for the worse when he remarries to a university student, whose life he has saved. The film was awarded Best Film and Best Screenplay at the 18th International Adana Golden Boll Film Festival (September 17\u201325, 2011) where it premiered."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Filmpot|http://dbpedia.org/resource/Medyavizyon"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Golmaal:_Fun_Unlimited"}, "Title": {"type": "literal", "value": "Golmaal"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rohit_Shetty"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ajay_Devgan|http://dbpedia.org/resource/Arshad_Warsi|http://dbpedia.org/resource/Paresh_Rawal|http://dbpedia.org/resource/Rimi_Sen|http://dbpedia.org/resource/Sharman_Joshi|http://dbpedia.org/resource/Tusshar_Kapoor"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "148"}, "Description": {"type": "literal", "value": "Golmaal is a 2006 Bollywood comedy drama film directed by Rohit Shetty and written by Neeraj Vora. The film stars Ajay Devgn, Arshad Warsi, Sharman Joshi, Tusshar Kapoor and Rimi Sen in lead roles. The opening credits of the movie revealed that the story was based on the Gujarati play Aflatoon by Mihir Bhuta adapted from Harsh Shivsharan's original Marathi play Ghar-Ghar which was earlier used in the 2001 Malayalam comedy Kakkakuyil. The film released on 14 July 2006, and received generally positive reviews from the critics, and turned out to be a surprise hit at the box office. On 29 October 2008, the film spawned a sequel, Golmaal Returns which was even more successful than the original. Opening comedy sequences of this movie was used in the Kannada movie Mast Maja Maadi."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/K._Sera_Sera|http://dbpedia.org/resource/Shree_Ashtavinayak_Cine_Vision_Ltd"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Paappi_Appacha"}, "Title": {"type": "literal", "value": "Paappi Appacha"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mamas_K._Chandran"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dileep_(actor)|http://dbpedia.org/resource/Innocent_(actor)|http://dbpedia.org/resource/Kavya_Madhavan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "160"}, "Description": {"type": "literal", "value": "Paappi Appacha (Malayalam: \u0d2a\u0d3e\u0d2a\u0d4d\u0d2a\u0d40 \u0d05\u0d2a\u0d4d\u0d2a\u0d1a\u0d4d\u0d1a\u0d3e) is a 2010 Malayalam action comedy film starring Dileep, Innocent, and Kavya Madhavan. It was written and directed by Mamas, and produced by Anoop. The film released in April 2010 in Kerala on more than 70 screens. The film also marked the debut of director Mamas. Lead characters in this movie have a similar life style of the comedians in the Paappi Appacha song of the 1972 Prem Nazir movie Mayiladum kunnu."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jeon_Woo-chi:_The_Taoist_Wizard"}, "Title": {"type": "literal", "value": "Jeon Woo-chi: The Taoist Wizard"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Choi_Dong-hoon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Im_Soo-jung_(actress)|http://dbpedia.org/resource/Kang_Dong-won|http://dbpedia.org/resource/Kim_Yoon-seok"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Action_comedy_films|http://dbpedia.org/resource/Category:Fantasy-comedy_films|http://dbpedia.org/resource/Category:South_Korean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "119"}, "Description": {"type": "literal", "value": "Jeon Woo-chi (Hangul: \uc804\uc6b0\uce58; also known as Woochi, Jeon Woo-chi: The Taoist Wizard or Woochi: The Demon Slayer) is a 2009 South Korean fantasy action film written and directed by Choi Dong-hoon who departs from his popular heist films Tazza: The High Rollers and The Big Swindle for this big-budget, special effects-filled action romp that was equally popular with the Korean audience, earning over six million admissions over the 2009 Christmas period. Based on a Korean folktale, it stars Kang Dong-won in the title role. The film became the 3rd best selling film of 2009 with 6,100,532 tickets sold nationwide."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/CJ_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/A_Very_Murray_Christmas"}, "Title": {"type": "literal", "value": "A Very Murray Christmas"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sofia_Coppola"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bill_Murray"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "56"}, "Description": {"type": "literal", "value": "A Very Murray Christmas is a 2015 American Christmas musical comedy film directed by Sofia Coppola and co-written by Bill Murray, Mitch Glazer, and Coppola. The film features an ensemble cast including Bill Murray, George Clooney, Paul Shaffer, Amy Poehler, Julie White, Dimitri Dimitrov, Michael Cera, Chris Rock, David Johansen, Maya Rudolph, Jason Schwartzman, Jenny Lewis, Rashida Jones, and Miley Cyrus and was released on December 4, 2015, on Netflix."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Netflix"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/American_Zoetrope"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ordinary_(film)"}, "Title": {"type": "literal", "value": "Ordinary"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sugeeth"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ann_Augustine|http://dbpedia.org/resource/Asif_Ali_(actor)|http://dbpedia.org/resource/Biju_Menon|http://dbpedia.org/resource/Jishnu_(actor)|http://dbpedia.org/resource/Kunchacko_Boban|http://dbpedia.org/resource/Shritha_Sivadas"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "146"}, "Description": {"type": "literal", "value": "Ordinary is a 2012 Malayalam comedy drama film directed by Sugeeth and written by Nishad K. Koya and Manu Prasad. The film stars Kunchacko Boban, Biju Menon, Asif Ali, Jishnu Raghavan, Ann Augustine and Shritha Sivadas in the main roles. The cinematography is by Faisal Ali and the music is composed by Vidyasagar. The film follows the adventures of a K.S.R.T.C. bus that travels from Pathanamthitta to the village of Gavi via Angamoozhy. The film was remade in Tamil as Jannal Oram by Karu Pazhaniappan and in Telugu as Right Right."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Life_as_We_Know_It_(film)"}, "Title": {"type": "literal", "value": "Life As We Know It"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Greg_Berlanti"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "Life As We Know It is a 2010 American romantic comedy-drama film directed by Greg Berlanti, starring Katherine Heigl and Josh Duhamel. It was released on October 8, 2010, after sneak previews in 811 theaters on October 2, 2010. It was released on February 8, 2011."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Roadshow_Entertainment|http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sockbaby"}, "Title": {"type": "literal", "value": "Sockbaby"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Douglas_TenNapel|http://dbpedia.org/resource/John_Soares"}, "Author": {"type": "literal", "value": "http://dbpedia.org/resource/Douglas_TenNapel|http://dbpedia.org/resource/John_Soares"}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cody_Spurlock|http://dbpedia.org/resource/Dan_Heder|http://dbpedia.org/resource/Doug_Jones_(actor)|http://dbpedia.org/resource/Douglas_TenNapel|http://dbpedia.org/resource/John_Soares|http://dbpedia.org/resource/Jon_Heder|http://dbpedia.org/resource/Uriel_Padilla"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "20"}, "Description": {"type": "literal", "value": "Sockbaby is a four-part no-budget short film originally for Channel 101, directed by Douglas TenNapel, the man best known for works such as Earthworm Jim and The Neverhood; and John Soares, who is best known for co-founding the independent film group WestHavenBrook. The film lampoons kung-fu movies, and directly parodies pop-culture icons like Dragon Ball Z. All of the martial arts were done by the actors themselves, and were directed by Soares. In addition to the numerous martial arts sequences, the film also features a cartoon sequence in part two and a partial CGI sequence in part three. The film centers on a character named Ronnie Cordova, a funky martial artist and (possibly) 1970s-style detective in a slick leisure suit, played by Soares. The plot mostly involves his quest to get a bite to eat that's thwarted consistently as he must protect a Sockbaby from an evil group of Greys (\"demonic men in suits,\" to quote the official site)."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Channel_101"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Reverse_(film)"}, "Title": {"type": "literal", "value": "Reverse"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Borys_Lankosz"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Agata_Buzek|http://dbpedia.org/resource/Anna_Polony|http://dbpedia.org/resource/Krystyna_Janda"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Reverse (original title: Rewers) is a 2009 Polish comedy-drama film, directed by Borys Lankosz."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Studio_Filmowe_Kadr"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Wrong_Ferarri"}, "Title": {"type": "literal", "value": "The Wrong Ferrari"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Green_(musician)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Green_(musician)|http://dbpedia.org/resource/Cory_Kennedy|http://dbpedia.org/resource/Jack_Dishel|http://dbpedia.org/resource/Macaulay_Culkin"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "The Wrong Ferarri (sic) is a feature-film written and directed by Adam Green. Conceived on Green's European music tour in the summer of 2010, the film was shot entirely on an iPhone camera, with Green writing the script for the actors on index cards. Scenes were shot in France, Prague, Venice, The Jersey Shore and New York City. Green has stated that The Wrong Ferarri was inspired by Woody Allen's Bananas, Alejandro Jodorowsky's The Holy Mountain, \"Weird Al\" Yankovic's UHF, Robert Downey, Sr.'s Putney Swope and the television show Seinfeld. The film contains strong profanity, sexual themes, and several scenes of nudity and is unrated by the MPAA."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Cuban_Fury"}, "Title": {"type": "literal", "value": "Cuban Fury"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Griffiths_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_O'Dowd|http://dbpedia.org/resource/Ian_McShane|http://dbpedia.org/resource/Nick_Frost|http://dbpedia.org/resource/Rashida_Jones"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:British_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Cuban Fury is a 2014 British romantic comedy film directed by James Griffiths, written by Jon Brown, and starring Nick Frost, Rashida Jones and Chris O'Dowd. The film was a minor box office success but received mixed reviews from critics."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/StudioCanal"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/30_Days_in_Atlanta"}, "Title": {"type": "literal", "value": "30 Days in Atlanta"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Robert_O._Peters"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ayo_Makun|http://dbpedia.org/resource/Desmond_Elliot|http://dbpedia.org/resource/Juliet_Ibrahim|http://dbpedia.org/resource/Karlie_Redd|http://dbpedia.org/resource/Lynn_Whitfield|http://dbpedia.org/resource/Majid_Michel|http://dbpedia.org/resource/Omoni_Oboli|http://dbpedia.org/resource/Racheal_Oniga|http://dbpedia.org/resource/Ramsey_Nouah|http://dbpedia.org/resource/Richard_Mofe_Damijo|http://dbpedia.org/resource/Vivica_A._Fox"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "30 Days in Atlanta is a 2014 Nigerian romantic comedy film produced by Ayo Makun and directed by Robert Peters. The film was shot on location in Lagos and Atlanta. It premiered on 31 October 2014. It has been declared the highest grossing film of all time in Nigerian cinemas, although the film was met with mixed to negative critical reception."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Diary_of_a_Wimpy_Kid:_Rodrick_Rules_(film)"}, "Title": {"type": "literal", "value": "Diary of a Wimpy Kid: Rodrick Rules"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_Bowers_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Devon_Bostick|http://dbpedia.org/resource/Rachael_Harris|http://dbpedia.org/resource/Robert_Capron|http://dbpedia.org/resource/Steve_Zahn|http://dbpedia.org/resource/Zachary_Gordon"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Diary of a Wimpy Kid: Rodrick Rules (sometimes known as Diary of a Wimpy Kid 2: Rodrick Rules) is a 2011 American semi-teen comedy film based on Jeff Kinney's book of the same name with a couple elements from The Last Straw. Unlike the first film, which was directed by Thor Freudenthal, this film was directed by David Bowers. The film stars Zachary Gordon and Devon Bostick. Robert Capron, Rachael Harris, Steve Zahn, and Peyton List also have prominent roles. The film was released on March 25, 2011 by 20th Century Fox. The film received mixed reviews from critics and it earned $72.4 million on a $21 million budget. It is the second film in the Diary of a Wimpy Kid film series preceded by 2010's Diary of a Wimpy Kid and followed by 2012's Diary of a Wimpy Kid: Dog Days."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Iron_Sky"}, "Title": {"type": "literal", "value": "Iron Sky"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Timo_Vuorensola"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/G\u00f6tz_Otto|http://dbpedia.org/resource/Julia_Dietze|http://dbpedia.org/resource/Peta_Sergeant|http://dbpedia.org/resource/Stephanie_Paul|http://dbpedia.org/resource/Udo_Kier"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Action_comedy_films|http://dbpedia.org/resource/Category:Australian_comedy_films|http://dbpedia.org/resource/Category:Comedy_science_fiction_films|http://dbpedia.org/resource/Category:German_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Iron Sky is a 2012 Finnish-German-Australian comic science fiction action film directed by Timo Vuorensola and written by Johanna Sinisalo and Michael Kalesniko. It tells the story of a group of Nazi Germans who, having been defeated in 1945, fled to the Moon, where they built a space fleet to return in 2018 and conquer Earth. Iron Sky comes from the creators of Star Wreck: In the Pirkinning and was produced by Tero Kaukomaa of Blind Spot Pictures and Energia Productions, co-produced by New Holland Pictures and 27 Films, and co-financed by numerous individual supporters; Samuli Torssonen was responsible for the computer-generated imagery. It was theatrically released throughout Europe in April 2012. A director's cut of the film with 20 additional minutes was released on DVD and Blu-ray on 11 March 2014. A video-game adaptation titled Iron Sky: Invasion was released in October 2012. A sequel, titled Iron Sky: The Coming Race, is currently being crowdfunded through Indiegogo and is slated for a 2017 release."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Buena_Vista_International|http://dbpedia.org/resource/Hoyts"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Monster-in-Law"}, "Title": {"type": "literal", "value": "Monster-in-Law"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Robert_Luketic"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Elaine_Stritch|http://dbpedia.org/resource/Jane_Fonda|http://dbpedia.org/resource/Jennifer_Lopez|http://dbpedia.org/resource/Michael_Vartan|http://dbpedia.org/resource/Monet_Mazur|http://dbpedia.org/resource/Wanda_Sykes"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Australian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Monster-in-Law is a 2005 Australian-American comedy film directed by Robert Luketic and starring Jane Fonda, Jennifer Lopez, Michael Vartan and Wanda Sykes. It marks a return to cinema for Fonda, being her first film since Stanley & Iris 15 years earlier. The screenplay is written by Anya Kochoff. The original music score is composed by David Newman. The film was negatively received by critics but was a huge box office success."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/New_Line_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Pride_&_Prejudice:_A_Latter-Day_Comedy"}, "Title": {"type": "literal", "value": "Pride and Prejudice"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Black_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Gourley|http://dbpedia.org/resource/Carmen_Rasmusen|http://dbpedia.org/resource/Henry_Maguire|http://dbpedia.org/resource/Kam_Heskin|http://dbpedia.org/resource/Lucila_Sol\u00e1|http://dbpedia.org/resource/Orlando_Seale"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "Pride & Prejudice: A Latter-Day Comedy is a 2003 independent film adaptation of Jane Austen's novel set in modern-day Provo, Utah. The film received mixed reviews, with more negative reviews than positive. Critics accused the film of its poor editing and its rough application of the story to modern life. Positive reviews praised Kam Heskin's performance as Elizabeth and enjoyed that the film was \"cute\". Although the film included aspects of LDS culture, most critics agreed that the film's connection with LDS culture was trivial, making the film more universally accessible to viewers."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Excel_Entertainment_Group"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/A_Million_Ways_to_Die_in_the_West"}, "Title": {"type": "literal", "value": "A Million Ways to Die in the West"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Seth_MacFarlane"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amanda_Seyfried|http://dbpedia.org/resource/Charlize_Theron|http://dbpedia.org/resource/Giovanni_Ribisi|http://dbpedia.org/resource/Liam_Neeson|http://dbpedia.org/resource/Neil_Patrick_Harris|http://dbpedia.org/resource/Sarah_Silverman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Western_(genre)_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "A Million Ways to Die in the West is a 2014 American western comedy film directed, produced by and starring Seth MacFarlane, who wrote the screenplay along with Alec Sulkin and Wellesley Wild. The film features an ensemble cast, including Charlize Theron, Amanda Seyfried, Neil Patrick Harris, Giovanni Ribisi, Sarah Silverman and Liam Neeson. It was produced by Media Rights Capital and distributed by Universal Pictures. The film was released on May 30, 2014."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kung_Fu_Panda_2"}, "Title": {"type": "literal", "value": "Kung Fu Panda 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jennifer_Yuh_Nelson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Angelina_Jolie|http://dbpedia.org/resource/Danny_McBride|http://dbpedia.org/resource/David_Cross|http://dbpedia.org/resource/Dennis_Haysbert|http://dbpedia.org/resource/Dustin_Hoffman|http://dbpedia.org/resource/Gary_Oldman|http://dbpedia.org/resource/Jack_Black|http://dbpedia.org/resource/Jackie_Chan|http://dbpedia.org/resource/James_Hong|http://dbpedia.org/resource/Jean-Claude_Van_Damme|http://dbpedia.org/resource/Lucy_Liu|http://dbpedia.org/resource/Michelle_Yeoh|http://dbpedia.org/resource/Seth_Rogen|http://dbpedia.org/resource/Victor_Garber"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Martial_arts_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Kung Fu Panda 2 is a 2011 3D American computer-animated comedy-drama martial arts film, directed by Jennifer Yuh Nelson, produced by DreamWorks Animation, and distributed by Paramount Pictures. It is the sequel to the 2008 film Kung Fu Panda and the second installment in the Kung Fu Panda franchise. Jack Black, Angelina Jolie, Dustin Hoffman, Seth Rogen, Lucy Liu, David Cross, James Hong, and Jackie Chan reprise their character roles from the original film joined by Gary Oldman, Michelle Yeoh and Danny McBride. In the film, Po and the Furious Five battle an evil peacock named Lord Shen who has a powerful weapon that he plans to conquer China with. However Po discovers a terrifying secret about his past in the process. The film was released in theatres May 26, 2011 in Real D 3D and Digital 3D. Kung Fu Panda 2 was the highest grossing animated feature film of the year. The film was nominated for the 2011 Academy Award for Best Animated Feature at the 84th Academy Awards but lost to Rango. A sequel, titled Kung Fu Panda 3, and directed by Jennifer Yuh Nelson and Alessandro Carloni, was released on January 29, 2016."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Behind_the_Mask:_The_Rise_of_Leslie_Vernon"}, "Title": {"type": "literal", "value": "Behind the Mask: The Rise of Leslie Vernon"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Scott_Glosserman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Angela_Goethals|http://dbpedia.org/resource/Kate_Lang_Johnson|http://dbpedia.org/resource/Nathan_Baesel|http://dbpedia.org/resource/Robert_Englund|http://dbpedia.org/resource/Scott_Wilson_(actor)|http://dbpedia.org/resource/Zelda_Rubinstein"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Behind the Mask: The Rise of Leslie Vernon is a 2006 American mockumentary black comedy horror film directed by Scott Glosserman. It stars Nathan Baesel, Angela Goethals and Robert Englund. Although largely filmed in Oregon, the film takes place in a small town in Maryland, and follows a journalist and her film crew that is documenting an aspiring serial killer who models himself according to slasher film conventions. The film is an homage to the slasher film genre and features cameos from several veteran horror actors, including Robert Englund, Zelda Rubinstein, and Kane Hodder. The film premiered at the 2006 South by Southwest film festival and was shown at several other festivals. It received a limited release in the United States on March 16, 2007."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Anchor_Bay_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/House_of_the_Damned_(1996_film)"}, "Title": {"type": "literal", "value": "House of the Damned"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sean_Weathers"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Valerie_Alexander"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:Zombie_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "72"}, "Description": {"type": "literal", "value": "House of the Damned is a 1996 American zombie horror comedy film that was written and directed by Sean Weathers. It was first released on August 20, 1996 through Full Circle Filmworks, but was re-released in 2011 through Music Video Distributors (MVD). The film is Weathers' first film and was dedicated to his best friend and script supervisor Jahvaughn Lambert, who committed suicide before the film was finished editing."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Full_Circle_Filmworks"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Duff"}, "Title": {"type": "literal", "value": "The Duff"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ari_Sandel"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bella_Thorne|http://dbpedia.org/resource/Bianca_A._Santos|http://dbpedia.org/resource/Mae_Whitman|http://dbpedia.org/resource/Nick_Eversman|http://dbpedia.org/resource/Robbie_Amell|http://dbpedia.org/resource/Skyler_Samuels"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "The Duff (stylized as The DUFF) is a 2015 American teen comedy film directed by Ari Sandel and written by Josh A. Cagan, based on the novel of the same name by Kody Keplinger with music by Dominic Lewis and produced by Susan Cartsonis, McG and Mary Viola. The film stars Mae Whitman, Robbie Amell, Bella Thorne, Nick Eversman, Skyler Samuels, Bianca A. Santos, Allison Janney, and Ken Jeong. The film was distributed by Lionsgate and CBS Films and co-produced by Vast Entertainment, CBS Films and Wonderland Sound and Vision. The film was released on February 20, 2015, by Lionsgate and CBS Films. It is the first film for which Lionsgate took over CBS Films' distribution functions."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/CBS_Films|http://dbpedia.org/resource/Lions_Gate_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Mirage_(2015_film)"}, "Title": {"type": "literal", "value": "Le Mirage"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ricardo_Trogi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Louis_Morissette"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Canadian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Le Mirage is a Canadian comedy-drama film from Quebec, released in 2015. Written by Louis Morissette and directed by Ricardo Trogi, the film marked Trogi's first time directing a screenplay he had not written himself. The film stars Morissette as Patrick Lupien, an owner of a sporting goods store who is becoming dissatisfied with the empty consumerism of his day-to-day life and the loss of emotional and sexual intimacy in his marriage to Isabelle (Julie Perreault). Critics compared the film's themes and plot to both The Decline of the American Empire and American Beauty. The film was the second-highest-grossing Quebec film of 2015, after Snowtime!"}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Girlfriend's_Day"}, "Title": {"type": "literal", "value": "Girlfriend's Day"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Stephenson_(filmmaker)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amber_Tamblyn|http://dbpedia.org/resource/Bob_Odenkirk"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Girlfriend's Day is an upcoming American comedy-drama film directed by Michael Stephenson and written by Bob Odenkirk, Philip Zlotorynski, and Eric Hoffman. The film stars Odenkirk and Amber Tamblyn."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Netflix"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/CKY_(video_series)"}, "Title": {"type": "literal", "value": "CKY|CKY (video series)|CKY2K|CKY3|CKY4: The Latest & Greatest"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bam_Margera|http://dbpedia.org/resource/Brandon_DiCamillo|http://dbpedia.org/resource/Joe_Frantz|http://dbpedia.org/resource/Ryan_Gee"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bam_Margera|http://dbpedia.org/resource/Brandon_DiCamillo|http://dbpedia.org/resource/Brandon_Novak|http://dbpedia.org/resource/CKY_Crew|http://dbpedia.org/resource/Chad_Ginsburg|http://dbpedia.org/resource/Deron_Miller|http://dbpedia.org/resource/Jess_Margera|http://dbpedia.org/resource/Raab_Himself|http://dbpedia.org/resource/Rake_Yohn|http://dbpedia.org/resource/Ryan_Dunn"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Comedy_films_by_series"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100|44|45"}, "Description": {"type": "literal", "value": "The CKY video series were a series of videos produced by Bam Margera and Brandon DiCamillo and other residents of West Chester, Pennsylvania. Four videos were released, Landspeed presents: CKY (later called CKY), CKY2K, CKY 3, and CKY4: The Latest & Greatest. There is also a CKY \"documentary\" DVD, which is a supplemental item in the hard-to-find CKY \"Box Set,\" as well as two \"CKY Trilogy\" sets, both of which are compilation DVDs featuring scenes from the previous CKY DVDs. The videos were named after Bam Margera's brother Jess Margera and his band CKY (with Deron Miller and Chad Ginsburg). \"CKY\" stands for \"Camp Kill Yourself\". The videos feature Bam Margera, Brandon DiCamillo, their friends and Bam's relatives performing various stunts and pranks, interspersed with skating and prank footage of Bam and other pros. A trademark of the skating footage was to show unsuccessful trick attempts immediately followed by the same skater pulling the trick off. CKY started when Bam and his friends were in the same Graphics Arts class at school in West Chester, Pennsylvania. During class, they would go out to a field and film skits, eventually being compiled into the CKY series. In a 2002 interview Bam Margera said that more than 400,000 copies of the CKY series have been sold."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Landspeed|http://dbpedia.org/resource/Slam_Films|http://dbpedia.org/resource/Ventura_Distribution"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/A_Fistful_of_Fingers"}, "Title": {"type": "literal", "value": "A Fistful of Fingers"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Edgar_Wright"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films|http://dbpedia.org/resource/Category:Western_(genre)_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "78"}, "Description": {"type": "literal", "value": "A Fistful of Fingers is a 1995 British film written and directed by Edgar Wright. It is a homonymous remake of an earlier, and even lower-budget, movie by Wright and starring Graham Low which had been made while they were still at school. The original Fistful of Fingers was never picked up by a distributor, but did receive enough local attention - along with his other school-era spoofs such as \"Carbolic Soap\", \"The Unparkables\" and \"Rolf Harris Saves the World\" - for Wright to win funding for the 1994 remake."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Don_Peyote"}, "Title": {"type": "literal", "value": "Don Peyote"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dan_Fogler"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Annabella_Sciorra|http://dbpedia.org/resource/Jay_Baruchel|http://dbpedia.org/resource/Josh_Duhamel|http://dbpedia.org/resource/Wallace_Shawn"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "Don Peyote is a 2014 American comedy film written and directed by Dan Fogler and Michael Canzoniero. It stars Fogler as a slacker who has a spiritual awakening and becomes obsessed with conspiracy theories."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Scouts_Guide_to_the_Zombie_Apocalypse"}, "Title": {"type": "literal", "value": "Scouts Guide to the Zombie Apocalypse"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Christopher_B._Landon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/David_Koechner|http://dbpedia.org/resource/Logan_Miller|http://dbpedia.org/resource/Sarah_Dumont|http://dbpedia.org/resource/Tye_Sheridan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:Zombie_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Scouts Guide to the Zombie Apocalypse is a 2015 American horror comedy film directed by Christopher B. Landon and written by Landon, Carrie Evans, Emi Mochizuki and Lona Williams. The film stars Tye Sheridan, Logan Miller, Joey Morgan, Sarah Dumont and David Koechner. Principal photography began on May 8, 2014 in Los Angeles, and it was released on October 30, 2015 by Paramount Pictures."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sleepover_(film)"}, "Title": {"type": "literal", "value": "Sleepover"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Joe_Nussbaum"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alexa_Vega|http://dbpedia.org/resource/Jane_Lynch|http://dbpedia.org/resource/Kallie_Flynn_Childress|http://dbpedia.org/resource/Mika_Boorem|http://dbpedia.org/resource/Sara_Paxton|http://dbpedia.org/resource/Scout_Taylor-Compton|http://dbpedia.org/resource/Sean_Faris|http://dbpedia.org/resource/Steve_Carell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Sleepover is a 2004 American teen film directed by Joe Nussbaum and starring Alexa Vega, Sara Paxton, Mika Boorem, Scout Taylor-Compton, Kallie Flynn Childress, Sean Faris, Steve Carell, Jane Lynch, Sam Huntington, Brie Larson and Evan Peters."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Metro-Goldwyn-Mayer"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Identity_Thief"}, "Title": {"type": "literal", "value": "Identity Thief"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Seth_Gordon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jason_Bateman|http://dbpedia.org/resource/Melissa_McCarthy"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "Identity Thief is a 2013 American comedy film directed by Seth Gordon, written by Craig Mazin, and starring Jason Bateman and Melissa McCarthy. The film tells a story about a man (Bateman) whose identity is stolen by a woman (McCarthy). Despite being a commercial success, grossing over $170 million worldwide on a $35 million budget, the film received generally negative reviews from critics."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Aggregate_Films|http://dbpedia.org/resource/Relativity_Media|http://dbpedia.org/resource/Scott_Stuber"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Biriyani_(film)"}, "Title": {"type": "literal", "value": "Biriyani"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Venkat_Prabhu"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hansika_Motwani|http://dbpedia.org/resource/Jayaprakash|http://dbpedia.org/resource/Karthi|http://dbpedia.org/resource/Madhumitha|http://dbpedia.org/resource/Mandy_Takhar|http://dbpedia.org/resource/Premgi_Amaren|http://dbpedia.org/resource/Ramki_(actor)|http://dbpedia.org/resource/Sampath_Raj|http://dbpedia.org/resource/Uma_Riyaz_Khan|http://dbpedia.org/resource/Vijayalakshmi_(Tamil_actress)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_black_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "150"}, "Description": {"type": "literal", "value": "Biriyani is a 2013 Indian Tamil crime-comedy film written and directed by Venkat Prabhu. Produced by Studio Green, it features Karthi and Hansika Motwani in the lead roles alongside Ramki, Premgi Amaren, Nithin Sathya, Madhumitha and Mandy Takhar. Yuvan Shankar Raja composed the score and soundtrack of Biriyani, which marks his 100th film, while Sakthi Saravanan and Praveen-Srikanth handled cinematography and editing, respectively. Filming started in November 2012, lasted for over nine months and took place primarily at Chennai, Hyderabad and Ambur. The Movie heavily Inspired by the Hollywood movie The Hangover the story and the making is similar for both the films. The film was released on 20 December 2013. The movie is inspired by the 2004 movie Harold & Kumar Go to White Castle"}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Get_Hard"}, "Title": {"type": "literal", "value": "Get Hard"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Etan_Cohen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alison_Brie|http://dbpedia.org/resource/Craig_T._Nelson|http://dbpedia.org/resource/Edwina_Findley|http://dbpedia.org/resource/Greg_Germann|http://dbpedia.org/resource/Kevin_Hart|http://dbpedia.org/resource/T.I."}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Get Hard is a 2015 American comedy film directed by Etan Cohen (in his directorial debut) and written by Cohen, Jay Martel and Ian Roberts. The film stars Will Ferrell, Kevin Hart, Alison Brie, Edwina Findley, T.I. and Craig T. Nelson. The film was released on March 27, 2015 to negative reviews but was a financial success, grossing over $111 million."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Little_Death_(2014_film)"}, "Title": {"type": "literal", "value": "The Little Death"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Josh_Lawson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bojana_Novakovic|http://dbpedia.org/resource/Damon_Herriman"}, "Published": {"type": "literal", "value": "2014-06-26"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Australian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "The Little Death (known as A Funny Kind of Love in the UK) is a 2014 Australian comedy film written and directed by Josh Lawson. It deals with the secret lives of five suburban couples living in Sydney revealing both the fetishes and the repercussions that come with sharing them."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Once_Upon_a_Time_(2008_film)"}, "Title": {"type": "literal", "value": "Once Upon a Time"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jeong_Yong-ki"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Lee_Bo-young|http://dbpedia.org/resource/Park_Yong-woo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Adventure_comedy_films|http://dbpedia.org/resource/Category:South_Korean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "Once Upon a Time (Hangul: \uc6d0\uc2a4 \uc5b4\ud3f0 \uc5b4 \ud0c0\uc784; RR: Wonseu-eopon-eo-taim) is a 2008 South Korean film, directed by Jeong Yong-ki and adapted from a screenplay by Cheon Seong-il. The film is a heist comedy film set in 1940s Korea, and stars Park Yong-woo and Lee Bo-young as a con artist and a jazz singer, respectively, who each plot to steal a valuable diamond from the Japanese authorities. Once Upon a Time was the first major investment by SK Telecom's film division, established late 2007, and was released in South Korea on January 30, 2008, under the company's CH Entertainment banner."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/SK_Telecom"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/So_It's_You"}, "Title": {"type": "literal", "value": "So It's You"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jun_Lana"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Carla_Abellana|http://dbpedia.org/resource/JC_de_Vera|http://dbpedia.org/resource/Tom_Rodriguez"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Philippine_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "So It's You is a 2014 Filipino romantic comedy film starring Carla Abellana, Tom Rodriguez and JC de Vera. It is written and directed by Jun Lana. It was released on May 7, 2014 by Regal Entertainment. The film is about a pair of broken-hearted people who meet and begin a relationship, but their painful pasts hang over their romance."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Regal_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/You_Shoot,_I_Shoot"}, "Title": {"type": "literal", "value": "You Shoot, I Shoot"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pang_Ho-cheung"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cheung_Tat-ming|http://dbpedia.org/resource/Eric_Kot"}, "Published": {"type": "literal", "value": "2001-08-16"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Black_comedy_films|http://dbpedia.org/resource/Category:Hong_Kong_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "You Shoot, I Shoot (\u8cb7\u5147\u62cd\u4eba) is a 2001 Hong Kong black comedy film produced, written and directed by Pang Ho-cheung and starring Eric Kot and Cheung Tat-ming."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Lifeguard"}, "Title": {"type": "literal", "value": "The Lifeguard"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Liz_W._Garcia"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/David_Lambert_(actor)|http://dbpedia.org/resource/Kristen_Bell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "The Lifeguard is a 2013 American drama produced, written, and directed by Liz W. Garcia, and starring Kristen Bell and David Lambert. The film was released via video on demand on July 30, 2013, and received a limited release in theaters on August 30."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Focus_Features|http://dbpedia.org/resource/Screen_Media_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Damsel_(2017_film)"}, "Title": {"type": "literal", "value": "Damsel"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_Zellner"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Mia_Wasikowska|http://dbpedia.org/resource/Robert_Pattinson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Damsel is an upcoming western comedy period film directed by David Zellner, and co-wrote by David Zellner and Nathan Zellner. It stars Robert Pattinson and Mia Wasikowska in lead roles."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Victory's_Short"}, "Title": {"type": "literal", "value": "Victory's Short"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mika'ela_Fisher"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Mika'ela_Fisher"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Black_comedy"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "15"}, "Description": {"type": "literal", "value": "Victory's Short ( La Victoire est de courte dur\u00e9e ) is a 2014 black comedy short film directed by Mika'ela Fisher  and co-directed by Benjamin Feitelson"}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bulletproof_Monk"}, "Title": {"type": "literal", "value": "Bulletproof Monk"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Paul_Hunter_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chow_Yun-fat|http://dbpedia.org/resource/Jaime_King|http://dbpedia.org/resource/Seann_William_Scott"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:Martial_arts_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "Bulletproof Monk is a 2003 American action comedy film directed by Paul Hunter in his directorial debut, and starring Chow Yun-fat, Seann William Scott, and Jaime King. The film is loosely based on the comic book by Michael Avon Oeming. The film was shot in Toronto and Hamilton, Canada, and other locations that resemble New York City."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Metro-Goldwyn-Mayer"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tiktik:_The_Aswang_Chronicles"}, "Title": {"type": "literal", "value": "Tiktik: The Aswang Chronicles"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Erik_Matti"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Philippine_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Tiktik: The Aswang Chronicles is a 2012 Filipino  action horror  comedy adventure film written and directed by Erik Matti.The film stars Dingdong Dantes, Lovi Poe, Joey Marquez, Janice de Belen and Roi Vinzon. Dingdong Dantes' company AgostoDos Pictures also served as one of the producers. The film is the first full-length Filipino film entirely shot on green screen chroma key. The film received mixed to positive reviews from critics who praised its visual effects while criticizing the plot. Tiktik: The Aswang Chronicles was followed up with a sequel in Kubot: The Aswang Chronicles 2 in 2014 which was also directed by Matti."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/GMA_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Fanboys_(film)"}, "Title": {"type": "literal", "value": "Fanboys"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kyle_Newman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Marquette|http://dbpedia.org/resource/Dan_Fogler|http://dbpedia.org/resource/Jay_Baruchel|http://dbpedia.org/resource/Kristen_Bell|http://dbpedia.org/resource/Sam_Huntington"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Fanboys is a 2009 comedy film directed by Kyle Newman and starring Sam Huntington, Chris Marquette, Dan Fogler, Jay Baruchel and Kristen Bell. It was released in the United States on February 6, 2009, and in Canada on April 3, 2009."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/The_Weinstein_Company|http://dbpedia.org/resource/Vivendi_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dope_(2015_film)"}, "Title": {"type": "literal", "value": "Dope"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rick_Famuyiwa"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/A$AP_Rocky|http://dbpedia.org/resource/Blake_Anderson|http://dbpedia.org/resource/Chanel_Iman|http://dbpedia.org/resource/Kiersey_Clemons|http://dbpedia.org/resource/Kimberly_Elise|http://dbpedia.org/resource/Shameik_Moore|http://dbpedia.org/resource/Tony_Revolori|http://dbpedia.org/resource/Tyga|http://dbpedia.org/resource/Zo\u00eb_Kravitz"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "Dope is a 2015 American crime comedy-drama film written and directed by Rick Famuyiwa and starring Shameik Moore, Tony Revolori, Kiersey Clemons, Blake Anderson, Zo\u00eb Kravitz, A$AP Rocky, and Chanel Iman. The film was produced by Forest Whitaker, executive produced by Pharrell Williams, and co-executive produced by Sean Combs.Dope debuted in the U.S. Dramatic Competition category at the 2015 Sundance Film Festival, which started on January 22, 2015 in Park City, Utah. Dope was initially released in North American theaters on June 19, 2015 by Open Road Films. and then re-released on September 4, 2015 during the Labor Day holiday weekend."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Open_Road_Films"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/I_am_OTHER|http://dbpedia.org/resource/Revolt_(TV_network)"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Three_for_the_Road"}, "Title": {"type": "literal", "value": "Three for the Road"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bill_L._Norton"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alan_Ruck|http://dbpedia.org/resource/Blair_Tefkin|http://dbpedia.org/resource/Charlie_Sheen|http://dbpedia.org/resource/Kerri_Green|http://dbpedia.org/resource/Sally_Kellerman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1980s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Three for the Road is a 1987 road trip themed comedy starring Charlie Sheen, Alan Ruck, Kerri Green, Sally Kellerman and Blair Tefkin."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/New_Century-Vista"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Happythankyoumoreplease"}, "Title": {"type": "literal", "value": "happythankyoumoreplease"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Josh_Radnor"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Josh_Radnor|http://dbpedia.org/resource/Kate_Mara|http://dbpedia.org/resource/Malin_\u00c5kerman|http://dbpedia.org/resource/Pablo_Schreiber|http://dbpedia.org/resource/Tony_Hale|http://dbpedia.org/resource/Zoe_Kazan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Happythankyoumoreplease is a 2010 comedy-drama film written and directed by Josh Radnor in his directorial debut. The film stars Radnor, Malin \u00c5kerman, Kate Mara, Zoe Kazan, Michael Algieri, Pablo Schreiber, and Tony Hale, and it tells the story of a group of young New Yorkers, struggling to balance love, friendship, and their encroaching adulthoods. happythankyoumoreplease premiered at the 26th Sundance Film Festival in 2010, where it won the Audience Award and was further nominated for the Grand Jury Prize. On March 4, 2011 it was released in theatres throughout Los Angeles and New York."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Anchor_Bay_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Life_of_the_Party_(2018_film)"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Falcone"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Debby_Ryan|http://dbpedia.org/resource/Gillian_Jacobs|http://dbpedia.org/resource/Jacki_Weaver|http://dbpedia.org/resource/Julie_Bowen|http://dbpedia.org/resource/Matt_Walsh_(comedian)|http://dbpedia.org/resource/Maya_Rudolph"}, "Published": {"type": "literal", "value": "2018-05-11"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Life of the Party is an upcoming comedy film directed by Ben Falcone and written by Falcone and Melissa McCarthy. The film stars McCarthy, Maya Rudolph, Molly Gordon, Julie Bowen, Gillian Jacobs, Debby Ryan, Matt Walsh and Jacki Weaver. Produced by On the Day, the film is scheduled to be released May 11, 2018, by Warner Bros. Pictures."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros._Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lost_in_Translation_(film)"}, "Title": {"type": "literal", "value": "Lost in Translation"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sofia_Coppola"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:Best_Musical_or_Comedy_Picture_Golden_Globe_winners|http://dbpedia.org/resource/Category:Films_featuring_a_Best_Musical_or_Comedy_Actor_Golden_Globe_winning_performance"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Lost in Translation is a 2003 American romantic comedy-drama film written and directed by Sofia Coppola. It was her second feature film after The Virgin Suicides (1999). It stars Bill Murray as aging actor Bob Harris, who befriends college graduate Charlotte (Scarlett Johansson) in a Tokyo hotel. Lost in Translation received critical acclaim and was nominated for four Academy Awards, including Best Picture, Best Actor for Bill Murray, and Best Director for Coppola; Coppola won for Best Original Screenplay. Murray and Johansson each won a BAFTA award for Best Actor in a Leading Role and Best Actress in a Leading Role respectively. The film was a commercial success, grossing $119 million on a budget of $4 million."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Educating_My_Father"}, "Title": {"type": "literal", "value": "Educating My Father"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Giorgos_Lazaridis|http://dbpedia.org/resource/Nikos_Tsiforos"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1950s_comedy_films|http://dbpedia.org/resource/Category:Greek_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "78"}, "Description": {"type": "literal", "value": "Educating My Father (Greek: O babas ekpaidevetai) is a 1953 Greek comedy film directed by Giorgos Lazaridis and Nikos Tsiforos and starring Petros Kyriakos, Sasa Dario and Giorgos Kabanellis."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Key_of_Life"}, "Title": {"type": "literal", "value": "Key of Life"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kenji_Uchida_(film_director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Masato_Sakai|http://dbpedia.org/resource/Ryoko_Hirosue|http://dbpedia.org/resource/Teruyuki_Kagawa"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Japanese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Key of Life (\u9375\u6ce5\u68d2\u306e\u30e1\u30bd\u30c3\u30c9 Kagi Dorob\u014d no Mesoddo, lit. \"(The/A) Key Thief's Method\") is a 2012 Japanese comedy film directed by Kenji Uchida. The film opened in Japan on September 15, 2012."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Caramel_(film)"}, "Title": {"type": "literal", "value": "Caramel"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nadine_Labaki"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adel_Karam|http://dbpedia.org/resource/Aziza_Semaan|http://dbpedia.org/resource/Dimitri_Staneofski|http://dbpedia.org/resource/Fadia_Stella|http://dbpedia.org/resource/Fatmeh_Safa|http://dbpedia.org/resource/Gis\u00e8le_Aouad|http://dbpedia.org/resource/Joanna_Moukarzel|http://dbpedia.org/resource/Nadine_Labaki|http://dbpedia.org/resource/Sihame_Haddad|http://dbpedia.org/resource/Yasmine_Al_Masri"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "Caramel (Arabic: \u0633\u0643\u0631 \u0628\u0646\u0627\u062a Sekkar banat\u200e\u200e) is a 2007 Lebanese film \u2014 the first feature film by Lebanese director-actress Nadine Labaki. The film premiered on May 20 at the 2007 Cannes Film Festival, in the Directors' Fortnight section.It ran for the Cam\u00e9ra d'Or. Caramel was distributed in over 40 countries, easily becoming the most internationally acclaimed and exposed Lebanese film to date. The story focuses on the lives of five Lebanese women dealing with issues such as forbidden love, binding traditions, repressed sexuality, the struggle to accept the natural process of age, and duty versus desire. Labaki's film is unique for not showcasing a war-ravaged Beirut but rather a warm and inviting locale where people deal with universal issues. The title Caramel refers to an epilation method that consists of heating sugar, water and lemon juice. Labaki also symbolically implies the \"idea of sweet and salt, sweet and sour\" and showcases that everyday relations can sometimes be sticky but ultimately the sisterhood shared between the central female characters prevails."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Europa_Corp."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dead_Snow:_Red_vs._Dead"}, "Title": {"type": "literal", "value": "Dead Snow: Red vs. Dead"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tommy_Wirkola"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kristoffer_Joner|http://dbpedia.org/resource/Martin_Starr"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:Norwegian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Dead Snow: Red vs. Dead (Norwegian: D\u00f8d Sn\u00f8 2) is a 2014 Icelandic-Norwegian horror comedy film directed by Tommy Wirkola. It is a sequel to Wirkola's 2009 film Dead Snow. The film was released in Norway on 12 February and in the United States on 10 October 2014. Vegar Hoel reprises his role from the first film as Martin, the sole survivor of an attack by Nazi zombies led by the evil Herzog (\u00d8rjan Gamst). Filming took place in Iceland."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Aaranya_Kaandam"}, "Title": {"type": "literal", "value": "Aaranya Kaandam"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Thiagarajan_Kumararaja"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Guru_Somasundaram|http://dbpedia.org/resource/Jackie_Shroff|http://dbpedia.org/resource/Ravi_Krishna|http://dbpedia.org/resource/Sampath_Raj"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Indian_black_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "123"}, "Description": {"type": "literal", "value": "Aaranya Kaandam (Tamil: \u0b86\u0bb0\u0ba3\u0bcd\u0baf \u0b95\u0bbe\u0ba3\u0bcd\u0b9f\u0bae\u0bcd; English: Jungle Chapter; English title: Anima and Persona) is a 2011 Indian Tamil neo-noir gangster film written and directed by newcomer Thiagarajan Kumararaja. It is supposedly the first neo-noir film in Tamil cinema. The story takes place in a day in the lives of the six protagonists, played by Jackie Shroff, Ravi Krishna, Sampath Raj and newcomers Yasmin Ponnappa, Somasundaram and Master Vasanth. Produced by S. P. B. Charan's Capital Film Works, the film features musical score by Yuvan Shankar Raja and cinematography by P. S. Vinod and editing handled by the duo Praveen K. L. and N. B. Srikanth. The film was launched on 18 December 2008, with its principal photography being completed by late 2009, which was followed by a lengthy post-production phase. It ran into difficulties as the regional censor board in Chennai raised objection against the film, giving it an adult rating besides demanding 52 cuts. After screening at and becoming approved by the Tribunal in Delhi, the film was released worldwide on 10 June 2011, to high critical acclaim. It had its world premi\u00e8re on 30 October 2010 at the South Asian International Film Festival, where it won the Grand Jury Award for Best Film. Subsequently, the film was honoured with two National Film Awards for Best Editing and Best First Film of a Director category respectively."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Four_Friends_(2010_film)"}, "Title": {"type": "literal", "value": "Four Friends"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Saji_Surendran"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jayaram|http://dbpedia.org/resource/Jayasurya|http://dbpedia.org/resource/Kunchacko_Boban|http://dbpedia.org/resource/Meera_Jasmine"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Four Friends is a 2010 Malayalam film directed by Saji Surendran. It stars Jayaram with Kunchacko Boban, Jayasurya, Meera Jasmine, features Kamal Hassan in a cameo role after a hiatus of 21 years. The film was released on 28 October 2010. The film was a big letdown. This film came after the huge success Saji Surendran's previous film Happy husbands. But it failed to recreate the magic in the boxoffice. And it was declared as a flop in the box office..The film is inspired by the 2007 American film The Bucket List. It was dubbed into Tamil as Anbulla Kamal as Tamil actor Kamal Haasan plays a guest role in the film."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ramaiya_Vastavaiya"}, "Title": {"type": "literal", "value": "Ramaiya Vastavaiya"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Prabhu_Deva"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Girish_Kumar|http://dbpedia.org/resource/Shruti_Haasan|http://dbpedia.org/resource/Sonu_Sood"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_action_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "148"}, "Description": {"type": "literal", "value": "Ramaiya Vastavaiya (Telugu: Ramayya will come ; name of a popular Telugu folk song adopted by a 1950s Hindi film with same name and again re-adopted in 2013) is a 2013 Bollywood action romantic drama film directed by Prabhudheva and produced by Kumar S. Taurani, under Tips. Film stars debutant Girish Kumar alongside Shruti Haasan in lead roles. The theatrical trailer of Ramaiya Vastavaiya was uploaded on 25 April 2013, whilst the film released on 19 July 2013. It is a remake of the Telugu film Nuvvostanante Nenoddantana (2005), starring Siddharth and Trisha Krishnan."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Tips_Music_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lost_in_Beijing"}, "Title": {"type": "literal", "value": "Lost in Beijing"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Li_Yu_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Elaine_Jin|http://dbpedia.org/resource/Fan_Bingbing|http://dbpedia.org/resource/Tong_Dawei|http://dbpedia.org/resource/Tony_Leung_Ka-fai"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "Lost in Beijing (Chinese: \u82f9\u679c; literally: \"apple\") is a 2007 Chinese film directed by Li Yu and starring Tony Leung Ka-fai, Fan Bingbing, Tong Dawei, and Elaine Jin. It had its international premiere at the 2007 Berlin International Film Festival on February 16, 2007. Lost in Beijing is director Li Yu's third feature film after the lesbian-themed Fish and Elephant (2002) and the drama Dam Street (2005). Lost in Beijing was produced by Laurel Films, a small independent production company owned by Fang Li and based in Beijing, and is being released internationally by the French company Films Distribution. Distribution in the United States was picked up by New Yorker Films. Like many films that touch on the underbelly of Chinese society (see for example, Li Yang's Blind Shaft or Blind Mountain, or Wang Xiaoshuai's Beijing Bicycle), Li Yu's tale of prostitution, blackmail, and rape in modern-day Beijing has been plagued with censorship problems. The film also found controversy for what some critics described as \"thumb-nosing gratuitous sex scenes.\" After nearly a year of delays, the film was finally banned by Chinese authorities in January 2008."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Films_Distribution"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Take_Me_Home_(2011_film)"}, "Title": {"type": "literal", "value": "Take Me Home"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sam_Jaeger"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Sam_Jaeger"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Take Me Home is a 2011 American romantic comedy film directed by and starring Sam Jaeger. The film also stars his wife Amber Jaeger, Lin Shaye, and Victor Garber. It premiered on April 19, 2011 at the Nashville Film Festival. Take Me Home was released to DVD on May 29, 2012."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Moms_(film)"}, "Title": {"type": "literal", "value": "Moms"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dmitri_Dyuzhev|http://dbpedia.org/resource/Eldar_Salavatov|http://dbpedia.org/resource/Karen_Oganesyan|http://dbpedia.org/resource/Sarik_Andreasyan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "Moms (Russian: Mamy) is a 2012 Russian anthology film. It consists of eight short films which are set on 8 March, the International Women's Day."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tripping_Forward"}, "Title": {"type": "literal", "value": "Tripping Forward"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Marcus_Nash"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amber_Benson|http://dbpedia.org/resource/Chris_Fogleman|http://dbpedia.org/resource/William_Gregory_Lee"}, "Published": {"type": "literal", "value": "2009-04-26"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Tripping Forward is a 2009 comedy film starring Chris Fogleman and directed by Marcus Nash from a screenplay by Fogleman and Nash. It also stars William Gregory Lee and Amber Benson and features Ed Begley, Jr., Angela Kinsey and actress/model Sung Hi-Lee."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Wendell_Baker_Story"}, "Title": {"type": "literal", "value": "The Wendell Baker Story"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Wilson_(actor)|http://dbpedia.org/resource/Luke_Wilson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Eddie_Griffin|http://dbpedia.org/resource/Eva_Mendes|http://dbpedia.org/resource/Harry_Dean_Stanton|http://dbpedia.org/resource/Kris_Kristofferson|http://dbpedia.org/resource/Luke_Wilson|http://dbpedia.org/resource/Owen_Wilson|http://dbpedia.org/resource/Seymour_Cassel|http://dbpedia.org/resource/Will_Ferrell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "The Wendell Baker Story is a 2005 American film. It is the first film directed by Luke Wilson and his eldest brother Andrew Wilson. It premiered at the 2005 South by Southwest Film Festival in Austin, Texas, in March 2005. The film stars Luke Wilson, along with his brother Owen."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Wendell_Distribution_Inc."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Powerpuff_Girls_Movie"}, "Title": {"type": "literal", "value": "The Powerpuff Girls Movie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Craig_McCracken"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cathy_Cavadini|http://dbpedia.org/resource/Elizabeth_Daily|http://dbpedia.org/resource/Roger_L._Jackson|http://dbpedia.org/resource/Tara_Strong|http://dbpedia.org/resource/Tom_Kane|http://dbpedia.org/resource/Tom_Kenny"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "75"}, "Description": {"type": "literal", "value": "The Powerpuff Girls Movie is a 2002 American animated superhero action-adventure comedy-drama film based on the Cartoon Network animated television series of the same name. Directed by series creator Craig McCracken, and produced by Cartoon Network Studios and distributed by Warner Bros. Pictures, the film was released in the United States on July 3, 2002. It is a prequel to the series that tells the origin story of how the Powerpuff Girls were created, and how they came to be the defenders of Townsville. In theaters, a Dexter's Laboratory short entitled \"Chicken Scratch\" was shown prior to the film, which later aired as part of the series' fourth season. The film made its network debut on Cartoon Network on May 23, 2003 and on March 5, 2004 on Toonami."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/You're_My_Boss"}, "Title": {"type": "literal", "value": "You're My Boss"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Antoinette_Jadaone"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Coco_Martin|http://dbpedia.org/resource/Toni_Gonzaga"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Philippine_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "117"}, "Description": {"type": "literal", "value": "You're My Boss is a 2015 Filipino romantic comedy film written and directed by Antoinette Jadaone starring Toni Gonzaga and Coco Martin. It was released on April 4, 2015, by Star Cinema."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Star_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dilwale_Dulhania_Le_Jayenge"}, "Title": {"type": "literal", "value": "Dilwale Dulhania Le Jayenge"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Aditya_Chopra"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kajol|http://dbpedia.org/resource/Shah_Rukh_Khan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "189"}, "Description": {"type": "literal", "value": "Dilwale Dulhania Le Jayenge (English: The Big-Hearted Will Take Away the Bride), also known by the initialism DDLJ, is an Indian romance film written and directed by Aditya Chopra and produced by Yash Chopra. Released on 20 October 1995, the film stars Shah Rukh Khan and Kajol. The plot revolves around Raj and Simran, two young non-resident Indians, who fall in love during a vacation through Europe with their friends. Raj tries to win over Simran's family so the couple can marry, but Simran's father has long since promised her hand to his friend's son. The film was shot in India, London and Switzerland, from September 1994 to August 1995. Earning \u20b91.06 billion (valued at about US$32,766,000 in 1995) in India and \u20b9160 million (valued at about US$4,946,000 in 1995) overseas, Dilwale Dulhania Le Jayenge became the highest grossing Bollywood film of the year, and one of the most successful Indian films of all time. It won 10 Filmfare Awards, the most for a single film at that time, and won the National Film Award for Best Popular Film Providing Wholesome Entertainment. Its soundtrack album became one of the most popular of the 1990s. Many critics praised the film, which connected with different segments of society by simultaneously promoting strong family values and the following of one's own heart. Its success led other film makers to target the non-resident Indian audience, which was deemed more lucrative for them. It spawned many imitations of its story and style, and homages to specific scenes. Dilwale Dulhania Le Jayenge was one of only three Hindi films in the reference book 1001 Movies You Must See Before You Die, and was placed twelfth on the British Film Institute's list of top Indian films of all time. It is the longest-running film in the history of Indian cinema. As of 2016, over 20 years after its first release, it is still being shown at the Maratha Mandir theatre in Mumbai."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sophie's_Misfortunes_(2016_film)"}, "Title": {"type": "literal", "value": "Sophie's Misfortunes"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Christophe_Honor\u00e9"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ana\u00efs_Demoustier|http://dbpedia.org/resource/Golshifteh_Farahani|http://dbpedia.org/resource/Muriel_Robin"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "Sophie's Misfortunes (French: Les Malheurs de Sophie) is a 2016 French film written and directed by Christophe Honor\u00e9."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_One_I_Love_(film)"}, "Title": {"type": "literal", "value": "The One I Love"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Charlie_McDowell"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Elisabeth_Moss|http://dbpedia.org/resource/Mark_Duplass|http://dbpedia.org/resource/Ted_Danson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "The One I Love is a 2014 American psychological thriller, directed by Charlie McDowell and written by Justin Lader, the film stars Mark Duplass and Elisabeth Moss. The film had its world premiere at 2014 Sundance Film Festival on January 21, 2014. It was released on August 1, 2014 through video on demand prior to a limited release on August 22, 2014, by RADiUS-TWC."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/The_Weinstein_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Being_Tom_Cruise"}, "Title": {"type": "literal", "value": "Being Tom Cruise"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Elliot_Hegarty"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007-08-02"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Channel_4_comedy"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "\"The Church of Scientology Presents: Being Tom Cruise, Why Scientology Isn't In Any Way Mental\" is a satirical spoof documentary from the series Star Stories, parodying the life of Tom Cruise and his relationship with the Church of Scientology. It is episode 2 of the second series of Star Stories, and first aired on Channel 4 on 2 August 2007. The show recounts Cruise's time with a group of some of his early acting friends. After filming Top Gun, Cruise (Kevin Bishop) is introduced to Scientology by John Travolta (Steve Edge), who convinces him to join the organization by smashing Cruise over the head with a shovel. He meets Nicole Kidman (Dolly Wells) and they start a relationship. After dating Pen\u00e9lope Cruz, Cruise is introduced to Katie Holmes (Laura Patch) by Travolta. Holmes agrees to marry Cruise, and the program ends with a voiceover asking the viewer to visit a Scientology website and purchase expensive products. The program received positive reception, and The Guardian and the Evening Times highlighted it as the \"pick of the day\". The Daily Mirror described it as a \"brilliant spoof\", and The Sunday Times characterized the show as \"Comedy so broad it barely fits on the screen, it is hard not to be amused\". The Herald Sun called it a \"ruthless but spot-on parody\"."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/You_Again"}, "Title": {"type": "literal", "value": "You Again"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Fickman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Betty_White|http://dbpedia.org/resource/Jamie_Lee_Curtis|http://dbpedia.org/resource/Kristen_Bell|http://dbpedia.org/resource/Odette_Annable|http://dbpedia.org/resource/Sigourney_Weaver"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "You Again is a 2010 American family comedy film produced (with John J. Strauss and Eric Tannenbaum) and directed by Andy Fickman with music by Nathan Wang and written by Moe Jelline. The film stars Kristen Bell, Jamie Lee Curtis, Sigourney Weaver, Odette Yustman, Billy Unger, Kristin Chenoweth, Victor Garber, Meagan Holder, James Wolk and Betty White. The film was released on September 24, 2010 by Touchstone Pictures. You Again has received negative reviews from critics and it earned $32 million on a $20 million budget. It was the last solo Touchstone Pictures project before working on subsequent films in association with Miramax, DreamWorks, and Lucasfilm. As a result of this, Touchstone signed a deal with DreamWorks Pictures in 2011 starting with I Am Number Four."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Butcher,_the_Chef_and_the_Swordsman"}, "Title": {"type": "literal", "value": "The Butcher, the Chef and the Swordsman"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Wuershan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ashton_Xu|http://dbpedia.org/resource/Liu_Xiaoye|http://dbpedia.org/resource/Masanobu_Ando|http://dbpedia.org/resource/You_Benchang|http://dbpedia.org/resource/Zhang_Yuqi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Butcher, the Chef and the Swordsman (simplified Chinese: \u5200\u89c1\u7b11; traditional Chinese: \u5200\u898b\u7b11; pinyin: D\u0101o Ji\u00e0n Xi\u00e0o) is a 2010 action comedy film directed by Wuershan. The film is a connection of three inter-twining stories.The first about a butcher who takes revenge on a swordsman for humiliation, the second is about a chef who has his apprentice makes an eight-course meal for the powerful Eunuch Liu. The final story is about a warrior with a powerful sword melted from other champion swords, but the sword does not work as expected during combat. The film was a feature debut of director Wuershan. It premiered at the Toronto International Film Festival where it received a mixed critical reception."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bolt_(2008_film)"}, "Title": {"type": "literal", "value": "Bolt"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Byron_Howard|http://dbpedia.org/resource/Chris_Williams_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/John_Travolta|http://dbpedia.org/resource/Mark_Walton_(story_artist)|http://dbpedia.org/resource/Miley_Cyrus|http://dbpedia.org/resource/Susie_Essman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Animated_comedy_films|http://dbpedia.org/resource/Category:Fantasy-comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "Bolt is a 2008 American computer animated road-comedy-adventure film produced by Walt Disney Animation Studios and released by Walt Disney Pictures. It is the studio's 48th animated feature. Directed by Chris Williams and Byron Howard, the film stars the voices of John Travolta, Miley Cyrus, Malcolm McDowell, Diedrich Bader, Nick Swardson, Greg Germann, Susie Essman and Mark Walton. The film's plot centers on a small white dog named Bolt who, having spent his entire life on the set of a television series, thinks that he has super powers. When he believes that his human, Penny, has been kidnapped, he sets out on a cross-country journey to \"rescue\" her. Despite a relatively marginal box-office performance, Bolt received a strong positive critical reception and is renowned for playing an important role in instigating what is widely referred to as the Disney Revival, as well as setting the studio in a new creative direction that would lead to other critically acclaimed features such as Tangled (2010) and Frozen (2013). Bolt was also Disney Animation's first feature film to be produced under the complete creative guidance of John Lasseter, as well as the first computer-animated feature film to implement non-photorealistic rendering. The film was nominated for a series of awards, such as the Academy Award for Best Animated Feature, which it lost to another Walt Disney Pictures release, Pixar Animation Studios' WALL-E."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Desires_of_the_Heart"}, "Title": {"type": "literal", "value": "Desires of the Heart"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ma_Liwen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Fan_Bingbing|http://dbpedia.org/resource/Ge_You|http://dbpedia.org/resource/Vivian_Wu"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Chinese_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "Desires of the Heart is a 2008 Chinese romantic comedy film directed and written by Ma Liwen, starring Vivian Wu, Ge You, Fan Bingbing, and Cong Shan. The film was first released in China on 20 November 2008, and grossed over \uffe520 million."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Cornered!_(film)"}, "Title": {"type": "literal", "value": "Cornered!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Daniel_Maze"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ellia_English|http://dbpedia.org/resource/James_Duval|http://dbpedia.org/resource/Steve_Guttenberg"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "Cornered! is a 2009 horror film written and directed by Daniel Maze, and co-written by Darrin Grimwood."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/REC_3:_G\u00e9nesis"}, "Title": {"type": "literal", "value": "REC 3: G\u00e9nesis"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Paco_Plaza"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Leticia_Dolera"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "81"}, "Description": {"type": "literal", "value": "REC 3: G\u00e9nesis (stylised as [REC]\u00b3: G\u00e9nesis) is a 2012 Spanish horror film directed by Paco Plaza. This film is the third installment of the REC series. It is a parallel sequel to the first two films, taking place before, during and after the films. It was released in cinemas in Spain on 30 March 2012. with more international premiere dates that followed. The world premiere took place in Paris at the Grand Rex on 7 March, followed by midnight screenings at the South By Southwest Film Festival on 9 March. In the U.S., it was released via video on demand on 3 August and was released theatrically on 7 September 2012 in select cities. Sony Entertainment released the DVD on 6 November 2012. It begins in the series' trademark found footage format but switches to traditional cinematography early on. The film was followed by a fourth installment, REC 4: Apocalypse, in October 2014."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Filmax_International|http://dbpedia.org/resource/Magnolia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Brindavanam_(film)"}, "Title": {"type": "literal", "value": "Brindavanam"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Vamsi_Paidipally"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kajal_Aggarwal|http://dbpedia.org/resource/N._T._Rama_Rao_Jr.|http://dbpedia.org/resource/Prakash_Raj|http://dbpedia.org/resource/Samantha_Ruth_Prabhu|http://dbpedia.org/resource/Srihari"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "170"}, "Description": {"type": "literal", "value": "Brindavanam is a 2010 Telugu romantic comedy film starring N. T. Rama Rao Jr., Kajal Aggarwal and Samantha Ruth Prabhu in the lead roles while actors Kota Srinivasa Rao, Prakash Raj and Srihari play other pivotal roles. The film was produced by Dil Raju on Sri Venkateswara Creations banner. It was written by Koratala Siva and directed by Vamsi Paidipally, who directed Munna, also produced by Dil Raju. S. Thaman composed the music while Chota K. Naidu and Marthand K. Venkatesh handled the cinematography and editing of the film respectively. A. S. Prakash and Anand Sai were the art directors of the film while Ram Lakshman composed the stunt and fight sequences of the film. The film released on 14 October 2010 and was a critical and commercial success. It was first remade in Odia as Love Master starring Babushaan & Riya Dey. In Kannada it was Remade as Brindavana starring Darshan, Karthika Nair and Milana Nagaraj in the lead roles and directed by K. Madesh which enjoyed similar success. It was remade in Bengali as Khoka 420 with Dev, Nusrat Jahan and Subhashree Ganguly playing the lead roles and directed by Rajib Biswas. It has been dubbed into Hindi as The Super Khiladi and into Tamil under the same name and later this movie dubbed in Malayalam as Chakravyooham.It was also remade in Bangladesh as Buk Fatey To Mukh Foteyna. It was remade in Marathi as Vrundavan starring Raqesh Vashisth, Pooja Sawant and Vaidehi Parshurami."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sri_Venkateswara_Creations"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Of_Snails_and_Men"}, "Title": {"type": "literal", "value": "Of Snails and Men"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tudor_Giurgiu"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andi_Vasluianu|http://dbpedia.org/resource/Monica_B\u00eerl\u0103deanu"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Of Snails and Men (Romanian: Despre oameni \u0219i melci) is a 2012 Romanian comedy film directed by Tudor Giurgiu."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Clover_(2014_film)"}, "Title": {"type": "literal", "value": "Clover"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Takeshi_Furusawa"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Emi_Takei|http://dbpedia.org/resource/Haruka_Kinami|http://dbpedia.org/resource/Kento_Nagayama|http://dbpedia.org/resource/Natsuna_Watanabe|http://dbpedia.org/resource/Tadayoshi_Okura"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Japanese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "Clover (\u30af\u30ed\u30fc\u30d0\u30fc) is 2014 Japanese film directed by Takeshi Furusawa and based on the manga series created by Toriko Chiya."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Toho"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Megane_(film)"}, "Title": {"type": "literal", "value": "Megane"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Naoko_Ogigami"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hiroko_Yakushimaru|http://dbpedia.org/resource/Ken_Mitsuishi|http://dbpedia.org/resource/Masako_Motai|http://dbpedia.org/resource/Mikako_Ichikawa|http://dbpedia.org/resource/Ryo_Kase|http://dbpedia.org/resource/Satomi_Kobayashi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Japanese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "Megane (\u3081\u304c\u306d, \"Glasses\") is a 2007 Japanese comedy film written and directed by Naoko Ogigami. The film is set on an unnamed Japanese island and tells the story of a vacationing university professor who comes in contact with several eccentric local inhabitants. The movie is a follow-up to Ogigami's 2006 film Kamome Shokudo, and features two of the same actors. It was featured at several film festivals including the Sundance Film Festival. During production, Ogigami decided the title of the movie after an impromptu realization that all of the characters in the film wore glasses."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Nikkatsu"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sydney_White"}, "Title": {"type": "literal", "value": "Sydney White"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Joe_Nussbaum"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amanda_Bynes|http://dbpedia.org/resource/Crystal_Hunt|http://dbpedia.org/resource/John_Schneider_(screen_actor)|http://dbpedia.org/resource/Matt_Long|http://dbpedia.org/resource/Sara_Paxton"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "Sydney White, also known as Sydney White and the Seven Dorks, is a 2007 American teen romantic comedy film directed by Joe Nussbaum and written by Chad Gomez Creasey based on the story of \"Snow White\". The film, starring Amanda Bynes, Sara Paxton and Matt Long, was released theatrically on September 21, 2007 by Universal Pictures."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Graveyard_Alive"}, "Title": {"type": "literal", "value": "Graveyard Alive: A Zombie Nurse in Love"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Elza_Kephart"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anne_Day-Jones|http://dbpedia.org/resource/Samantha_Slan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:Canadian_comedy_films|http://dbpedia.org/resource/Category:Zombie_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "Graveyard Alive: A Zombie Nurse in Love, is an independent zombie horror/comedy directed by Elza Kephart. The film is in black and white and it is dubbed. The film, had its U.S. premiere at the 2004 Slamdance festival in Park City, Utah and won best Cinematography.The movie was made by Bastard Amber Productions, and it was filmed in Montreal, Quebec, Canada. The movie was featured in Nightmare in Canada: Canadian Horror on Film (2004) (Doc)"}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Rooftop_(film)"}, "Title": {"type": "literal", "value": "The Rooftop"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jay_Chou"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alan_Ko|http://dbpedia.org/resource/Eric_Tsang|http://dbpedia.org/resource/Jay_Chou|http://dbpedia.org/resource/Li_Xin'ai|http://dbpedia.org/resource/Wang_Xueqi|http://dbpedia.org/resource/Xu_Fan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_musical_comedy_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Martial_arts_comedy_films|http://dbpedia.org/resource/Category:Taiwanese_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "The Rooftop (Chinese: \u5929\u53f0; pinyin: ti\u0101n t\u00e1i; literally: \"Rooftop\") is a 2013 Taiwanese musical film. It is the second feature film directed by Taiwanese singer/actor Jay Chou. Similar to his first feature film, Secret, Jay played multiple roles in the production of the film, as the main lead, director, script-writer and music composer. The Rooftop is one of the many scripts that Chou has written since the success of Secret in 2007. Most of the scripts are sequels to Secret. However, Chou and his long-time friend Will Liu decided to work on The Rooftop as a challenge to produce the first Chinese mainstream musical-come-martial arts film. They claimed that The Rooftop is a film that is difficult to be categorized, for it combined the elements of musical extravaganza and actions. Chou has made good use of his experience from filming The Green Hornet in Hollywood, Initial D in Hong Kong and directing over 60 of his own music videos, to conceptualize The Rooftop with music as its roots, combined with actions, to create a genre never seen before in Asia."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Buena_Vista_Distribution"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Vacation_(2015_film)"}, "Title": {"type": "literal", "value": "Vacation"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/John_Francis_Daley|http://dbpedia.org/resource/Jonathan_Goldstein_(screenwriter)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Beverly_D'Angelo|http://dbpedia.org/resource/Chevy_Chase|http://dbpedia.org/resource/Chris_Hemsworth|http://dbpedia.org/resource/Christina_Applegate|http://dbpedia.org/resource/Ed_Helms|http://dbpedia.org/resource/Leslie_Mann|http://dbpedia.org/resource/Ron_Livingston|http://dbpedia.org/resource/Skyler_Gisondo|http://dbpedia.org/resource/Steele_Stebbins"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "Vacation is a 2015 American comedy film written and directed by Jonathan Goldstein and John Francis Daley (in their directorial debuts). It stars Ed Helms, Christina Applegate, Skyler Gisondo, Steele Stebbins, Leslie Mann, Chris Hemsworth, Beverly D'Angelo and Chevy Chase. It is the fifth installment of the Vacation film series serving as both a sequel to the original four films and a modernized reboot of the series. It is also the second not to carry the National Lampoon name after Vegas Vacation, and was released by New Line Cinema and Warner Bros. on July 29, 2015. Vacation has received negative reviews from critics but it was a box office success, earning $104.9 million on a $31 million budget."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros._Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/20_Once_Again"}, "Title": {"type": "literal", "value": "20 Once Again"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Leste_Chen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chen_Bolin|http://dbpedia.org/resource/Kuei_Ya-lei|http://dbpedia.org/resource/Lu_Han_(singer)|http://dbpedia.org/resource/Yang_Zishan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Chinese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "131"}, "Description": {"type": "literal", "value": "20 Once Again (Chinese: \u91cd\u8fd420\u5c81 Ch\u00f3ng f\u01cen \u00e8rsh\u00ed su\u00ec) is a 2015 Chinese comedy film directed by Leste Chen and starring Yang Zishan, Kuei Ya-lei, Bolin Chen and Lu Han. The film is a remake of the South Korean movie Miss Granny. It was released on January 8, 2015."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Itty_Bitty_Titty_Committee"}, "Title": {"type": "literal", "value": "Itty Bitty Titty Committee"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jamie_Babbit"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Carly_Pope|http://dbpedia.org/resource/Daniela_Sea|http://dbpedia.org/resource/Guinevere_Turner|http://dbpedia.org/resource/Melanie_Mayron|http://dbpedia.org/resource/Melonie_Diaz"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "Itty Bitty Titty Committee is a feminist, lesbian-related comedy film directed by Jamie Babbit. It was released on September 28, 2007. The film had its premiere at the international film festival Berlinale on February 9, 2007, where it was nominated for a Teddy Award for Best Feature. It had its American premiere at SXSW in March where it won the Jury Prize for Best Feature. The film was produced by non-profit organization POWER UP."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Pretty_One"}, "Title": {"type": "literal", "value": "The Pretty One"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jen\u00e9e_LaMarque"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jake_Johnson|http://dbpedia.org/resource/John_Carroll_Lynch|http://dbpedia.org/resource/Ron_Livingston|http://dbpedia.org/resource/Sterling_Beaumon|http://dbpedia.org/resource/Zoe_Kazan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "The Pretty One is a 2013 comedy drama film directed and written by Jen\u00e9e LaMarque. The film stars Zoe Kazan, Jake Johnson, Ron Livingston, Sterling Beaumon and John Carroll Lynch."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Men,_Women_&_Children_(film)"}, "Title": {"type": "literal", "value": "Men, Women & Children"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jason_Reitman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Sandler|http://dbpedia.org/resource/Dean_Norris|http://dbpedia.org/resource/Jennifer_Garner|http://dbpedia.org/resource/Judy_Greer|http://dbpedia.org/resource/Rosemarie_DeWitt"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "119"}, "Description": {"type": "literal", "value": "Men, Women & Children is a 2014 American drama film dealing with online addiction. It is directed by Jason Reitman, co-written with Erin Cressida Wilson, based on a novel of the same name written by Chad Kultgen, and starring Rosemarie DeWitt, Jennifer Garner, Judy Greer, Dean Norris, Adam Sandler, Ansel Elgort, and Kaitlyn Dever."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mr._Bean's_Holiday"}, "Title": {"type": "literal", "value": "Mr. Bean's Holiday"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Steve_Bendelack"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Emma_de_Caunes|http://dbpedia.org/resource/Jean_Rochefort|http://dbpedia.org/resource/Karel_Roden|http://dbpedia.org/resource/Rowan_Atkinson|http://dbpedia.org/resource/Willem_Dafoe"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films|http://dbpedia.org/resource/Category:German_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Mr. Bean's Holiday is a 2007 British comedy film, directed by Steve Bendelack, music composed by Howard Goodall, produced by Peter Bennett-Jones, Tim Bevan and Eric Fellner, written by Hamish McColl and Robin Driscoll and starring Rowan Atkinson, Max Baldry, Emma de Caunes and Willem Dafoe. It is the second film based on the television series Mr. Bean, following the 1997 Bean. The film was theatrically released on 24 March 2007 by Universal Pictures. The film received mixed reviews from critics but earned $229.7 million on a $25 million budget. Mr. Bean's Holiday was released on DVD and HD DVD on 27 November 2007."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Gravy_(film)"}, "Title": {"type": "literal", "value": "Gravy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Roday"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dul\u00e9_Hill|http://dbpedia.org/resource/Gabourey_Sidibe|http://dbpedia.org/resource/Gabriel_Luna|http://dbpedia.org/resource/James_Roday|http://dbpedia.org/resource/Lily_Cole|http://dbpedia.org/resource/Lothaire_Bluteau|http://dbpedia.org/resource/Michael_Weston|http://dbpedia.org/resource/Paul_Rodriguez|http://dbpedia.org/resource/Sarah_Silverman|http://dbpedia.org/resource/Sutton_Foster"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Gravy is a 2015 American comedy horror film, directed by James Roday and co-written by Roday and Todd Harthan. It stars Sutton Foster, Lily Cole, Gabriel Luna, Gabourey Sidibe, Lothaire Bluteau, James Roday, Paul Rodriguez, Michael Weston, Molly Ephraim, and Sarah Silverman. The film was released in the United States on October 2, 2015 by Scream Factory."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Scream_Factory|http://dbpedia.org/resource/Shout!_Factory"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Hangover_Part_II"}, "Title": {"type": "literal", "value": "The Hangover Part II"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Todd_Phillips"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "The Hangover Part II is a 2011 American comedy film produced by Legendary Pictures and distributed by Warner Bros. Pictures. It is the sequel to the 2009 film The Hangover and the second installment in The Hangover trilogy. Directed by Todd Phillips, who co-wrote the script with Craig Mazin and Scot Armstrong, the film stars Bradley Cooper, Ed Helms, Zach Galifianakis, Ken Jeong, Jeffrey Tambor, Justin Bartha, and Paul Giamatti. It tells the story of Phil, Stu, Alan, and Doug as they travel to Thailand for Stu's wedding. After the bachelor party in Las Vegas, Stu takes no chances and opts for a safe, subdued pre-wedding brunch. Things do not go as planned, resulting in another bad hangover with no memories of the previous night. Development of The Hangover Part II began in April 2009, two months before The Hangover was released. The principal actors were cast in March 2010 to reprise their roles from the first film. Production began in October 2010, in Ontario, California, before moving on location in Thailand. The film was released on May 26, 2011 and became the highest-grossing R-rated comedy during its theatrical run. A third and final film, The Hangover Part III, was released on May 23, 2013."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Shrink_(film)"}, "Title": {"type": "literal", "value": "Shrink"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jonas_Pate"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Spacey|http://dbpedia.org/resource/Saffron_Burrows"}, "Published": {"type": "literal", "value": "2009-07-24"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104|110"}, "Description": {"type": "literal", "value": "Shrink is a 2009 American independent comedy-drama film about a psychologist who treats members of the entertainment industry in Los Angeles, California. It was directed by Jonas Pate, written by Thomas Moffett, and stars Kevin Spacey and along with an ensemble cast. The film premiered at the 2009 Sundance Film Festival and includes music by Jackson Browne."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Roadside_Attractions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Head_Above_Water"}, "Title": {"type": "literal", "value": "Head Above Water"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jim_Wilson_(producer)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Billy_Zane|http://dbpedia.org/resource/Cameron_Diaz|http://dbpedia.org/resource/Craig_Sheffer|http://dbpedia.org/resource/Harvey_Keitel|http://dbpedia.org/resource/Shay_Duffin"}, "Published": {"type": "literal", "value": "1996-11-07|1997-06-25"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_comedy_thriller_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Head Above Water is a 1996 American comedy thriller film directed by Jim Wilson and starring Harvey Keitel, Cameron Diaz, Craig Sheffer. It was rated PG-13 by the MPAA. The film is a remake of Hodet over vannet by Norwegian film director Nils Gaup."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fine_Line_Features"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Besharam_(2013_film)"}, "Title": {"type": "literal", "value": "Besharam"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Abhinav_Kashyap"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Javed_Jaffrey|http://dbpedia.org/resource/Neetu_Singh|http://dbpedia.org/resource/Pallavi_Sharda|http://dbpedia.org/resource/Ranbir_Kapoor|http://dbpedia.org/resource/Rishi_Kapoor"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "142"}, "Description": {"type": "literal", "value": "Besharam (English: Shameless) is a 2013 Bollywood action comedy film directed by Abhinav Kashyap. The film features Ranbir Kapoor opposite Pallavi Sharda, who marks her return to cinema. Filming for Besharam was scheduled to commence on 10 December 2012, with part of it taking place on a film set in Film City, Mumbai. The film's tagline is \"Na sammaan ka moh, na apmaan ka bhay\", translated as \"No yearning for respect, no fear of humiliation\". The film received negative reviews upon its release on 2 October 2013 and was declared a \"Flop\" by Box Office India four days after its release."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Reliance_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Bad_Education_Movie"}, "Title": {"type": "literal", "value": "The Bad Education Movie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Elliot_Hegarty"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Charlie_Wernham|http://dbpedia.org/resource/Harry_Enfield|http://dbpedia.org/resource/Iain_Glen|http://dbpedia.org/resource/Jack_Binstead|http://dbpedia.org/resource/Jack_Whitehall|http://dbpedia.org/resource/Layton_Williams|http://dbpedia.org/resource/Mathew_Horne|http://dbpedia.org/resource/Sarah_Solemani"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "The Bad Education Movie is a 2015 British comedy film directed by Elliot Hegarty and written by Freddy Syborn and Jack Whitehall. The movie is based on Whitehall's sitcom of the same name, and follows a similar plot-line, with young teacher Alfie Wickers' (Jack Whitehall) ineptly trying to supervise and occasionally educate Form K. Filming for The Bad Education Movie took place over five weeks, commencing 23 February 2015. The film was theatrically released in the United Kingdom on 21 August 2015 by Entertainment Film Distributors."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Entertainment_Film_Distributors"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Tiger_Aspect_Productions"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Wherever_You_Are_(film)"}, "Title": {"type": "literal", "value": "(aka Lifelines)|Wherever You Are"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rob_Margolies"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dreama_Walker|http://dbpedia.org/resource/Jacob_Kogan|http://dbpedia.org/resource/Jane_Adams_(actress)|http://dbpedia.org/resource/Joe_Morton|http://dbpedia.org/resource/Josh_Pais"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Wherever You Are is a 2008 comedy-drama film from director-screenwriter Rob Margolies. The film addresses the changes within a dysfunctional family after 1 session of therapy. It is noted for having been filmed in 11 days."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Land_Ho!"}, "Title": {"type": "literal", "value": "Land Ho!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Aaron_Katz_(filmmaker)|http://dbpedia.org/resource/Martha_Stephens"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Paul_Eenhoorn"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Land Ho! is an American-Icelandic adventure comedy film co-written and co-directed by Martha Stephens and Aaron Katz. The film made its world premiere at 2014 Sundance Film Festival on January 19, 2014. It also screened at the 2014 Tribeca Film Festival, Los Angeles Film Festival, Nantucket Film Festival, Locarno International Film Festival, and BFI London Film Festival . Sony Pictures Classics acquired worldwide distribution rights to the film after its world premiere at the Sundance Film Festival. The film released on July 11, 2014, in New York City and Los Angeles before expanding wide in the United States. It won the John Cassavetes Award for Best Feature under $500,000 at the 2015 Independent Spirit Awards."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sony_Pictures_Classics"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kalavani"}, "Title": {"type": "literal", "value": "Kalavani"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/A._Sarkunam"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ganja_Karuppu|http://dbpedia.org/resource/Ilavarasu|http://dbpedia.org/resource/Oviya|http://dbpedia.org/resource/Saranya_Ponvannan|http://dbpedia.org/resource/Vimal"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Kalavani (Tamil: \u0b95\u0bb3\u0bb5\u0bbe\u0ba3\u0bbf),(English: Thief) is a 2010 Indian Tamil-language romantic comedy film written and directed by newcomer A. Sargunam. It stars Vimal of Pasanga fame in the lead role along with debutante Oviya, Saranya Ponvannan, Ganja Karuppu and Ilavarasu, who enact pivotal roles. The film, made on a shoe-string budget, released on 25 June 2010 to very positive reviews and became a sleeper hit of 2010."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Ayngaran_International"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Whisky_(film)"}, "Title": {"type": "literal", "value": "Whisky"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Juan_Pablo_Rebella|http://dbpedia.org/resource/Pablo_Stoll"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andr\u00e9s_Pazos|http://dbpedia.org/resource/Jorge_Bolani|http://dbpedia.org/resource/Mirella_Pascual"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Tragicomedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "Whisky is an Uruguayan tragicomedy film directed by Juan Pablo Rebella and Pablo Stoll and released in 2004. The film stars Andr\u00e9s Pazos, Mirella Pascual, Jorge Bolani, Ana Katz, and Daniel Hendler. It has very sparse dialogue and the three principal actors play very straight roles showing little emotion. It was premiered at the 2004 Cannes Film Festival where it won a Prix du Regard Original Award."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Any_Way_the_Wind_Blows_(film)"}, "Title": {"type": "literal", "value": "Any Way The Wind Blows"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tom_Barman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Diane_De_Belder|http://dbpedia.org/resource/Eric_Kloeck|http://dbpedia.org/resource/Frank_Vercruyssen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:Belgian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Any Way the Wind Blows is a 2003 film by dEUS' singer-songwriter-director Tom Barman."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Axiom_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jump_Tomorrow"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Joel_Hopkins"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hippolyte_Girardot|http://dbpedia.org/resource/Natalia_Verbeke|http://dbpedia.org/resource/Tunde_Adebimpe"}, "Published": {"type": "literal", "value": "2001-11-09"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Jump Tomorrow is a 2001 independent film and romantic comedy written and directed by Joel Hopkins, starring Tunde Adebimpe, Hippolyte Girardot, and Natalia Verbeke. It concerns George (Adebimpe), a shy, bespectacled man who is about to marry a fellow Nigerian American woman named Sophie Ochenado, played by Abiola Abrams, when he falls for a Spanish woman. It is based on a short film called Jorge."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Someone_Special_(film)"}, "Title": {"type": "literal", "value": "Someone Special"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jang_Jin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jung_Jae-young|http://dbpedia.org/resource/Lee_Na-young"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "Someone Special (Hangul: \uc544\ub294 \uc5ec\uc790; RR: Aneun yeoja; lit. \"A Woman I Know\") is a 2004 South Korean romantic comedy film about a struggling baseball player and a fan with a long-time crush on him. It was selected to screen at the 2004 Pusan International Film Festival, 2005 Udine Far East Film Festival, and made its United States premiere at the 2005 New York Asian Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Almost_Love"}, "Title": {"type": "literal", "value": "Almost Love"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lee_Han"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kim_Ha-neul|http://dbpedia.org/resource/Kwon_Sang-woo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "Almost Love (Hangul: \uccad\ucd98\ub9cc\ud654; RR: Cheongchun-manhwa; lit. \"Youth Comic\") is a 2006 South Korean film. It was directed by Lee Han, starring Kwon Sang-woo and Kim Ha-neul. Distributed by Showbox, it was released on March 23, 2006, and ran at 116 minutes."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Showbox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Safe_Men"}, "Title": {"type": "literal", "value": "Safe Men"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/John_Hamburg"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Allen_Swift|http://dbpedia.org/resource/Michael_Lerner_(actor)|http://dbpedia.org/resource/Paul_Giamatti|http://dbpedia.org/resource/Sam_Rockwell|http://dbpedia.org/resource/Steve_Zahn"}, "Published": {"type": "literal", "value": "1998-08-07"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Safe Men is a 1998 American criminal comedy film written and directed by John Hamburg (in his directorial debut), and stars Sam Rockwell and Steve Zahn as a pair of aspiring lounge singers who are mistaken for ace safe crackers, and get mixed up with a Jewish mobster, Big Fat Bernie Gayle (Michael Lerner) and Big Fat's intern, Veal Chop (Paul Giamatti). Hamburg later wrote screenplays for a few films, such as Meet the Parents, Zoolander, Along Came Polly and I Love You, Man, which he also directed."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/October_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sunny_(2011_film)"}, "Title": {"type": "literal", "value": "Sunny"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kang_Hyeong-cheol"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jin_Hee-kyung|http://dbpedia.org/resource/Kang_So-ra|http://dbpedia.org/resource/Shim_Eun-kyung|http://dbpedia.org/resource/Yoo_Ho-jeong"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:South_Korean_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "134"}, "Description": {"type": "literal", "value": "Sunny (Hangul: \uc368\ub2c8; RR: Sseoni) is a 2011 South Korean comedy-drama film. The film is about a middle-aged woman who tries to fulfill her friend's dying wish of reuniting their group of high school friends. The film alternates between two timelines: the present day where the women are middle-aged, and the 1980s when they were in high school. It is the second film by writer-director Kang Hyeong-cheol, who previously directed Scandal Makers (2008). Released on 4 May 2011, Sunny was the first film of that year to sell five million tickets in South Korea, and became the second highest grossing Korean film by year's end. As of 20 September 2012, it is the all-time 13th best-selling in South Korean history. Kang Hyeong-cheol and Nam Na-yeong won Best Director and Best Editing, respectively, at the Grand Bell Awards. Actress Kang So-ra won several awards for her role as the teenage Ha Chun-hwa."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/CJ_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ishq_Positive"}, "Title": {"type": "literal", "value": "Ishq Positive"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Noor_Bukhari"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Iftikhar_Thakur|http://dbpedia.org/resource/Noor_Bukhari|http://dbpedia.org/resource/Saud_(actor)|http://dbpedia.org/resource/Shafqat_Cheema|http://dbpedia.org/resource/Sonu_Sood"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Pakistani_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Ishq Positive is a 2016 Pakistani romantic comedy film directed by Noor Bukhari, written by Suraj Baba and produced by Shazia Hussain Kashif Latif under the production banner of KSL Productions. The film stars Noor Bukhari, Wali Hamid Ali Khan, Saud,Saim Ali, Ahmed Ali, Faria Bukhari, Durdana Butt. The film was scheduled for release on Eid al-Adha 2015 but was delayed. It is now slated for release on 22 July 2016. At the 4th Hum Awards CEO of Hum Network Limited Duraid Qureshi announced that the film will be released under the Hum Films Banner."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Hum_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Invention_of_Lying"}, "Title": {"type": "literal", "value": "The Invention of Lying"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Matthew_Robinson_(director)|http://dbpedia.org/resource/Ricky_Gervais"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jennifer_Garner|http://dbpedia.org/resource/Jonah_Hill|http://dbpedia.org/resource/Louis_C.K.|http://dbpedia.org/resource/Ricky_Gervais|http://dbpedia.org/resource/Rob_Lowe|http://dbpedia.org/resource/Tina_Fey"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:Fantasy-comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "The Invention of Lying is a 2009 American fantasy romantic comedy film written and directed by Ricky Gervais and Matthew Robinson (in their directorial debuts). The film stars Gervais as the first human with the ability to lie in a world where people can only tell the truth. The supporting cast features Jennifer Garner, Jonah Hill, Louis C.K., Rob Lowe and Tina Fey. The film was released in the United States on October 2, 2009."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Focus_Features|http://dbpedia.org/resource/Warner_Bros._Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Drama_(film)"}, "Title": {"type": "literal", "value": "Drama"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Yogaraj_Bhat"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Radhika_Pandit|http://dbpedia.org/resource/Sathish_Ninasam|http://dbpedia.org/resource/Sindhu_Lokanath|http://dbpedia.org/resource/Yash_(Kannada_actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "149"}, "Description": {"type": "literal", "value": "Drama is a 2012 Indian Kannada romantic comedy thriller written, directed and co-produced by Yogaraj Bhat under the banner Yogaraj Movies and Jayanna Combines. It stars Yash, Radhika Pandit, Sathish Ninasam and Sindhu Lokanath in leading roles and Ambareesh in an extended cameo appearance. Music for the film was scored by V. Harikrishna while lyrics for the soundtrack were written by the successful combination of Jayanth Kaikini and Yogaraj Bhat. Krishna was roped in as the cinematographer for the film, who had previously worked with Bhat in the massively successful film, Mungaru Male."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/My_Best_Friend_(2001_film)"}, "Title": {"type": "literal", "value": "My Best Friend"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lakis_Lazopoulos|http://dbpedia.org/resource/Yorgos_Lanthimos"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Antonis_Kafetzopoulos|http://dbpedia.org/resource/Lakis_Lazopoulos"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "My Best Friend (Greek: \u039f \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03bf\u03c2 \u03bc\u03bf\u03c5 \u03c6\u03af\u03bb\u03bf\u03c2) is a 2001 Greek comedy film directed by Yorgos Lanthimos and Lakis Lazopoulos."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/DodgeBall:_A_True_Underdog_Story"}, "Title": {"type": "literal", "value": "DodgeBall: A True Underdog Story"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rawson_Marshall_Thurber"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Stiller|http://dbpedia.org/resource/Christine_Taylor|http://dbpedia.org/resource/Rip_Torn|http://dbpedia.org/resource/Vince_Vaughn"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_sports_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "DodgeBall: A True Underdog Story is a 2004 American sports comedy film produced by 20th Century Fox and Red Hour Productions, written and directed by Rawson Marshall Thurber and starring Vince Vaughn and Ben Stiller. The film focuses on a rivalry between the owners of Average Joe's, a small gym, and Globo-Gym, a competing big-budget gym located across the street. Peter LaFleur (Vaughn), the owner of the smaller gym, has defaulted on his mortgage and enters a dodgeball tournament in an attempt to earn the money necessary to prevent his gym from being purchased by Globo-Gym to build a new parking lot for their gym members. Globo-Gym enters a team in the tournament in an effort to ensure that Average Joe's gym fails. DodgeBall received generally positive reviews, including a 70% aggregate rating on Rotten Tomatoes, and grossed more than $167 million worldwide."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/18_Years_Later"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Edoardo_Leo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Edoardo_Leo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:Italian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "18 Years Later (Italian: Diciotto anni dopo) is a 2009 Italian comedy-drama film written, directed and starring Edoardo Leo. For this film Leo was nominated for David di Donatello for Best New Director and for a Nastro d'Argento in the same category. The film also won several awards in a number of international film festivals, including the Audience Award at the Annecy Italian Film Festival and the awards for best film, best director, best actor and best actress at the 2010 Ibiza International Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hotel_Noir"}, "Title": {"type": "literal", "value": "Hotel Noir"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sebastian_Gutierrez"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Carla_Gugino|http://dbpedia.org/resource/Danny_DeVito|http://dbpedia.org/resource/Kevin_Connolly_(actor)|http://dbpedia.org/resource/Malin_Akerman|http://dbpedia.org/resource/Mandy_Moore|http://dbpedia.org/resource/Robert_Forster|http://dbpedia.org/resource/Rosario_Dawson|http://dbpedia.org/resource/Rufus_Sewell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Hotel Noir is a 2012 crime film directed and written by Sebastian Gutierrez. The film stars Carla Gugino and Rufus Sewell. The film was released at Video on demand on October 9, 2012 in USA."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Youth_in_Oregon"}, "Title": {"type": "literal", "value": "Youth in Oregon"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Joel_David_Moore"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alex_Shaffer_(actor)|http://dbpedia.org/resource/Billy_Crudup|http://dbpedia.org/resource/Christina_Applegate|http://dbpedia.org/resource/Frank_Langella|http://dbpedia.org/resource/Josh_Lucas|http://dbpedia.org/resource/Mary_Kay_Place|http://dbpedia.org/resource/Nicola_Peltz"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Youth in Oregon is a comedy-drama film directed by Joel David Moore. The film stars Frank Langella, Billy Crudup, Christina Applegate, Nicola Peltz, Josh Lucas, Mary Kay Place, and Alex Shaffer. The film had its world premiere at the Tribeca Film Festival on April 16, 2016."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Phat_Girlz"}, "Title": {"type": "literal", "value": "Phat Girlz"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nnegest_Likk\u00e9"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Godfrey_(comedian)|http://dbpedia.org/resource/Jimmy_Jean-Louis|http://dbpedia.org/resource/Mo'Nique"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "Phat Girlz is a 2006 comedy film written and directed by Nnegest Likk\u00e9 and starring Mo'Nique."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Searchlight_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Azad_(2016_film)"}, "Title": {"type": "literal", "value": "Azad"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rehan_Sheikh"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Angeline_Malik|http://dbpedia.org/resource/Imran_Abbas_(actor)|http://dbpedia.org/resource/Nimra_Bucha|http://dbpedia.org/resource/Rehan_Sheikh|http://dbpedia.org/resource/Sabreen_Hisbani|http://dbpedia.org/resource/Sajjad_Kishwar|http://dbpedia.org/resource/Salman_Shahid|http://dbpedia.org/resource/Sanam_Saeed|http://dbpedia.org/resource/Zahid_Ahmed_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Pakistani_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Azad (Urdu: \u0622\u0632\u0627\u0631\u200e) is an upcoming 2016 Pakistani comedy\u2013drama film directed and written by Rehan Sheikh and co-produced by Hassan Naeem and Rehan Sheikh under the production banner of Bling Studios and Roomi Films. The film features Sanam Saeed, Salman Shahid, Rehan Sheikh, Nimra Bucha and Sabreen Hasbani Zahid Ahmed and Sajjad Kishwar. The cast also includes debutants Ajlal Shah and Jawad Rana. A special appearance is also made by Angeline Malik, Imran Abbas and Schumaila Hussain."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Just_Like_Brothers"}, "Title": {"type": "literal", "value": "Just Like Brothers"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Hugo_G\u00e9lin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Fran\u00e7ois-Xavier_Demaison|http://dbpedia.org/resource/M\u00e9lanie_Thierry|http://dbpedia.org/resource/Nicolas_Duvauchelle|http://dbpedia.org/resource/Pierre_Niney"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "Just Like Brothers (original title: Comme des fr\u00e8res) is a 2012 French comedy film written, directed and produced by Hugo G\u00e9lin."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/She's_Out_of_My_League"}, "Title": {"type": "literal", "value": "She's Out of My League"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jim_Field_Smith"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "She's Out of My League is a 2010 American romantic comedy film directed by Jim Field Smith and written by Sean Anders and John Morris. The film stars Jay Baruchel and Alice Eve, and was produced by Jimmy Miller and David Householter for Paramount Pictures and DreamWorks Pictures and filmed in Pittsburgh, Pennsylvania. Production on the film finished in 2008. The film received its wide theatrical release on March 12, 2010. The film is director Jim Field Smith's first feature."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Due_Date"}, "Title": {"type": "literal", "value": "Due Date"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Todd_Phillips"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jamie_Foxx|http://dbpedia.org/resource/Juliette_Lewis|http://dbpedia.org/resource/Michelle_Monaghan|http://dbpedia.org/resource/Robert_Downey,_Jr.|http://dbpedia.org/resource/Zach_Galifianakis"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010_comedy_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_screwball_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Due Date is a 2010 American comedy film directed by Todd Phillips, co-written by Alan R. Cohen, Alan Freedland, and Adam Sztykiel, and starring Robert Downey, Jr. and Zach Galifianakis. The film was released on November 5, 2010. The film was shot in Las Cruces, New Mexico, Atlanta, Georgia, and Tuscaloosa, Alabama."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/To_Jennifer"}, "Title": {"type": "literal", "value": "To Jennifer"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Cullen_Bressack"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/James_Cullen_Bressack|http://dbpedia.org/resource/Jessica_Cameron"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "74"}, "Description": {"type": "literal", "value": "To Jennifer is a found footage horror comedy film that was directed by James Cullen Bressack. It was released direct to DVD on October 15, 2013 and stars Chuck Pappas as a young man that sets out to confront his unfaithful girlfriend Jennifer. The entire film was shot and edited on the iPhone 5."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Gallants_(film)"}, "Title": {"type": "literal", "value": "Gallants"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Clement_Cheng|http://dbpedia.org/resource/Derek_Kwok"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chen_Kuan-tai|http://dbpedia.org/resource/JJ_Jia|http://dbpedia.org/resource/Leung_Siu-lung|http://dbpedia.org/resource/Lo_Mang|http://dbpedia.org/resource/MC_Jin|http://dbpedia.org/resource/Teddy_Robin|http://dbpedia.org/resource/Wong_You-nam"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Gallants (Da lui toi \u6253\u64c2\u53f0) is a 2010 Hong Kong action comedy film directed by Derek Kwok and Clement Cheng, starring Leung Siu-lung, Chen Kuan-tai and Teddy Robin. The film is set in modern times, but is in the style of Hong Kong action comedy films from the 1960s and 1970s. The film premiered at the Hong Kong Film Festival on 26 March 2010. The film has received favorable reviews on its festival shows in North America."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/My_Boss"}, "Title": {"type": "literal", "value": "My Boss"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jeethu_Joseph"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dileep_(actor)|http://dbpedia.org/resource/Mamta_Mohandas"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "150"}, "Description": {"type": "literal", "value": "My Boss is a 2012 Malayalam romantic comedy film directed by Jeethu Joseph, starring Dileep and Mamta Mohandas in the lead roles and Mukesh in a cameo appearance. It is the third film by Jeethu Joseph. The film is produced by East Coast Vijayan under the banner of East Coast Communications. It was filmed in Mumbai and various locales in Kerala. The film is a loose remake of the 2009 Hollywood film The Proposal. The film is set in the backdrop of the IT industry. The film follows Manu Varma (Dileep) who's hired as the executive assistant in a leading firm in Bombay who aspires to migrate to a foreign country while Priya Nair (Mamta), his boss, an Indian born Australian citizen has visa problems at a time when she has the opportunity to get a promotion. This leads Priya to get into a fake marriage with Manu to stay in India. My Boss released in Kerala on 10 November 2012 to positive reviews and was declared a hit."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/It's_All_Gone_Pete_Tong"}, "Title": {"type": "literal", "value": "It's All Gone Pete Tong"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Dowse"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Beatriz_Batarda|http://dbpedia.org/resource/Kate_Magowan|http://dbpedia.org/resource/Mike_Wilmot|http://dbpedia.org/resource/Paul_Kaye"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "It's All Gone Pete Tong is a 2004 Canadian independent film about Frankie Wilde (played by Paul Kaye), a DJ who goes completely deaf. The title is a reference to a cockney rhyming slang phrase used in Britain from the 80s to present day, referring to the BBC Radio 1 DJ Pete Tong, standing for \"it's all gone a bit wrong.\" The film was released on April 15, 2005. The DVD was released on September 20, 2005. It won two awards at the US Comedy Arts Festival for Best Feature and Best Actor (Paul Kaye) and swept the Gen Art Film Festival awards (Grand Jury and Audience). It was filmed on location in Ibiza and shot entirely in HD. Several famous DJs appear in the film as \"talking heads\", giving the film a true sense of authenticity. Carl Cox, Ti\u00ebsto, Sarah Main, Barry Ashworth, Paul van Dyk, Lol Hammond and Pete Tong appear in the film. Ibiza locations used in the movie include music venues; Pacha, Amnesia, Privilege, DC10, the historic Pike's Hotel and Cala Longa beach. A remake has been made by Indian film director Neerav Ghosh titled Soundtrack which was released in 2011."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Guy_X"}, "Title": {"type": "literal", "value": "Guy X"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Saul_Metzstein"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jason_Biggs|http://dbpedia.org/resource/Jeremy_Northam|http://dbpedia.org/resource/Michael_Ironside|http://dbpedia.org/resource/Natascha_McElhone"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Guy X is a 2005 black comedy war film directed by Saul Metzstein, based on the novel No One Thinks Of Greenland by John Griesemer. The movie stars Jason Biggs, Natascha McElhone, Jeremy Northam, and Michael Ironside."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_D_Train"}, "Title": {"type": "literal", "value": "The D Train"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jarrad_Paul"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/James_Marsden|http://dbpedia.org/resource/Jeffrey_Tambor|http://dbpedia.org/resource/Kathryn_Hahn|http://dbpedia.org/resource/Mike_White_(filmmaker)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "The D Train (also known as Bad Bromance) is a 2015 American comedy-drama film written and directed by Jarrad Paul and Andrew Mogel in their directorial debuts, and stars Jack Black and James Marsden. The film premiered at the 11th Sundance Film Festival on January 23, 2015, and was released in the United States on May 8, 2015 by IFC Films."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Sitter"}, "Title": {"type": "literal", "value": "The Sitter"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_Gordon_Green"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ari_Graynor|http://dbpedia.org/resource/J._B._Smoove|http://dbpedia.org/resource/Jonah_Hill|http://dbpedia.org/resource/Max_Records|http://dbpedia.org/resource/Sam_Rockwell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "81|87"}, "Description": {"type": "literal", "value": "The Sitter is a 2011 comedy film directed by David Gordon Green and produced by Michael De Luca. The film follows a slacker college student who, after being suspended, is forced by his mother to fill in for a babysitter that called in sick. During this time, he takes his charges along for his extensive criminal escapades. The film is a Michael De Luca Productions and 20th Century Fox joint venture, distributed by 20th Century Fox. The film was originally scheduled to be released in theaters on August 5, 2011, but was pushed back to December 9, 2011."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Whore_(2008_film)"}, "Title": {"type": "literal", "value": "Whore"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Thomas_Dekker_(actor)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Lauren_Storm|http://dbpedia.org/resource/Lena_Headey|http://dbpedia.org/resource/Megan_Fox|http://dbpedia.org/resource/Ron_Jeremy|http://dbpedia.org/resource/Rumer_Willis|http://dbpedia.org/resource/Thomas_Dekker_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Whore is a 2008 drama film co-starring, edited, written, produced and directed by Thomas Dekker. It was released on October 20, 2008."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Undrafted_(film)"}, "Title": {"type": "literal", "value": "Undrafted"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Joseph_Mazzello"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aaron_Tveit|http://dbpedia.org/resource/Chace_Crawford|http://dbpedia.org/resource/Philip_Winchester|http://dbpedia.org/resource/Tyler_Hoechlin"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Undrafted is an sports comedy-drama film the directorial debut of Joseph Mazzello who also wrote, co-produced and starred in the film. It also stars Aaron Tveit, Tyler Hoechlin, Chace Crawford and Philip Winchester. It is based on the true story of Mazzello's brother who missed out on the Major League Baseball draft. The film was released on July 15, 2016, by Vertical Entertainment."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Vertical_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lola_Versus"}, "Title": {"type": "literal", "value": "Lola Versus"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Daryl_Wein"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bill_Pullman|http://dbpedia.org/resource/Debra_Winger|http://dbpedia.org/resource/Greta_Gerwig|http://dbpedia.org/resource/Joel_Kinnaman|http://dbpedia.org/resource/Zoe_Lister-Jones"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "Lola Versus is a 2012 American romantic comedy film directed by Daryl Wein. The screenplay was co-written by Wein and his partner and Lola co-star Zoe Lister-Jones. It stars Greta Gerwig, Joel Kinnaman, Zoe Lister Jones, Bill Pullman and Debra Winger."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Searchlight_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Class_of_Nuke_'Em_High"}, "Title": {"type": "literal", "value": "Class of Nuke 'Em High"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lloyd_Kaufman|http://dbpedia.org/resource/Michael_Herz_(producer)|http://dbpedia.org/resource/Richard_W._Haines"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/R._L._Ryan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1980s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Class of Nuke 'Em High, also known as Atomic High School, is a 1986 American science fiction horror comedy film made by cult classic B-movie production group Troma Entertainment. It was directed by Richard W. Haines and Lloyd Kaufman under the pseudonym Samuel Weil. New York holographer Jason Sapan created the laser effects."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Troma_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Flintstones:_On_the_Rocks"}, "Title": {"type": "literal", "value": "The Flintstones: On the Rocks"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Savino"}, "Author": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Savino|http://dbpedia.org/resource/Cindy_Morrow|http://dbpedia.org/resource/Clayton_McKenzie_Morrow"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "66"}, "Description": {"type": "literal", "value": "The Flintstones: On the Rocks is a 2001 made-for-television animated film based on the television series The Flintstones. It debuted on November 3, 2001 on Cartoon Network and was directed by Chris Savino and David Smith. It was dedicated to William Hanna, creator of The Flintstones with partner Joseph Barbera, founder and chairman of Hanna-Barbera, who died earlier that year and longtime Hanna-Barbera composer Hoyt Curtin, who passed on a year before Hanna. Since then, the movie has not been released on VHS, Laserdisc, DVD, Blu-ray or any other form of home media release, though bootleg copies exist on various torrent sites."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Cartoon_Network|http://dbpedia.org/resource/Warner_Bros._Television_Distribution"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Kevin_Bishop_Show"}, "Title": {"type": "literal", "value": "The Kevin Bishop Show"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dominic_Brigstocke|http://dbpedia.org/resource/Elliot_Hegarty"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jim_Howick|http://dbpedia.org/resource/Karen_Gillan|http://dbpedia.org/resource/Kevin_Bishop|http://dbpedia.org/resource/Oliver_Maltman"}, "Published": {"type": "literal", "value": "2008-07-25"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Channel_4_comedy|http://dbpedia.org/resource/Category:Comedy_Showcase"}, "Genre": {"type": "literal", "value": "http://dbpedia.org/resource/Comedy"}, "Duration": {"type": "literal", "value": "30"}, "Description": {"type": "literal", "value": "The Kevin Bishop Show was a sketch comedy written by and starring English comedian Kevin Bishop, part of the Star Stories team. The show was commissioned by Channel 4 for a six-part series starting on 25 July 2008 at 10pm. A pilot was broadcast on 23 November 2007 as part of Channel 4's Comedy Showcase and the programme soon earned interest for its incredibly fast pace; 42 sketches were shown in 23 minutes. The show was nominated for Best New Comedy at the 2008 British Comedy Awards. The show started its second series on Friday 31 July 2009 at 10pm on Channel 4."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/All3Media"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/New_York,_I_Love_You"}, "Title": {"type": "literal", "value": "New York, I Love You"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Brett_Ratner|http://dbpedia.org/resource/Fatih_Akin|http://dbpedia.org/resource/Hughes_brothers|http://dbpedia.org/resource/Jiang_Wen|http://dbpedia.org/resource/Joshua_Marston|http://dbpedia.org/resource/Mira_Nair|http://dbpedia.org/resource/Natalie_Portman|http://dbpedia.org/resource/Shekhar_Kapur|http://dbpedia.org/resource/Shunji_Iwai|http://dbpedia.org/resource/Yvan_Attal"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "New York, I Love You is a 2008 American romantic comedy-drama anthology consisting of eleven short films, each by a different director. The short films all relate in some way to the subject of love, and are set among the five boroughs of New York City. The film is a sequel of sorts to the 2006 film Paris, je t'aime, which had the same structure, and is the second film in the Cities of Love franchise, created and produced by Emmanuel Benbihy. Unlike Paris, je t'aime, the short films of New York, I Love You all have a unifying thread, of a videographer who films the other characters. The film stars an ensemble cast, among them Bradley Cooper, Shia LaBeouf, Natalie Portman, Anton Yelchin, Hayden Christensen, Orlando Bloom, Irrfan Khan, Rachel Bilson, Chris Cooper, Andy Garc\u00eda, Christina Ricci, John Hurt, Cloris Leachman, Robin Wright Penn, Julie Christie, Maggie Q, Ethan Hawke, James Caan, Shu Qi and Eli Wallach. New York, I Love You premiered at the 2008 Toronto International Film Festival in September 2008, and was released in the United States on October 16, 2009."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Vivendi"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dhand_(film)"}, "Title": {"type": "literal", "value": "Dhand"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ranjith_Bajpe"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anoop_Sagar|http://dbpedia.org/resource/Arjun_Kapikad|http://dbpedia.org/resource/Deepak_Paladka|http://dbpedia.org/resource/Sandeep_Shetty"}, "Published": {"type": "literal", "value": "2015-05-29"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Dhand (English: Army) is a Tulu film directed by Ranjith Bajpe and produced by Shodhan Prasad under the banner of Sandhya Creations. It stars Arjun Kapikad, Sandeep Shetty, Anoop Sagar, Deepak Paladka, Gopinath Bhat, Umesh Mijar, Ranjan Boloor, Shilpa Suvarna, Anvitha Sagar, and Subhash Bangera in the lead roles. This is the first Tulu movie to be released in Australia,United Kingdom. and Israel"}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mr._Right_(2015_film)"}, "Title": {"type": "literal", "value": "Mr. Right"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Paco_Cabezas"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anna_Kendrick|http://dbpedia.org/resource/Anson_Mount|http://dbpedia.org/resource/James_Ransone|http://dbpedia.org/resource/Michael_Eklund|http://dbpedia.org/resource/RZA|http://dbpedia.org/resource/Sam_Rockwell|http://dbpedia.org/resource/Tim_Roth"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "This page is about the film directed by Paco Cabezas. For the 2015 film Mr. Right directed by Roger Melvin, see IMDB Mr. Right is a 2016 American action-comedy romance film directed by Paco Cabezas and written by Max Landis. It stars Sam Rockwell, Anna Kendrick, Tim Roth, James Ransone, Anson Mount, Michael Eklund and RZA. The film was released in the United States on April 8, 2016, by Focus World."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Focus_Features"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Foodland_(film)"}, "Title": {"type": "literal", "value": "Foodland"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Smoluk"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kim_Poirier"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "Foodland is a 2010 Canadian comedy film written and directed by Adam Smoluk."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/All_About_Steve"}, "Title": {"type": "literal", "value": "All About Steve"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Phil_Traill"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "All About Steve is a 2009 American comedy film directed by Phil Traill that stars Sandra Bullock, Thomas Haden Church, and Bradley Cooper as the eponymous Steve. The film was panned by critics and is the winner of two Golden Raspberry Awards."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Conception_(film)"}, "Title": {"type": "literal", "value": "Conception"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Josh_Stolberg"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aaron_Ashmore|http://dbpedia.org/resource/Alan_Tudyk|http://dbpedia.org/resource/America_Olivo|http://dbpedia.org/resource/Connie_Britton|http://dbpedia.org/resource/David_Arquette|http://dbpedia.org/resource/Gregory_Smith_(actor)|http://dbpedia.org/resource/Jason_Mantzoukas|http://dbpedia.org/resource/Jennifer_Finnigan|http://dbpedia.org/resource/Jennifer_Jostyn|http://dbpedia.org/resource/Jonathan_Silverman|http://dbpedia.org/resource/Julie_Bowen|http://dbpedia.org/resource/Leah_Pipes|http://dbpedia.org/resource/Matt_Prokop|http://dbpedia.org/resource/Moon_Bloodgood|http://dbpedia.org/resource/Pamela_Adlon|http://dbpedia.org/resource/Sarah_Hyland|http://dbpedia.org/resource/Steve_Howey_(actor)|http://dbpedia.org/resource/Tim_Griffin_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "Conception is an American film that was released in 2011. The film is produced by Rock It Productions."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Tribeca_Film_Festival"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/TMNT_(film)"}, "Title": {"type": "literal", "value": "TMNT"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Munroe"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "TMNT is a 2007 computer-animated fantasy action film based on the comic book characters the Teenage Mutant Ninja Turtles. Written and directed by Kevin Munroe, the film features the voice talents of Nolan North, James Arnold Taylor, Mikey Kelley, Mitchell Whitfield, Chris Evans, Sarah Michelle Gellar, Kevin Smith, Patrick Stewart, Zhang Ziyi and Laurence Fishburne (who provides narration). It was the last film that Mako Iwamatsu made before his death and was co-produced by the Turtles' co-creator Peter Laird for Warner Bros. Pictures. TMNT was the first Teenage Mutant Ninja Turtles film made with computer-generated imagery (CGI), created by Imagi Animation Studios, as well as the first feature film in the franchise in 14 years. TMNT co-creator Peter Laird stated it takes place in its own universe separate from the previous films, which was supported by its depiction in Turtles Forever. However director Kevin Munroe says the film exists in the same continuity as the other films, which was supported by the memento wall at the end of the film. The film sees the four Turtles (Raphael, Leonardo, Donatello, and Michelangelo) grow apart after their final defeat of the Shredder, when strange things are happening in New York City as ancient creatures threaten the world and the Turtles must reunite to save it. TMNT premiered theatrically on March 23, 2007. It was a commercial success, grossing $95 million worldwide for a budget of $34 million, but received mixed reviews from film critics. Its release coincided with tie-in products including toys, comics and video games."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/De_l'autre_c\u00f4t\u00e9_du_lit"}, "Title": {"type": "literal", "value": "De l'autre c\u00f4t\u00e9 du lit"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pascale_Pouzadoux"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dany_Boon|http://dbpedia.org/resource/Sophie_Marceau"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "De l'autre c\u00f4t\u00e9 du lit (English: Changing Sides) is a 2008 French comedy film directed by Pascale Pouzadoux and starring Sophie Marceau and Dany Boon. Adapted from the novel of the same name by Alix Girod de l'Ain, the film is about a husband and wife who decide to exchange their lives for a year in order to save their marriage. De l'autre c\u00f4t\u00e9 du lit was filmed on location in Paris."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Murder_Party"}, "Title": {"type": "literal", "value": "Murder Party"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jeremy_Saulnier"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Macon_Blair"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "Murder Party is a 2007 American horror comedy film written, directed and shot by Jeremy Saulnier. It was shot in Brooklyn, New York. It was given the Audience Award for Best Feature at the 2007 Slamdance Film Festival and screened within such festivals as Maryland Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Magnolia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Comedy_Garage"}, "Title": {"type": "literal", "value": "The Comedy Garage"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Logan_Leistikow"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Documentary_films_about_comedy_and_comedians"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "50"}, "Description": {"type": "literal", "value": "The Comedy Garage is a documentary by director Logan Leistikow, released in 2011, depicting a day in the life of five rising star comedians who produce a stand up comedy show performed on a self-made stage in their garage in Burbank, California. Shot cin\u00e9ma v\u00e9rit\u00e9 style, the film highlights the unique personalities and techniques of comics Cornell Reid, Matthew Sullivan, Sean Green, Paul Danke, and Casey Feigh. The Comedy Garage had been a staple of the Los Angeles comedy scene before filming began. Leistikow met the comedians while working at Tom Green Live. Once he was invited to a comedy garage show, he got inspired and soon began production on the documentary."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IndieFlix"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Great_World_of_Sound"}, "Title": {"type": "literal", "value": "Great World of Sound"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Craig_Zobel"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kene_Holliday|http://dbpedia.org/resource/Pat_Healy_(actor)|http://dbpedia.org/resource/Rebecca_Mader"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "Great World of Sound is a 2007 comedy film directed by Craig Zobel. Zobel won Breakthrough Director at the Gotham Awards and the film also won the Grand Jury Award at the Atlanta Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Magnolia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Soul_Men"}, "Title": {"type": "literal", "value": "Soul Men"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Malcolm_D._Lee"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Herschman|http://dbpedia.org/resource/Affion_Crockett|http://dbpedia.org/resource/Bernie_Mac|http://dbpedia.org/resource/Isaac_Hayes|http://dbpedia.org/resource/Jennifer_Coolidge|http://dbpedia.org/resource/John_Legend|http://dbpedia.org/resource/Mike_Epps|http://dbpedia.org/resource/Samuel_L._Jackson|http://dbpedia.org/resource/Sean_Hayes_(actor)|http://dbpedia.org/resource/Sharon_Leal|http://dbpedia.org/resource/Vanessa_del_Rio"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Soul Men is an American musical comedy film directed by Malcolm D. Lee, and starring Samuel L. Jackson, Bernie Mac, Sharon Leal and Sean Hayes, released on November 7, 2008. This was Bernie Mac's last film appearance; he died on August 9, 2008. Bernie Mac and Isaac Hayes died in unrelated circumstances on August 9 and 10, 2008, respectively. Director Lee said the film was heavily re-edited to soften the tone of the film, as a tribute to the two actors."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Dimension_Films|http://dbpedia.org/resource/Metro-Goldwyn-Mayer"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Search_Party_(film)"}, "Title": {"type": "literal", "value": "Search Party"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Scot_Armstrong"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Pally|http://dbpedia.org/resource/Alison_Brie|http://dbpedia.org/resource/Krysten_Ritter|http://dbpedia.org/resource/Shannon_Woodward|http://dbpedia.org/resource/T._J._Miller|http://dbpedia.org/resource/Thomas_Middleditch"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Search Party is a 2014 American comedy film directed by Scot Armstrong in his directorial debut, and co-written with Mike Gagerman and Andrew Waller based on a story by Gagerman and Waller. The film stars T. J. Miller, Adam Pally, Thomas Middleditch, Alison Brie, Shannon Woodward, and Krysten Ritter. The film was released in 2014 internationally,  but was not released in the United States until May 13, 2016, by Focus World."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Focus_Features"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Gold_Circle_Films|http://dbpedia.org/resource/Original_Film"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/500_Days_of_Summer"}, "Title": {"type": "literal", "value": "500 Days of Summer"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Marc_Webb"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Joseph_Gordon-Levitt|http://dbpedia.org/resource/Zooey_Deschanel"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "500 Days of Summer (stylized as (500) Days of Summer) is a 2009 American romantic comedy-drama film directed by Marc Webb from a screenplay written by Scott Neustadter and Michael H. Weber, and produced by Mark Waters. The film stars Joseph Gordon-Levitt and Zooey Deschanel, and employs a nonlinear narrative structure, with the story based upon its male protagonist and his memories of a failed relationship. As an independent production, the film was picked up for distribution by Fox Searchlight Pictures and premiered at the 25th Sundance Film Festival. It garnered critical acclaim and became a successful \"sleeper hit\", earning over $60 million in worldwide returns, far exceeding its $7.5 million budget. Many critics lauded the film as one of the best from 2009 and drew comparisons to other acclaimed films such as Annie Hall (1977) and High Fidelity (2000). The film received Best Original Screenplay and Best Screenplay awards at the 14th Satellite Awards and 25th Independent Spirit Awards, respectively, as well as two nominations at the 67th Golden Globe Awards: Best Motion Picture \u2013 Musical or Comedy and Best Actor \u2013 Musical or Comedy (Gordon-Levitt)."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Searchlight_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Familia_rodante"}, "Title": {"type": "literal", "value": "Familia rodante"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pablo_Trapero"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Graciana_Chironi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "Familia rodante (English: Rolling Family) is a 2004 comedy drama film, written and directed by Pablo Trapero, and produced by various countries, including Argentina. The film's executive producers were Hugo Castro Fau and Martina Gusman, and it was produced by Pablo Trapero, Robert Bevan, and Donald Ranvaud. The picture is about a large Argentine family that takes a northern 1000 plus kilometer road trip in an old cramped motor-home to attend a wedding. The family takes part in many adventures along their way to the wedding."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Axiom_Films|http://dbpedia.org/resource/Pol-Ka"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Connasse,_Princesse_des_c\u0153urs"}, "Title": {"type": "literal", "value": "Connasse, Princesse des c\u0153urs"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/No\u00e9mie_Saglio|http://dbpedia.org/resource/\u00c9lo\u00efse_Lang"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Camille_Cottin"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Belgian_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "Connasse, Princesse des c\u0153urs (also titled The Parisian Bitch) is a 2015 French-Belgian comedy film written and directed by \u00c9lo\u00efse Lang and No\u00e9mie Saglio, and starring Camille Cottin."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Gaumont_Film_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Greyness_of_Autumn"}, "Title": {"type": "literal", "value": "The Greyness of Autumn"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Quick"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Quick|http://dbpedia.org/resource/Duncan_Airlie_James"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "14"}, "Description": {"type": "literal", "value": "The Greyness of Autumn is a short comedy film following the life of Danny McGuire, an ostrich living in Glasgow. The film was produced by Quick Off The Mark Productions and marked the directorial debut for Chris Quick."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mammoth_(2006_film)"}, "Title": {"type": "literal", "value": "Mammoth"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tim_Cox"}, "Author": {"type": "literal", "value": "http://dbpedia.org/resource/Brook_Durham|http://dbpedia.org/resource/Sean_Keller|http://dbpedia.org/resource/Tim_Cox"}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Leila_Arcieri|http://dbpedia.org/resource/Summer_Glau|http://dbpedia.org/resource/Tom_Skerritt|http://dbpedia.org/resource/Vincent_Ventresca"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Mammoth is a 2006 action comedy horror directed by Tim Cox and produced by Plinyminor in association with the Sci Fi Channel starring Vincent Ventresca, Summer Glau, Leila Arcieri and Tom Skerritt. The film was nominated for a 2006 Emmy Award for Outstanding Special Visual Effects."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Alliance_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/12:08_East_of_Bucharest"}, "Title": {"type": "literal", "value": "12:08 East of Bucharest|A fost sau n-a fost?"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Corneliu_Porumboiu"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ion_Sapdaru|http://dbpedia.org/resource/Mircea_Andreescu|http://dbpedia.org/resource/Teodor_Corban"}, "Published": {"type": "literal", "value": "2006-05-24"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "12:08 East of Bucharest (Romanian: A fost sau n-a fost?) is a 2006 Romanian film directed by Corneliu Porumboiu, released in 2006 and winner of the Cam\u00e9ra d'Or Prize (for best first film) at the Cannes Film Festival. It was also released in the United States under the abridged titles East of Bucharest and 12:08 Bucharest. The film is set in the city of Vaslui, and centers on a group of characters who revisit the Romanian Revolution of 1989 which brought an end to the communist regime. The full English title refers to the setting of the film and the time of day at which Romanian dictator Nicolae Ceau\u015fescu fled following the revolution, 12:08 pm on 22 December 1989. The original Romanian title roughly translates to \"Was There or Wasn't There?\", referring to the film's central issue: did Vaslui have any part in the 1989 revolution? The answer depends on whether the city registered any protest before the moment of Ceau\u015fescu's flight."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Tartan_USA"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Young_Adult_(film)"}, "Title": {"type": "literal", "value": "Young Adult"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jason_Reitman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Charlize_Theron|http://dbpedia.org/resource/Elizabeth_Reaser|http://dbpedia.org/resource/Patrick_Wilson_(American_actor)|http://dbpedia.org/resource/Patton_Oswalt"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Young Adult is a 2011 American comedy-drama film directed by Jason Reitman, from a screenplay written by Diablo Cody, and starring Charlize Theron. Reitman and Cody worked together previously on Juno (2007). Young Adult had a limited release on December 9, 2011, and a wide release on December 16 to generally positive reviews."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Denver_and_Delilah_Productions|http://dbpedia.org/resource/Mandate_Pictures|http://dbpedia.org/resource/Mr._Mudd"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mystery_Team"}, "Title": {"type": "literal", "value": "Mystery Team"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dan_Eckman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aubrey_Plaza|http://dbpedia.org/resource/DC_Pierson|http://dbpedia.org/resource/Dominic_Dierkes|http://dbpedia.org/resource/Donald_Glover"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Comedy_mystery_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Mystery Team is a 2009 film created by the comedy group Derrick Comedy. The story was written by Donald Glover, DC Pierson, Dominic Dierkes, Dan Eckman, and Meggie McFadden. It stars Donald Glover, DC Pierson, and Dominic Dierkes. It was directed by Eckman and produced by McFadden."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Roadside_Attractions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Celal_ile_Ceren"}, "Title": {"type": "literal", "value": "Celal ile Ceren"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Togan_G\u00f6kbakar"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ezgi_Mola|http://dbpedia.org/resource/\u015eahan_G\u00f6kbakar"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Turkish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "Celal ile Ceren is a 2013 Turkish romantic comedy film directed by Togan G\u00f6kbakar and starring \u015eahan G\u00f6kbakar and Ezgi Mola. The film has been released nationwide on 18 January 2013. Celal ile Ceren is accused of sexism by Turkish film critics and recognized to be one of the worst films ever made. It is considered as a mockbuster of high-grossing Turkish comedy Recep \u0130vedik."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Tiglon_(distributor)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Alvin_and_the_Chipmunks_(film)"}, "Title": {"type": "literal", "value": "Landon Hayes and Friends"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tim_Hill_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cameron_Richardson|http://dbpedia.org/resource/David_Cross|http://dbpedia.org/resource/Jason_Lee_(actor)|http://dbpedia.org/resource/Jesse_McCartney|http://dbpedia.org/resource/Justin_Long|http://dbpedia.org/resource/Matthew_Gray_Gubler"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_fantasy-comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Landon Hayes and Friends is a 2007 American live-action musical comedy film directed by Tim Hill. Based on the characters of the same name created by Ross Bagdasarian, Sr., the film stars Jason Lee, David Cross, and Cameron Richardson with the voices of Justin Long, Matthew Gray Gubler and Jesse McCartney. It was distributed by 20th Century Fox and produced by Fox 2000 Pictures, Regency Enterprises and Bagdasarian Company. The film received largely negative reviews, but was a major financial success; it made $217 million in North America and $361 million at the box office worldwide on a budget of $60 million and was the seventh-best-selling DVD of 2008, earning over $101 million. The first film in the film series, Alvin and the Chipmunks was followed by three sequels: Alvin and the Chipmunks: The Squeakquel, released on December 23, 2009, Alvin and the Chipmunks: Chipwrecked, released on December 16, 2011 and Alvin and the Chipmunks: The Road Chip, released on December 18, 2015."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Big_Helium_Dog"}, "Title": {"type": "literal", "value": "Big Helium Dog"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Brian_Lynch_(writer)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Matt_Kawczynski|http://dbpedia.org/resource/Michael_Linstroth"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Big Helium Dog is a 1999 comedy film. It is produced by Kevin Smith's View Askew production company and also features the Broken Lizard comedy troupe in starring (Kevin Heffernan) and supporting (Jay Chandrasekhar, Steve Lemme, and Erik Stolhanske) roles. The film has long been a favorite amongst fans who attended screenings at festivals such as the Smith sponsored \"Vulgarthon\" which led to an anticipated DVD release."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Can't_Hardly_Wait"}, "Title": {"type": "literal", "value": "Can't Hardly Wait"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Deborah_Kaplan|http://dbpedia.org/resource/Harry_Elfont"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:1990s_romantic_comedy_films|http://dbpedia.org/resource/Category:1990s_teen_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Can't Hardly Wait is a 1998 American teen comedy film written and directed by Deborah Kaplan and Harry Elfont. It stars an ensemble cast including Jennifer Love Hewitt, Ethan Embry, Charlie Korsmo, Lauren Ambrose, Peter Facinelli, and Seth Green, and is notable for a number of \"before-they-were-famous\" appearances by teen stars."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Free_Agents"}, "Title": {"type": "literal", "value": "Free Agents"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Griffiths_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anthony_Head|http://dbpedia.org/resource/Sharon_Horgan|http://dbpedia.org/resource/Stephen_Mangan"}, "Published": {"type": "literal", "value": "2009-02-13"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Comedy_Showcase"}, "Genre": {"type": "literal", "value": "http://dbpedia.org/resource/Comedy"}, "Duration": {"type": "literal", "value": "22"}, "Description": {"type": "literal", "value": "Free Agents is a romantic black comedy starring Stephen Mangan, Sharon Horgan and Anthony Head. Originally a pilot for Channel 4 in November 2007, the series began on 13 February 2009. It spawned a short lived US remake, which was cancelled after just 4 episodes aired, although 4 more were later released on Hulu."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/That_Day_After_Everyday"}, "Title": {"type": "literal", "value": "That Day After Everyday..."}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Anurag_Kashyap"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Geetanjali_Thapa|http://dbpedia.org/resource/Radhika_Apte|http://dbpedia.org/resource/Sandhya_Mridul"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "22"}, "Description": {"type": "literal", "value": "That Day After Everyday is a Hindi short film directed by Anurag Kashyap, written by Nitin Bhardwaj, and produced by Sankalp Acharekar & Omer Haidar. Starring Sandhya Mridul, Radhika Apte, Geetanjali Thapa and Aranya kaur - the film takes the audience on an emotional ride ending at an action filled crescendo."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Severance_(film)"}, "Title": {"type": "literal", "value": "Severance"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Christopher_Smith_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Nyman|http://dbpedia.org/resource/Claudie_Blakley|http://dbpedia.org/resource/Danny_Dyer|http://dbpedia.org/resource/Laura_Harris|http://dbpedia.org/resource/Tim_McInnerny|http://dbpedia.org/resource/Toby_Stephens"}, "Published": {"type": "literal", "value": "2006-08-25"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:British_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Severance is a 2006 British-German comedy horror film co-written and directed by Christopher Smith. Co-written with James Moran, it stars Danny Dyer and Laura Harris. The film tells a story of group of co-workers who go to a remote mountain forest in Hungary, where they become victims of murderous attacks. Severance received mostly positive reviews. In 2009, media interest in the film was revived following the alleged copycat murder of a UK teenager."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Magnolia_Pictures|http://dbpedia.org/resource/Path\u00e9"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Brother_Nature_(film)"}, "Title": {"type": "literal", "value": "Brother Nature"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Matt_Villines"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bill_Pullman|http://dbpedia.org/resource/Bobby_Moynihan|http://dbpedia.org/resource/Gillian_Jacobs|http://dbpedia.org/resource/Rita_Wilson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Brother Nature is a 2016 American comedy film directed by Osmany Rodriguez and Matt Villines, from a screenplay by Mikey Day, Cameron Fay, and Taran Killam. It stars Killam, Bobby Moynihan, Gillian Jacobs, Rita Wilson and Bill Pullman. The film was released in a limited release and through video on demand on September 9, 2016, by Insurge Pictures and Samuel Goldwyn Films. The film was originally titled Brother in Laws."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Insurge_Pictures|http://dbpedia.org/resource/Samuel_Goldwyn_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/I_Give_It_a_Year"}, "Title": {"type": "literal", "value": "I Give It a Year"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dan_Mazer"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anna_Faris|http://dbpedia.org/resource/Jason_Flemyng|http://dbpedia.org/resource/Minnie_Driver|http://dbpedia.org/resource/Olivia_Colman|http://dbpedia.org/resource/Rafe_Spall|http://dbpedia.org/resource/Rose_Byrne|http://dbpedia.org/resource/Simon_Baker|http://dbpedia.org/resource/Stephen_Merchant"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:British_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "I Give It a Year is a 2013 British comedy film, written and directed by Dan Mazer and starring Rose Byrne, Rafe Spall, Anna Faris and Simon Baker. The film was based and filmed in London and was released on 8 February 2013. I Give It a Year was Mazer's directorial debut. He was previously been best known for co-writing the Sacha Baron Cohen films Borat and Br\u00fcno."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Magnolia_Pictures|http://dbpedia.org/resource/StudioCanal"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tijuana_Makes_Me_Happy"}, "Title": {"type": "literal", "value": "Tijuana Makes Me Happy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dylan_Verrechia"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "Tijuana Makes Me Happy is a 2007 film made in Tijuana, Mexico. It was directed by Dylan Verrechia, co-written by James Lefkowitz, with original music by Nortec Collective, and titled by writer Rafael Saavedra. Variety described it as \"slight but likable\". The movie has not yet had a general release , but has been screened at several movie festivals  and won the Grand Jury Prize for Best Narrative Feature at the 2007 Slamdance Film Festival, and is one of the four recipients of the 2007 SAFILM Indie Max Award ."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/House_of_Fury"}, "Title": {"type": "literal", "value": "House of Fury"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Stephen_Fung|http://dbpedia.org/resource/Yuen_Woo-ping"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anthony_Wong_(Hong_Kong_actor)|http://dbpedia.org/resource/Charlene_Choi|http://dbpedia.org/resource/Daniel_Wu|http://dbpedia.org/resource/Gillian_Chung|http://dbpedia.org/resource/Jon_Foo|http://dbpedia.org/resource/Michael_Wong_(actor)|http://dbpedia.org/resource/Philip_Ng|http://dbpedia.org/resource/Stephen_Fung"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Hong_Kong_action_comedy_films|http://dbpedia.org/resource/Category:Martial_arts_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "House of Fury (Chinese: \u7cbe\u6b66\u5bb6\u5ead) is a 2005 Hong Kong martial arts comedy film written and directed by Stephen Fung, who also co-stars in the film, and executive produced by Jackie Chan. The film stars Anthony Wong, Michael Wong and Gillian Chung. The film was released in the Hong Kong on 24 March 2005. House of Fury features a collaboration between Anthony Wong and Michael Wong, reuniting them for the first time since 1998's Beast Cops."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Emperor_Entertainment_Group|http://dbpedia.org/resource/JCE_Movies_Limited"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/A_Lost_Man"}, "Title": {"type": "literal", "value": "Un homme perdu - \u0631\u062c\u0644 \u0636\u0627\u0626\u0639"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Danielle_Arbid"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alexander_Siddig|http://dbpedia.org/resource/Carol_Abboud|http://dbpedia.org/resource/Melvil_Poupaud|http://dbpedia.org/resource/Sarah_Warde|http://dbpedia.org/resource/Yasmine_Lafitte"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "A Lost Man (French : Un homme perdu)(Arabic: \u0631\u062c\u0644 \u0636\u0627\u0626\u0639 rajolon da'e'\u200e\u200e) is a 2007 Lebanese film by the Lebanese director Danielle Arbid. The film premiered on 18 March during the 2007 Cannes Film Festival, in the Directors' Fortnight section. It is possibly the most sexually graphic film ever made by an Arab director. The film was inspired by the life of the French photographer Antoine D'Agata."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Spies_(film)"}, "Title": {"type": "literal", "value": "The Spies"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Woo_Min-ho"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Byun_Hee-bong|http://dbpedia.org/resource/Jung_Gyu-woon|http://dbpedia.org/resource/Kim_Myung-min|http://dbpedia.org/resource/Yoo_Hae-jin|http://dbpedia.org/resource/Yum_Jung-ah"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Action_comedy_films|http://dbpedia.org/resource/Category:South_Korean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "The Spies (Hangul: \uac04\ucca9; RR: Gancheop), also known as The Spy, is a 2012 South Korean action comedy film, starring Kim Myung-min, Yum Jung-ah, Byun Hee-bong, Jung Gyu-woon, Yoo Hae-jin and directed by Woo Min-ho. It is about North Korean undercover spies living mundane lives in South Korea. The film was released on September 20, 2012, and attracted 1,310,895 admissions nationwide."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lotte_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Emojimovie:_Express_Yourself"}, "Title": {"type": "literal", "value": "Emojimovie: Express Yourself"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tony_Leondis"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ilana_Glazer|http://dbpedia.org/resource/James_Corden|http://dbpedia.org/resource/T._J._Miller"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Emojimovie: Express Yourself is an upcoming American computer-animated adventure comedy film directed by Tony Leondis and written by Eric Siegel and Leondis. Produced by Sony Pictures Animation, the film will be released on August 11, 2017 by Columbia Pictures. The film, along with Smurfs: The Lost Village and The Star, will make Sony Pictures Animation the second animation studio to release three feature films in the same year."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Chai_Lai"}, "Title": {"type": "literal", "value": "Chai Lai (Dangerous Flowers)"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Poj_Arnon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bongkoj_Khongmalai|http://dbpedia.org/resource/Bunyawan_Pongsuwan|http://dbpedia.org/resource/Jintara_Poonlarp|http://dbpedia.org/resource/Kessarin_Ektawatkul|http://dbpedia.org/resource/Supaksorn_Chaimongkol"}, "Published": {"type": "literal", "value": "2006-01-26"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Martial_arts_comedy_films|http://dbpedia.org/resource/Category:Thai_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Chai Lai (Thai: \u0e44\u0e09\u0e44\u0e25, English title: Dangerous Flowers and also known as Chai Lai's Angels) is a 2006 Thai action film about five female top-secret crimefighters, each with the codename of a flower, Lotus, Hibiscus, Rose, Spadix and Crown of Thorns. The premise is modelled after Charlie's Angels."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sahamongkol_Film_International"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/WolfCop"}, "Title": {"type": "literal", "value": "WolfCop"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lowell_Dean"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amy_Matysio|http://dbpedia.org/resource/Jesse_Moss_(actor)|http://dbpedia.org/resource/Jonathan_Cherry|http://dbpedia.org/resource/Sarah_Lind"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:Canadian_comedy_films|http://dbpedia.org/resource/Category:Police_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "WolfCop is a 2014 Canadian horror comedy film written and directed by Lowell Dean. The film was released to Cineplex theatres nationwide on 6 June 2014. It is the first film chosen for production from the CineCoup Film Accelerator. It stars Jesse Moss, Amy Matysio, Jonathan Cherry, Sarah Lind, Aidan Devine, Corrine Conley and Leo Fafard. The plot revolves around an alcoholic small town cop who transforms into a werewolf after being cursed. However, he still possesses his human intelligence in wolf form and continues his work as a police officer even in wolf form. WolfCop was released to UK DVD and Blu-ray on the 13 October 2014."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Goa_(2010_film)"}, "Title": {"type": "literal", "value": "Goa"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Venkat_Prabhu"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aravind_Akash|http://dbpedia.org/resource/Jai_(actor)|http://dbpedia.org/resource/Melanie_Marie_Jobstreibitzer|http://dbpedia.org/resource/Piaa_Bajpai|http://dbpedia.org/resource/Premji_Amaran|http://dbpedia.org/resource/Sampath_Raj|http://dbpedia.org/resource/Sneha_(actress)|http://dbpedia.org/resource/Vaibhav_Reddy"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "164"}, "Description": {"type": "literal", "value": "Goa is a 2010 Tamil adult comedy film written and directed by Venkat Prabhu, who with the project, directed his third film following two previous successes. Starring his \"regular cast\" consisting of Jai, Vaibhav and Premji Amaran in the lead roles along with Sneha, Piaa Bajpai and the debutant Australian model Melanie Marie in other roles, the film is the first production of Soundarya Rajinikanth's Ocher Picture Productions. Actors Silambarasan Rajendar, Nayantara and Prasanna make guest appearances in the film, which features music composed by Yuvan Shankar Raja, whilst cinematography is handled by Sakthi Saravanan and the film is edited by K. L. Praveen and N. B. Srikanth. The film follows the journey of three young men, Vinayagam, Ramarajan and Saamikannu, who flee from their remote, conservative village to escape their overly strict families and travel to the international tourist-destination Goa, after encountering a friend who had fallen in love with a Caucasian girl whilst on holiday there. The film explores their time in Goa, the people they meet ranging from gay hoteliers to suave casino owners, and dwells on the relationships they encounter in the region. The film, which began pre-production work in August 2008, became highly anticipated before release due to the successes of the director's prior two films. Filming began in April 2009 and took place in various locations: in the title location of Goa as well as in Pannapuram, Tamil Nadu and Langkawi, Malaysia with the latter being used due to the monsoonal season of Goa, forcing the team to relocate. Before release, the film was given an adult rating by the Central Board of Film Certification, despite much contention from the team with the film also avoiding a court case in regard to the producer's loan. The film released on 29 January 2010 to mostly mixed reviews. The film was remade in Kannada language using the same title and released in 2015."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Soundarya_Rajinikanth|http://dbpedia.org/resource/Warner_Bros._Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Toni_Erdmann"}, "Title": {"type": "literal", "value": "Toni Erdmann"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Maren_Ade"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Lucy_Russell_(actress)|http://dbpedia.org/resource/Peter_Simonischek|http://dbpedia.org/resource/Sandra_H\u00fcller|http://dbpedia.org/resource/Vlad_Ivanov"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Austrian_comedy_films|http://dbpedia.org/resource/Category:German_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "162"}, "Description": {"type": "literal", "value": "Toni Erdmann is a 2016 German-Austrian comedy drama film directed, written and co-produced by Maren Ade. It stars Peter Simonischek, Sandra H\u00fcller , Michael Wittenborn, Thomas Loibl, Trystan P\u00fctter, Hadewych Minis, Lucy Russell, Ingrid Bisu, Vlad Ivanov and Victoria Cocias. The film was selected to compete for the Palme d'Or at the 2016 Cannes Film Festival. It was selected as the German submission for the Best Foreign Language Film at the 89th Academy Awards."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Outside_Bet"}, "Title": {"type": "literal", "value": "Outside Bet"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sacha_Bennett"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Deacon|http://dbpedia.org/resource/Bob_Hoskins|http://dbpedia.org/resource/Jenny_Agutter|http://dbpedia.org/resource/Philip_Davis_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Outside Bet, also known as Weighed In: The Story of the Mumper, is a British comedy film directed by Sacha Bennett and starring Bob Hoskins, Jenny Agutter, Philip Davis and Adam Deacon. The film was released on 27 April 2012."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/We_Are_Brothers"}, "Title": {"type": "literal", "value": "We Are Brothers"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jang_Jin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cho_Jin-woong|http://dbpedia.org/resource/Kim_Sung-kyun"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:South_Korean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "We Are Brothers (Hangul: \uc6b0\ub9ac\ub294 \ud615\uc81c\uc785\ub2c8\ub2e4; RR: Urineun Hyeongjeibnida) is a 2014 South Korean film directed by Jang Jin."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Showbox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mississippi_Grind"}, "Title": {"type": "literal", "value": "Mississippi Grind"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Anna_Boden|http://dbpedia.org/resource/Ryan_Fleck"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alfre_Woodard|http://dbpedia.org/resource/Analeigh_Tipton|http://dbpedia.org/resource/Ben_Mendelsohn|http://dbpedia.org/resource/Ryan_Reynolds|http://dbpedia.org/resource/Sienna_Miller"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "Mississippi Grind is a 2015 American drama film directed and written by Anna Boden and Ryan Fleck. It stars Ryan Reynolds, Ben Mendelsohn, Sienna Miller, Analeigh Tipton, Robin Weigert, and Alfre Woodard. The film was released on September 25, 2015 by A24."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/A24_(company)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Good_Neighbors_(film)"}, "Title": {"type": "literal", "value": "Good Neighbours"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jacob_Tierney"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Emily_Hampshire|http://dbpedia.org/resource/Jay_Baruchel|http://dbpedia.org/resource/Scott_Speedman|http://dbpedia.org/resource/Xavier_Dolan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Black_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Good Neighbours is a 2010 Canadian black comedy-thriller film which was written and directed by Jacob Tierney. It is based on the book by Chrystine Brouillet."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Alliance_Films|http://dbpedia.org/resource/Myriad_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Onion_Movie"}, "Title": {"type": "literal", "value": "The Onion Movie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tom_Kuntz"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Larissa_Laskin|http://dbpedia.org/resource/Len_Cariou|http://dbpedia.org/resource/Scott_Klace|http://dbpedia.org/resource/Steven_Seagal"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "The Onion Movie is a comedy film written by The Onion writers Robert D. Siegel and Todd Hanson along with the Chicago-based writing staff of the paper. It was filmed in 2003 and released on June 3, 2008 direct-to-video."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Searchlight_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Perks_of_Being_a_Wallflower_(film)"}, "Title": {"type": "literal", "value": "The Perks of Being a Wallflower"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Stephen_Chbosky"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "The Perks of Being a Wallflower is a 2012 American coming-of-age, comedy-drama film. An adaptation of the 1999 epistolary novel of the same name, it was written and directed by the novel's author, Stephen Chbosky. Filmed in Pittsburgh, Pennsylvania, the film was released on September 21, 2012, to positive critical response and commercial success, earning $33.4 million to a budget of $13 million. The film stars Logan Lerman, Emma Watson and Ezra Miller. Two or three years after the release of film, Chbosky began to speak more openly concerning the mental health care aspects of the film which were of significance to him in the original writing of the book and the production of the film as he conceived it. This is one of the three films from John Malkovich, Lianne Halfon and Russell Smith's Mr. Mudd Productions that feature struggling teenagers; the other two are Ghost World and Juno."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Summit_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hello,_My_Name_Is_Doris"}, "Title": {"type": "literal", "value": "Hello, My Name Is Doris"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Showalter"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Beth_Behrs|http://dbpedia.org/resource/Elizabeth_Reaser|http://dbpedia.org/resource/Max_Greenfield|http://dbpedia.org/resource/Natasha_Lyonne|http://dbpedia.org/resource/Sally_Field|http://dbpedia.org/resource/Stephen_Root|http://dbpedia.org/resource/Tyne_Daly|http://dbpedia.org/resource/Wendi_McLendon-Covey"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Hello, My Name Is Doris is a 2015 American romantic comedy-drama film directed by Michael Showalter from a screenplay by Showalter and Laura Terruso, about a woman in her 60s who tries to act on her attraction to a younger co-worker. It stars Sally Field in the title role, alongside Max Greenfield, Beth Behrs, Wendi McLendon-Covey, Stephen Root, Elizabeth Reaser, Natasha Lyonne and Tyne Daly. The film had its world premiere at the SXSW Film Festival on March 14, 2015, and was theatrically released on March 11, 2016, by Roadside Attractions and Stage 6 Films."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Roadside_Attractions|http://dbpedia.org/resource/Stage_6_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hexed"}, "Title": {"type": "literal", "value": "Hexed"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alan_Spencer"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adrienne_Shelly|http://dbpedia.org/resource/Arye_Gross|http://dbpedia.org/resource/Claudia_Christian|http://dbpedia.org/resource/Norman_Fell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_comedy_thriller_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Hexed is a 1993 comedy film, starring Arye Gross, Claudia Christian, Adrienne Shelly, and R. Lee Ermey, and written and directed by Alan Spencer, best known as the creator of the satirical TV series Sledge Hammer! The dark humor centers on a nebbish clerk who is seduced by a supermodel, unaware that she's a psychotic murderess. The film was shot in Dallas and Fort Worth.Director and writer Alan Spencer expressed disappointment he was not given full creative control and was forced to film the movie on a tight schedule."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Nataraja_Service"}, "Title": {"type": "literal", "value": "Nataraja Service"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pavan_Wadeyar"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Mayuri_Kyatari|http://dbpedia.org/resource/Sharan_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_films|http://dbpedia.org/resource/Category:Romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Nataraja Service (Kannada: \u0ca8\u0c9f\u0cb0\u0cbe\u0c9c \u0cb8\u0cb0\u0ccd\u0cb5\u0cbf\u0cb8\u0ccd) is an upcoming Indian Kannada language romantic comedy film directed by Pavan Wadeyar, produced by N.S. Rajkumar and presented by Puneeth Rajkumar. It stars Sharan and Mayuri Kyatari in the lead roles. The music of the film is composed by Anoop Seelin whilst the cinematography is by Arul K. Somasundaram. Principal photography for the film began in October 2015 and the shooting was held at Bangalore,mysore, davanagere, mandya, Dandeli and Sirsi locations. Reportedly, the shooting completed in early June 2016."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Defendor"}, "Title": {"type": "literal", "value": "Defendor"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Peter_Stebbings"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Elias_Koteas|http://dbpedia.org/resource/Kat_Dennings|http://dbpedia.org/resource/Michael_Kelly_(American_actor)|http://dbpedia.org/resource/Sandra_Oh|http://dbpedia.org/resource/Woody_Harrelson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:Canadian_comedy-drama_films|http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Defendor is a 2009 Canadian-American superhero comedy-drama film written and directed by Peter Stebbings, and starring Woody Harrelson, Kat Dennings, Elias Koteas and Sandra Oh. The story tells of a regular man who adopts the persona of a real-life superhero named Defendor on a quest to find his arch enemy, Captain Industry. Defendor, Stebbings' feature film debut, was written in 2005 and filmed in January 2009 in Toronto and Hamilton, Ontario, and had its North American theatrical release on February 19, 2010. It has also been released to DVD on April 13, 2010."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Alliance_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Cross_My_Heart_(1987_film)"}, "Title": {"type": "literal", "value": "Cross My Heart"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Armyan_Bernstein"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Annette_O'Toole|http://dbpedia.org/resource/Martin_Short"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1980s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Cross My Heart is an American romantic comedy that was released in the United States on November 13, 1987. It stars Annette O'Toole and Martin Short."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bullet_Basya"}, "Title": {"type": "literal", "value": "Bullet Basya"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jayatheertha"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Haripriya|http://dbpedia.org/resource/Sharan_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "139"}, "Description": {"type": "literal", "value": "Bullet Basya is a 2015 Indian Kannada comedy film directed by Jayatheertha, and stars Sharan and Haripriya in the lead roles. The supporting cast features Rangayana Raghu, Sadhu Kokila and Yathiraj Jaggesh. The title of the film was taken from Sudheer's character in the 1989 Kannada film C.B.I. Shankar. The makers however confirmed that there was connection between the two."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Big_Gay_Musical"}, "Title": {"type": "literal", "value": "The Big Gay Musical"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Casper_Andreas"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Casper_Andreas|http://dbpedia.org/resource/Lena_Hall"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Big Gay Musical is a 2009 gay-themed musical-comedy film written by Fred M. Caruso and co-directed by Caruso and Casper Andreas. The film follows a brief period in the lives of two young actors, one who is openly gay, the other closeted to his parents. The openly gay actor struggles with whether he should be sexually promiscuous or seek a life partner, while the closeted one wonders if he should come out to his conservative, religious parents. Throughout the film, there are a series of musical numbers with tap dancing angels, a re-telling of the Genesis story, protests from televangelists, a deprogramming camp that tries to turn gay kids straight. By the end of the film, the characters realize that life would be better if they just accepted themselves the way they are."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Finding_North"}, "Title": {"type": "literal", "value": "Finding North"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tanya_Wexler"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/John_Benjamin_Hickey|http://dbpedia.org/resource/Wendy_Makkena"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Finding North is a 1998 gay-themed independent comedy-drama. Written by Kim Powers and directed by Tanya Wexler, the film stars Wendy Makkena and John Benjamin Hickey."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hellbenders_(film)"}, "Title": {"type": "literal", "value": "Hellbenders"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/J._T._Petty"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andre_Royo|http://dbpedia.org/resource/Clancy_Brown|http://dbpedia.org/resource/Clifton_Collins_Jr.|http://dbpedia.org/resource/Macon_Blair"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Hellbenders is a 2012 American comedy film written and directed by J. T. Petty. The film stars Clifton Collins Jr., Clancy Brown, Andre Royo, Robyn Rikoon, Macon Blair and Stephen Gevedon. The film was released on October 18, 2013, by The Film Arcade."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/The_Film_Arcade"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Next_to_Me_(film)"}, "Title": {"type": "literal", "value": "Next to Me"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Stevan_Filipovi\u0107"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hristina_Popovi\u0107|http://dbpedia.org/resource/Mirjana_Karanovi\u0107"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Next to Me (Serbian: Pored mene) is a 2015 Serbian comedy film directed by Stevan Filipovi\u0107."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Do_I_Have_to_Take_Care_of_Everything%3F"}, "Title": {"type": "literal", "value": "Do I Have to Take Care of Everything?"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Selma_Vilhunen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Finnish_comedy"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Do I Have to Take Care of Everything? (Finnish: Pit\u00e4\u00e4k\u00f6 mun kaikki hoitaa?) is a 2012 Finnish short film by Selma Vilhunen. It was nominated for the Best Live Action Short Film at the 86th Academy Awards. The film is a comedy about a busy morning in a family and a mother who is trying to take care of everything by herself. Do I Have to Take Care of Everything? is the second Finnish film as an Academy Award nominee. The first was The Man Without a Past by Aki Kaurism\u00e4ki in 2002. The film had one of only two U.S. screenings at the Chicago Comedy Film Festival in 2012."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Herbie:_Fully_Loaded"}, "Title": {"type": "literal", "value": "Herbie: Fully Loaded"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Angela_Robinson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Breckin_Meyer|http://dbpedia.org/resource/Justin_Long|http://dbpedia.org/resource/Lindsay_Lohan|http://dbpedia.org/resource/Matt_Dillon|http://dbpedia.org/resource/Michael_Keaton"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Herbie: Fully Loaded is a 2005 American sport-comedy film directed by Angela Robinson and produced by Robert Simonds for Walt Disney Pictures. It stars Lindsay Lohan as the youngest member of an automobile-racing family, Michael Keaton as her father, Matt Dillon as a competing racer, Breckin Meyer as her brother, and Justin Long as her best friend and mechanic. The film features cameos by many NASCAR drivers, including Jeff Gordon, Jimmie Johnson, Tony Stewart, Dale Earnhardt Jr., and Mark Martin. It is the first theatrical Herbie film since Herbie Goes Bananas in 1980, and grossed over $144 million worldwide."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tales_of_Halloween"}, "Title": {"type": "literal", "value": "Tales of Halloween"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Gierasch_and_Jace_Anderson|http://dbpedia.org/resource/Andrew_Kasch|http://dbpedia.org/resource/Axelle_Carolyn|http://dbpedia.org/resource/Darren_Lynn_Bousman|http://dbpedia.org/resource/John_Skipp|http://dbpedia.org/resource/Lucky_McKee|http://dbpedia.org/resource/Neil_Marshall|http://dbpedia.org/resource/Paul_Solet"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Barbara_Crampton|http://dbpedia.org/resource/Booboo_Stewart|http://dbpedia.org/resource/Caroline_Williams|http://dbpedia.org/resource/Grace_Phipps|http://dbpedia.org/resource/Greg_Grunberg|http://dbpedia.org/resource/Lin_Shaye"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Tales of Halloween is a 2015 American horror comedy film anthology consisting of ten interlocking segments. The film had its world premiere on July 24, 2015, at the Fantasia International Film Festival. It was released in a limited release and through video on demand on October 16, 2015, by Epic Pictures."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dead_Leaves"}, "Title": {"type": "literal", "value": "Dead Leaves"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Hiroyuki_Imaishi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kappei_Yamaguchi|http://dbpedia.org/resource/Takako_Honda|http://dbpedia.org/resource/Y\u016bko_Mizutani"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Action_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films|http://dbpedia.org/resource/Category:Comedy_anime_and_manga|http://dbpedia.org/resource/Category:Comedy_science_fiction_films|http://dbpedia.org/resource/Category:Japanese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "52"}, "Description": {"type": "literal", "value": "Dead Leaves (\u30c7\u30c3\u30c9 \u30ea\u30fc\u30d6\u30b9 Deddo R\u012bbusu) is a 2004 Japanese anime science fiction film produced by animation studio Production I.G. It was distributed in Japan by Shochiku, in North America, Canada and the U.K. by Manga Entertainment, and in Australia and New Zealand by Madman Entertainment. It is directed by Hiroyuki Imaishi. It is notable for its fast pace and energetic visual style."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Shochiku"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Fan_Chan"}, "Title": {"type": "literal", "value": "Fan Chan (My Girl)"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Anusorn_Trisirikasem|http://dbpedia.org/resource/Komgrit_Triwimol|http://dbpedia.org/resource/Nithiwat_Tharathorn|http://dbpedia.org/resource/Songyos_Sugmakanan|http://dbpedia.org/resource/Vitcha_Gojiew|http://dbpedia.org/resource/Witthaya_Thongyooyong"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Charlie_Trairat|http://dbpedia.org/resource/Focus_Jirakul"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Fan Chan (Thai: \u0e41\u0e1f\u0e19\u0e09\u0e31\u0e19, English: My Girl) is a 2003 Thai romantic film offering a nostalgic look back at the childhood friendship of a boy and girl growing up in a small town in Thailand in the 1980s. It was the debut film by six young screenwriter-directors, Vitcha Gojiew, Songyos Sugmakanan, Nithiwat Tharathorn, Witthaya Thongyooyong, Anusorn Trisirikasem and Komgrit Triwimol. With a soundtrack that featured Thai pop music of the era, Fan Chan was the top domestic film at the Thailand box office in 2003, earning 140 million baht."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/GMM_Grammy"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Turn_Me_On,_Dammit!"}, "Title": {"type": "literal", "value": "Turn Me On, Dammit!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jannicke_Systad_Jacobsen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Arthur_Berning|http://dbpedia.org/resource/Beate_St\u00f8fring|http://dbpedia.org/resource/Helene_Bergsholm|http://dbpedia.org/resource/Julia_Schacht|http://dbpedia.org/resource/Malin_Bj\u00f8rhovde"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Norwegian_comedy_films|http://dbpedia.org/resource/Category:Sex_comedy_films|http://dbpedia.org/resource/Category:Teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "76"}, "Description": {"type": "literal", "value": "Turn Me On, Dammit! (Norwegian: F\u00e5 meg p\u00e5, for faen!) or Turn Me On, Goddammit! is a Norwegian coming-of-age comedy film premiered in 2011. It is based on Olaug Nilssen\u2019s novel of the same name. Set in Skoddeheimen, a fictional small town in western Norway, the film is about Alma (Helene Bergsholm), a 15 year old girl and her sexual awakening."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dance_Flick"}, "Title": {"type": "literal", "value": "Dance Flick"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Damien_Dante_Wayans"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Damon_Wayans,_Jr.|http://dbpedia.org/resource/Essence_Atkins|http://dbpedia.org/resource/Marlon_Wayans|http://dbpedia.org/resource/Shawn_Wayans|http://dbpedia.org/resource/Shoshana_Bush"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "83|88"}, "Description": {"type": "literal", "value": "Dance Flick is a 2009 American parody comedy movie directed by Damien Dante Wayans, written by many of the Wayans Family, and starring Shoshana Bush and Damon Wayans, Jr.. The film is a spoof of the popular dance film genre. It was set for release in North America on February 6, 2009. It was moved, however, to August 2009 and then to May 22, 2009."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Oru_Kal_Oru_Kannadi"}, "Title": {"type": "literal", "value": "Oru Kal Oru Kannadi"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/M._Rajesh"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hansika_Motwani|http://dbpedia.org/resource/Jangiri_Madhumitha|http://dbpedia.org/resource/Santhanam_(actor)|http://dbpedia.org/resource/Udhayanidhi_Stalin"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "166"}, "Description": {"type": "literal", "value": "Oru Kal Oru Kannadi (English: A Stone, A Mirror) abbreviated as OKOK is an Tamil romantic comedy film written and directed by M. Rajesh. It stars producer Udhayanidhi Stalin, in his acting debut, Hansika Motwani and Santhanam, whilst featuring Harris Jayaraj's music and Balasubramaniem's cinematography. The film was named after a song from the film Siva Manasula Sakthi (2009). Releasing on 13 April 2012, it opened to highly positive reviews and became a blockbuster. It was eventually released in Telugu as OK OK on 31 August 2012."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Red_Giant_Movies"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Art_of_Crying"}, "Title": {"type": "literal", "value": "The Art of Crying"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Peter_Sch\u00f8nau_Fog"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jesper_Asholt"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "The Art of Crying (Danish: Kunsten at Gr\u00e6de i Kor) is a 2006 Danish tragicomedy directed by Peter Sch\u00f8nau Fog. It stars Jannik Lorenzen and Jesper Asholt in a harsh tale about an 11-year-old boy's struggle to hold intact his bizarre family with its abusive father, mother in denial, and rebellious sister during the social unrest of the early 1970s. Based upon an autobiographical novel by Erling Jepsen, the screenplay was written by Bo Hr. Hansen. In 2007, the film received both the Bodil and Robert awards for Best Danish Film, and The Nordic Council Film Prize."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/SF_Film_(Danish_company)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/La_Luna_(2011_film)"}, "Title": {"type": "literal", "value": "La Luna"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Enrico_Casarosa"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011-06-06|2012-06-22"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "7"}, "Description": {"type": "literal", "value": "La Luna (IPA: /la\u02c8luna/ [la\u02c8lu\u02d0na], Italian for The Moon) is a 2011 Pixar computer-animated short film, directed and written by Enrico Casarosa. The short premiered on June 6, 2011 at the Annecy International Animated Film Festival in France, and was paired with Pixar's Brave for its theatrical release on June 22, 2012, being shown before the film's beginning. La Luna was released on November 13, 2012, on the Brave DVD and Blu-ray, and on a new Pixar Short Films Collection, Volume 2, the second collection of Pixar's short films. La Luna was nominated for an Academy Award for Best Animated Short Film at the 84th Academy Awards."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kids_in_America_(film)"}, "Title": {"type": "literal", "value": "Kids in America"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Josh_Stolberg"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gregory_Smith_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:Teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Kids in America is a 2005 American comedy film directed by Josh Stolberg. It was written by Andrew Shaifer and Stolberg. The film is inspired by real events. It received negative reviews from film critics, and was a box office bomb."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Rainstorm_Entertainment|http://dbpedia.org/resource/Screen_Media_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Library_Wars:_The_Last_Mission"}, "Title": {"type": "literal", "value": "Library Wars: The Last Mission"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Shinsuke_Sato"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aoi_Nakamura|http://dbpedia.org/resource/Chiaki_Kuriyama|http://dbpedia.org/resource/Junichi_Okada|http://dbpedia.org/resource/Kazuyuki_Aijima|http://dbpedia.org/resource/Kei_Tanaka|http://dbpedia.org/resource/Kiyoshi_Kodama|http://dbpedia.org/resource/K\u014dji_Ishizaka|http://dbpedia.org/resource/Nana_Eikura|http://dbpedia.org/resource/Naomi_Nishida|http://dbpedia.org/resource/Sota_Fukushi|http://dbpedia.org/resource/Tao_Tsuchiya|http://dbpedia.org/resource/Tori_Matsuzaka"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Japanese_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "Library Wars: The Last Mission (\u56f3\u66f8\u9928\u6226\u4e89 THE LAST MISSION Toshokan Sens\u014d The Last Mission) is a 2015 Japanese romance action comedy film directed by Shinsuke Sato. The film is a sequel of Library War (2013), with both films based on the light novel series Library War written by Hiro Arikawa and illustrated by Sukumo Adabana. The film was released on October 10, 2015."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Toho"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Chennai_600028_II:_Second_Innings"}, "Title": {"type": "literal", "value": "Chennai 600028 II: Second Innings"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Venkat_Prabhu"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aravind_Akash|http://dbpedia.org/resource/Jai_(actor)|http://dbpedia.org/resource/Nithin_Sathya|http://dbpedia.org/resource/Premji_Amaren|http://dbpedia.org/resource/Shiva_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Sports_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Chennai 600028 II: Second Innings is an upcoming Indian Tamil-language coming-of-age sports comedy film written and directed by Venkat Prabhu, who also produces the film along with S. P. B. Charan under Black Ticket Company and Capital Film Works. The film, which is a sequel to Chennai 600028 (2007), features several cast members from the earlier film including Jai, Shiva, Premji, Aravind Akash and Nithin Sathya. The film's score and soundtrack will be composed by Yuvan Shankar Raja, while the film is likely to release in early 2017."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/S._P._B._Charan"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bale_Pandiya_(2010_film)"}, "Title": {"type": "literal", "value": "Bale Pandiya"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Siddharth_Chandrasekhar"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Piaa_Bajpai|http://dbpedia.org/resource/R_Amarendran|http://dbpedia.org/resource/Vishnu_Vishal"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "140"}, "Description": {"type": "literal", "value": "Bale Pandiya is a 2010 Tamil action comedy film written and directed by Siddharth Chandrasekhar. It stars Vishnu Vishal and Piaa Bajpai in the lead roles. The film was released on 3 September 2010 to mixed reviews."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Green_Butchers"}, "Title": {"type": "literal", "value": "The Green Butchers"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Anders_Thomas_Jensen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Line_Kruse|http://dbpedia.org/resource/Mads_Mikkelsen|http://dbpedia.org/resource/Nikolaj_Lie_Kaas|http://dbpedia.org/resource/Ole_Thestrup"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Danish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "The Green Butchers (Danish: De gr\u00f8nne slagtere) is a 2003 Danish film starring Mads Mikkelsen, Nikolaj Lie Kaas, and Line Kruse, written and directed by Anders Thomas Jensen. It is a black comedy featuring two butchers, Svend \"Sweat\" and Bjarne, who start their own shop to get away from their arrogant boss. Cannibalism is soon introduced to the plot, and further complications arise due to the reappearance of Bjarne's mentally challenged twin brother Eigil."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sandrew_Metronome"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/MacGruber_(film)"}, "Title": {"type": "literal", "value": "MacGruber"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jorma_Taccone"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kristen_Wiig|http://dbpedia.org/resource/Maya_Rudolph|http://dbpedia.org/resource/Powers_Boothe|http://dbpedia.org/resource/Ryan_Phillippe|http://dbpedia.org/resource/Val_Kilmer|http://dbpedia.org/resource/Will_Forte"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "MacGruber is a 2010 American action comedy film based on the Saturday Night Live sketch of the same name, itself a parody of action-adventure television series MacGyver. Jorma Taccone of the comedy trio The Lonely Island directed the film, which stars Will Forte in the title role; Kristen Wiig as his love interest/partner, Vicki St. Elmo; Ryan Phillippe as Dixon Piper, a young lieutenant who becomes part of MacGruber's team; Maya Rudolph as MacGruber's dead wife, Casey; and Val Kilmer as the villain, Dieter von Cunth. Originally scheduled for release on April 23, 2010, the film was instead released on May 21, 2010, grossing $9.3 million worldwide against a $10 million budget. The film has since been labeled a cult classic."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/This_Is_the_End"}, "Title": {"type": "literal", "value": "This Is the End"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Evan_Goldberg|http://dbpedia.org/resource/Seth_Rogen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Craig_Robinson_(actor)|http://dbpedia.org/resource/Danny_McBride|http://dbpedia.org/resource/Emma_Watson|http://dbpedia.org/resource/James_Franco|http://dbpedia.org/resource/Jay_Baruchel|http://dbpedia.org/resource/Jonah_Hill|http://dbpedia.org/resource/Michael_Cera"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:American_fantasy-comedy_films|http://dbpedia.org/resource/Category:American_screwball_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films|http://dbpedia.org/resource/Category:Religious_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "This Is the End is a 2013 American comedy film directed by Seth Rogen and Evan Goldberg and stars Rogen, James Franco, Jonah Hill, Jay Baruchel, Danny McBride, Craig Robinson, Michael Cera and Emma Watson. The film centers around a group of real life actors playing fictionalized versions of themselves in the aftermath of a global biblical apocalypse. The film premiered at the Fox Village Theater on June 3, 2013 and was released on June 14, 2013 by Columbia Pictures, with a re-release on September 6, 2013. The film grossed $126 million on a $32 million budget."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Brave_(2012_film)"}, "Title": {"type": "literal", "value": "Brave"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Brenda_Chapman|http://dbpedia.org/resource/Mark_Andrews_(filmmaker)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Billy_Connolly|http://dbpedia.org/resource/Craig_Ferguson|http://dbpedia.org/resource/Emma_Thompson|http://dbpedia.org/resource/Julie_Walters|http://dbpedia.org/resource/Kelly_Macdonald|http://dbpedia.org/resource/Kevin_McKidd|http://dbpedia.org/resource/Robbie_Coltrane"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Brave is a 2012 American 3D computer-animated fantasy comedy-drama film produced by Pixar Animation Studios and released by Walt Disney Pictures. It was directed by Mark Andrews and Brenda Chapman, and co-directed by Steve Purcell. The story is by Chapman, with the screenplay by Andrews, Purcell, Chapman and Irene Mecchi. Chapman drew inspiration from her relationship with her own daughter. Chapman became Pixar\u2019s first female director of a feature-length film. The film was produced by Katherine Sarafian, with John Lasseter, Andrew Stanton and Pete Docter as executive producers. The film's voice cast features Kelly Macdonald, Julie Walters, Billy Connolly, Emma Thompson, Kevin McKidd, Craig Ferguson, and Robbie Coltrane. To create the most complex visuals possible, Pixar completely rewrote their animation system for the first time in 25 years. It is the first film to use the Dolby Atmos sound format. Set in the Scottish Highlands, the film tells the story of a princess named Merida who defies an age-old custom, causing chaos in the kingdom by expressing the desire to not be betrothed. After consulting a witch for help, Merida uses a spell which transforms her mother into a bear. Merida must act to undo the spell before its effects become permanent. Brave premiered on June 10, 2012, at the Seattle International Film Festival, and was released in North America on June 22, 2012, to both positive reviews and box office success. The film won the Academy Award, the Golden Globe, and the BAFTA Award for Best Animated Feature Film. Preceding the feature theatrically was a short film entitled La Luna, directed by Enrico Casarosa."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/EuroTrip"}, "Title": {"type": "literal", "value": "EuroTrip"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alec_Berg|http://dbpedia.org/resource/David_Mandel|http://dbpedia.org/resource/Jeff_Schaffer"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "EuroTrip is a 2004 American-European teen comedy adventure film written by Alec Berg, David Mandel, and Jeff Schaffer, and directed by Schaffer. The film stars Scott Mechlowicz, Jacob Pitts, Michelle Trachtenberg, Travis Wester, and Jessica Boehrs. Mechlowicz portrays Scott \"Scotty\" Thomas, an American teenager who travels across Europe in search of his German pen pal, Mieke (Boehrs). Accompanied by his friend Cooper (Pitts) and siblings Jenny and Jamie (Trachtenberg and Wester), Scott's quest takes him to London, Paris, Amsterdam, Bratislava, Berlin, and Rome, encountering awkward and embarrassing situations along the way. The film received a 2004 Teen Choice Award nomination for Choice Movie Your Parents Didn't Want You to See."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/DreamWorks"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Larger_than_Life_(film)"}, "Title": {"type": "literal", "value": "Larger Than Life"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Howard_Franklin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bill_Murray|http://dbpedia.org/resource/Janeane_Garofalo|http://dbpedia.org/resource/Jeremy_Piven|http://dbpedia.org/resource/Linda_Fiorentino|http://dbpedia.org/resource/Matthew_McConaughey|http://dbpedia.org/resource/Pat_Hingle"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Larger Than Life is a 1996 American comedy film starring Bill Murray."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Metro-Goldwyn-Mayer|http://dbpedia.org/resource/Path\u00e9|http://dbpedia.org/resource/United_Artists"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lake_Placid_3"}, "Title": {"type": "literal", "value": "Lake Placid 3"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Griff_Furst"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Colin_Ferguson_(actor)|http://dbpedia.org/resource/Kacey_Barnfield|http://dbpedia.org/resource/Kirsty_Mitchell|http://dbpedia.org/resource/Michael_Ironside|http://dbpedia.org/resource/Yancy_Butler"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "Lake Placid 3 is a 2010 made-for-television horror comedy film directed by Griff Furst. The film is a sequel to the 2007 film Lake Placid 2 and the third installment in the Lake Placid franchise. The film premiered on August 21, 2010 on Syfy."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Stage_6_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ride_Along_2"}, "Title": {"type": "literal", "value": "Ride Along 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tim_Story"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Police_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Ride Along 2 is a 2016 American action comedy film directed by Tim Story and written by Phil Hay and Matt Manfredi. It is the sequel to the 2014 film Ride Along. The film stars Ice Cube, Kevin Hart, Ken Jeong, Benjamin Bratt, Olivia Munn, Bruce McGill and Tika Sumpter. Universal Pictures released the film on January 15, 2016. Upon release the film was critically panned and grossed over $124 million."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Cube_Vision|http://dbpedia.org/resource/Will_Packer_Productions"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Milaga"}, "Title": {"type": "literal", "value": "Milaga"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ravi_Mariya"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Natarajan_Subramaniam|http://dbpedia.org/resource/Ravi_Mariya|http://dbpedia.org/resource/Singampuli"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Milaga (English: Chilli) is a 2010 Tamil action film directed by Ravi Mariya. The film stars himself in a negative role while Natrajan playing the lead role with Poongodi playing the pair. The film was released on 25 June 2010 to negative reviews."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/S._Thanu"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Frozen_Fever"}, "Title": {"type": "literal", "value": "Frozen Fever"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Buck|http://dbpedia.org/resource/Jennifer_Lee_(filmmaker)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Idina_Menzel|http://dbpedia.org/resource/Jonathan_Groff|http://dbpedia.org/resource/Josh_Gad|http://dbpedia.org/resource/Kristen_Bell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_fantasy-comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "7"}, "Description": {"type": "literal", "value": "Frozen Fever is a 2015 American computer-animated musical fantasy short film produced by Walt Disney Animation Studios and released by Walt Disney Pictures. It is a sequel to the 2013 feature film Frozen, and tells the story of Anna's birthday party given by Elsa with the help of Kristoff, Sven, and Olaf. Chris Buck and Jennifer Lee again served as the directors with Kristen Bell, Idina Menzel, Jonathan Groff, and Josh Gad providing the lead voices. Production on Frozen Fever began in June 2014 and took six months to complete. The film debuted in theaters alongside Walt Disney Pictures' Cinderella on March 13, 2015. It received positive reviews from critics, along with praise for its new song \"Making Today a Perfect Day\" by Kristen Anderson-Lopez and Robert Lopez."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Legally_Blonde"}, "Title": {"type": "literal", "value": "Legally Blonde"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Robert_Luketic"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alanna_Ubach|http://dbpedia.org/resource/Ali_Larter|http://dbpedia.org/resource/Holland_Taylor|http://dbpedia.org/resource/Jennifer_Coolidge|http://dbpedia.org/resource/Jessica_Cauffiel|http://dbpedia.org/resource/Luke_Wilson|http://dbpedia.org/resource/Matthew_Davis|http://dbpedia.org/resource/Reese_Witherspoon|http://dbpedia.org/resource/Selma_Blair|http://dbpedia.org/resource/Victor_Garber"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "Legally Blonde is a 2001 American comedy film directed by Robert Luketic, written by Karen McCullah Lutz and Kirsten Smith, and produced by Marc E. Platt. It is based on the novel of the same name by Amanda Brown. The film stars Reese Witherspoon as a sorority girl who struggles to win back her ex-boyfriend by earning a law degree, with the help of Luke Wilson as a young attorney that she meets during her studies, Matthew Davis as her ex-boyfriend, Selma Blair as his new fianc\u00e9e, Victor Garber and Holland Taylor as law professors, Jennifer Coolidge as a manicurist and friend, and Ali Larter as a fitness instructor accused of murder. The film was released in the US on July 13, 2001, and received positive reviews. It was nominated for a Golden Globe Award for Best Motion Picture: Musical or Comedy and was ranked 29th on Bravo's 2007 list of \"100 Funniest Movies.\" For her performance, Witherspoon received a Golden Globe nomination for Best Actress \u2013 Motion Picture Musical or Comedy and the 2002 MTV Movie Award for Best Female Performance. The box-office success led to a 2003 sequel, Legally Blonde 2: Red, White & Blonde, and a 2009 direct-to-DVD spin-off, Legally Blondes. Additionally, Legally Blonde: The Musical premiered on January 23, 2007, in San Francisco and opened in New York City at the Palace Theatre on Broadway on April 29, 2007, starring Laura Bell Bundy."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Metro-Goldwyn-Mayer"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Song_for_Marion"}, "Title": {"type": "literal", "value": "(Unfinished Song)|Song for Marion"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Paul_Andrew_Williams"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Christopher_Eccleston|http://dbpedia.org/resource/Gemma_Arterton|http://dbpedia.org/resource/Terence_Stamp|http://dbpedia.org/resource/Vanessa_Redgrave"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:British_comedy-drama_films|http://dbpedia.org/resource/Category:German_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Song for Marion (released in the United States as Unfinished Song) is a 2012 British-German comedy-drama film written and directed by Paul Andrew Williams and starring Terence Stamp, Gemma Arterton, Christopher Eccleston and Vanessa Redgrave. The film was nominated for three awards\u2014Best Actor, Best Screenplay, and Best Supporting Actress\u2014at the 2012 British Independent Film Awards."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Entertainment_One|http://dbpedia.org/resource/The_Weinstein_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/10:10_(film)"}, "Title": {"type": "literal", "value": "10:10"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Arin_Paul"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Abir_Chatterjee|http://dbpedia.org/resource/Aparajita_Ghosh_Das|http://dbpedia.org/resource/Claudia_Ciesla|http://dbpedia.org/resource/Kanchan_Mullick|http://dbpedia.org/resource/Soumitra_Chatterjee|http://dbpedia.org/resource/Subrat_Dutta"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "10:10 (Bengali: \u09a6\u09b6\u099f\u09be \u09a6\u09b6) is a 2008 Bengali comedy film directed by Arin Paul. It features Soumitra Chatterjee, Kanchan Mullick, Claudia Ciesla, Subrata Dutta, Aparajita Ghosh Das and Abir Chatterjee."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Morpheus_Media_Ventures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/A_Happy_Event"}, "Title": {"type": "literal", "value": "A Happy Event"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/R\u00e9mi_Bezan\u00e7on"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Josiane_Balasko|http://dbpedia.org/resource/Louise_Bourgoin|http://dbpedia.org/resource/Pio_Marma\u00ef"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Belgian_comedy_films|http://dbpedia.org/resource/Category:French_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "A Happy Event (French: Un heureux \u00e9v\u00e9nement) is a 2011 French-Belgian comedy-drama film directed by R\u00e9mi Bezan\u00e7on."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Gaumont_Film_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/You're_Next"}, "Title": {"type": "literal", "value": "You're Next"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Wingard"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/A._J._Bowen|http://dbpedia.org/resource/Joe_Swanberg|http://dbpedia.org/resource/Sharni_Vinson|http://dbpedia.org/resource/Wendy_Glenn"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "You're Next is a 2011 American slasher film directed by Adam Wingard, written by Simon Barrett and starring Sharni Vinson, Nicholas Tucci, Wendy Glenn, A. J. Bowen and Joe Swanberg. The plot concerns a family under attack by a group of masked assailants during their wedding anniversary getaway. The film had its world premiere at the 2011 Toronto International Film Festival Midnight Madness program and was theatrically released on August 23, 2013, in the United States. The film grossed over $26 million at the box office."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lions_Gate_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Wild_Tales_(film)"}, "Title": {"type": "literal", "value": "Wild Tales"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dami\u00e1n_Szifron"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dar\u00edo_Grandinetti|http://dbpedia.org/resource/Julieta_Zylberberg|http://dbpedia.org/resource/Leonardo_Sbaraglia|http://dbpedia.org/resource/Oscar_Mart\u00ednez_(actor)|http://dbpedia.org/resource/Ricardo_Dar\u00edn|http://dbpedia.org/resource/\u00c9rica_Rivas"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Argentine_comedy_films|http://dbpedia.org/resource/Category:Comedy_thriller_films|http://dbpedia.org/resource/Category:Spanish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "122"}, "Description": {"type": "literal", "value": "Wild Tales (Spanish: Relatos salvajes) is a 2014 Argentine black comedy anthology film composed of six standalone shorts, all written and directed by Dami\u00e1n Szifron, united by a common theme of violence and vengeance. It stars an ensemble cast consisting of Ricardo Dar\u00edn, Oscar Mart\u00ednez, Leonardo Sbaraglia, \u00c9rica Rivas, Rita Cortese, Julieta Zylberberg, and Dar\u00edo Grandinetti, and was co-produced by Agust\u00edn Almod\u00f3var and Pedro Almod\u00f3var. The film's musical score was composed by Gustavo Santaolalla. It was nominated for the Best Foreign Language Film at the 87th Academy Awards, won the Best Film Not in the English Language at the 69th British Academy Film Awards, and also won the Best Ibero-American Film at the 2nd Platino Awards."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Quick_Change"}, "Title": {"type": "literal", "value": "Quick Change"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bill_Murray|http://dbpedia.org/resource/Howard_Franklin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Geena_Davis|http://dbpedia.org/resource/Jason_Robards|http://dbpedia.org/resource/Randy_Quaid"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Quick Change is a 1990 American crime comedy film written by Howard Franklin, produced by and starring Bill Murray, and directed by both. Geena Davis, Randy Quaid, and Jason Robards co-star. Other cast members include Tony Shalhoub, Stanley Tucci, Phil Hartman, Victor Argo, Kurtwood Smith, Bob Elliott, and Philip Bosco. It is based on a book of the same name by Jay Cronley. The film is set in New York City, particularly in Manhattan and Queens, with scenes taking place on the New York City Subway and within John F. Kennedy International Airport. Times Square, the Empire State Building, and the Statue of Liberty are also briefly seen. To date, Quick Change is the only directorial credit of Bill Murray's career."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Hollars"}, "Title": {"type": "literal", "value": "The Hollars"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/John_Krasinski"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anna_Kendrick|http://dbpedia.org/resource/Charlie_Day|http://dbpedia.org/resource/Margo_Martindale|http://dbpedia.org/resource/Richard_Jenkins|http://dbpedia.org/resource/Sharlto_Copley"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "The Hollars is a 2016 American comedy-drama film directed by John Krasinski and written by James C. Strouse. The film stars an ensemble cast led by Krasinski, starring Sharlto Copley, Charlie Day, Richard Jenkins, Anna Kendrick and Margo Martindale. The film had its world premiere at the Sundance Film Festival on January 24, 2016. The film was released on August 26, 2016, by Sony Pictures Classics."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sony_Pictures_Classics"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Love_in_a_Puff"}, "Title": {"type": "literal", "value": "Love in a Puff"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pang_Ho-cheung"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Hong_Kong_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "Love in a Puff (simplified Chinese: \u5fd7\u660e\u4e0e\u6625\u5a07; traditional Chinese: \u5fd7\u660e\u8207\u6625\u5b0c) is a 2010 Hong Kong romantic comedy directed by Pang Ho-cheung and starring Shawn Yue and Miriam Yeung. The plot revolves around the love story of Cherie and Jimmy, two smokers who met at an outdoor smoking area subsequent to the ban of all indoor smoking areas in Hong Kong. The film is classified as a category 3 film in Hong Kong. Love in a Puff is one of the films which premiered in the 2010 Hong Kong International Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Media_Asia_Entertainment_Group"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Na_Ghar_Ke_Na_Ghaat_Ke"}, "Title": {"type": "literal", "value": "Na Ghar Ke Na Ghaat Ke"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rahul_Aggarwal_(producer)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Na Ghar Ke Na Ghaat Ke is a 2010 Hindi comedy film directed by and starring Rahul Aggarwal as a Uttar Pradesh migrant to Mumbai. The film was released on 12 March 2010."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Flower_Girl_(film)"}, "Title": {"type": "literal", "value": "Flower Girl"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michelle_Bello"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Blossom_Chukwujekwu|http://dbpedia.org/resource/Chris_Attoh|http://dbpedia.org/resource/Damilola_Adegbite|http://dbpedia.org/resource/Eku_Edewor"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Nigerian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "Flower Girl is a 2013 Nigerian romantic comedy film set and shot in Lagos, Nigeria. It revolves around a story of Kemi (Damilola Adegbite) who is dying to get married to Umar (Chris Attoh); a young man who is desperate to get ahead in his career. When their relationship hits troubled waters, Kemi seeks the help of movie superstar Tunde (Blossom Chukwujekwu) and they hatch a plan to get Kemi what she wants."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Rules_of_Dating"}, "Title": {"type": "literal", "value": "Rules of Dating"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Han_Jae-rim"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Greena_Park|http://dbpedia.org/resource/Kang_Hye-jung|http://dbpedia.org/resource/Lee_Dae-yeon|http://dbpedia.org/resource/Park_Hae-il"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "121"}, "Description": {"type": "literal", "value": "Rules of Dating (Hangul: \uc5f0\uc560\uc758 \ubaa9\uc801; RR: Yeonae-ui mokjeok) is a 2005 South Korean film starring Park Hae-il and Kang Hye-jung, and is the directorial debut of filmmaker Han Jae-rim."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/CJ_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Actor_In_Law"}, "Title": {"type": "literal", "value": "Actor In Law"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nabeel_Qureshi_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alyy_Khan|http://dbpedia.org/resource/Fahad_Mustafa|http://dbpedia.org/resource/Humayun_Saeed|http://dbpedia.org/resource/Irfan_Motiwala|http://dbpedia.org/resource/Mahira_Khan|http://dbpedia.org/resource/Mehwish_Hayat|http://dbpedia.org/resource/Nayyar_Ejaz|http://dbpedia.org/resource/Om_Puri|http://dbpedia.org/resource/Rehan_Sheikh|http://dbpedia.org/resource/Saboor_Ali|http://dbpedia.org/resource/Saife_Hassan|http://dbpedia.org/resource/Saleem_Mairaj|http://dbpedia.org/resource/Talat_Hussain_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Pakistani_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "Actor In Law is a 2016 Pakistani socio-comedy film directed by Nabeel Qureshi, co-written and produced by Fizza Ali Meerza. The film was released nationwide on Eid-ul-Adha 2016. by Urdu 1 Pictures."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Urdu_1_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Teenage_Mutant_Ninja_Turtles:_Out_of_the_Shadows"}, "Title": {"type": "literal", "value": "Out of the Shadows|Teenage Mutant Ninja Turtles:"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dave_Green_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "Teenage Mutant Ninja Turtles: Out of the Shadows is a 2016 American science fiction action comedy based on the Mirage Studios characters the Teenage Mutant Ninja Turtles and the sixth film of the Teenage Mutant Ninja Turtles film series and a sequel to the 2014 film Teenage Mutant Ninja Turtles. The film was directed by Dave Green, written by Josh Appelbaum and Andr\u00e9 Nemec, and stars Megan Fox, Stephen Amell, Will Arnett, Brian Tee, Tyler Perry, Brittany Ishibashi and Laura Linney, and featuring voices of Pete Ploszek, Alan Ritchson, Noel Fisher, Jeremy Howard, Tony Shalhoub, Gary Anthony Williams, Stephen \"Sheamus\" Farrelly and Brad Garrett. Principal photography on the film began on April 27, 2015, in New York City. It was released in theaters on June 3, 2016, in 3D, RealD 3D, 4DX, and in IMAX 3D. It received generally mixed reviews from critics, being considered by many an improvement over its previous one, but was not as successful as its predecessor, grossing $245 million against a $135 million budget."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Alibaba_Pictures|http://dbpedia.org/resource/Nickelodeon_Movies|http://dbpedia.org/resource/Platinum_Dunes"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Elvis_&_Nixon"}, "Title": {"type": "literal", "value": "Elvis & Nixon"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Liza_Johnson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alex_Pettyfer|http://dbpedia.org/resource/Ashley_Benson|http://dbpedia.org/resource/Colin_Hanks|http://dbpedia.org/resource/Evan_Peters|http://dbpedia.org/resource/Johnny_Knoxville|http://dbpedia.org/resource/Kevin_Spacey|http://dbpedia.org/resource/Michael_Shannon|http://dbpedia.org/resource/Sky_Ferreira|http://dbpedia.org/resource/Tate_Donovan|http://dbpedia.org/resource/Tracy_Letts"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Elvis & Nixon is a 2016 American comedy-drama film directed by Liza Johnson and written by Joey Sagal, Hanala Sagal, and Cary Elwes. The film stars Kevin Spacey as President Richard Nixon and Michael Shannon as singer Elvis Presley, and focuses on the December 21, 1970 meeting between the two men at the White House. The film also stars Alex Pettyfer, Johnny Knoxville, Colin Hanks, Evan Peters and Ashley Benson. The film was released on April 22, 2016 by Amazon Studios and Bleecker Street."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Amazon_Studios|http://dbpedia.org/resource/Bleecker_Street_(company)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Late_Night_Shopping"}, "Title": {"type": "literal", "value": "Late Night Shopping"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Saul_Metzstein"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Enzo_Cilenti|http://dbpedia.org/resource/James_Lance|http://dbpedia.org/resource/Kate_Ashfield|http://dbpedia.org/resource/Luke_de_Woolfson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Late Night Shopping is a 2001 comedy film funded by FilmFour Productions, centering on a group of friends who all work the graveyard shifts."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Plaga_Zombie_(film_series)"}, "Title": {"type": "literal", "value": "The Plaga Zombie Trilogy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pablo_Par\u00e9s"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Berta_Mu\u00f1iz|http://dbpedia.org/resource/Pablo_Par\u00e9s"}, "Published": {"type": "literal", "value": "2001-12-21|2012-03-12"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Zombie_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "270"}, "Description": {"type": "literal", "value": "Plaga Zombie is an Argentine comedy horror film series created by Pablo Par\u00e9s, Berta Mu\u00f1iz, and Hern\u00e1n S\u00e1ez. The films follow three misfit heroes who uncover an alien-government conspiracy after a zombie outbreak occurs in their hometown. Plaga Zombie was the first-ever zombie horror film released in Argentina and is the only zombie horror trilogy to be produced in Latin America. Plaga Zombie received mainstream coverage from Fangoria and was picked up by its horror label, Fangoria Films International, helping the series to attain a worldwide cult following. The latest installment of the series, Plaga Zombie: American Invasion, began production in the summer of 2013."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fangoria_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/M\u00e4dchen,_M\u00e4dchen"}, "Title": {"type": "literal", "value": "M\u00e4dchen, M\u00e4dchen (Girls on Top)"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dennis_Gansel"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Diana_Amft|http://dbpedia.org/resource/Felicitas_Woll|http://dbpedia.org/resource/Karoline_Herfurth"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:German_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "M\u00e4dchen, M\u00e4dchen (English: Girls, Girls), also known as Girls on Top, is a 2001 German film directed by Dennis Gansel. Its story is about an eighteen-year-old girl named Inken (Diana Amft), who is frustrated at not having had an orgasm yet with her boyfriend. Her two best friends are Vicky (Felicitas Woll), who is in the same situation as Inken, and the still virgin Lena (Karoline Herfurth). The movie is about the girls' search to find someone to give them an orgasm. The film was followed by a 2004 sequel, M\u00e4dchen, M\u00e4dchen 2 - Loft oder Liebe. The film had over 1,700,000 admissions in Germany and grossed $233,538 in Russia."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Delicacy_(film)"}, "Title": {"type": "literal", "value": "Delicacy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_Foenkinos|http://dbpedia.org/resource/St\u00e9phane_Foenkinos"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Audrey_Tautou|http://dbpedia.org/resource/Bruno_Todeschini|http://dbpedia.org/resource/Fran\u00e7ois_Damiens"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "Delicacy (French: La d\u00e9licatesse) is a 2011 French romantic comedy-drama directed by David and St\u00e9phane Foenkinos based on a novel of the same name by David Foenkinos. David was nominated for the 2012 Best Writing (Adaptation) C\u00e9sar Award and the film was nominated as Best First Film."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Croods"}, "Title": {"type": "literal", "value": "The Croods"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Sanders|http://dbpedia.org/resource/Kirk_DeMicco"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Catherine_Keener|http://dbpedia.org/resource/Clark_Duke|http://dbpedia.org/resource/Cloris_Leachman|http://dbpedia.org/resource/Emma_Stone|http://dbpedia.org/resource/Nicolas_Cage|http://dbpedia.org/resource/Ryan_Reynolds"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "The Croods is a 2013 American 3D computer-animated adventure comedy film produced by DreamWorks Animation and distributed by 20th Century Fox. It stars the voices of Nicolas Cage, Emma Stone, Ryan Reynolds, Catherine Keener, Clark Duke, and Cloris Leachman. The film is set in a fictional prehistoric Pliocene era known as \"The Croodaceous\" (a prehistoric period which contains fictional prehistoric creatures) when a caveman's position as a \"Leader of the Hunt\" is threatened by the arrival of a prehistoric genius who comes up with revolutionary new inventions as they trek through a dangerous but exotic land in search of a new home. The Croods was written and directed by Kirk DeMicco and Chris Sanders, and produced by Kristine Belson and Jane Hartwell. The film premiered at the 63rd Berlin International Film Festival on February 15, 2013, and was released in the United States on March 22, 2013. As part of the distribution deal, this is the first film from DreamWorks Animation to be distributed by 20th Century Fox, since the end of their distribution deal with Paramount Pictures. The Croods received generally positive reviews, and proved to be a box office success, earning more than $587 million on a budget of $135 million. The film launched a new franchise, with a sequel set for 2018, and a television series, Dawn of the Croods, which debuted on December 24, 2015, on Netflix."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/HeartBeat_Love"}, "Title": {"type": "literal", "value": "Heartbeat Love"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Leste_Chen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Rainie_Yang|http://dbpedia.org/resource/Show_Luo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://dbpedia.org/resource/Comedy"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Heartbeat Love (\u518d\u4e00\u6b21\u5fc3\u8df3) is a 2012 Taiwanese short film starring Rainie Yang and Show Luo. It was filmed in Australia (Sydney, Melbourne and Tasmania). It is a miniseries that aired on the internet, and has a total of 5 episodes. It started 12 April 2012, and aired every Thursday midnight Taiwan time (i.e. early Thursday morning). This was the second time these two stars collaborated after the successful Taiwanese drama Hi My Sweetheart. Australia's Tourism commission invested in the film to introduce Australia to Chinese tourism."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Evil_Dead"}, "Title": {"type": "literal", "value": "Evil Dead"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Fede_Alvarez|http://dbpedia.org/resource/Sam_Raimi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bruce_Campbell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Comedy_films_by_series|http://dbpedia.org/resource/Category:Horror_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Evil Dead is an American horror film franchise created by Sam Raimi consisting of four feature films. The films revolve around the Necronomicon Ex-Mortis, an ancient Sumerian text which wreaks havoc upon a group of cabin inhabitants in a wooded area in Tennessee. The protagonist, Ashley J. \"Ash\" Williams (Bruce Campbell) is the only character to appear in every installment of the original trilogy (Linda, Ash's girlfriend makes an appearance in all 3 films, but her only appearance in Army of Darkness is during the prologue). The original trilogy includes The Evil Dead (1981), Evil Dead II (1987), and Army of Darkness (1992), all written and directed by Raimi, produced by Robert G. Tapert, and starring Campbell. The franchise has since expanded into other formats, including video games, comic books, a musical, and a television series. The franchise was resurrected in 2013 with Evil Dead, both a reboot and a loose continuation of the series directed by Fede Alvarez and produced by Raimi, Campbell and Tapert. It is rumored that there will be three other installments of the franchise that are considered: a sequel to the 2013 reboot currently titled Evil Dead 2 but will not be directed by Alvarez, a direct sequel to the original trilogy currently titled Army of Darkness 2 rumored to be directed by Sam Raimi and starring Campbell, and a seventh and final film which would merge the narratives of both chronologies. In July 2014, Bruce Campbell stated it was likely that the planned sequel would instead be a TV series with him as the star.Starz officially announced on November 10, 2014 that a ten-episode series titled Ash vs Evil Dead would premiere on their cable network in 2015. The series stars Bruce Campbell as Ash and is executive produced by Campbell, Sam Raimi, and Rob Tapert."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/De_Laurentiis_Entertainment_Group|http://dbpedia.org/resource/New_Line_Cinema|http://dbpedia.org/resource/TriStar_Pictures|http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Orange_County_(film)"}, "Title": {"type": "literal", "value": "Orange County"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jake_Kasdan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Catherine_O'Hara|http://dbpedia.org/resource/Colin_Hanks|http://dbpedia.org/resource/Jack_Black|http://dbpedia.org/resource/John_Lithgow|http://dbpedia.org/resource/Lily_Tomlin|http://dbpedia.org/resource/Schuyler_Fisk"}, "Published": {"type": "literal", "value": "2002-01-11"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "81"}, "Description": {"type": "literal", "value": "Orange County is a 2002 American comedy film starring Colin Hanks and Jack Black. It was released on January 11, 2002. The movie was distributed by Paramount Pictures and produced by MTV Films and Scott Rudin. The movie was directed by Jake Kasdan and written by Mike White."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Central_Intelligence"}, "Title": {"type": "literal", "value": "Central Intelligence"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rawson_Marshall_Thurber"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aaron_Paul|http://dbpedia.org/resource/Amy_Ryan|http://dbpedia.org/resource/Danielle_Nicolet|http://dbpedia.org/resource/Dwayne_Johnson|http://dbpedia.org/resource/Kevin_Hart"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "107|116"}, "Description": {"type": "literal", "value": "Central Intelligence is a 2016 American comedy film directed by Rawson Marshall Thurber and written by Thurber, Ike Barinholtz and David Stassen. The film stars Kevin Hart and Dwayne Johnson as two old high school friends who team up to save America after one of them joins the CIA in order to save the world from a terrorist who has an intention to sell satellite codes. Amy Ryan and Aaron Paul also star. The film premiered in Los Angeles on June 10, 2016 and was theatrically released in the United States on June 17, 2016. Central Intelligence received mixed to positive reviews and grossed $215 million worldwide against its $50 million budget."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios|http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Bluegrass_Films|http://dbpedia.org/resource/New_Line_Cinema|http://dbpedia.org/resource/Perfect_World_Pictures|http://dbpedia.org/resource/RatPac-Dune_Entertainment"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/A.R.O.G"}, "Title": {"type": "literal", "value": "A.R.O.G"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Cem_Y\u0131lmaz"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cem_Y\u0131lmaz|http://dbpedia.org/resource/Nil_Karaibrahimgil|http://dbpedia.org/resource/Zafer_Alg\u00f6z|http://dbpedia.org/resource/\u00d6zge_\u00d6zberk|http://dbpedia.org/resource/\u00d6zkan_U\u011fur"}, "Published": {"type": "literal", "value": "2008-12-05"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Turkish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "128"}, "Description": {"type": "literal", "value": "A.R.O.G: A Prehistoric Film (Turkish: A.R.O.G: Bir Yontma Ta\u015f Filmi) is a 2008 Turkish science-fiction comedy film, directed by Cem Y\u0131lmaz and Ali Taner Baltac\u0131, about a used carpet salesman who is sent back in time by an old interplanetary adversary out for revenge. The film, which went on nationwide general release across Turkey on December 5, 2008, was the highest grossing Turkish films of 2008 and is one of the most expensive Turkish films ever made. It is a sequel to G.O.R.A. (2004)."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Up_in_the_Air_(2009_film)"}, "Title": {"type": "literal", "value": "Up in the Air"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jason_Reitman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anna_Kendrick|http://dbpedia.org/resource/Danny_McBride|http://dbpedia.org/resource/George_Clooney|http://dbpedia.org/resource/Vera_Farmiga"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "Up in the Air is a 2009 American comedy-drama film directed by Jason Reitman and co-written by Reitman and Sheldon Turner. It is a film adaptation of the 2001 novel of the same name, written by Walter Kirn. The story is centered on corporate \"downsizer\" Ryan Bingham (George Clooney) and his travels. The film follows his isolated life and philosophies and the people he meets along the way. Filming was primarily in St. Louis, Missouri, which substituted for a number of other cities. Several scenes were filmed in Detroit, Omaha, Las Vegas, and Miami. Reitman promoted Up in the Air with personal appearances at film festivals and other showings, starting with the Telluride Film Festival on September 5, 2009. The Los Angeles premiere was at the Mann Village Theater on Monday, November 30, 2009. Paramount scheduled a limited North American release on December 4, 2009, broadening the release on December 11, 2009, with a wide release on December 23, 2009. The National Board of Review and the Washington D.C. Area Film Critics Association named Up in the Air the Best Picture of 2009. It received eight Broadcast Film Critics Association nominations and garnered a win for Adapted Screenplay, six Golden Globe nominations, earning a win for Best Screenplay, and three Screen Actors Guild nominations. It received six Academy Award nominations, but did not win in any category. Up in the Air also received recognition from numerous critics' associations."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Greatest_of_All"}, "Title": {"type": "literal", "value": "The Greatest of All"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Carlo_Virz\u00ec"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Italian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Greatest of All (Italian: I pi\u00f9 grandi di tutti) is a 2011 Italian comedy film directed by Carlo Virz\u00ec. It entered the competition at the 2011 Turin Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Open_Season_(2006_film)"}, "Title": {"type": "literal", "value": "Open Season"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Anthony_Stacchi|http://dbpedia.org/resource/Jill_Culton|http://dbpedia.org/resource/Roger_Allers"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ashton_Kutcher|http://dbpedia.org/resource/Billy_Connolly|http://dbpedia.org/resource/Debra_Messing|http://dbpedia.org/resource/Gary_Sinise|http://dbpedia.org/resource/Georgia_Engel|http://dbpedia.org/resource/Gordon_Tootoosis|http://dbpedia.org/resource/Jane_Krakowski|http://dbpedia.org/resource/Jon_Favreau|http://dbpedia.org/resource/Martin_Lawrence|http://dbpedia.org/resource/Patrick_Warburton"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Open Season is a 2006 American computer-animated comedy film, written by Steve Bencich and Ron J. Friedman and directed by Jill Culton and Roger Allers, and co-directed by Anthony Stacchi. It follows Boog, a domestic bear who teams up with a one-antlered deer named Elliot and woodland animals to defeat human hunters. The film stars the voices of Martin Lawrence, Ashton Kutcher, Gary Sinise, Debra Messing, Billy Connolly, Jon Favreau, Georgia Engel, Jane Krakowski, Gordon Tootoosis and Patrick Warburton. It was produced by Sony Pictures Animation as its first theatrical film and released by Columbia Pictures on September 29, 2006. It has also been released in the IMAX 3D format. A video game for the film was released on multiple platforms. Open Season earned $197.3 million on a $85 million budget, and was followed by three direct-to-video sequels: Open Season 2 (2009), Open Season 3 (2011), and Open Season: Scared Silly (2016)."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/National_Lampoon's_TV:_The_Movie"}, "Title": {"type": "literal", "value": "National Lampoon's TV: The Movie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sam_Maccarone"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Pontius|http://dbpedia.org/resource/Jason_Acu\u00f1a|http://dbpedia.org/resource/Jason_Mewes|http://dbpedia.org/resource/Preston_Lacy|http://dbpedia.org/resource/Steve-o|http://dbpedia.org/resource/Tony_Cox_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "National Lampoon's TV: The Movie is a comedy film that was released in 2006 and features some of the actors from the TV show Jackass."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Chennai_Express"}, "Title": {"type": "literal", "value": "Chennai Express"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rohit_Shetty"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Deepika_Padukone|http://dbpedia.org/resource/Shahrukh_Khan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_action_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "141"}, "Description": {"type": "literal", "value": "Chennai Express /t\u0283\u1d7b\u02c8na\u026a/ /\u026ak\u02c8spr\u025bs/ is a 2013 Indian romantic action comedy film directed by Rohit Shetty, and produced by Gauri Khan for Red Chillies Entertainment. The film features Shahrukh Khan and Deepika Padukone in lead roles; it is the second collaboration between Khan and Padukone after Om Shanti Om (2007). The film is about a man's journey from Mumbai to Rameswaram, and what happens along the way after he falls in love with the daughter of a local don. Principal photography began on 27 September 2012, filming began in October 2012 and was completed by May 2013. Chennai Express was released in the overseas markets on 8 August 2013, and a day later in India. Extensive paid previews were held in India on 8 August as well. Although the film received mixed reviews from critics, it broke several box office records in India and abroad, becoming the quickest film to collect \u20b91 billion (US$15 million) net domestically at that time. The film currently ranks as the seventh highest grossing Indian film of all time."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/UTV_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Prom_(film)"}, "Title": {"type": "literal", "value": "Prom"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Joe_Nussbaum"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aimee_Teegarden|http://dbpedia.org/resource/Cameron_Monaghan|http://dbpedia.org/resource/Christine_Elise|http://dbpedia.org/resource/Danielle_Campbell|http://dbpedia.org/resource/Dean_Norris|http://dbpedia.org/resource/Nicholas_Braun|http://dbpedia.org/resource/Nolan_Sotillo|http://dbpedia.org/resource/Raini_Rodriguez|http://dbpedia.org/resource/Thomas_McDonell|http://dbpedia.org/resource/Yin_Chang"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_screwball_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "Prom is a 2011 American teen romance comedy-drama film directed by Joe Nussbaum written by Katie Wech and produced by Ted Griffin and Justin Springer. It was released on April 29, 2011, by Walt Disney Pictures. The film was the first major production shot with Arriflex's Alexa HD cameras to be released in theatres."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ted_2"}, "Title": {"type": "literal", "value": "Ted 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Seth_MacFarlane"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amanda_Seyfried|http://dbpedia.org/resource/Giovanni_Ribisi|http://dbpedia.org/resource/Jessica_Barth|http://dbpedia.org/resource/John_Slattery|http://dbpedia.org/resource/Mark_Wahlberg|http://dbpedia.org/resource/Morgan_Freeman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_fantasy-comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "Ted 2 is a 2015 American comedy film directed by Seth MacFarlane and is a sequel to the 2012 film Ted. The film's screenplay was written by MacFarlane, Alec Sulkin, and Wellesley Wild. The film stars Mark Wahlberg and MacFarlane and follows Ted's fight for his civil rights when authorities rule that he is property rather than a person. Ted 2 was released on June 26, 2015, by Universal Pictures, grossed over $216 million and received mixed reviews from critics."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Grabbers"}, "Title": {"type": "literal", "value": "Grabbers"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jon_Wright"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Richard_Coyle|http://dbpedia.org/resource/Russell_Tovey|http://dbpedia.org/resource/Ruth_Bradley"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:British_comedy_horror_films|http://dbpedia.org/resource/Category:Irish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Grabbers is a 2012 Irish-British monster film directed by Jon Wright and written by Kevin Lehane. The film stars Richard Coyle, Ruth Bradley, Bronagh Gallagher and Russell Tovey among an ensemble cast of Irish actors."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Element_Pictures|http://dbpedia.org/resource/Sony_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Asterix:_The_Mansions_of_the_Gods"}, "Title": {"type": "literal", "value": "Asterix: The Mansions of the Gods"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alexandre_Astier|http://dbpedia.org/resource/Louis_Clichy"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Catherine_Tate|http://dbpedia.org/resource/Dick_&_Dom|http://dbpedia.org/resource/Greg_Davies|http://dbpedia.org/resource/Harry_Enfield|http://dbpedia.org/resource/Jack_Whitehall|http://dbpedia.org/resource/Jim_Broadbent|http://dbpedia.org/resource/Matt_Berry|http://dbpedia.org/resource/Nick_Frost"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Adventure_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films|http://dbpedia.org/resource/Category:Belgian_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Asterix: The Mansions of the Gods (French: Ast\u00e9rix - Le Domaine des Dieux), also titled Asterix and Obelix: Mansion of the Gods, is a 2014 French-Belgian 3D computer animated adventure family comedy film directed and written by Alexandre Astier. It is based on the comic book Asterix: The Mansions of the Gods, which was the seventeenth book in the comic book series Asterix by Goscinny and Uderzo. The film features the voices of Roger Carel, Guillaume Briat, Lionnel Astier, Serge Papagalli and Florence Foresti. The film sticks to the book's plot very closely while also expanding on it. It was the first Asterix film animated in 3D. The film was theatrically released on 26 November 2014 by SND Films in France across 696 movie theatres. It received generally favorable reviews and has grossed over $34 million on a \u20ac31 million budget. It received a IFMCA Award nomination for Best Original Score for an Animated Feature Film. Asterix: The Land of the Gods was released on DVD, VOD and Blu-ray on 9 June 2015, by M6 Vid\u00e9o."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/SND_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ali_G,_Innit"}, "Title": {"type": "literal", "value": "Ali G, Innit"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Bobin|http://dbpedia.org/resource/Steve_Smith_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Sacha_Baron_Cohen"}, "Published": {"type": "literal", "value": "1999-11-15"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Ali G, Innit is a VHS release (later re-issued on DVD) of Ali G interview segments from The 11 O'Clock Show as well as footage not broadcast. It is hosted by Ali G himself."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/2_Entertain"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Can't_Complain"}, "Title": {"type": "literal", "value": "Can't Complain"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Richard_Johnson_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Can't Complain is a 2009 American independent comedy film written and produced by Corey Williams. This was director Richard Johnson second feature length narrative film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/GoldenTiger_Productions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hello_I_Must_Be_Going_(2012_film)"}, "Title": {"type": "literal", "value": "Hello I Must Be Going"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Todd_Louiso"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Blythe_Danner|http://dbpedia.org/resource/Christopher_Abbott|http://dbpedia.org/resource/John_Rubinstein|http://dbpedia.org/resource/Melanie_Lynskey"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Hello I Must Be Going is a 2012 American comedy-drama film written by Sarah Koskoff and directed by Todd Louiso. It stars Melanie Lynskey, Christopher Abbott and Blythe Danner. The film had its world premiere at the 2012 Sundance Film Festival, and was released theatrically in the United States on September 7, 2012. The title is a reference to a song from the Marx Brothers' film Animal Crackers."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Oscilloscope_Laboratories"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Quiz_Show_Scandal"}, "Title": {"type": "literal", "value": "The Quiz Show Scandal"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jang_Jin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Han_Jae-suk|http://dbpedia.org/resource/Jang_Young-nam|http://dbpedia.org/resource/Kim_Su-ro|http://dbpedia.org/resource/Ryu_Seung-ryong|http://dbpedia.org/resource/Shim_Eun-kyung"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:South_Korean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "121"}, "Description": {"type": "literal", "value": "The Quiz Show Scandal (Hangul: \ud034\uc988\uc655; RR: Kwijeu Wang; lit. \"Quiz King\") is a 2010 South Korean film. The ensemble comedy satire is written and directed by Jang Jin. At a police station, people involved in a car accident are accidentally informed of the answer to the last question of a quiz show with a prize of over ten million dollars. On the day of the show, those same people gather again to compete against each other but they only know the answer to the last question. Who is going to win the fortune?"}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Cinema_Service"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Monster_House_(film)"}, "Title": {"type": "literal", "value": "Monster House"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Gil_Kenan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Catherine_O'Hara|http://dbpedia.org/resource/Fred_Willard|http://dbpedia.org/resource/Jason_Lee_(actor)|http://dbpedia.org/resource/Kathleen_Turner|http://dbpedia.org/resource/Kevin_James|http://dbpedia.org/resource/Maggie_Gyllenhaal|http://dbpedia.org/resource/Nick_Cannon|http://dbpedia.org/resource/Steve_Buscemi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Monster House is a 2006 American 3D computer-animated family horror comedy film directed by Gil Kenan, produced by ImageMovers and Amblin Entertainment, and distributed by Columbia Pictures. The film stars Mitchel Musso, Sam Lerner, Spencer Locke, Steve Buscemi, Nick Cannon, Maggie Gyllenhaal, Jon Heder, Kevin James, Jason Lee, Catherine O'Hara, Kathleen Turner, and Fred Willard. Executive produced by Robert Zemeckis and Steven Spielberg, this is the first time since Back to the Future Part III that they have worked together. It is also the first time that Zemeckis and Spielberg both served as executive producers of a film. The film's characters are animated primarily utilizing performance capture, making it the second film to use the technology so extensively, following Zemeckis' The Polar Express. Monster House received generally positive reviews from critics and grossed over $140 million worldwide. The film was nominated for the Academy Award for Best Animated Feature at the 79th Academy Awards, but lost to Happy Feet."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Hangover_(film_series)"}, "Title": {"type": "literal", "value": "The Hangover"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Todd_Phillips"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bradley_Cooper|http://dbpedia.org/resource/Ed_Helms|http://dbpedia.org/resource/Justin_Bartha|http://dbpedia.org/resource/Ken_Jeong|http://dbpedia.org/resource/Zach_Galifianakis"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Hangover is a series of three American comedy films created by Jon Lucas and Scott Moore and directed by Todd Phillips. All three films follows the misadventures of a quartet of friends (also known as \"the Wolfpack\") who go on their road trip to attend a wedding reception. While all of the films finds three of the four men on their mission to find their missing friend, the first two films focus on the events following a night of debauchery moments before a wedding in Las Vegas and Bangkok; where as the third and final film involves a road trip and a kidnapping in lieu of a bachelor party."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros._Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sayew"}, "Title": {"type": "literal", "value": "Sayew"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kiat_Songsanant|http://dbpedia.org/resource/Kongdej_Jaturanrasamee"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Pimpaporn_Leenutapong"}, "Published": {"type": "literal", "value": "2003-02-28"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "113"}, "Description": {"type": "literal", "value": "Sayew (Thai: \u0e2a\u0e22\u0e34\u0e27, also Spasm or X-Rated Sex Story: Fact or Fiction) is a 2003 Thai comedy film about a naive female college student who works as a writer of erotic stories for a pornographic magazine."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sahamongkol_Film_International"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Current_(film)"}, "Title": {"type": "literal", "value": "Current"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Palnati_Surya_Pratap"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Brahmanandam|http://dbpedia.org/resource/Charan_Raj|http://dbpedia.org/resource/Lakshman_Rao_Kondavalasa|http://dbpedia.org/resource/Melkote|http://dbpedia.org/resource/Raghu_Babu|http://dbpedia.org/resource/Shafi|http://dbpedia.org/resource/Shakeela|http://dbpedia.org/resource/Sneha_Ullal|http://dbpedia.org/resource/Sushanth|http://dbpedia.org/resource/Tanikella_Bharani|http://dbpedia.org/resource/Telangana_Sakuntala"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "137.0833333333333"}, "Description": {"type": "literal", "value": "Current is a 2009 romantic comedy drama Telugu film directed by Palnati Surya Pratap. It stars Sushanth and Sneha Ullal in the Lead. Devi Sri Prasad provided the Music while Vijay Kumar C. Provided the Cinematography. Marthand K. Venkatesh handled the Editing Department. It was declared as a Super Hit at the Box Office."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Aaaaaaaah!"}, "Title": {"type": "literal", "value": "Aaaaaaaah!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Steve_Oram"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Holli_Dempsey|http://dbpedia.org/resource/Julian_Barratt|http://dbpedia.org/resource/Julian_Rhind-Tutt|http://dbpedia.org/resource/Noel_Fielding|http://dbpedia.org/resource/Steve_Oram|http://dbpedia.org/resource/Tom_Meeten|http://dbpedia.org/resource/Toyah_Willcox"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_black_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films|http://dbpedia.org/resource/Category:Horror_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "Aaaaaaaah! is a 2015 British horror comedy film written and directed by Steve Oram. The film contains no dialogue, with the cast communicating entirely in animalistic grunts. It premiered in August 2015 at London FrightFest Film Festival. In 2016 the film was released on DVD / Blu Ray and VOD on Icon Productions's Frightfest Presents label"}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Settai"}, "Title": {"type": "literal", "value": "Settai"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/R._Kannan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anjali_(actress_born_1986)|http://dbpedia.org/resource/Arya_(actor)|http://dbpedia.org/resource/Hansika_Motwani|http://dbpedia.org/resource/Premji_Amaren|http://dbpedia.org/resource/Santhanam_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_black_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "136"}, "Description": {"type": "literal", "value": "Settai (English: Mischief) is a 2013 Indian Tamil comedy film directed by R. Kannan. A remake of the 2011 English-language film, Delhi Belly, it stars Arya, Anjali, Santhanam, Premji Amaren and Hansika Motwani. The film, which began filming in Chennai on 7 May 2012, released for April 2013. The film was dubbed in Telugu as crazy. The audio was launched on 30 January. The film released on 5 April 2013."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Drones_(2010_film)"}, "Title": {"type": "literal", "value": "Drones"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Busch|http://dbpedia.org/resource/Amber_Benson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/James_Urbaniak|http://dbpedia.org/resource/Jonathan_M._Woodward|http://dbpedia.org/resource/Samm_Levine"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Drones is a 2010 office comedy film directed by Amber Benson and Adam Busch, who describe it as \"The Office meets Close Encounters\"."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Phase_4_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hum_Tum"}, "Title": {"type": "literal", "value": "Hum Tum"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kunal_Kohli"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kirron_Kher|http://dbpedia.org/resource/Rani_Mukerji|http://dbpedia.org/resource/Rati_Agnihotri|http://dbpedia.org/resource/Rishi_Kapoor|http://dbpedia.org/resource/Saif_Ali_Khan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "143"}, "Description": {"type": "literal", "value": "Hum Tum (translation: Me and You) is a 2004 Indian romantic comedy film directed by Kunal Kohli and produced by Aditya Chopra and Yash Chopra under the Yash Raj Films banner. The movie stars Saif Ali Khan and Rani Mukerji in the lead roles. The film is loosely based on the 1989 romantic comedy When Harry Met Sally.... Hum Tum follows the encounters of the two main characters until they, after several years and various meetings, become friends and finally fall in love at the end of the movie. The comic characters Hum and Tum have their own animated sequences in the movie, where they represent the current state of Karan's and Rhea's relationship. The animation for this film was done by Kathaa Animations and the Special Effects by Tata Elxsi. The director Kunal Kohli has stated that the film \"is inspired from the genre When Harry Met Sally... belongs to.\" The film was generally received well by critics, and special praise went to Khan's and Mukerji's performances. It won several Filmfare Awards, including Best Actress (Mukerji), Director (Kohli), and Actor in a Comic Role (Khan). In June 2005, Khan won the National Film Award for Best Actor."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Yash_Raj_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Telle_m\u00e8re,_telle_fille"}, "Title": {"type": "literal", "value": "Telle m\u00e8re, telle fille"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/No\u00e9mie_Saglio"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Camille_Cottin|http://dbpedia.org/resource/Catherine_Jacob_(actress)|http://dbpedia.org/resource/Juliette_Binoche|http://dbpedia.org/resource/Lambert_Wilson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Telle m\u00e8re, telle fille is a French comedy film written and directed by No\u00e9mie Saglio."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Gaumont_Film_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/He's_Way_More_Famous_Than_You"}, "Title": {"type": "literal", "value": "He's Way More Famous Than You"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Urie"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Stiller|http://dbpedia.org/resource/Halley_Feiffer|http://dbpedia.org/resource/Jesse_Eisenberg|http://dbpedia.org/resource/Mamie_Gummer|http://dbpedia.org/resource/Michael_Urie|http://dbpedia.org/resource/Vanessa_L._Williams"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "He's Way More Famous Than You is a 2013 comedy feature film written by and starring Halley Feiffer and Ryan Spahn, and directed by Michael Urie, who also costars. The film also stars Jesse Eisenberg, Ben Stiller, Mamie Gummer, Ralph Macchio, Vanessa Williams, Tracee Chimo, Austin Pendleton, and Michael Chernus. It premiered at the 2013 Slamdance Film Festival, where it was acquired by Gravitas Ventures and for theatrical distribution. The film was produced by Christopher Sepulveda and Michael Anderson of Logolite Entertainment, Ur-Mee Productions and Geoff Soffer. It was released pre-theatrically on iTunes, Amazon Video and Video on Demand on April 8, 2013, through Gravitas Ventures and Warner Bros., and was released theatrically in the United States and Canada on May 10, 2013. The DVD was released on September 24, 2013 by Kino Lorber and Archstone Distribution."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Harold_&_Kumar"}, "Title": {"type": "literal", "value": "Harold & Kumar"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Danny_Leiner|http://dbpedia.org/resource/Hayden_Schlossberg|http://dbpedia.org/resource/Jon_Hurwitz"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/John_Cho|http://dbpedia.org/resource/Kal_Penn|http://dbpedia.org/resource/Neil_Patrick_Harris"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_duos"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "300"}, "Description": {"type": "literal", "value": "Harold & Kumar is the name for a series of American stoner comedy films starring John Cho (Harold) and Kal Penn (Kumar). The first film, Harold & Kumar Go to White Castle, was released on July 30, 2004, by New Line Cinema and spawned a sequel titled Harold & Kumar Escape from Guantanamo Bay, released four years later. A Very Harold & Kumar 3D Christmas, the third installment of the series, opened nationwide in the U.S. on November 4, 2011. The series has been a financial success. The three films, produced on a total budget of US$40 million, grossed $102.8 million worldwide. In addition to their box office grosses, the films were extremely successful on home video. The series has been released on both Blu-ray and DVD."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/New_Line_Cinema|http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/AV_Idol_(film)"}, "Title": {"type": "literal", "value": "AV Idol"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Hideo_Jojo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Yeo_Min-Jeong"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Japanese_sex_comedy_films|http://dbpedia.org/resource/Category:South_Korean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "AV Idol AKA Love & Seoul (AV \uc544\uc774\ub3cc in Korean, \u30e9\u30d6\uff06\u30bd\u30a6\u30eb in Japanese) is a 2012 erotic comedy film directed by Hideo Jojo. It is a co-production between Japan and South Korea."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Googly_(film)"}, "Title": {"type": "literal", "value": "Googly"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pavan_Wadeyar"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anant_Nag|http://dbpedia.org/resource/Kriti_Kharbanda|http://dbpedia.org/resource/Yash_(Kannada_actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Googly is a 2013 Indian Kannada language romantic comedy film directed by Pavan Wadeyar and produced by Jayanna Combines. Yash and Kriti Kharbanda are the lead actors while Ananth Nag and Sadhu Kokila play the primary supporting roles. The film released on 19 July 2013. The film won multiple nominations at the 3rd South Indian International Movie Awards. Having been nominated in 11 categories, the film won SIIMA awards for Best Director (Pavan Wadeyar), Best Cinematographer (Vaidi S.), Best Lyricist (Pavan Wadeyar) and Best Fight Choreographer (Ravi Varma)."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/In_a_Valley_of_Violence"}, "Title": {"type": "literal", "value": "In a Valley of Violence"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ti_West"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ethan_Hawke|http://dbpedia.org/resource/James_Ransone|http://dbpedia.org/resource/John_Travolta|http://dbpedia.org/resource/Karen_Gillan|http://dbpedia.org/resource/Taissa_Farmiga"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "In a Valley of Violence is a 2016 American Western film written, directed, produced and edited by Ti West. The film marks the second time West has directed a non-horror film. Jason Blum serves as producer through his production company Blumhouse Productions. The film stars Ethan Hawke, Taissa Farmiga, James Ransone, Karen Gillan, and John Travolta. It had its world premiere at South by Southwest on March 12, 2016. The film is scheduled to be released on October 21, 2016 by Focus World."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Focus_Features"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Reefer_Madness_(2005_film)"}, "Title": {"type": "literal", "value": "Reefer Madness: The Movie Musical"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Fickman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alan_Cumming|http://dbpedia.org/resource/Amy_Spanger|http://dbpedia.org/resource/Ana_Gasteyer|http://dbpedia.org/resource/Christian_Campbell|http://dbpedia.org/resource/John_Kassir|http://dbpedia.org/resource/Kristen_Bell|http://dbpedia.org/resource/Neve_Campbell|http://dbpedia.org/resource/Robert_Torti|http://dbpedia.org/resource/Steven_Weber_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films|http://dbpedia.org/resource/Category:German_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "Reefer Madness, also known as Reefer Madness: The Movie Musical, is a 2005 American made-for-television musical comedy film adapted from the musical of the same name based on the 1936 exploitation film also of the same title. The film, directed by Andy Fickman, written by Kevin Murphy and Dan Studney, and produced by the three, premiered on Showtime on April 16, 2005. The film stars Kristen Bell, Christian Campbell, and John Kassir reprising their stage roles, with the notable addition of Alan Cumming and Ana Gasteyer in other lead roles, with Campbell's sister Neve making a cameo appearance as Miss Poppy. Robert Torti, who played the characters of both Jack and Jesus onstage, portrays only the latter in this version."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Showtime_(TV_network)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Gardener_of_Eden"}, "Title": {"type": "literal", "value": "Gardener of Eden"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Connolly_(actor)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Erika_Christensen|http://dbpedia.org/resource/Giovanni_Ribisi|http://dbpedia.org/resource/Jerry_Ferrara|http://dbpedia.org/resource/Lukas_Haas"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Gardener of Eden is a 2007 American comedy-drama film directed by Kevin Connolly. It stars Lukas Haas, Erika Christensen and Giovanni Ribisi."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Cyrus_(2010_comedy-drama_film)"}, "Title": {"type": "literal", "value": "Cyrus"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jay_Duplass|http://dbpedia.org/resource/Mark_Duplass"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Catherine_Keener|http://dbpedia.org/resource/John_C._Reilly|http://dbpedia.org/resource/Jonah_Hill|http://dbpedia.org/resource/Marisa_Tomei"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Cyrus is a 2010 comedy-drama film written and directed by brothers Jay and Mark Duplass and starring John C. Reilly, Jonah Hill, Marisa Tomei, and Catherine Keener."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Searchlight_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/A_Hard_Day"}, "Title": {"type": "literal", "value": "A Hard Day"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kim_Seong-hun_(filmmaker)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cho_Jin-woong|http://dbpedia.org/resource/Lee_Sun-kyun"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:South_Korean_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "A Hard Day (Hangul: \ub05d\uae4c\uc9c0 \uac04\ub2e4; RR: Kkeutkkaji Ganda; lit. \"Take It to the End\") is a 2014 South Korean crime action thriller film written and directed by Kim Seong-hun, and starring Lee Sun-kyun and Cho Jin-woong. It was selected to compete in the Directors' Fortnight section of the 2014 Cannes Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Showbox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dead_Heat_(1988_film)"}, "Title": {"type": "literal", "value": "Dead Heat"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mark_Goldblatt"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Darren_McGavin|http://dbpedia.org/resource/Joe_Piscopo|http://dbpedia.org/resource/Lindsay_Frost|http://dbpedia.org/resource/Treat_Williams|http://dbpedia.org/resource/Vincent_Price"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Dead Heat is a 1988 American action comedy horror film directed by Mark Goldblatt and starring Treat Williams, Joe Piscopo and Vincent Price. The B movie is about an LAPD police officer who is murdered while attempting to arrest zombies who have been reanimated by the head of Dante Laboratories in order to carry out violent armed robberies, and decides to get revenge with the help of his former partner."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/New_World_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Slow_Video"}, "Title": {"type": "literal", "value": "Slow Video"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kim_Young-tak"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cha_Tae-hyun|http://dbpedia.org/resource/Nam_Sang-mi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:South_Korean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "Slow Video (Hangul: \uc2ac\ub85c\uc6b0 \ube44\ub514\uc624; RR: Seullou Bidio) is a 2014 South Korean comedy film written and directed by Kim Young-tak, starring Cha Tae-hyun and Nam Sang-mi. It is the second Korean film to be fully financed by American studio 20th Century Fox."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sano_Sansar"}, "Title": {"type": "literal", "value": "Sano Sansar \" (Small World)"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alok_Nembang"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Sano Sansar (Nepali: \u0938\u093e\u0928\u094b \u0938\u0902\u0938\u093e\u0930, translation: Small World) is a 2008 Nepali romantic comedy film directed by Alok Nembang. The film has a massive star cast which includes Neer Shah and newcomers Mahesh Shakya (popularly known  Karma ), Jivan Luitel and Namrata Shrestha. Sano Sansar is director Alok Nembang's directorial debut and is the second Nepali HD movie made after Kagbeni. The film is heavily influenced by the Korean movie My Sassy Girl and the English-language movie You've Got Mail."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Joker_(2012_film)"}, "Title": {"type": "literal", "value": "Joker"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Shirish_Kunder"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Akshay_Kumar|http://dbpedia.org/resource/Minisha_Lamba|http://dbpedia.org/resource/Shreyas_Talpade|http://dbpedia.org/resource/Sonakshi_Sinha"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Comedy_science_fiction_films|http://dbpedia.org/resource/Category:Indian_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "Joker is an 2012 Hindi science fiction comedy film directed by Shirish Kunder, and also his second directorial venture after Jaan-E-Mann. The film stars Akshay Kumar opposite Sonakshi Sinha in lead roles. This was the second film in which Sinha paired opposite Kumar after Rowdy Rathore (2012). The film released worldwide on 31 August 2012, and received mixed to negative response upon release. Despite collecting mediocre box office collections, the film was panned by the audience and was declared a 'disaster' at the box office. The film is regarded as one of the worst films of the decade. The trailer of the film revealed on 11 July 2012, and also in cinemas along with Cocktail."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Hari_Om_Entertainment|http://dbpedia.org/resource/UTV_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lucky_Them"}, "Title": {"type": "literal", "value": "Lucky Them"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Megan_Griffiths"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Thomas_Haden_Church|http://dbpedia.org/resource/Toni_Collette"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Lucky Them is a 2013 American comedy-drama film directed by Megan Griffiths. It was screened in the Special Presentation section at the 2013 Toronto International Film Festival, and in a June, 2014 screening at the Greenwich International Film Festival in producer Emily Wachtel's native Stamford, Connecticut.The film received positive reviews from outlets such as Variety, The Hollywood Reporter, ScreenDaily, and The Huffington Post. The film was released theatrically on May 30, 2014, by IFC Films. It was released on DVD on September 20, 2014 and available through Netflix."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Adult_Beginners"}, "Title": {"type": "literal", "value": "Adult Beginners"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ross_Katz"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bobby_Cannavale|http://dbpedia.org/resource/Joel_McHale|http://dbpedia.org/resource/Nick_Kroll|http://dbpedia.org/resource/Rose_Byrne"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Adult Beginners is a 2014 American comedy drama film directed by Ross Katz and written by Jeff Cox and Liz Flahire based on a story by Nick Kroll. The film stars Kroll, Rose Byrne, Bobby Cannavale, and Joel McHale. RADiUS-TWC acquired the North American distribution rights of the film during its premiere at the 2014 Toronto International Film Festival. The film was released in a limited release in theatres and VOD on April 24, 2015."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/The_Weinstein_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/My_Amnesia_Girl"}, "Title": {"type": "literal", "value": "My Amnesia Girl"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Cathy_Garcia-Molina"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/John_Lloyd_Cruz|http://dbpedia.org/resource/Toni_Gonzaga"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Philippine_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "My Amnesia Girl is a 2010 Filipino romantic film starring John Lloyd Cruz and Toni Gonzaga. It was released by Star Cinema and directed by Cathy Garcia-Molina. The film is the highest grossing Filipino film of 2010."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Star_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Zombie_Night_2:_Awakening"}, "Title": {"type": "literal", "value": "Zombie Night"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_J._Francis"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:Zombie_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Zombie Night 2: Awakening is a 2006 Canadian horror film directed by David J. Francis. It is a conceptual sequel to Zombie Night. It was followed in 2008 by Reel Zombies."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_TV_Set"}, "Title": {"type": "literal", "value": "The TV Set"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jake_Kasdan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/David_Duchovny|http://dbpedia.org/resource/Ioan_Gruffudd|http://dbpedia.org/resource/Judy_Greer|http://dbpedia.org/resource/Sigourney_Weaver"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "The TV Set is a 2006 comedy-drama film about an idealistic writer attempting to bring his vision for a TV show to fruition on the small screen."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox|http://dbpedia.org/resource/THINKFilm"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/How_to_Train_Your_Dragon_(film)"}, "Title": {"type": "literal", "value": "How to Train Your Dragon"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Sanders_(director)|http://dbpedia.org/resource/Dean_DeBlois"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/America_Ferrera|http://dbpedia.org/resource/Christopher_Mintz-Plasse|http://dbpedia.org/resource/Craig_Ferguson|http://dbpedia.org/resource/Gerard_Butler|http://dbpedia.org/resource/Jay_Baruchel|http://dbpedia.org/resource/Jonah_Hill|http://dbpedia.org/resource/Kristen_Wiig|http://dbpedia.org/resource/T.J._Miller"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_fantasy-comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "How to Train Your Dragon is a 2010 American 3D computer-animated action-fantasy film produced by DreamWorks Animation and distributed by Paramount Pictures. Loosely based on the British book series of the same name by Cressida Cowell, the film was directed by Chris Sanders and Dean DeBlois, the duo who directed Disney's Lilo & Stitch. It stars the voices of Jay Baruchel, Gerard Butler, Craig Ferguson, America Ferrera, Jonah Hill, T.J. Miller, Kristen Wiig, and Christopher Mintz-Plasse. The story takes place in a mythical Viking world where a young Viking teenager named Hiccup aspires to follow his tribe's tradition of becoming a dragon slayer. After finally capturing his first dragon, and with his chance at last of gaining the tribe's acceptance, he finds that he no longer wants to kill it and instead befriends it. The film was released March 26, 2010, and was a critical and commercial success, earning acclaim from film critics and audiences and earning nearly $500 million worldwide. It was nominated for the Academy Award for Best Animated Feature and Best Original Score at the 83rd Academy Awards, but lost to Toy Story 3 and The Social Network, respectively. The movie also won ten Annie Awards, including Best Animated Feature. A sequel, How to Train Your Dragon 2, was written and directed by Dean DeBlois and released on June 13, 2014, and was also universally acclaimed and a box office success. A second sequel, How to Train Your Dragon 3 is to be released on May 18, 2018. The film's success has also inspired other merchandise, including a video game and a TV series."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/You_Lucky_Dog"}, "Title": {"type": "literal", "value": "You Lucky Dog"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Paul_Schneider_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chelsea_Noble|http://dbpedia.org/resource/John_de_Lancie|http://dbpedia.org/resource/Kirk_Cameron"}, "Published": {"type": "literal", "value": "1998-06-27"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:American_fantasy-comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "You Lucky Dog is a 1998 Disney Channel Original Movie, first aired on June 27, 1998. It stars Kirk Cameron and was directed by Paul Schneider."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Disney-ABC_Domestic_Television"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Pineapple_Express_(film)"}, "Title": {"type": "literal", "value": "Pineapple Express"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_Gordon_Green"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Danny_McBride|http://dbpedia.org/resource/Gary_Cole|http://dbpedia.org/resource/James_Franco|http://dbpedia.org/resource/Rosie_Perez"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "Pineapple Express is a 2008 American action comedy film directed by David Gordon Green, written by Seth Rogen and Evan Goldberg and starring Rogen and James Franco. The plot concerns a process server and his marijuana dealer friend forced to flee from hitmen and a corrupt police officer after witnessing them commit a murder. Producer Judd Apatow, who previously worked with Rogen and Goldberg on Knocked Up and Superbad, assisted in developing the story, which was partially inspired by the bromantic comedy subgenre. Columbia Pictures released the film on August 6, 2008, and it grossed $101.6 million worldwide. Franco was nominated for a Golden Globe Award for his performance in the film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Idiotmaker's_Gravity_Tour"}, "Title": {"type": "literal", "value": "The Idiotmaker's Gravity Tour"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Daniel_Kremer"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Peter_Brunette"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "The Idiotmaker's Gravity Tour is a 2011 American independent comedy-drama film starring William Cully Allen, Glenn Walsh, K.J. Linhein, Pappu Rai, Peter Brunette, Erin Lovett Sherman, Alanna Blair, William McKeever and written and directed by Daniel Kremer."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dangerously_Delicious"}, "Title": {"type": "literal", "value": "Dangerously Delicious"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jason_Woliner"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aziz_Ansari"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Stand-up_comedy_concert_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "61"}, "Description": {"type": "literal", "value": "Dangerously Delicious is a 2012 American stand-up comedy film written by and starring Aziz Ansari. It was filmed in June 2011 at the Warner Theatre in Washington, D.C. during his Dangerously Delicious Tour."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Zombieland"}, "Title": {"type": "literal", "value": "Zombieland"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ruben_Fleischer"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:Zombie_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "Zombieland is a 2009 American horror comedy zombie film directed by Ruben Fleischer and written by Rhett Reese and Paul Wernick. The film stars Woody Harrelson, Jesse Eisenberg, Emma Stone and Abigail Breslin as survivors of a zombie apocalypse. The film follows a geeky college kid making his way through the zombie apocalypse, meeting three strangers along the way and together taking an extended road trip across the Southwestern United States in an attempt to find a sanctuary free from zombies. The film premiered at Fantastic Fest on September 25, 2009 and was theatrically released on October 2, 2009 in the United States by Columbia Pictures. Zombieland was a critical and commercial success, grossing more than $60.8 million in 17 days and surpassing the 2004 film Dawn of the Dead as the top-grossing zombie film in the United States until World War Z in 2013."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tales_from_the_Crapper"}, "Title": {"type": "literal", "value": "Tales from the Crapper"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chad_Ferrin|http://dbpedia.org/resource/Gabriel_Friedman|http://dbpedia.org/resource/Lloyd_Kaufman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Arban_Ornelas|http://dbpedia.org/resource/Debbie_Rochon|http://dbpedia.org/resource/James_Gunn_(filmmaker)|http://dbpedia.org/resource/Jorge_Garcia|http://dbpedia.org/resource/Julie_Strain|http://dbpedia.org/resource/Kevin_Eastman|http://dbpedia.org/resource/Masuimi_Max|http://dbpedia.org/resource/Ron_Jeremy"}, "Published": {"type": "literal", "value": "2004-09-28"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Tales from the Crapper is a 2004 straight-to-video anthology film that was a spoof of the Tales from the Crypt comics. The film was released by Troma Entertainment."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Troma_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/F\u00edask\u00f3"}, "Title": {"type": "literal", "value": "F\u00edask\u00f3"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ragnar_Bragason"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kristbj\u00f6rg_Kjeld|http://dbpedia.org/resource/R\u00f3bert_Arnfinnsson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "F\u00edask\u00f3 (English title: Fiasco) is an Icelandic film written and directed by Ragnar Bragason."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Friends_with_Benefits_(film)"}, "Title": {"type": "literal", "value": "Friends with Benefits"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Will_Gluck"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bryan_Greenberg|http://dbpedia.org/resource/Jenna_Elfman|http://dbpedia.org/resource/Justin_Timberlake|http://dbpedia.org/resource/Mila_Kunis|http://dbpedia.org/resource/Patricia_Clarkson|http://dbpedia.org/resource/Richard_Jenkins|http://dbpedia.org/resource/Woody_Harrelson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "Friends with Benefits is a 2011 American romantic comedy film directed by Will Gluck, and starring Justin Timberlake and Mila Kunis in the lead roles. The film features Patricia Clarkson, Jenna Elfman, Bryan Greenberg, Nolan Gould, Richard Jenkins, and Woody Harrelson in supporting roles. The plot revolves around Dylan Harper (Timberlake) and Jamie Rellis (Kunis), who meet in New York City, and naively believe adding sex to their friendship will not lead to complications. Over time, they begin to develop deep mutual feelings for each other, only to deny it each time they are together. Principal casting for Friends with Benefits took place over a three-month period from April to July 2010. Gluck reworked the original script and plot shortly after casting Timberlake and Kunis. Filming began in New York City on July 20, 2010, and concluded in Los Angeles in September 2010. The film was distributed by Screen Gems and was released in North America on July 22, 2011. Friends with Benefits was generally well received by film critics, most of whom praised the chemistry between the lead actors. The film became a commercial success at the box office, grossing over $149.5 million worldwide, against a budget of $35 million. It was nominated for two People's Choice Awards\u2014Favorite Comedy Movie, and Favorite Comedic Movie Actress (Kunis)\u2014and two Teen Choice Awards for Timberlake and Kunis."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Screen_Gems"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Spectacular_Now"}, "Title": {"type": "literal", "value": "The Spectacular Now"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Ponsoldt"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "The Spectacular Now is a 2013 American romantic comedy-drama film directed by James Ponsoldt, written by Scott Neustadter and Michael H. Weber and starring Miles Teller and Shailene Woodley. The film is based on the novel of the same name by Tim Tharp. The film premiered at the 2013 Sundance Film Festival, where it garnered critical acclaim."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/A24_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Baby_Mama_(film)"}, "Title": {"type": "literal", "value": "Baby Mama"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_McCullers"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amy_Poehler|http://dbpedia.org/resource/Dax_Shepard|http://dbpedia.org/resource/Greg_Kinnear|http://dbpedia.org/resource/Sigourney_Weaver|http://dbpedia.org/resource/Tina_Fey"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "Baby Mama is a 2008 American romantic comedy film written and directed by Michael McCullers and starring Tina Fey, Amy Poehler, Greg Kinnear, Dax Shepard and Sigourney Weaver."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Secretly,_Greatly"}, "Title": {"type": "literal", "value": "Secretly, Greatly"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jang_Cheol-soo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kim_Soo-Hyun|http://dbpedia.org/resource/Lee_Hyun-woo_(actor)|http://dbpedia.org/resource/Park_Ki-woong"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:South_Korean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "123"}, "Description": {"type": "literal", "value": "Secretly, Greatly (Hangul: \uc740\ubc00\ud558\uac8c \uc704\ub300\ud558\uac8c; RR: Eunmilhage Widaehage) is a 2013 South Korean action comedy-drama film starring Kim Soo-hyun, Park Ki-woong, and Lee Hyun-woo, who play North Korean spies who infiltrate South Korea as a village idiot, a rock musician, and a high school student, respectively. They assimilate to small town life while awaiting their orders, until one day, due to a sudden power shift in the North, their mission turns out to be an order to commit suicide. The film is based on the 2010 spy webtoon series Covertness by Hun, which has received over 40 million page hits. And upon its release on June 5, 2013, the film broke several box office records in South Korea: the highest single day opening for a domestic film, most tickets sold in one day for a domestic film, the biggest opening weekend, the highest-grossing webtoon-based film, and the fastest movie to reach the 1 million, 2 million, 3 million, and 4 million marks in audience number. Movie pundits attribute its success to a large percentage of teen audience turnout."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Showbox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tormented_(2009_British_film)"}, "Title": {"type": "literal", "value": "Tormented"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jon_Wright"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alex_Pettyfer|http://dbpedia.org/resource/April_Pearson|http://dbpedia.org/resource/Calvin_Dean|http://dbpedia.org/resource/Dimitri_Leonidas|http://dbpedia.org/resource/Georgia_King|http://dbpedia.org/resource/Larissa_Wilson|http://dbpedia.org/resource/Sophie_Wu|http://dbpedia.org/resource/Tom_Hopper|http://dbpedia.org/resource/Tuppence_Middleton"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:British_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Tormented is a 2009 British comedy horror and slasher film starring Alex Pettyfer, April Pearson, Dimitri Leonidas, Calvin Dean and newcomer Tuppence Middleton. It was directed by Jon Wright, produced by Cavan Ash, Tracy Brimm, Arvind Ethan David and Kate Myers and written by newcomer Stephen Prentice, the film was released on 22 May 2009 in the UK by Warner Bros.. Tormented was co-produced by BBC Films, Path\u00e9, Slingshot Studios, Forward Films, and Screen West Midlands, and the music was composed by Orbital member Paul Hartnoll. The film received mixed to positive reviews from critics and it earned \u00a3284,757 on a \u00a3700,000 budget. Tormented was released on DVD and Blu-ray on 28 September 2009 by MPI Home Video."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Films|http://dbpedia.org/resource/MPI_Home_Video|http://dbpedia.org/resource/Paramount_Vantage|http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jewel_of_the_Sahara"}, "Title": {"type": "literal", "value": "Jewel of the Sahara"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ariel_Vromen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Clifford_David|http://dbpedia.org/resource/Gerard_Butler|http://dbpedia.org/resource/Peter_Franz\u00e9n"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Fantasy-comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "17"}, "Description": {"type": "literal", "value": "Jewel of the Sahara is a 2001 film starring Gerard Butler, Clifford David as the old Francois Renard and Peter Franz\u00e9n as the young Francois Renard. Jewel of the Sahara is comedy, fantasy short film directed by Ariel Vromen, who also wrote the screenplay, was the executive producer and edited the film. The film was made by Keyser Productions."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Eating_Out"}, "Title": {"type": "literal", "value": "Eating Out"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Q._Allan_Brocka"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Emily_Stiles|http://dbpedia.org/resource/Jim_Verraros|http://dbpedia.org/resource/Rebekah_Kochan|http://dbpedia.org/resource/Ryan_Carnes|http://dbpedia.org/resource/Scott_Lunsford"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "Eating Out is a 2004 gay-themed romantic comedy film written and directed by Q. Allan Brocka."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Roadside_Romeo"}, "Title": {"type": "literal", "value": "Roadside Romeo"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jugal_Hansraj"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jaaved_Jaaferi|http://dbpedia.org/resource/Kareena_Kapoor_Khan|http://dbpedia.org/resource/Saif_Ali_Khan|http://dbpedia.org/resource/Sanjai_Mishra|http://dbpedia.org/resource/Vrajesh_Hirjee"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Roadside Romeo is a 2008 3D Indian-American computer animated romantic musical comedy family film written and directed by Jugal Hansraj and produced by Aditya Chopra and Yash Chopra of Yash Raj Films and distributed by Walt Disney Studios Motion Pictures in United States, India, and all around the world. It was released on 24 October 2008 in the United States and India. This was the second Bollywood movie to receive a North American release by a Hollywood studio, following Sony Pictures' Saawariya (2007). The title character is a dog living in Mumbai, as voiced by Saif Ali Khan; his girlfriend, Laila, is voiced by Kareena Kapoor. This was the first voiceover in an animated production for both actors. Roadside Romeo was also Hansraj's first animated directorial debut. Roadside Romeo received generally negative reviews from critics, with most of the criticism focused on the film's script, predictable plot and overuse of cliches."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Observe_and_Report"}, "Title": {"type": "literal", "value": "Observe and Report"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jody_Hill"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Observe and Report is a 2009 American black comedy film written and directed by Jody Hill, starring Seth Rogen, Anna Faris and Ray Liotta."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/I_Love_NY_(2015_film)"}, "Title": {"type": "literal", "value": "I Love NY"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Radhika_Rao_(director)|http://dbpedia.org/resource/Vinay_Sapru"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kangana_Ranaut|http://dbpedia.org/resource/Sunny_Deol|http://dbpedia.org/resource/Tannishtha_Chatterjee"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "127"}, "Description": {"type": "literal", "value": "I Love NY, also known as I Love New Year, is an Indian romantic comedy film directed by Radhika Rao and Vinay Sapru starring Sunny Deol and Kangana Ranaut in lead roles. The film is produced by Bhushan Kumar and Krishan Kumar under the banner of Super Cassettes Industries Ltd. The film was extensively shot in Mumbai, New York City and Bangkok. The main plot was taken from the Russian romantic comedy The Irony of Fate (1976). After numerous delays, the film released on 10 July 2015."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Golmaal_Returns"}, "Title": {"type": "literal", "value": "Golmaal Returns"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rohit_Shetty"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ajay_Devgn|http://dbpedia.org/resource/Amrita_Arora|http://dbpedia.org/resource/Anjana_Sukhani|http://dbpedia.org/resource/Arshad_Warsi|http://dbpedia.org/resource/Celina_Jaitley|http://dbpedia.org/resource/Kareena_Kapoor|http://dbpedia.org/resource/Shreyas_Talpade|http://dbpedia.org/resource/Tusshar_Kapoor"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Golmaal Returns is a 2008 Bollywood comedy drama film directed by Rohit Shetty. The film is a sequel to the 2006 film, Golmaal: Fun Unlimited with Ajay Devgn, Tusshar Kapoor and Arshad Warsi reprising their roles, whilst Shreyas Talpade replaced the role originally played by Sharman Joshi. The film also features Kareena Kapoor, Amrita Arora and Celina Jaitley in supporting roles. The film is remake of 1989 marathi film Pheka Pheki starring Ashok Saraf and Laxmikant Berde. Where the role of Ashok Saraf is played by Ajay Devgn and the role of Laxmikant Berde is played by Shreyas Talpade in this film. The film's storyline also meets that one of 1973 film, Aaj Ki Taaza Khabar. Produced by Dhillin Mehta under Shree Ashtavinayak Cine Vision LTD, the film released on 29 October 2008 and received mixed response from critics. However, managed to do very well at the box office. On 5 November 2010, the film spawned an sequel Golmaal 3, which became the second highest grossing Bollywood film of 2010."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Shree_Ashtavinayak_Cine_Vision_Ltd"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Max_Keeble's_Big_Move"}, "Title": {"type": "literal", "value": "Max Keeble's Big Move"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tim_Hill_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alex_D._Linz|http://dbpedia.org/resource/Josh_Peck|http://dbpedia.org/resource/Zena_Grey"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Max Keeble's Big Move is a 2001 American comedy film directed by Tim Hill, written by David L. Watts, James Greer, Jonathan Bernstein, and Mark Blackwell, and starring Alex D. Linz as the title character. The film was released in North America on October 5, 2001 by Walt Disney Pictures."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Kings_of_Summer"}, "Title": {"type": "literal", "value": "The Kings of Summer"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jordan_Vogt-Roberts"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alison_Brie|http://dbpedia.org/resource/Erin_Moriarty_(actress)|http://dbpedia.org/resource/Gabriel_Basso|http://dbpedia.org/resource/Marc_Evan_Jackson|http://dbpedia.org/resource/Mary_Lynn_Rajskub|http://dbpedia.org/resource/Megan_Mullally|http://dbpedia.org/resource/Mois\u00e9s_Arias|http://dbpedia.org/resource/Nick_Offerman|http://dbpedia.org/resource/Nick_Robinson_(American_actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "The Kings of Summer (originally Toy's House) is a 2013 American independent coming-of-age comedy-drama film that premiered at the 2013 Sundance Film Festival. It stars Nick Robinson, Mois\u00e9s Arias, Gabriel Basso, and Nick Offerman. The film was released in a limited release on May 31, 2013, by CBS Films."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Big_Beach_(company)"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Presto_(film)"}, "Title": {"type": "literal", "value": "Presto"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Doug_Sweetland"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Doug_Sweetland"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "5.283333333333333"}, "Description": {"type": "literal", "value": "Presto is a 2008 American Pixar computer-animated short film shown in theaters before their feature-length film WALL-E. The short is about a magician trying to perform a show with his uncooperative rabbit and is a gag-filled homage to classic cartoons such as Tom and Jerry and Looney Tunes. Presto was directed by veteran Pixar animator Doug Sweetland, in his directorial debut. The original idea for the short was a magician who incorporated a rabbit into his act who suffered from stage fright. This was considered to be too long and complicated, and the idea was reworked. To design the theater featured in Presto, the filmmakers visited several opera houses and theaters for set design ideas. Problems arose when trying to animate the theater's audience of 2,500 patrons; this was deemed too expensive, and was solved by showing the back of the audience. Reaction to the short was positive, and reviewers of WALL-E's home media release considered it to be an enjoyable special feature. Presto was nominated for an Annie Award and Academy Award. It was included in the Animation Show of Shows in 2008."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Friends_with_Kids"}, "Title": {"type": "literal", "value": "Friends with Kids"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jennifer_Westfeldt"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Friends with Kids is a 2011 American romantic comedy film written, produced, and directed by Jennifer Westfeldt, who also stars in the film. Kristen Wiig, Adam Scott, Maya Rudolph, Chris O'Dowd, Edward Burns, Megan Fox and Jon Hamm also star in the film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lions_Gate_Entertainment|http://dbpedia.org/resource/Roadside_Attractions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Paper_Soldiers"}, "Title": {"type": "literal", "value": "Paper Soldiers"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Damon_Dash"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Beanie_Sigel|http://dbpedia.org/resource/Kevin_Hart_(actor)|http://dbpedia.org/resource/Memphis_Bleek|http://dbpedia.org/resource/Michael_Rapaport|http://dbpedia.org/resource/Noreaga|http://dbpedia.org/resource/Stacey_Dash|http://dbpedia.org/resource/Tiffany_Withers"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Paper Soldiers is an urban crime comedy released in 2002. This hip-hop comedy from Roc-A-Fella Records' film division stars Kevin Hart (in his film debut), Beanie Sigel, Stacey Dash, Kamal Ahmed, and rapper Jay-Z appears in a cameo role. Kevin Hart plays the character Shawn, a rookie thief who is part of a crew of thieves who does small-time jobs like house breaking. The crew itself is not exactly a highly polished operation, and the crew's capers result in comic mishaps far more often than actual thefts. They still manage to do some jobs like breaking into Jay-Z's house and robbing some of its material goods, but predictably, they receive prison time for robbery or aggravated assault. Beanie Sigel plays Stu, a hot-headed hood bully that does small robberies to make some cash, Damon Dash and Memphis Bleek as a thieves of another crew, Stacey Dash as a beautiful woman named Tamika, Myxt Matanza as the bodega owner and Jay-Z as the rapper himself. It was produced by Roc-A-Fella Films and distributed by Universal Pictures."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kill_Buljo"}, "Title": {"type": "literal", "value": "Kill Buljo"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tommy_Wirkola"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Frank_Arne_Olsen|http://dbpedia.org/resource/Linda_\u00d8verli_Nilsen|http://dbpedia.org/resource/Martin_Hykkerud|http://dbpedia.org/resource/Natasha_Angel_Dahle|http://dbpedia.org/resource/Stig_Frode_Henriksen|http://dbpedia.org/resource/Tommy_Wirkola"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Kill Buljo is a 2007 Norwegian parody of the Quentin Tarantino film Kill Bill. It is set in Finnmark, Norway and portrays the protagonist Jompa Tormann's hunt for Tampa and Papa Buljo. The film depends heavily on satirizing stereotypes about Norway's Sami population. According to the Norwegian newspaper Dagbladet, Quentin Tarantino has watched the film's trailer and was quite happy about it, looking forward to seeing the film itself."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Oro_Film"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Love_Punch"}, "Title": {"type": "literal", "value": "The Love Punch"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Joel_Hopkins"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Celia_Imrie|http://dbpedia.org/resource/Emma_Thompson|http://dbpedia.org/resource/Laurent_Lafitte|http://dbpedia.org/resource/Louise_Bourgoin|http://dbpedia.org/resource/Pierce_Brosnan|http://dbpedia.org/resource/Timothy_Spall"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "(For other uses, see Love Punch (disambiguation).) The Love Punch is a 2013 British comedy film written and directed by Joel Hopkins. It was screened in the Gala Presentation section at the 2013 Toronto International Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Entertainment_One"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jersey_Girl_(2004_film)"}, "Title": {"type": "literal", "value": "Jersey Girl"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Smith"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Affleck|http://dbpedia.org/resource/George_Carlin|http://dbpedia.org/resource/Jason_Biggs|http://dbpedia.org/resource/Jennifer_Lopez|http://dbpedia.org/resource/Liv_Tyler|http://dbpedia.org/resource/Raquel_Castro|http://dbpedia.org/resource/Will_Smith"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Jersey Girl is a 2004 American comedy-drama film written, co-edited, and directed by Kevin Smith. It stars Ben Affleck, Liv Tyler, Raquel Castro, George Carlin, Jason Biggs, Jennifer Lopez, and Will Smith. At $35 million, it was Kevin Smith's biggest-budget project but went on to become a box office bomb. It was the second one where Ben Affleck and Liv Tyler played a couple after Armageddon. It was the first one written and directed by Smith not to be set in the View Askewniverse and the first one not to feature appearances by Jay and Silent Bob, although animated versions of them appear in the View Askew logo."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Miramax_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Harold_&_Kumar_Escape_from_Guantanamo_Bay"}, "Title": {"type": "literal", "value": "Harold & Kumar Escape from Guantanamo Bay"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Hayden_Schlossberg|http://dbpedia.org/resource/Jon_Hurwitz"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Danneel_Harris|http://dbpedia.org/resource/John_Cho|http://dbpedia.org/resource/Kal_Penn|http://dbpedia.org/resource/Neil_Patrick_Harris|http://dbpedia.org/resource/Rob_Corddry"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102|107"}, "Description": {"type": "literal", "value": "Harold & Kumar Escape from Guantanamo Bay is a 2008 American stoner comedy film, and the second installment of the Harold & Kumar series. The film was written and directed by Jon Hurwitz and Hayden Schlossberg. The story continues where Harold & Kumar Go to White Castle leaves off, with Harold Lee (John Cho) and Kumar Patel (Kal Penn) flying to Amsterdam, but they are imprisoned after being mistaken for terrorists, and end up on a series of comical misadventures when they escape from Guantanamo Bay. The film also stars Paula Garc\u00e9s, Neil Patrick Harris, Jon Reep, Rob Corddry, Ed Helms, David Krumholtz, Eddie Kaye Thomas, Jack Conley, Roger Bart, Danneel Harris, Eric Winter, Adam Herschman, and Richard Christy. The film was released on April 25, 2008 by Warner Bros.; this film was the first New Line Cinema title to be distributed by Warner Bros. since New Line Cinema became a division of Warner Bros. It is also the first Harold & Kumar film made in association with Mandate Pictures. The film was released on DVD and Blu-ray Disc on July 29, 2008."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/New_Line_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jalla!_Jalla!"}, "Title": {"type": "literal", "value": "Jalla! Jalla!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Josef_Fares"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Fares_Fares|http://dbpedia.org/resource/Laleh_Pourkarim|http://dbpedia.org/resource/Torkel_Petersson|http://dbpedia.org/resource/Tuva_Novotny"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Jalla! Jalla! is a Swedish comedy film, which was released to cinemas in Sweden on 22 December 2000 directed by Josef Fares starring Fares Fares, Torkel Petersson, Tuva Novotny and Laleh Pourkarim as the main roles. It was the debut film by Josef Fares and one of his most well-known. The film received eight nominations and won four, including Best Film. \u201cJalla! Jalla!\u201d means \u201cCome on!\u201d or \u201cHurry up!\u201d in Arabic."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Celeste_and_Jesse_Forever"}, "Title": {"type": "literal", "value": "Celeste and Jesse Forever"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lee_Toland_Krieger"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Samberg|http://dbpedia.org/resource/Ari_Graynor|http://dbpedia.org/resource/Elijah_Wood|http://dbpedia.org/resource/Emma_Roberts|http://dbpedia.org/resource/Eric_Christian_Olsen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Celeste and Jesse Forever is a 2012 American romantic comedy-drama film directed by Lee Toland Krieger. It stars Rashida Jones and Andy Samberg, and was written by Jones and Will McCormack, who also has a role in the film. It was released on August 3, 2012, in New York and Los Angeles."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Buena_Vista_International|http://dbpedia.org/resource/Sony_Pictures_Classics"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Chotta_Mumbai"}, "Title": {"type": "literal", "value": "Chotta Mumbai"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Anwar_Rasheed"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bhavana_Menon|http://dbpedia.org/resource/Bijukuttan|http://dbpedia.org/resource/Indrajith_Sukumaran|http://dbpedia.org/resource/Jagathy_Sreekumar|http://dbpedia.org/resource/Kalabhavan_Mani|http://dbpedia.org/resource/Manikuttan|http://dbpedia.org/resource/Maniyanpilla_Raju|http://dbpedia.org/resource/Mohanlal|http://dbpedia.org/resource/Rajan_P._Dev|http://dbpedia.org/resource/Saikumar_(Malayalam_actor)|http://dbpedia.org/resource/Siddique_(actor)"}, "Published": {"type": "literal", "value": "2007-04-06"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "129"}, "Description": {"type": "literal", "value": "Chotta Mumbai is a 2007 Malayalam comedy film directed by Anwar Rasheed, written by Benny P Nayarambalam, and produced by Maniyanpilla Raju. The film stars Mohanlal, Siddique, Saikumar, Bhavana, Jagathy Sreekumar, Indrajith, Manikuttan, Bijukuttan, Kalabhavan Mani, and Rajan P. Dev. Rahul Raj composed the score and soundtrack of the movie. The film opened to positive reviews from critics and went on to become a blockbuster.The film was the third highest grosser of year behind Mayavi and Hello."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bekas_(film)"}, "Title": {"type": "literal", "value": "Bekas"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Karzan_Kader"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Bekas is a Kurdish comedy-drama movie written and directed by Karzan Kader and released in 2012.. The film revolves around two shoeshine boys who set off for America on their donkey, named Michael Jackson."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kevi_Rite_Jaish"}, "Title": {"type": "literal", "value": "Kevi Rite Jaish"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Abhishek_Jain"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anang_Desai|http://dbpedia.org/resource/Rakesh_Bedi|http://dbpedia.org/resource/Tom_Alter"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "128"}, "Description": {"type": "literal", "value": "Kevi Rite Jaish (Gujarati: \u0a95\u0ac7\u0ab5\u0ac0 \u0ab0\u0ac0\u0aa4\u0ac7 \u0a9c\u0a88\u0ab6) is a 2012 Indian Gujarati-language drama film directed by Abhishek Jain and produced by Nayan Jain. The film is a satire on the fascination and obsession of the Patels' - a Gujarati farmer community - migration to the U.S. Over the last half century, thousands of Patels have migrated to the U.S.A and have come to dominate its motel industry. The film stars Divyang Thakkar, Veronica Kalpana-Gautam, Tejal Panchasara, Kenneth Desai, and Anang Desai."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/CineMan_Productions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Deadpool_(film)"}, "Title": {"type": "literal", "value": "Deadpool"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tim_Miller_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "Deadpool is a 2016 American superhero comedy film directed by Tim Miller and written by Rhett Reese and Paul Wernick, based on the Marvel Comics character of the same name. It is the eighth installment in the X-Men film series, and stars Ryan Reynolds, Morena Baccarin, Ed Skrein, T.J. Miller, Gina Carano, Leslie Uggams and Brianna Hildebrand. In Deadpool, antihero Wade Wilson hunts the man who nearly destroyed his life. Development began in February 2004 with New Line Cinema, but put the film in turnaround in March 2005, with 20th Century Fox buying the rights. In May 2009, after Reynolds portrayed the character in X-Men Origins: Wolverine, Fox lent the film to writers, and Miller was hired for his directorial debut in April 2011. Enthusiastic acclaim from leaked CGI test footage by Miller in July 2014 led to Fox greenlighting the film in September. Additional casting began in early 2015, and principal photography commenced in Vancouver from March to May. Deadpool premiered in Paris on February 8, 2016, and was released on February 12 in the United States in IMAX, DLP, D-Box and premium large format. The film was a massive blockbuster success, grossing over $782 million worldwide and breaking numerous box office records, including becoming the seventh highest-grossing film of 2016, the highest-grossing R-rated film of all time when unadjusted for inflation, and the highest-grossing X-Men film. It also received generally positive reviews, with many praising Reynolds' performance and the film's style, black humor and action sequences. Shortly after its success, a sequel was greenlit by Fox."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hotel_Beautifool"}, "Title": {"type": "literal", "value": "Hotel Beautifool"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sameer_Iqbal_Patel"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Brijendra_Kala|http://dbpedia.org/resource/Imam_Siddique|http://dbpedia.org/resource/Johnny_Lever|http://dbpedia.org/resource/Rejith_Menon|http://dbpedia.org/resource/Rohit_Khurana"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Hotel Beautifool is an under production Bollywood film starring Rejith Menon, Johnny Lever, Brijendra Kala, Imam Siddique. Directed by Sameer Iqbal Patel."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ned_(film)"}, "Title": {"type": "literal", "value": "Ned"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Abe_Forsythe"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Abe_Forsythe|http://dbpedia.org/resource/Damon_Herriman|http://dbpedia.org/resource/Felix_Williamson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Australian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "81"}, "Description": {"type": "literal", "value": "For the 2010 British film by Peter Mullan, see Neds (film). Ned is a 2003 Australian film, directed by Abe Forsythe. It is satire of Australian outlaw Ned Kelly, and his iconographical status as a \"hero.\" The film was released in the same year as Ned Kelly, starring Heath Ledger. In November 2006 on Vega FM host Shaun Micallef called Ned \"The funniest Australian film made in the last ten years.\""}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Becker_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Trolls_(film)"}, "Title": {"type": "literal", "value": "Trolls"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mike_Mitchell_(director)|http://dbpedia.org/resource/Walt_Dohrn"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anna_Kendrick|http://dbpedia.org/resource/Gwen_Stefani|http://dbpedia.org/resource/James_Corden|http://dbpedia.org/resource/Justin_Timberlake|http://dbpedia.org/resource/Russell_Brand|http://dbpedia.org/resource/Zooey_Deschanel"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_musical_comedy_films|http://dbpedia.org/resource/Category:American_fantasy-comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Trolls is a 2016 American 3D computer-animated musical buddy comedy film based on the dolls of the same name by Thomas Dam. Directed by Mike Mitchell, and co-directed by Walt Dohrn at his feature debut, the film is produced by Gina Shay, and written by Jonathan Aibel, Glenn Berger, and Erica Rivinoja. The film stars the voices of Anna Kendrick, Justin Timberlake, Zooey Deschanel, Russell Brand, James Corden, and Gwen Stefani. It revolves around two trolls on a quest to save their village from destruction by the Bergens, creatures who devour trolls. Produced as the 33rd animated feature by DreamWorks Animation, the film premiered on October 8, 2016, at the BFI London Film Festival, and is scheduled to be released on November 4, 2016, by 20th Century Fox."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Cinco_(film)"}, "Title": {"type": "literal", "value": "Cinco"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Cathy_Garcia-Molina"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/AJ_Perez|http://dbpedia.org/resource/Jodi_Sta._Maria|http://dbpedia.org/resource/Maja_Salvador|http://dbpedia.org/resource/Mariel_Rodriguez|http://dbpedia.org/resource/Pokwang|http://dbpedia.org/resource/Rayver_Cruz|http://dbpedia.org/resource/Robi_Domingo|http://dbpedia.org/resource/Sam_Concepcion|http://dbpedia.org/resource/Zanjoe_Marudo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Philippine_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "151"}, "Description": {"type": "literal", "value": "Cinco (Five) is a 2010 Filipino psychological supernatural horror film produced and released by Star Cinema. The film consists of five different horror stories with various actors and directors. The film was released on July 14, 2010."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Star_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/13_Sins"}, "Title": {"type": "literal", "value": "13 Sins"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Daniel_Stamm"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Devon_Graye|http://dbpedia.org/resource/Mark_Webber_(actor)|http://dbpedia.org/resource/Pruitt_Taylor_Vince|http://dbpedia.org/resource/Ron_Perlman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:Criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "13 Sins (also known as 13: Game of Death) is a 2014 American horror thriller film directed by Daniel Stamm. The film is a remake of the 2006 Thai horror comedy film 13 Beloved. Mark Webber stars as Elliot, a meek salesman who accepts a series of increasingly disturbing and criminal challenges. It premiered at the 2014 SXSW film festival and was released theatrically in the United States on April 18, 2014."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Dimension_Films|http://dbpedia.org/resource/Entertainment_One"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Freddy_Got_Fingered"}, "Title": {"type": "literal", "value": "Freddy Got Fingered"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tom_Green"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anthony_Michael_Hall|http://dbpedia.org/resource/Eddie_Kaye_Thomas|http://dbpedia.org/resource/Harland_Williams|http://dbpedia.org/resource/Julie_Hagerty|http://dbpedia.org/resource/Marisa_Coughlan|http://dbpedia.org/resource/Rip_Torn|http://dbpedia.org/resource/Tom_Green"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "Freddy Got Fingered is a 2001 American black comedy film directed, written by Tom Green and Derek Harvie and starring Tom Green. The film follows Green as a 28-year-old slacker who wishes to become a professional cartoonist. The film's plot resembles Green's struggles as a young man trying to get his TV series picked up, which would later become the popular MTV show The Tom Green Show. The film was critically panned at the time of its release, many considering it one of the worst films of all time. It won five Golden Raspberry Awards out of eight nominations, as well as a Dallas-Fort Worth Film Critics Association Award for Worst Picture. Despite this the film developed a cult following, and has also met with more positive praise over time, most notably from The New York Times, Metacritic, IFC.com and Splitsider. Despite a mediocre box office run, the film became a financial success by selling millions of copies on DVD."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Parental_Guidance_(film)"}, "Title": {"type": "literal", "value": "Parental Guidance"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Fickman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bailee_Madison|http://dbpedia.org/resource/Bette_Midler|http://dbpedia.org/resource/Billy_Crystal|http://dbpedia.org/resource/Joshua_Rush|http://dbpedia.org/resource/Kyle_Harrison_Breitkopf|http://dbpedia.org/resource/Marisa_Tomei|http://dbpedia.org/resource/Tom_Everett_Scott"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Parental Guidance (previously titled Us & Them) is a 2012 American family-comedy film starring Billy Crystal, Bette Midler, Marisa Tomei and Tom Everett Scott and directed by Andy Fickman. The film was released on December 25, 2012. This movie was the last Dune Entertainment film to be distributed by 20th Century Fox. When Alice and Phil leave their three children with her parents while off on a short holiday, the children learn important life lessons from their grandparents."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Four_Christmases"}, "Title": {"type": "literal", "value": "Four Christmases"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Seth_Gordon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Four Christmases (Four Holidays in Australia and New Zealand, Anywhere But Home in the Netherlands, Norway, United Arab Emirates and in South Africa) is a Christmas-themed romantic comedy film about a couple visiting all four of their divorced parents' homes on Christmas Day. The film is produced by Spyglass Entertainment released by New Line Cinema on November 26, 2008, the day before Thanksgiving, and distributed by Warner Bros. Pictures. It stars Vince Vaughn and Reese Witherspoon, with Sissy Spacek, Mary Steenburgen, Robert Duvall, Jon Voight, Jon Favreau, Tim McGraw, Dwight Yoakam, and Kristin Chenoweth as supporting cast. The film is director Seth Gordon's first studio feature film. The DVD and Blu-ray Disc was released on November 24, 2009."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/New_Line_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/In_Search_of_a_Midnight_Kiss"}, "Title": {"type": "literal", "value": "In Search of a Midnight Kiss"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alex_Holdridge"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Brian_McGuire_(actor)|http://dbpedia.org/resource/Kathleen_Luong|http://dbpedia.org/resource/Robert_Murphy_(actor)|http://dbpedia.org/resource/Sara_Simmonds|http://dbpedia.org/resource/Scoot_McNairy|http://dbpedia.org/resource/Twink_Caplan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "In Search of a Midnight Kiss is a 2007 American independent romantic comedy film written and directed by Alex Holdridge. It is listed on the National Board of Review's Top 10 Independent Films of 2008, won the Independent Spirit John Cassavetes Award in 2009 as well as having earned awards at festivals around the world. It premiered at the Tribeca Film Festival in 2007 and since has played at festivals around the world from Mill Valley, Chicago and Los Angeles in the U.S. to Raindance (London), Edinburgh, Sarajevo, Istanbul, Bangkok, Krak\u00f3w, Thessaloniki and Melbourne outside the States. It has been released in theaters in the UK (Vertigo Films), the U.S. (IFC Films), Spain (Sherlock), Poland (Vivarto) and Greece (Seven Films). It was released in Australia on February 14, 2009."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Films|http://dbpedia.org/resource/Vertigo_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Seasons_Change_(film)"}, "Title": {"type": "literal", "value": "Seasons Change"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nithiwat_Tharathorn"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chutima_Teepanat|http://dbpedia.org/resource/Witawat_Singlampong|http://dbpedia.org/resource/Yuwanat_Arayanimisakul"}, "Published": {"type": "literal", "value": "2006-08-23"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "Seasons Change (Thai: \u0e40\u0e1e\u0e23\u0e32\u0e30\u0e2d\u0e32\u0e01\u0e32\u0e28\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e41\u0e1b\u0e25\u0e07\u0e1a\u0e48\u0e2d\u0e22, or Phror arkad plian plang boi) is 2006 Thai romantic comedy film directed by Nithiwat Tharathorn."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/GMM_Grammy"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tellement_proches"}, "Title": {"type": "literal", "value": "Tellement proches"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Olivier_Nakache_&_\u00c9ric_Toledano"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Audrey_Dana|http://dbpedia.org/resource/Fran\u00e7ois-Xavier_Demaison|http://dbpedia.org/resource/Isabelle_Carr\u00e9|http://dbpedia.org/resource/Jos\u00e9phine_de_Meaux|http://dbpedia.org/resource/Omar_Sy|http://dbpedia.org/resource/Vincent_Elbaz"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Tellement proches is a 2009 French film, directed and written by Olivier Nakache & \u00c9ric Toledano and starring Vincent Elbaz, Isabelle Carr\u00e9, Fran\u00e7ois-Xavier Demaison, Audrey Dana, Omar Sy and Jos\u00e9phine de Meaux."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bark!"}, "Title": {"type": "literal", "value": "Bark!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Katarzyna_Adamik"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hank_Azaria|http://dbpedia.org/resource/Heather_Morgan|http://dbpedia.org/resource/Lee_Tergesen|http://dbpedia.org/resource/Lisa_Kudrow|http://dbpedia.org/resource/Vincent_D'Onofrio"}, "Published": {"type": "literal", "value": "2002-01-11"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Bark! is a 2002 film written by Heather Morgan, directed by Katarzyna Adamik (the daughter of director Agnieszka Holland) and starring Morgan, Lee Tergesen, and Lisa Kudrow. The film debuted at the 2002 Sundance Film Festival, where it was nominated for a Grand Jury Prize. The \"extremely low-budget\" film, which had its origins in a 90-second comedy sketch, is about Lucy, a professional dogwalker (played by Morgan), who gradually assumes the identity of a dog. Tergesen plays Peter, her embarrassed husband, and Kudrow plays their veterinarian. Variety, reviewing the film after its Sundance screening, said it \"seems to be a throwback to the craziness-as-higher-expression-of-individuality school that was in vogue between The King of Hearts and Harold and Maude, noting \"Lucy's withdrawal doesn't seem to spring from anything \u2014 unless urban life's everyday rudeness and an overbearingly suburban-banal family background count \u2014 and scene by scene, Bark! builds no discernible rhythm, viewpoint or mood apart from a faint, rudderless, shaggy-joke tenor. The film was screened at several film festivals, including the Moscow International Film Festival, the Munich Film Festival, the Warsaw International Film Festival, and the Cleveland International Film Festival, but never received a theatrical release. The film was eventually released on DVD in 2003 by TVA International."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Our_Brand_Is_Crisis_(2015_film)"}, "Title": {"type": "literal", "value": "Our Brand Is Crisis"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_Gordon_Green"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ann_Dowd|http://dbpedia.org/resource/Anthony_Mackie|http://dbpedia.org/resource/Billy_Bob_Thornton|http://dbpedia.org/resource/Joaquim_de_Almeida|http://dbpedia.org/resource/Sandra_Bullock|http://dbpedia.org/resource/Scoot_McNairy|http://dbpedia.org/resource/Zoe_Kazan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_political_comedy_films|http://dbpedia.org/resource/Category:Comedy_films_based_on_actual_events"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "Our Brand Is Crisis is a 2015 American comedy-drama film directed by David Gordon Green and written by Peter Straughan. Based on the 2005 documentary film of the same name by Rachel Boynton, it is a fictionalized account of the involvement of American political campaign strategists \"Greenberg Carville Shrum\" (GCS) in the 2002 Bolivian presidential election. The film stars Sandra Bullock, Scoot McNairy, Billy Bob Thornton, Anthony Mackie, Ann Dowd and Joaquim de Almeida. Principal photography began on September 29, 2014 in New Orleans, Louisiana. George Clooney and Grant Heslov produced. The film was screened in the Special Presentations section of the 2015 Toronto International Film Festival. It was theatrically released by Warner Bros. on October 30, 2015 to mixed reviews and was a box office disappointment, although since its release on home media, and on HBO cable outlets, it has started to develop both something of a cult following, as well as a critical reassessment. Part of its box office failure has been attributed to it being marketed as a comedy when in reality the finished product was far closer to a historically based drama, a confusion several critics commented on including Chris Thilk, who said that the film advertising \"campaign as a whole is a bit inconsistent and kind of confusing\"."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Participant_Media|http://dbpedia.org/resource/RatPac-Dune_Entertainment|http://dbpedia.org/resource/Smoke_House_Pictures"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/I_Hate_Luv_Storys"}, "Title": {"type": "literal", "value": "I Hate Luv Storys"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Punit_Malhotra"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bruna_Abdullah|http://dbpedia.org/resource/Imran_Khan_(Indian_actor)|http://dbpedia.org/resource/Sameer_Dattani|http://dbpedia.org/resource/Samir_Soni|http://dbpedia.org/resource/Sonam_Kapoor"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "135"}, "Description": {"type": "literal", "value": "I Hate Luv Storys is a 2010 Indian romantic drama film starring Sonam Kapoor and Imran Khan in the lead roles. It is written and directed by Punit Malhotra and produced under Karan Johar's Dharma Productions and Ronnie Screwvala's UTV Motion Pictures. The film was released on 2 July 2010 and went on to become a box office hit. I Hate Luv Storys was partly filmed in Queenstown, New Zealand."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Dharma_Productions|http://dbpedia.org/resource/UTV_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/West_Bank_Story"}, "Title": {"type": "literal", "value": "West Bank Story"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ari_Sandel"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/A.J._Tannen|http://dbpedia.org/resource/Ben_Newmark|http://dbpedia.org/resource/Joey_Naber|http://dbpedia.org/resource/Noureen_DeWulf"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_musical_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "21"}, "Description": {"type": "literal", "value": "West Bank Story is a comedy/musical short film, directed by Ari Sandel, co-written by Sandel and Kim Ray, produced by Pascal Vaguelsy, Amy Kim, Ashley Jordan, Ravi Malhotra, Bill Boland, and featuring choreography by Ramon Del Barrio. The film is a parody of the classic musical film West Side Story, which in turn is an adaptation of Romeo and Juliet. The film follows the romance between the relatives of the owners of rival falafel restaurants, one Israeli and the other Palestinian, respectively named the \"Kosher King\" and the \"Hummus Hut,\" in the West Bank. The film stars Ben Newmark as the IDF soldier, Noureen DeWulf as the Palestinian cashier, A.J. Tannen as the Israeli restaurant owner, and Joey Naber as his Palestinian rival. Filmed on a Santa Clarita ranch, the short premiered at the 2005 Sundance Film Festival, and was screened at numerous additional film festivals across the world, garnering several awards. In 2007, at the 79th Academy Awards, it won the Oscar in the category Best Live Action Short Film."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Chutney_Popcorn"}, "Title": {"type": "literal", "value": "Chutney Popcorn"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nisha_Ganatra"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jill_Hennessy|http://dbpedia.org/resource/Madhur_Jaffrey|http://dbpedia.org/resource/Nisha_Ganatra|http://dbpedia.org/resource/Sakina_Jaffrey"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Chutney Popcorn is a 1999 comedy-drama film starring, directed and co-written by Nisha Ganatra. Ganatra plays a young lesbian Indian American woman called Reena. Jill Hennessy plays her girlfriend Lisa and Reena's mother and sister are played by real life mother and daughter Madhur Jaffrey and Sakina Jaffrey. The film explores the conflict between Reena's sexual and national identities as well as her mother Meenu's attempts to come to terms with the Western lives of both her daughters."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Two_Faces_of_My_Girlfriend"}, "Title": {"type": "literal", "value": "Two Faces of My Girlfriend"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lee_Seok-hoon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bong_Tae-gyu|http://dbpedia.org/resource/Jung_Ryeo-won"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "117"}, "Description": {"type": "literal", "value": "Two Faces of My Girlfriend (Hangul: \ub450 \uc5bc\uad74\uc758 \uc5ec\uce5c; RR: Du Eolkului Yeochin) is a 2007 South Korean romantic comedy film starring Bong Tae-gyu and Jung Ryeo-won. This was Jung's first big-screen leading role, for which she won Best New Actress at the 28th Blue Dragon Film Awards in 2007 and at the 4th Premiere Asia Rising Star Awards in 2008."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Showbox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Si_accettano_miracoli"}, "Title": {"type": "literal", "value": "Si accettano miracoli"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alessandro_Siani"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alessandro_Siani|http://dbpedia.org/resource/Fabio_De_Luigi|http://dbpedia.org/resource/Serena_Autieri"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Italian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "Si accettano miracoli is a 2015 Italian comedy film directed by Alessandro Siani (it). The film was released on January 1, 2015 to generally positive reviews and favorable responses."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/01_Distribution"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Finishing_the_Game"}, "Title": {"type": "literal", "value": "Finishing the Game"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Justin_Lin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bella_Thorne|http://dbpedia.org/resource/Dustin_Nguyen|http://dbpedia.org/resource/James_Franco|http://dbpedia.org/resource/MC_Hammer|http://dbpedia.org/resource/Roger_Fan|http://dbpedia.org/resource/Ron_Jeremy|http://dbpedia.org/resource/Sung_Kang"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Finishing the Game is a 2007 mockumentary which focuses on Bruce Lee's final movie Game of Death. Lee died prior to finishing that movie, having shot only a few of the final fight scenes. However, the rest of the film was finished using a Bruce Lee double and a new script. Finishing the Game is a comedy which satirizes the production of Lee's final film while dealing with racial stereotypes on the Asian community. It was shot in a mere 18 days. The film was directed and produced by Justin Lin, the director of the films Better Luck Tomorrow, Annapolis, and The Fast and the Furious: Tokyo Drift. Finishing the Game stars Roger Fan, Sung Kang, Dustin Nguyen, McCaleb Burnett, James Franco, MC Hammer, Ron Jeremy and Parry Shen. Its world premiere took place at the 2007 Sundance Film Festival, where it was an Official Selection. It was also selected as the opening night film at the 25th San Francisco International Asian American Film Festival, the 23rd VC FilmFest aka Los Angeles Asian Pacific Film Festival in Los Angeles, the 30th Asian American International Film Festival in New York, the DisOrient Film Festival of Oregon, the Asian Film Festival of Dallas, the 2007 DC Asian Pacific American Film Festival, and the 11th Annual Vancouver Asian Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Autoerotic_(film)"}, "Title": {"type": "literal", "value": "Autoerotic"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Wingard|http://dbpedia.org/resource/Joe_Swanberg"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amy_Seimetz|http://dbpedia.org/resource/Kate_Lyn_Sheil|http://dbpedia.org/resource/Kris_Swanberg|http://dbpedia.org/resource/Lane_Hughes|http://dbpedia.org/resource/Ti_West"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "73"}, "Description": {"type": "literal", "value": "Autoerotic is a 2011 comedy-drama film directed by Joe Swanberg and Adam Wingard, written by Swanberg, Wingard, and Simon Barrett, and starring Kate Lyn Sheil, Amy Seimetz, Lane Hughes, Kris Swanberg, Ti West, and Frank V. Ross. IFC Midnight released it to video on demand on July 22, 2011."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Midnight"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Rosarigasinos"}, "Title": {"type": "literal", "value": "Rosarigasinos"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rodrigo_Grande"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Federico_Luppi|http://dbpedia.org/resource/Ulises_Dumont"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Rosarigasinos (English: Gangs from Rosario) is a 2001 Argentine film, written and directed by Rodrigo Grande and starring Federico Luppi and Ulises Dumont. The film is also known as Presos del Olvido in Spain. The film was produced by Adolfo Aristarain, Jos\u00e9 Mart\u00ednez, and Jos\u00e9 A. Mart\u00ednez Su\u00e1rez; the associate producer was Alfredo Suaya and was partly funded by the INCAA."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/INCAA"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bastards_(2017_film)"}, "Title": {"type": "literal", "value": "Bastards"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lawrence_Sher"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ed_Helms|http://dbpedia.org/resource/Glenn_Close|http://dbpedia.org/resource/J._K._Simmons|http://dbpedia.org/resource/Katt_Williams|http://dbpedia.org/resource/Owen_Wilson|http://dbpedia.org/resource/Terry_Bradshaw|http://dbpedia.org/resource/Ving_Rhames"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_sports_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Bastards is an upcoming American comedy film directed by Lawrence Sher and written by Justin Malen. The film stars Owen Wilson, Ed Helms, J. K. Simmons, Ving Rhames, Katt Williams, Terry Bradshaw, and Glenn Close. Principal photography began on October 5, 2015 in Atlanta. The film is scheduled for an January 27, 2017 release. Sher is making his directorial debut with the film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Alcon_Entertainment|http://dbpedia.org/resource/The_Montecito_Picture_Company"}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Game_Plan_(film)"}, "Title": {"type": "literal", "value": "The Game Plan"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Fickman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Brian_J._White|http://dbpedia.org/resource/Dwayne_Johnson|http://dbpedia.org/resource/Hayes_MacArthur|http://dbpedia.org/resource/Jamal_Duff|http://dbpedia.org/resource/Kyra_Sedgwick|http://dbpedia.org/resource/Madison_Pettis|http://dbpedia.org/resource/Morris_Chestnut|http://dbpedia.org/resource/Paige_Turco|http://dbpedia.org/resource/Roselyn_Sanchez"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Sports_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "The Game Plan is a 2007 American family sports comedy film directed by Andy Fickman and starring Dwayne \"The Rock\" Johnson. This movie was the last film in which Johnson uses his ring name \"The Rock\". The Game Plan was the last film to be distributed by Buena Vista Pictures, after Disney retired the Buena Vista moniker across their company's divisions in the same year."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Assassination_of_a_High_School_President"}, "Title": {"type": "literal", "value": "Assassination of a High School President"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Brett_Simon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bruce_Willis|http://dbpedia.org/resource/Josh_Pais|http://dbpedia.org/resource/Kathryn_Morris|http://dbpedia.org/resource/Michael_Rapaport|http://dbpedia.org/resource/Mischa_Barton|http://dbpedia.org/resource/Reece_Thompson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Direct-to-video_comedy_films|http://dbpedia.org/resource/Category:Teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Assassination of a High School President is a 2008 American neo noir comedy film, directed by Brett Simon, written by Tim Calpin and Kevin Jakubowski, and starring Reece Thompson, Bruce Willis, Mischa Barton and Michael Rapaport. It premiered at the 2008 Sundance Film Festival. The film had been scheduled for limited theatrical release on February 27, 2009, but that release was postponed indefinitely following the bankruptcy of its distributor, Yari Film Group's releasing division. It was released on DVD in the United States on October 6, 2009."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Yari_Film_Group"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Baker_(film)"}, "Title": {"type": "literal", "value": "The Baker"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Gareth_Lewis"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Annette_Badland|http://dbpedia.org/resource/Anthony_O'Donnell_(actor)|http://dbpedia.org/resource/Damian_Lewis|http://dbpedia.org/resource/Dyfan_Dwyfor|http://dbpedia.org/resource/Kate_Ashfield|http://dbpedia.org/resource/Nikolaj_Coster-Waldau|http://dbpedia.org/resource/Steve_Speirs"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "The Baker is a 2007 British comedy thriller film written and directed by Gareth Lewis and starring Damian Lewis, Kate Ashfield and Nikolaj Coster-Waldau. An ex-assassin retires to a small Welsh town and opens a cake shop but is unable to escape his former associates. It is also known by the alternative title Assassin In Love."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/2_Entertain"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Manny"}, "Title": {"type": "literal", "value": "The Manny"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Matthias_Schweigh\u00f6fer"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Arved_Friese|http://dbpedia.org/resource/Matthias_Schweigh\u00f6fer|http://dbpedia.org/resource/Milan_Peschel|http://dbpedia.org/resource/Paula_Hartmann"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:German_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Manny (German: Der Nanny) is a 2015 German comedy film directed and co-written by Matthias Schweigh\u00f6fer, starring himself as a greedy and super-busy real-estate developer, and Milan Peschel as a victim of his development who accidentally ends up babysitting his two children."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/SpongeBob's_Truth_or_Square"}, "Title": {"type": "literal", "value": "SpongeBob's Truth or Square"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alan_Smart|http://dbpedia.org/resource/Andrew_Overtoom|http://dbpedia.org/resource/Luke_Brookshier|http://dbpedia.org/resource/Nate_Cash|http://dbpedia.org/resource/Tom_Yasumi"}, "Author": {"type": "literal", "value": "http://dbpedia.org/resource/Luke_Brookshier|http://dbpedia.org/resource/Nate_Cash|http://dbpedia.org/resource/Paul_Tibbitt|http://dbpedia.org/resource/Steven_Banks"}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bill_Fagerbakke|http://dbpedia.org/resource/Carolyn_Lawrence|http://dbpedia.org/resource/Clancy_Brown|http://dbpedia.org/resource/Mr._Lawrence|http://dbpedia.org/resource/Rodger_Bumpass|http://dbpedia.org/resource/Tom_Kenny"}, "Published": {"type": "literal", "value": "2009-11-06"}, "Subject": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://dbpedia.org/resource/Comedy"}, "Duration": {"type": "literal", "value": "52"}, "Description": {"type": "literal", "value": "SpongeBob's Truth or Square is a 2009 made-for-television one-hour comedy special directed by Andrew Overtoom, Alan Smart, and Tom Yasumi. It stars Tom Kenny, Bill Fagerbakke, Rodger Bumpass, Clancy Brown, Carolyn Lawrence, and Mr. Lawrence. The special, marketed as a \"TV Movie\", originally aired on Nickelodeon in the United States on November 6, 2009, celebrating the tenth anniversary of the American animated television series SpongeBob SquarePants. The television series follows the adventures of the title character in the underwater city of Bikini Bottom. In the special, SpongeBob and his friends are accidentally locked inside the Krusty Krab on the day of its \"eleventy-seventh\" anniversary celebration. As they crawl through the ventilation system trying to escape, they look back on shared memories through flashback moments. SpongeBob's Truth or Square was written by Luke Brookshier, Nate Cash, Steven Banks, and Paul Tibbitt. Rosario Dawson, LeBron James, Tina Fey, Will Ferrell, Craig Ferguson, Robin Williams, and Ricky Gervais guest starred in the special as themselves. Upon release, the special attracted an estimated 7.7 million viewers, and met mixed reviews from critics."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Home_Media_Distribution"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Welcome_2_Karachi"}, "Title": {"type": "literal", "value": "Welcome 2 Karachi"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ashish_R_Mohan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adnan_Shah_Tipu|http://dbpedia.org/resource/Arshad_Warsi|http://dbpedia.org/resource/Jackky_Bhagnani|http://dbpedia.org/resource/Lauren_Gottlieb"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Indian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "131"}, "Description": {"type": "literal", "value": "Welcome 2 Karachi is an 2015 Indian comedy film, directed by Ashish R Mohan and produced by Vashu Bhagnani. The film stars Arshad Warsi and Jackky Bhagnani as pivotal leads. Music directors Jeet Ganguly and Rochak Kohli composed music for this film. The film was released on 28 May 2015."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bluff_(film)"}, "Title": {"type": "literal", "value": "Bluff"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Marc-Andr\u00e9_Lavoie|http://dbpedia.org/resource/Simon_Olivier_Fecteau"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Emmanuel_Bilodeau|http://dbpedia.org/resource/Isabelle_Blais_(actress)|http://dbpedia.org/resource/Julie_Perreault|http://dbpedia.org/resource/Marie-Laurence_Moreau|http://dbpedia.org/resource/Pierre-Fran\u00e7ois_Legendre|http://dbpedia.org/resource/R\u00e9my_Girard"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Bluff is a 2007 Canadian comedy film. It was directed, written and produced by Simon Olivier Fecteau and Marc-Andr\u00e9 Lavoie."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Seville_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hatchet_(film)"}, "Title": {"type": "literal", "value": "Hatchet"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Green_(filmmaker)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Deon_Richmond|http://dbpedia.org/resource/Joel_Moore|http://dbpedia.org/resource/Joel_Murray|http://dbpedia.org/resource/Joshua_Leonard|http://dbpedia.org/resource/Kane_Hodder|http://dbpedia.org/resource/Mercedes_McNab|http://dbpedia.org/resource/Parry_Shen|http://dbpedia.org/resource/Patrika_Darbo|http://dbpedia.org/resource/Richard_Riehle|http://dbpedia.org/resource/Robert_Englund|http://dbpedia.org/resource/Tamara_Feldman|http://dbpedia.org/resource/Tony_Todd"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Hatchet is a 2006 American slasher horror film written and directed by Adam Green. The film has an ensemble cast, including Robert Englund, Kane Hodder, Mercedes McNab and Tony Todd."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Anchor_Bay_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/When_Larry_Met_Mary"}, "Title": {"type": "literal", "value": "When Larry Met Mary"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Wen_Zhang"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Chinese_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "When Larry Met Mary is a 2016 Chinese romantic comedy film directed by Wen Zhang. It was released in China on July 15, 2016."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Khottabych"}, "Title": {"type": "literal", "value": "}{0\u0422\u0422@\u0411\u042c)\u0427 / Khottabych"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pyotr_Tochilin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Julia_Paranova|http://dbpedia.org/resource/Liva_Kruminya|http://dbpedia.org/resource/Marius_Jampolskis|http://dbpedia.org/resource/Mark_Geykhman|http://dbpedia.org/resource/Vladimir_Tolokonnikov"}, "Published": {"type": "literal", "value": "2006-08-10"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Fantasy-comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Khottabych (Russian: \u0425\u043e\u0442\u0442\u0430\u0431\u044b\u0447 [}{0\u0422\u0422@\u0411\u042c)\u0427], Hottabych) is a 2006 Russian comedy folk-tale by STV Film Company. This film has little in common with the first film, except for some central elements. The film has the screen name K}{OTT@B\\)CH, underscoring the film's Internet motif. It is based on the novel The Copper Jar of Old Khottabych by Sergey Oblomov. It opened in theaters on August 10, 2006 at Karoprokat."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Melnitsa_Animation_Studio|http://dbpedia.org/resource/STV_Film_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Oru_Kanniyum_Moonu_Kalavaanikalum"}, "Title": {"type": "literal", "value": "Oru Kanniyum Moonu Kalavaanikalum"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chimbu_Deven"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Arulnithi|http://dbpedia.org/resource/Bagavathi_Perumal|http://dbpedia.org/resource/Bindu_Madhavi"}, "Published": {"type": "literal", "value": "2014-04-04"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "135"}, "Description": {"type": "literal", "value": "Oru Kanniyum Moonu Kalavaanikalum (English: A virgin and three thieves) is a 2014 Tamil fantasy-comedy film directed by Chimbu Deven, and starring Arulnithi, Bindu Madhavi, and Bagavathi Perumal. The music comprises three tracks composed by Sankaran Natarajan, while S R Kathir handles the camera. The film was shot in Chennai, in and around Saidapet, Anna Nagar, Besant Nagar and Royapuram. The theme of this film is inspired by Run Lola Run which Chimbudevan acknowledges in the end credits. The film earned poor reviews and was an average grosser at the box office."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Young_People_Fucking"}, "Title": {"type": "literal", "value": "Young People Fucking"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Martin_Gero"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Callum_Blue|http://dbpedia.org/resource/Carly_Pope|http://dbpedia.org/resource/Diora_Baird|http://dbpedia.org/resource/Enis_Esmer|http://dbpedia.org/resource/Josh_Cooke|http://dbpedia.org/resource/Josh_Dean|http://dbpedia.org/resource/Kristin_Booth|http://dbpedia.org/resource/Natalie_Lisinska|http://dbpedia.org/resource/Peter_Oldring|http://dbpedia.org/resource/Sonja_Bennett"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy-drama_films|http://dbpedia.org/resource/Category:Canadian_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Young People Fucking, also called Y.P.F., is a 2007 Canadian comedy directed, written, and produced by Martin Gero and Aaron Abrams. It debuted at the 2007 Toronto International Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Maple_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Break-Up"}, "Title": {"type": "literal", "value": "Break-Up"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alexander_Tuschinski"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alexander_Tuschinski|http://dbpedia.org/resource/Dominic_R\u00f6del|http://dbpedia.org/resource/Jennifer_Pakosch|http://dbpedia.org/resource/Philipp_Metzler|http://dbpedia.org/resource/Sebastian_B"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Break-Up is an independent German experimental feature film comedy directed by Alexander Tuschinski. It received awards at international film-festivals and had its German premiere at Berlin Independent Film Festival 2015. Although it is not part of it, it is connected to Tuschinski's informal Trilogy of Rebellion by one main character and some references in the storyline."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Starsky_&_Hutch_(film)"}, "Title": {"type": "literal", "value": "Starsky & Hutch"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Todd_Phillips"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Stiller|http://dbpedia.org/resource/Owen_Wilson|http://dbpedia.org/resource/Snoop_Dogg|http://dbpedia.org/resource/Vince_Vaughn"}, "Published": {"type": "literal", "value": "2004-03-05"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Starsky & Hutch is a 2004 American crime-action buddy cop comedy film directed by Todd Phillips. The film stars Ben Stiller as David Starsky and Owen Wilson as Ken \"Hutch\" Hutchinson and is a film adaptation of the original television series of the same name from the 1970s. Two streetwise undercover cops in the fictional city of Bay City, California in the 1970s, bust drug criminals with the help of underworld boss, Huggy Bear. The film functions as a sort of prequel to the TV series, as it portrays when Starsky was first partnered with Hutchinson. The film also switches the personalities of the title characters. While in the TV show, Starsky was curious and streetwise, and Hutch was by-the-book, in the film, Starsky is the serious cop, and Hutch is laid-back. There are four Frat Pack members in this film, although not all are in major roles. The exterior of the Metropolitan Courthouse at 1945 S. Hill St. in Los Angeles was used as the Bay City Police Headquarters."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Miramax|http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Babysitting_(film)"}, "Title": {"type": "literal", "value": "Babysitting"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nicolas_Benamou|http://dbpedia.org/resource/Philippe_Lacheau"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alice_David|http://dbpedia.org/resource/Philippe_Lacheau"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Babysitting is a 2014 French comedy film shot in the \"found footage\" style. It is directed by Nicolas Benamou and Philippe Lacheau. The film is also the directorial debut of Philippe Lacheau which he co-wrote and also starred in along with Alice David and Vincent Desagnat."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Pictures_International"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/People_Hold_On_(film)"}, "Title": {"type": "literal", "value": "People Hold On"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Seater"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Canadian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "People Hold On is a 2015 Canadian independent film written by Michael Seater, who also directs, and Paula Brancati, who also stars. It was produced by the duo's production company, BrancSeater Productions. It was filmed throughout 2014 and 2015 and debuted on the film festival circuit in 2015, and was released to general cinemas and for digital download on May 31, 2016. The film stars several young Canadian stars, including Katie Boland, Ashley Leggat, Noah Reid, Al Mukadam and Chloe Rose."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Toxic_Avenger_Part_II"}, "Title": {"type": "literal", "value": "The Toxic Avenger Part II"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lloyd_Kaufman|http://dbpedia.org/resource/Michael_Herz_(producer)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Phoebe_Legere|http://dbpedia.org/resource/Rikiya_Yasuoka"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1980s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103|96"}, "Description": {"type": "literal", "value": "The Toxic Avenger Part II is a 1989 comedy horror film released by Troma Entertainment. It was directed by Lloyd Kaufman and features The Toxic Avenger in an adventure to Japan to meet his father. The film has received cult status among a new audience almost a generation after it was first released. Go Nagai makes a cameo appearance and the film is also the debut of actor/martial artist Michael Jai White and musician/composer/performance artist Phoebe Legere."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Troma_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Let's_Eat!_(film)"}, "Title": {"type": "literal", "value": "Let's Eat!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chapman_To"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aimee_Chan|http://dbpedia.org/resource/C-Kwan|http://dbpedia.org/resource/Lo_Hoi-pang|http://dbpedia.org/resource/Patricia_Mok"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Malaysian_comedy_films|http://dbpedia.org/resource/Category:Singaporean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "Let's Eat! (Chinese: \u958b\u98ef\u5587) is a 2016 Singaporean-Malaysian comedy film directed by Chapman To in his directorial debut. It stars To as a traditionalist chef who comes into conflict with the restaurant owner's daughter, played by Aimee Chan. It was released on 4 February in Malaysia and in Singapore the next day, grossing a total of US$489,846 in both territories."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Maari_(film)"}, "Title": {"type": "literal", "value": "Maari"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Balaji_Mohan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dhanush|http://dbpedia.org/resource/Kajal_Aggarwal|http://dbpedia.org/resource/Robo_Shankar|http://dbpedia.org/resource/Vijay_Yesudas"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Criminal_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "138"}, "Description": {"type": "literal", "value": "Maari is a 2015 Tamil gangster comedy film written and directed by Balaji Mohan starring Dhanush and Kajal Aggarwal. The film was jointly produced by Listin Stephen and Raadhika Sarathkumar's Magic Frames and Dhanush's Wunderbar Films. Anirudh Ravichander composed the film's soundtrack and score while Om Prakash undertook the film's cinematography. After being in pre-production phase since March 2014, principal photography began on 4 November 2014 and lasted till 15 March 2015. The film was shot in and around Chennai and Tuticorin. Maari was released on 17 July 2015."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Weather_Girl"}, "Title": {"type": "literal", "value": "Weather Girl"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Blayne_Weaver"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Enrico_Colantoni|http://dbpedia.org/resource/Jon_Cryer|http://dbpedia.org/resource/Marin_Hinkle|http://dbpedia.org/resource/Mark_Harmon|http://dbpedia.org/resource/Patrick_J._Adams|http://dbpedia.org/resource/Tricia_O'Kelley"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Weather Girl is a 2009 comedy film written and directed by Blayne Weaver. The film stars Tricia O'Kelley, Mark Harmon, Jon Cryer, and Enrico Colantoni."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lovesick_(2014_film)"}, "Title": {"type": "literal", "value": "Lovesick"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Luke_Matheny"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ali_Larter|http://dbpedia.org/resource/Ashley_Williams_(actress)|http://dbpedia.org/resource/Chevy_Chase|http://dbpedia.org/resource/Kristen_Johnston|http://dbpedia.org/resource/Matt_LeBlanc|http://dbpedia.org/resource/Rachael_Harris"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Lovesick is a 2014 American comedy film directed by Luke Matheny and written by Dean Young. The film stars Matt LeBlanc, Ali Larter, Rachael Harris, Chevy Chase, Ashley Williams and Kristen Johnston. The film was released on February 6, 2015, by Gravitas Ventures."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Gravitas_Ventures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Monsters_University"}, "Title": {"type": "literal", "value": "Monsters University"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dan_Scanlon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "Monsters University is a 2013 American 3D computer-animated comedy film produced by Pixar Animation Studios and released by Walt Disney Pictures. It was directed by Dan Scanlon and produced by Kori Rae, with John Lasseter, Pete Docter, Andrew Stanton and Lee Unkrich as executive producers. It is the fourteenth feature film produced by Pixar and is a prequel to 2001's Monsters, Inc., marking the first time Pixar has made a prequel film. Disney, as the rights holder, had plans for a sequel to Monsters, Inc. since 2005. Following disagreements with Pixar, Disney tasked its Circle 7 Animation unit to make the film. An early draft of the film was developed; however, Disney's purchase of Pixar in early 2006 led to the cancellation of Circle 7's version of the film. A Pixar-made sequel was confirmed in 2010, and in 2011, it was confirmed that the film would instead be a prequel titled Monsters University. Monsters University tells the story of two monsters, Mike and Sulley, and their time studying at college, where they start off as rivals, but slowly become best friends. John Goodman, Billy Crystal, Steve Buscemi, Bob Peterson, and John Ratzenberger reprise their roles as James P. Sullivan, Mike Wazowski, Randall Boggs, Roz, and the Abominable Snowman, respectively. Bonnie Hunt, who played Ms. Flint in the first film, voices Mike's grade school teacher Ms. Karen Graves. The music for the film is composed by Randy Newman, marking his seventh collaboration with Pixar. Monsters University premiered on June 5, 2013, at the BFI Southbank in London, United Kingdom and was released on June 21, 2013, in the United States. It was accompanied in theaters by a short film, The Blue Umbrella, directed by Saschka Unseld. The film grossed $744 million against its estimated budget of $200 million. An animated short film titled Party Central, which takes place shortly after the events of Monsters University, premiered in Fall 2013."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lost_and_Found_(2008_film)"}, "Title": {"type": "literal", "value": "Lost and Found"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ma_Liwen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chen_Jin_(actor)|http://dbpedia.org/resource/Li_Qiang_(actor)|http://dbpedia.org/resource/Li_Yixiang|http://dbpedia.org/resource/Liu_Xinyi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Lost and Found (simplified Chinese: \u6211\u53eb\u5218\u8dc3\u8fdb; traditional Chinese: \u6211\u53eb\u5289\u8e8d\u9032; pinyin: W\u01d2 ji\u00e0o Li\u00f9 Y\u00f9ej\u00ecn) is a 2008 Chinese black comedy film and the third feature film directed by Ma Liwen. The film was based on the novel, I am Liu Yuejin by Liu Zhenyun and tells the story of a down-on-his-luck migrant cook who loses his life savings while in Beijing. The film is also known by the original Chinese title I am Liu Yuejin. The novel was published a mere three months before the film was released. The film received a domestic opening in China in January 2008 before making limited appearances at various film festivals and screening events. Lost and Found stars Li Yixiang, as the main role of Liu Yuejin though the film also boasts several cameos by Chinese filmmakers including Chen Daming (the director of Manhole) and Gao Qunshu (the director of The Tokyo Trial). It was partially produced by the state-subsidized China Film Group."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/China_Film_Promotion_International"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/When_Romance_Meets_Destiny"}, "Title": {"type": "literal", "value": "When Romance Meets Destiny"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kim_Hyun-seok_(filmmaker)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bong_Tae-gyu|http://dbpedia.org/resource/Kim_Joo-hyuk"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "When Romance Meets Destiny (Hangul: \uad11\uc2dd\uc774 \ub3d9\uc0dd \uad11\ud0dc; RR: Gwangsiki dongsaeng gwangtae; lit. \"Gwang-sik's Younger Brother Gwang-tae\") is a 2005 South Korean romantic comedy about two brothers and their different approaches to love."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Foster_(film)"}, "Title": {"type": "literal", "value": "Foster"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jonathan_Newman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anne_Reid|http://dbpedia.org/resource/Daisy_Beaumont|http://dbpedia.org/resource/Hayley_Mills|http://dbpedia.org/resource/Ioan_Gruffudd|http://dbpedia.org/resource/Richard_E._Grant|http://dbpedia.org/resource/Toni_Collette"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:British_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Foster (a.k.a. Angel in the House) is a 2011 British comedy-drama film written and directed by Jonathan Newman, based on his 2005 short film. Part of it was shot at Legoland Windsor in April 2010. The film stars Golden Globe winner Toni Collette, Ioan Gruffudd, Richard E. Grant, BAFTA Award winner Hayley Mills and Maurice Cole."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Callback_Queen"}, "Title": {"type": "literal", "value": "The Callback Queen"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Graham_Cantwell"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amy-Joyce_Hastings|http://dbpedia.org/resource/Eoin_Macken|http://dbpedia.org/resource/Ger_Ryan|http://dbpedia.org/resource/Mark_Killeen|http://dbpedia.org/resource/Vicki_Michelle"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:British_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "The Callback Queen is a 2013 British romantic comedy independent film by Irish director Graham Cantwell, starring a largely British and Irish cast: Amy-Joyce Hastings, Mark Killeen, Se\u00e1n T. O'Meallaigh, Ger Ryan, Vicki Michelle and Eoin Macken."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Wake_Up_Sid"}, "Title": {"type": "literal", "value": "Wake Up Sid"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ayan_Mukerji"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anupam_Kher|http://dbpedia.org/resource/Kashmira_Shah|http://dbpedia.org/resource/Konkana_Sen_Sharma|http://dbpedia.org/resource/Rahul_Khanna|http://dbpedia.org/resource/Ranbir_Kapoor|http://dbpedia.org/resource/Supriya_Pathak"}, "Published": {"type": "literal", "value": "2009-10-02"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "138"}, "Description": {"type": "literal", "value": "Wake Up Sid is a 2009 Indian coming of age drama film. Directed by Ayan Mukerji and produced by Karan Johar's Dharma Productions, the movie was distributed by UTV Motion Pictures, with visual effects contributed by the Prime Focus Group. The film takes place in contemporary Bombay and tells the story of spoiled, careless rich-kid Sid Mehra (Ranbir Kapoor), a college student who is taught the value of owning up to responsibility by Aisha (Konkona Sen Sharma), an aspiring writer from Calcutta. It was critically and commercially successful. Ranbir Kapoor won numerous awards for his performance, and the film's soundtrack was vastly popular."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Dharma_Productions|http://dbpedia.org/resource/UTV_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Nick_Offerman:_American_Ham"}, "Title": {"type": "literal", "value": "Nick Offerman: American Ham"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jordan_Vogt-Roberts"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Marc_Evan_Jackson|http://dbpedia.org/resource/Megan_Mullally|http://dbpedia.org/resource/Nick_Offerman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "Nick Offerman: American Ham is a 2014 American stand-up comedy film, directed by Jordan Vogt-Roberts. It is written by American actor, writer, and carpenter, Nick Offerman. The film had its world premiere at 2014 Sundance Film Festival on January 23, 2014."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Netflix"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Moon_and_Cherry"}, "Title": {"type": "literal", "value": "Moon and Cherry"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Yuki_Tanada"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:Japanese_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "Moon and Cherry (\u6708\u3068\u30c1\u30a7\u30ea\u30fc Tsuki to Cherii) is a 2004 Japanese romance youth comedy film directed by Yuki Tanada. It was released on December 25."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ernest_&_Celestine"}, "Title": {"type": "literal", "value": "Ernest & Celestine"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Benjamin_Renner|http://dbpedia.org/resource/St\u00e9phane_Aubier|http://dbpedia.org/resource/Vincent_Patar"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Lambert_Wilson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Animated_comedy_films|http://dbpedia.org/resource/Category:Belgian_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "Ernest & Celestine (French: Ernest et C\u00e9lestine) is a 2012 animated comedy-drama film directed by St\u00e9phane Aubier, Vincent Patar and Benjamin Renner. The film is based on a series of children's books of the same name published by the Belgian author and illustrator Gabrielle Vincent. The film was selected to be screened in the Directors' Fortnight section at the 2012 Cannes Film Festival, as part of the TIFF Kids programme at the 2012 Toronto International Film Festival and at the 2013 Hong Kong International Film Festival. It was selected for the grand competition at feature film edition of the 2013 World festival of animated film Animafest Zagreb and was screened as the opening film. The film was released in the United States in 2013 by GKIDS. There is also an English dub that was released on 28 February 2014, with the voices of Forest Whitaker, Mackenzie Foy, Lauren Bacall, Paul Giamatti, William H. Macy, Megan Mullally, Nick Offerman and Jeffrey Wright. The film received widespread critical acclaim, and became the first animated film to win the Magritte Award for Best Film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/StudioCanal"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Vulgaria_(film)"}, "Title": {"type": "literal", "value": "Vulgaria"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pang_Ho-cheung"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chapman_To|http://dbpedia.org/resource/Dada_Chan|http://dbpedia.org/resource/Fiona_Sit|http://dbpedia.org/resource/Ronald_Cheng"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Hong_Kong_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Vulgaria ((traditional Chinese (HK)): \u4f4e\u4fd7\u559c\u5287) is a 2012 Hong Kong comedy film directed by Pang Ho-cheung. The film won Best Supporting Actor and Best Supporting Actress at the 32nd Hong Kong Film Award."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"movie": {"type": "uri", "value": "http://dbpedia.org/resource/Saade_Maade_Teen"}, "Title": {"type": "literal", "value": "Saade Maade Teen"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ankush_Choudhary"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amruta_Khanvilkar|http://dbpedia.org/resource/Ashok_Saraf|http://dbpedia.org/resource/Bharat_Jadhav|http://dbpedia.org/resource/Makarand_Anaspure|http://dbpedia.org/resource/Siddharth_Jadhav"}, "Published": {"type": "literal", "value": "2007-11-23"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "125"}, "Description": {"type": "literal", "value": "Saade Maade Teen (Marathi: \u0938\u093e\u0921\u0947 \u092e\u093e\u0921\u0947 \u0924\u0940\u0928) is a 2006 Marathi comedy movie. It is one of the breakthrough movie for actor Bharat Jadhav. It has music given by Ajay-Atul.The movie was blockbuster in Marathi Box office.The movie is remake of popular Hindi movie Chalti Ka Naam Gaadi."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}]
\ No newline at end of file
+[{"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Zero_Effect"}, "Title": {"type": "literal", "value": "Zero Effect"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jake_Kasdan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Angela_Featherstone|http://dbpedia.org/resource/Ben_Stiller|http://dbpedia.org/resource/Bill_Pullman|http://dbpedia.org/resource/Kim_Dickens|http://dbpedia.org/resource/Ryan_O'Neal"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_thriller_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "Zero Effect is a 1998 mystery film written and directed by Jake Kasdan (son of writer-director Lawrence Kasdan). It stars Bill Pullman as \"the world's most private detective\", Daryl Zero, and Ben Stiller as his assistant Steve Arlo. The plot of the film is loosely based on the Arthur Conan Doyle short story \"A Scandal in Bohemia\". The film was shot in Portland, Oregon. It was scored by The Greyboy Allstars. It was screened in the Un Certain Regard section at the 1998 Cannes Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Castle_Rock_Entertainment"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kingsman:_The_Secret_Service"}, "Title": {"type": "literal", "value": "Kingsman: The Secret Service"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Matthew_Vaughn"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films|http://dbpedia.org/resource/Category:Spy_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "129"}, "Description": {"type": "literal", "value": "Kingsman: The Secret Service is a British-American spy action-comedy film  directed by Matthew Vaughn, and based on the comic book The Secret Service, created by Dave Gibbons and Mark Millar. The screenplay was written by Vaughn and Jane Goldman. It follows the recruitment and training of a potential secret agent, Gary \"Eggsy\" Unwin (Taron Egerton), into a secret spy organisation. Eggsy joins a mission to tackle a global threat from Richmond Valentine (Samuel L. Jackson), a wealthy megalomaniac. The film also stars Colin Firth, Mark Strong, and Michael Caine. Kingsman: The Secret Service premiered at the annual film marathon Butt-Numb-A-Thon on 13 December 2014, and was theatrically released in the United Kingdom on 29 January 2015. The film received positive reviews, and has grossed over $414 million worldwide, becoming Vaughn's most commercially successful film to date. A sequel, titled The Golden Circle, is scheduled for a 16 June 2017 release."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Marv_Films|http://dbpedia.org/resource/Shangri-La_Entertainment|http://dbpedia.org/resource/TSG_Entertainment"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Waiting_Alone"}, "Title": {"type": "literal", "value": "Waiting Alone"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dayyan_Eng"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gong_Beibi|http://dbpedia.org/resource/Li_Bingbing|http://dbpedia.org/resource/Xia_Yu_(actor)|http://dbpedia.org/resource/Yuan_Quan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "Waiting Alone (Chinese: \u72ec\u81ea\u7b49\u5f85; pinyin: D\u00faz\u00ec D\u011bngd\u00e0i) is a 2004 Chinese romantic comedy film written & directed by Chinese-American filmmaker Dayyan Eng (Chinese: \u4f0d\u4ed5\u8d24; pinyin: W\u01d4 Sh\u00ecx\u00edan), depicting the lives of a group of hip, affluent, twenty-something Beijing residents. The film features Chinese movie stars Xia Yu, Gong Beibi and Li Bingbing. It also features cameos of some of Hong Kong's best known actors, including Chow Yun-fat. Excellent reviews and strong word-of-mouth made this independent film a hit in China where it was embraced by young audiences. In 2005, Waiting Alone was nominated for three Chinese Academy Awards (Golden Rooster Awards) including Best Picture; the first time a nomination was awarded to a foreign director in this category. Waiting Alone was acquired for international distribution in 2006 by Arclight Films."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hacks_(2002_film)"}, "Title": {"type": "literal", "value": "Hacks"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Glenn_Rockowitz"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jim_Gaffigan|http://dbpedia.org/resource/Michael_Rispoli|http://dbpedia.org/resource/Victor_Varnado"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Hacks is a 2002 independent film written and directed by Glenn Rockowitz. This film is a mockumentary shot in black and white but struggles to sit within any conventionally defined genre."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jump_(2009_film)"}, "Title": {"type": "literal", "value": "Jump"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Stephen_Fung"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Daniel_Wu|http://dbpedia.org/resource/Leon_Jay_Williams|http://dbpedia.org/resource/Zhang_Yuqi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:Hong_Kong_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "Jump is a 2009 Hong Kong comedy-drama film written and produced by Stephen Chow and directed by Stephen Fung. The film stars Kitty Zhang, Leon Jay Williams and Daniel Wu with action choreography by Yuen Cheung-yan. Edison Chen was originally the lead actor of the film, but due to his 2008 photo scandal, he was replaced by Williams."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Mansion_(TV_series)"}, "Title": {"type": "literal", "value": "The Mansion"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dan_Ilic"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Charlie_Pickering|http://dbpedia.org/resource/Justin_Kennedy|http://dbpedia.org/resource/Kate_McLennan|http://dbpedia.org/resource/Michael_Chamberlin_(comedian)"}, "Published": {"type": "literal", "value": "2008-04-03"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Australian_comedy_television_series|http://dbpedia.org/resource/Category:The_Comedy_Channel_shows"}, "Genre": {"type": "literal", "value": "http://dbpedia.org/resource/Situation_comedy"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Mansion is an Australian television comedy based upon news and current affairs. Hosted by Michael Chamberlin and Charlie Pickering and featuring Kate McLennan and Justin Kennedy, It premiered on The Comedy Channel on Thursday 3 April 2008 at 8:30 pm. The fictional backstory of The Mansion is that its previous host of The Mansion was one of the word's richest and most sexually potent news magnates, Jebediah McNews. The series finale of the Mansion aired on 19 June 2008 with a 'best of' episode airing on 26 June."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_League_of_Gentlemen's_Apocalypse"}, "Title": {"type": "literal", "value": "The League of Gentlemen's Apocalypse"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Steve_Bendelack"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Mark_Gatiss|http://dbpedia.org/resource/Michael_Sheen|http://dbpedia.org/resource/Peter_Kay|http://dbpedia.org/resource/Reece_Shearsmith|http://dbpedia.org/resource/Simon_Pegg|http://dbpedia.org/resource/Steve_Pemberton|http://dbpedia.org/resource/Victoria_Wood"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:British_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "The League of Gentlemen's Apocalypse is a feature film spin-off of the British television comedy series The League of Gentlemen. Starring Mark Gatiss, Steve Pemberton and Reece Shearsmith, the film was written by the cast with Jeremy Dyson, and directed by Steve Bendelack. Also featuring in guest roles are Michael Sheen, Victoria Wood, David Warner, Alan Morrissey, Bruno Langley, Bernard Hill, Simon Pegg and Peter Kay. The film was due for a UK release on 22 April 2005, but the release date was moved back to 3 June. Over 20 minutes of footage was deleted in the final cut."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Don_Jon"}, "Title": {"type": "literal", "value": "Don Jon"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Joseph_Gordon-Levitt"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Don Jon is a 2013 American romantic comedy-drama film written and directed by Joseph Gordon-Levitt. The film stars Gordon-Levitt, Scarlett Johansson and Julianne Moore, with Rob Brown, Glenne Headly, Brie Larson and Tony Danza in supporting roles. The film premiered at the Sundance Film Festival on January 18, 2013, and had its wide release in the United States on September 27, 2013."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Relativity_Media"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Best_Man_(1999_film)"}, "Title": {"type": "literal", "value": "The Best Man"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Malcolm_D._Lee"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Harold_Perrineau|http://dbpedia.org/resource/Melissa_De_Sousa|http://dbpedia.org/resource/Monica_Calhoun|http://dbpedia.org/resource/Morris_Chestnut|http://dbpedia.org/resource/Nia_Long|http://dbpedia.org/resource/Sanaa_Lathan|http://dbpedia.org/resource/Taye_Diggs|http://dbpedia.org/resource/Terrence_Howard"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy-drama_films|http://dbpedia.org/resource/Category:1990s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "The Best Man is a 1999 American romantic comedy-drama film, written and directed by Malcolm D. Lee. It was produced by 40 Acres and a Mule Filmworks, with Lee's cousin, Spike Lee, serving as producer. The film stars Taye Diggs and Nia Long. A Christmas-themed sequel, The Best Man Holiday, was released on November 15, 2013 with a reunited cast."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Animal"}, "Title": {"type": "literal", "value": "The Animal"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Luke_Greenfield"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Colleen_Haskell|http://dbpedia.org/resource/Ed_Asner|http://dbpedia.org/resource/Guy_Torry|http://dbpedia.org/resource/John_C._McGinley|http://dbpedia.org/resource/Rob_Schneider"}, "Published": {"type": "literal", "value": "2001-06-01"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "The Animal is a 2001 comedy film, starring Rob Schneider, Colleen Haskell, Michael Caton, and John C. McGinley. Schneider plays Marvin Mange, a man who is critically injured but unknown to him he is put back together by a mad scientist who transplants animal parts, resulting in strange permanent changes to his behavior."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Rams_(film)"}, "Title": {"type": "literal", "value": "Rams"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Gr\u00edmur_H\u00e1konarson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Sigur\u00f0ur_Sigurj\u00f3nsson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Tragicomedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Rams (Icelandic: Hr\u00fatar) is a 2015 Icelandic drama film written and directed by Gr\u00edmur H\u00e1konarson. It was screened in the Un Certain Regard section at the 2015 Cannes Film Festival where it won the Prix Un Certain Regard. It was screened in the Contemporary World Cinema section of the 2015 Toronto International Film Festival. It was selected as the Icelandic entry for the Best Foreign Language Film at the 88th Academy Awards but it was not nominated."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/English_Vinglish"}, "Title": {"type": "literal", "value": "English Vinglish"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Gauri_Shinde"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "133"}, "Description": {"type": "literal", "value": "English Vinglish is a 2012 Indian comedy-drama film, written and directed by Gauri Shinde. The film's narrative revolves around a housewife who enrolls in an English-speaking course to stop her husband and daughter mocking her lack of English skills, and gains self-respect in the process. The protagonist, played by Sridevi, was inspired by Shinde's mother. English Vinglish was originally made in Hindi; later it was re-shot in Tamil and released along with a Telugu dubbed version on 5 October 2012. The film marked Sridevi's return to filmmaking after a 15-year hiatus; it features French actor Mehdi Nebbou, Adil Hussain, and Priya Anand. Amitabh Bachchan and Ajith Kumar had cameo appearances in the Hindi and Tamil versions respectively. Before its theatrical release, English Vinglish was premiered at the 2012 Toronto International Film Festival, where both the film and Sridevi's performance received positive response. Prior to its release, the film was screened for the Indian press and critics. It received critical acclaim and several critics hailed it as a \"must watch film\". Soon after its release, the film was declared a hit in India and overseas. English Vinglish swept all the Best Debut Director awards of 2012 for Gauri Shinde. The film was also shortlisted as India's official entry for the Academy Awards in Best Foreign Language Film category. The film earned global acclaim at several international festivals across the world and Sridevi was hailed as the 'Meryl Streep of India' and the \"female Rajinikanth in Japan\"."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Eros_International"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Working_(TV_series)"}, "Title": {"type": "literal", "value": "Working"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Tsao|http://dbpedia.org/resource/David_Owen_Trainor|http://dbpedia.org/resource/Fred_Savage|http://dbpedia.org/resource/James_Widdoes|http://dbpedia.org/resource/Linda_Day|http://dbpedia.org/resource/Robert_Berlinger|http://dbpedia.org/resource/Steve_Zuckerman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Arden_Myrin|http://dbpedia.org/resource/Fred_Savage"}, "Published": {"type": "literal", "value": "1997-10-08"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_American_comedy_television_series"}, "Genre": {"type": "literal", "value": "http://dbpedia.org/resource/Situation_comedy"}, "Duration": {"type": "literal", "value": "30"}, "Description": {"type": "literal", "value": "Working is an American sitcom that aired on NBC from 1997 to 1999. The series was created and executive produced by Michael Davidoff and Bill Rosenthal."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Potta_Potti"}, "Title": {"type": "literal", "value": "Potta Potti 50/50"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Yuvaraj_Dhayalan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Sadagoppan_Ramesh"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Potta Potti  is a 2011 Indian Tamil Sports-Comedy film written and directed by newcomer Yuvaraj Dhayalan, featuring cricketer Sadagoppan Ramesh in the starring role alongside several newcomers. The film, initially titled Pattai Patti, released on 5 August 2011 to generally positive reviews."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_Hart:_Laugh_at_My_Pain"}, "Title": {"type": "literal", "value": "Laugh at My Pain"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tim_Story"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Hart"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Comedy_Central_films|http://dbpedia.org/resource/Category:Stand-up_comedy_concert_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Laugh at My Pain is a 2011 stand-up comedy documentary film, starring comedian Kevin Hart. It features Hart performing a stand-up special at the Nokia Theater at L.A. Live in Los Angeles, among other material. Taraji P. Henson and Larry King appear, among others."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/AMC_Theatres"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Expelled_(film)"}, "Title": {"type": "literal", "value": "Expelled"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alex_Goyette"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cameron_Dallas|http://dbpedia.org/resource/Lia_Marie_Johnson|http://dbpedia.org/resource/Matt_Shively|http://dbpedia.org/resource/Teala_Dunn"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Expelled is an American teen comedy feature-length film, written and directed by Alex Goyette. The film stars Cameron Dallas, Matt Shively, Lia Marie Johnson, Marcus Johns, Andrea Russett, Kristina Hayes and Teala Dunn. Majority of the cast are popular online internet personalities. The film was released in a limited release on December 12, 2014 before being released on video on demand December 16, 2014 by 20th Century Fox Home Entertainment."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox_Home_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Alpha_and_Omega_(film)"}, "Title": {"type": "literal", "value": "Alpha and Omega"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Anthony_Bell_(director)|http://dbpedia.org/resource/Ben_Gluck"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Christina_Ricci|http://dbpedia.org/resource/Danny_Glover|http://dbpedia.org/resource/Dennis_Hopper|http://dbpedia.org/resource/Hayden_Panettiere|http://dbpedia.org/resource/Justin_Long"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Alpha and Omega is a 2010 American 3D computer-animated adventure comedy-drama film directed by Anthony Bell and Ben Gluck. Starring Justin Long, Hayden Panettiere, Dennis Hopper, Danny Glover, Christina Ricci, the film was written by Christopher Denk and Steve Moore, based on a story by Moore and Gluck. The film was released nationwide in 2-D and 3-D on September 17, 2010 by Lionsgate Films. The film was dedicated to the memory of Dennis Hopper, as this was his final performance prior to his death. A direct-to-DVD sequel, entitled A Howl-iday Adventure, was released on October 8, 2013. Another sequel, The Great Wolf Games, was released on March 25, 2014. The Legend of the Saw Tooth Cave was released on September 23, 2014. Family Vacation was released to DVD on August 4, 2015. Dino Digs was released on DVD and Digital HD on May 10, 2016. Two more sequels are planned."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lionsgate_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Juno_(film)"}, "Title": {"type": "literal", "value": "Juno"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jason_Reitman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Allison_Janney|http://dbpedia.org/resource/Ellen_Page|http://dbpedia.org/resource/J._K._Simmons|http://dbpedia.org/resource/Jason_Bateman|http://dbpedia.org/resource/Jennifer_Garner|http://dbpedia.org/resource/Michael_Cera"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "Juno is a 2007 American comedy-drama independent film directed by Jason Reitman and written by Diablo Cody. Ellen Page stars as the title character, an independent-minded teenager confronting an unplanned pregnancy and the subsequent events that put pressures of adult life onto her. Michael Cera, Jennifer Garner, Jason Bateman, Allison Janney, and J. K. Simmons also star. Filming spanned from early February to March 2007 in Vancouver, British Columbia. It premiered on September 8 at the 2007 Toronto International Film Festival, receiving a standing ovation. Juno won the Academy Award for Best Original Screenplay and earned three other Oscar nominations, including Best Picture and Best Actress for Page. The film's soundtrack, featuring several songs performed by Kimya Dawson in various guises, was the first chart-topping soundtrack since Dreamgirls and 20th Century Fox's first number one soundtrack since Titanic. Juno earned back its initial budget of $6.5 million in twenty days, the first nineteen of which were when the film was in limited release. It went on to earn $231 million. Juno received acclaim from critics, many of whom placed the film on their top ten lists for the year. It has received criticism and praise from members of both the pro-life and pro-choice communities regarding its treatment of abortion."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Searchlight_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Janji_Joni"}, "Title": {"type": "literal", "value": "Janji Joni"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Joko_Anwar"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Mariana_Renata|http://dbpedia.org/resource/Nicholas_Saputra|http://dbpedia.org/resource/Rachel_Maryam_Sayidina"}, "Published": {"type": "literal", "value": "2005-04-27"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "Janji Joni (English: Joni's Promise) is a 2005 Indonesian romantic comedy film directed by Joko Anwar, starring Nicholas Saputra, Mariana Renata, and Rachel Maryam."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Outsourced_(film)"}, "Title": {"type": "literal", "value": "Outsourced"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/John_Jeffcoat"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Arjun_Mathur|http://dbpedia.org/resource/Asif_Basra|http://dbpedia.org/resource/Ayesha_Dharker|http://dbpedia.org/resource/Josh_Hamilton_(actor)|http://dbpedia.org/resource/Siddarth_Jadhav"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "Outsourced is a romantic comedy film, directed by John Jeffcoat, released in 2006."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/ShadowCatcher_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Year_of_the_Carnivore"}, "Title": {"type": "literal", "value": "Year of the Carnivore"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sook-Yin_Lee"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ali_Liebert|http://dbpedia.org/resource/Cristin_Milioti|http://dbpedia.org/resource/Luke_Camilleri|http://dbpedia.org/resource/Mark_Rendall|http://dbpedia.org/resource/Will_Sasso"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films|http://dbpedia.org/resource/Category:Canadian_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Year of the Carnivore is a 2009 Canadian romantic comedy film about a grocery store detective with a crush on a man who rejects her because she has too little sexual experience. Year of the Carnivore is Sook-Yin Lee's feature directorial debut and it premiered at the Toronto International Film Festival as a Canada First selection."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/E1_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Chlorine_(2013_film)"}, "Title": {"type": "literal", "value": "Chlorine"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jay_Alaimo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Flora_Cross|http://dbpedia.org/resource/Kyra_Sedgwick|http://dbpedia.org/resource/Rhys_Coiro|http://dbpedia.org/resource/Ryan_Donowho|http://dbpedia.org/resource/Tom_Sizemore|http://dbpedia.org/resource/Vincent_D'Onofrio"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Chlorine is a 2013 American comedy-drama film directed and written by Jay Alaimo. Filming mainly took place in Madison, New Jersey and Wayne, New Jersey."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Gravitas_Ventures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ee_Adutha_Kaalathu"}, "Title": {"type": "literal", "value": "Ee Adutha Kaalathu"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Arun_Kumar_Aravind"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anoop_Menon|http://dbpedia.org/resource/Indrajith_Sukumaran|http://dbpedia.org/resource/Jagathy_Sreekumar|http://dbpedia.org/resource/Murali_Gopy|http://dbpedia.org/resource/Mythili|http://dbpedia.org/resource/Nishan_K._P._Nanaiah|http://dbpedia.org/resource/Tanu_Roy"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "160"}, "Description": {"type": "literal", "value": "Ee Adutha Kaalathu (Malayalam: \u0d08 \u0d05\u0d1f\u0d41\u0d24\u0d4d\u0d24 \u0d15\u0d3e\u0d32\u0d24\u0d4d\u0d24\u0d4d, English translation: In Recent Times) is a 2012 Indian black comedy film written by Murali Gopy and directed by Arun Kumar Aravind. The film marks the second directorial venture by Arun Kumar Aravind, after his notable directorial debut Cocktail (2010). Kerala State Award winning cinematographer Shehnad Jalal handled the camera. The narrative is patterned like a Rubik's Cube; it's a brainy entertainer that mixes various genres. It features the lives of six different persons from different strata of the social life of the city, interconnected due to unexpected events beyond their control. Bengali model and theater artiste Tanushree Ghosh makes her debut in Malayalam cinema with this film. The cast includes Indrajith, Murali Gopy, Anoop Menon, Nishan, Jagathy Sreekumar and Mythili. The music is composed by Gopi Sundar and the lyrics are by Rafeeq Ahmed. The film was released on 24 February 2012 in Kerala to positive reviews. The film is considered a path-breaker for its bold and realistic narration and the innovative style of weaving story threads together. It was screened at the Malayalam Cinema Today category of the 17th International Film Festival of Kerala, where it won the NETPAC Award for Best Malayalam Film. Discussions are underway for the Hindi remake of the movie. MalluDeals.com gave Ee Adutha Kalathu the ranking of No 2 among the Top 10 Malayalam Movies of 2012."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Hooligan_Factory"}, "Title": {"type": "literal", "value": "The Hooligan Factory"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nick_Nevern"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jason_Maza|http://dbpedia.org/resource/Josef_Altin|http://dbpedia.org/resource/Keith-Lee_Castle|http://dbpedia.org/resource/Leo_Gregory|http://dbpedia.org/resource/Nick_Nevern|http://dbpedia.org/resource/Ray_Fearon|http://dbpedia.org/resource/Steven_O'Donnell_(actor)|http://dbpedia.org/resource/Tom_Burke_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "The Hooligan Factory is a 2014 Football hooliganism spoof film directed, co-written and starring Nick Nevern. The film heavily parodies titles from the British hooligan genre films and focuses mainly on The Firm, along with The Football Factory, Rise of the Footsoldier, I.D., Green Street and Cass."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/11:14"}, "Title": {"type": "literal", "value": "11:14"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Greg_Marcks"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Barbara_Hershey|http://dbpedia.org/resource/Ben_Foster|http://dbpedia.org/resource/Blake_Heron|http://dbpedia.org/resource/Clark_Gregg|http://dbpedia.org/resource/Henry_Thomas|http://dbpedia.org/resource/Hilary_Swank|http://dbpedia.org/resource/Patrick_Swayze|http://dbpedia.org/resource/Rachael_Leigh_Cook|http://dbpedia.org/resource/Shawn_Hatosy"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "11:14 is a 2003 American indie black comedy. The film was edited in a way that the various scenes of the movie all take place around the pivotal time of 11:14 PM."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/New_Line_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/One_by_Two_(2014_film)"}, "Title": {"type": "literal", "value": "One By Two"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Devika_Bhagat"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Abhay_Deol|http://dbpedia.org/resource/Preeti_Desai"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "149"}, "Description": {"type": "literal", "value": "One By Two is a 2014 Hindi romantic comedy directed by Devika Bhagat. It released on 31 January 2014 at multiplexes, showing on approximately 500 screens in India. The film features real life couple Abhay Deol and Preeti Desai. This is the story of Amit and Samara who meet each other while living in Mumbai The music of the film has been composed by Shankar-Ehsaan-Loy. The film was heavily panned by critics."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Race_Gurram"}, "Title": {"type": "literal", "value": "Race Gurram"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Surender_Reddy"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Allu_Arjun|http://dbpedia.org/resource/Prakash_Raj|http://dbpedia.org/resource/Ravi_Kishan|http://dbpedia.org/resource/Saloni_Aswani|http://dbpedia.org/resource/Shaam|http://dbpedia.org/resource/Shruti_Haasan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "163"}, "Description": {"type": "literal", "value": "Race Gurram (English: Race Horse) is a 2014 Telugu action-comedy film directed by Surender Reddy and produced by Nallamalupu Srinivas under his banner Sri Lakshmi Narasimha Productions. The film features an ensemble cast of Allu Arjun and Shruti Haasan in the lead roles while S. Thaman composed the music. This was Allu Arjun and Shruti Haasan's first collaboration. Principal photography began on 13 May 2013 in Hyderabad. The film's \"talkie part\" was completed on 24 December 2013, with the entire shoot completed on 22 February 2014. The film had a worldwide release on 11 April 2014 The dubbed Malayalam version of the film titled Lucky: The Racer released on 25 April 2014. It was also dubbed into Hindi as Main Hoon Lucky: the Racer. Upon release, the film received positive reviews from critics, eventually becoming the fifth highest grossing Telugu film of all time and became the highest grosser of 2014 as it collected around \u20b9104 crore (US$15 million) with a distributor's share of \u20b959.4 crore (US$8.8 million). It won the Filmfare Awards for Best Actor, Best Actress and Best Playback Singer - Male. Race gurram released in 1150 theatres worldwide and it collected \u20b9104 crore (US$15 million) in its lifetime. Race Gurram was the highest grossing Telugu film of 2014 which topped Yevadu record and eventually went on to become the fifth highest grossing Telugu film of all time."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tenaliraman_(film)"}, "Title": {"type": "literal", "value": "Tenaliraman"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Yuvaraj_Dhayalan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Meenakshi_Dixit|http://dbpedia.org/resource/Vadivelu"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "146"}, "Description": {"type": "literal", "value": "Tenaliraman (previously titled Jagajala Pujabala Tenaliraman) is a 2014 Tamil historical fiction political satire comedy film directed by Yuvaraj Dhayalan of Potta Potti fame. Vadivelu stars in this film in dual roles. Meenakshi Dixit plays the heroine in the film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/AGS_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dedh_Ishqiya"}, "Title": {"type": "literal", "value": "Dedh Ishqiya"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Abhishek_Chaubey"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Arshad_Warsi|http://dbpedia.org/resource/Huma_Qureshi_(actress)|http://dbpedia.org/resource/Madhuri_Dixit|http://dbpedia.org/resource/Naseeruddin_Shah"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_black_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "148"}, "Description": {"type": "literal", "value": "Dedh Ishqiya is a 2014 Indian black comedy film directed by Abhishek Chaubey starring Madhuri Dixit, Arshad Warsi, Naseeruddin Shah, and Huma Qureshi in the lead roles. Produced by Raman Maroo of Shemaroo Entertainment and by Vishal Bharadwaj, it is a sequel of Ishqiya (2010). It was released worldwide on 10 January 2014."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Shemaroo_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Book_of_Life_(2014_film)"}, "Title": {"type": "literal", "value": "The Book of Life"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jorge_Gutierrez_(animator)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Channing_Tatum|http://dbpedia.org/resource/Christina_Applegate|http://dbpedia.org/resource/Diego_Luna|http://dbpedia.org/resource/Ice_Cube|http://dbpedia.org/resource/Kate_del_Castillo|http://dbpedia.org/resource/Ron_Perlman|http://dbpedia.org/resource/Zoe_Saldana"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "The Book of Life is a 2014 American 3D computer-animated fantasy adventure musical comedy film produced by Reel FX Creative Studios and distributed by 20th Century Fox. Co-written and directed by Jorge R. Gutierrez, it was produced by Aaron Berger, Brad Booker, Guillermo del Toro and Carina Schulze. The film stars the voices of Diego Luna, Zoe Saldana, Channing Tatum, Christina Applegate, Ice Cube, Ron Perlman, and Kate del Castillo. Based on an original idea by Gutierrez, the story follows a bullfighter who embarks on an afterlife adventure to fulfill the expectations of his family and friends. The film premiered in Los Angeles on October 12, 2014 and was theatrically released in the United States on October 17, 2014. It received a Golden Globe nomination for Best Animated Feature Film. The film grossed $99.8 million on a $50 million budget."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Killers_(2010_film)"}, "Title": {"type": "literal", "value": "Killers"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Robert_Luketic"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_criminal_comedy_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Killers is a 2010 American romantic action comedy film directed by Robert Luketic and starring Katherine Heigl and Ashton Kutcher. The film was released on June 4, 2010. The film centers on a young woman (Heigl) who meets a man (Kutcher) who turns out to be an assassin."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lions_Gate_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dylan_Dog:_Dead_of_Night"}, "Title": {"type": "literal", "value": "Dylan Dog: Dead of Night"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Munroe"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anita_Briem|http://dbpedia.org/resource/Brandon_Routh|http://dbpedia.org/resource/Peter_Stormare|http://dbpedia.org/resource/Sam_Huntington|http://dbpedia.org/resource/Taye_Diggs"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "Dylan Dog: Dead of Night is a 2011 American science fiction mystery action horror comedy thriller film based on Tiziano Sclavi's Italian comic book Dylan Dog, starring Brandon Routh as the eponymous and self-aware detective. The film was released in Italy on March 16, 2011, and in the United States on April 29, 2011. The film earned $4,634,062 on a $20 million budget."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Freestyle_Releasing"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Haunting_Me"}, "Title": {"type": "literal", "value": "Haunting Me"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Poj_Arnon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Haunting Me (Thai: \u0e2b\u0e2d\u0e41\u0e15\u0e4b\u0e27\u0e41\u0e15\u0e01; rtgs: Ho Taeo Taek) is a 2007 Thai horror-comedy film directed by Poj Arnon."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Five_Star_Production"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dedication_(film)"}, "Title": {"type": "literal", "value": "Dedication"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Justin_Theroux"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Billy_Crudup|http://dbpedia.org/resource/Mandy_Moore|http://dbpedia.org/resource/Tom_Wilkinson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Dedication is a 2007 American romantic comedy film starring Billy Crudup and Mandy Moore. Written by David Bromberg, this film is actor Justin Theroux's directorial debut. The film premiered at the 2007 Sundance Film Festival. It was produced by Plum Pictures."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/First_Look_International|http://dbpedia.org/resource/The_Weinstein_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Hitman's_Bodyguard"}, "Title": {"type": "literal", "value": "The Hitman's Bodyguard"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Patrick_Hughes_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gary_Oldman|http://dbpedia.org/resource/Ryan_Reynolds|http://dbpedia.org/resource/Salma_Hayek|http://dbpedia.org/resource/Samuel_L._Jackson|http://dbpedia.org/resource/\u00c9lodie_Yung"}, "Published": {"type": "literal", "value": "2017-08-18"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Hitman's Bodyguard is an upcoming American action comedy film directed by Patrick Hughes and written by Tom O'Connor. The film stars Ryan Reynolds, Samuel L. Jackson, Gary Oldman, \u00c9lodie Yung, and Salma Hayek."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lionsgate"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ustad_Hotel"}, "Title": {"type": "literal", "value": "Ustad Hotel"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Anwar_Rasheed"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Assim_Jamal|http://dbpedia.org/resource/Dulquer_Salmaan|http://dbpedia.org/resource/Nithya_Menen|http://dbpedia.org/resource/Siddique_(actor)|http://dbpedia.org/resource/Thilakan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "151"}, "Description": {"type": "literal", "value": "Ustad Hotel is a 2012 Indian Malayalam-language drama film directed by Anwar Rasheed, written by Anjali Menon and produced by Listin Stephen under the banner of Magic Frames and was distributed by Central Pictures. The film stars Dulquer Salmaan, Thilakan, Siddique, Mamukkoya, Nithya Menen and Lena Abhilash, along with Asif Ali and Jishnu in cameo roles. The film is about a young man named Faizal (known as Feyzee), who studies in Switzerland as a chef against his rich father's wishes. As the relation between father and son deteriorates, Feyzee is forced to work as a cook in a restaurant at Kozhikode (Calicut) run by his grandfather Karim. A strong bond develops between Karim, an elderly Sufi Muslim, and his educated grandson who eventually decides to work permanently in the restaurant. The film also discusses issues of poverty, underprivilege and tensions between rich and poor in India. Food and its nuances becomes a central character in the film. Ustad Hotel was released on 13 July 2012. The film was one of the highest grossing Malayalam films of 2012 The film was named number-one in the list of \"Top 10 Malayalam films of 2012\" compiled by Oneindia.in. The film won three National Film Awards: the film won the award for Best Popular Film while Anjali Menon won the award for Best Dialogues and Thilakan got a Special Mention. This boxoffice hit film is being dubbed in Telugu as Jathaga under the banner of SK Pictures"}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Horrible_Bosses"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Seth_Gordon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Horrible Bosses is a 2011 American black comedy film directed by Seth Gordon, written by Michael Markowitz, John Francis Daley and Jonathan Goldstein, based on a story by Markowitz. It stars Jason Bateman, Charlie Day, Jason Sudeikis, Jennifer Aniston, Colin Farrell, Kevin Spacey, and Jamie Foxx. The plot follows three friends, played by Bateman, Day, and Sudeikis, who decide to murder their respective overbearing, abusive bosses, portrayed by Spacey, Aniston and Farrell. Markowitz's script was bought by New Line Cinema in 2005 and the film spent six years in various states of pre-production, with a variety of actors attached to different roles. By 2010, Goldstein and Daley had rewritten the script, and the film finally went into production. The film premiered in Los Angeles on June 30, 2011, and received a wide release on July 8, 2011. The film exceeded financial expectations, accruing over $28 million in the first three days, making it the number two film in the United States during its opening weekend, and going on to become the highest-grossing black comedy film of all time in unadjusted dollars, breaking the record previously set by The War of the Roses in 1990. The film grossed over $209 million worldwide during its theatrical run. The film opened to positive critical reception, with several critics praising the ensemble cast, with each lead being singled out for their performances across reviews. The plot received a more mixed response; some reviewers felt that its dark, humorous premise was explored well, while others felt the jokes were racist, homophobic, and misogynistic. A sequel, Horrible Bosses 2, was released on November 26, 2014."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Age_of_Panic"}, "Title": {"type": "literal", "value": "Age of Panic"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Justine_Triet"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Vincent_Macaigne"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Age of Panic (French: La Bataille de Solf\u00e9rino) is a 2013 French dramedy film written and directed by Justine Triet. Much of the film was shot on the streets of Paris during the 6 May 2012 national elections."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Love_Is_the_Only_Answer"}, "Title": {"type": "literal", "value": "Love Is the Only Answer"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Patrick_Kong"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alex_Fong_(singer)|http://dbpedia.org/resource/Charmaine_Sheh|http://dbpedia.org/resource/Him_Law"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Hong_Kong_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Love Is the Only Answer (Chinese: \u4eba\u7d04\u96e2\u5a5a\u5f8c) is a 2011 Hong Kong comedy film directed by Patrick Kong."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Breakup_Guru"}, "Title": {"type": "literal", "value": "The Breakup Guru"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Deng_Chao"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Deng_Chao|http://dbpedia.org/resource/Yang_Mi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Chinese_comedy-drama_films|http://dbpedia.org/resource/Category:Chinese_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "The Breakup Guru (Chinese: \u5206\u624b\u5927\u5e08) is a 2014 Chinese romantic-comedy-drama film directed by Deng Chao and Yu Baimei and also starring Deng Chao and Yang Mi. The film was released on June 27, 2014."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_First_Turn-On!"}, "Title": {"type": "literal", "value": "The First Turn-On!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lloyd_Kaufman|http://dbpedia.org/resource/Michael_Herz_(producer)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Sheila_Kennedy|http://dbpedia.org/resource/Vincent_D'Onofrio"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1980s_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "The First Turn-On! is a 1983 comedy film directed by Lloyd Kaufman and Michael Herz of Troma Entertainment. It was the last in a series of four \"sexy comedies\" that helped establish Troma as a film studio, starting with 1979's Squeeze Play!, 1981's Waitress! and 1982's Stuck on You!. The First Turn-On! is usually considered by Troma fans to be the best of the company's \"sexy comedies\"."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Troma_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sorority_Row"}, "Title": {"type": "literal", "value": "Sorority Row"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Stewart_Hendler"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Audrina_Patridge|http://dbpedia.org/resource/Briana_Evigan|http://dbpedia.org/resource/Carrie_Fisher|http://dbpedia.org/resource/Jamie_Chung|http://dbpedia.org/resource/Julian_Morris|http://dbpedia.org/resource/Leah_Pipes|http://dbpedia.org/resource/Margo_Harshman|http://dbpedia.org/resource/Matt_Lanter|http://dbpedia.org/resource/Rumer_Willis"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Sorority Row is a 2009 American slasher film directed by Stewart Hendler and starring Briana Evigan, Leah Pipes, Rumer Willis, and Carrie Fisher. Based on the script for the 1983 horror film The House on Sorority Row by Mark Rosman and Bobby Fine, the film is a re-imagining that focuses on a group of sorority sisters who are stalked and murdered on the night of their graduation after covering up the accidental death of a fellow sorority sister. The film was released theatrically in the United States on September 11, 2009, by Summit Entertainment and grossed $27.2 million worldwide against a budget of $12.5 million."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Summit_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Get_Married_(film)"}, "Title": {"type": "literal", "value": "Get Married"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Hanung_Bramantyo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Meriam_Bellina|http://dbpedia.org/resource/Nirina_Zubir"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Get Married is a 2007 Indonesian romantic comedy directed by Hanung Bramantyo. Starring Nirina Zubir, Aming, Deddy Mahendra Desta, Ringgo Agus Rahman, Richard Kevin, Jaja Mihardja, and Meriam Bellina, it tells of a young tomboy who is forced to find a husband."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Starvision_Plus"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Without_a_Paddle:_Nature's_Calling"}, "Title": {"type": "literal", "value": "Without a Paddle: Nature's Calling"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ellory_Elkayem"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kristopher_Turner|http://dbpedia.org/resource/Oliver_James_(entertainer)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "Without a Paddle: Nature's Calling is a 2009 direct-to-video sequel to the 2004 film Without a Paddle. There is no connection to the first film and none of the original actors return. It was released on DVD on January 13, 2009."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Famous_Productions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/All_the_Best:_Fun_Begins"}, "Title": {"type": "literal", "value": "All The Best: Fun Begins"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rohit_Shetty"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ajay_Devgn|http://dbpedia.org/resource/Bipasha_Basu|http://dbpedia.org/resource/Fardeen_Khan|http://dbpedia.org/resource/Mugdha_Godse|http://dbpedia.org/resource/Sanjay_Dutt"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Action_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "144"}, "Description": {"type": "literal", "value": "All The Best: Fun Begins is a Bollywood comedy film directed by Rohit Shetty, and starring Ajay Devgan, Sanjay Dutt, Fardeen Khan, Bipasha Basu and Mugdha Godse. The film was released on 16 October 2009, and received positive response from critics, The plot is loosely based on Marathi comedy play Pati Sagle Uchapati which itself is based on the English comedy play Right Bed Wrong Husband. The English play has been an inspiration for Tamil films- Veettuku Veedu and Vishwanathan Ramamoorthy as well as Kannada films- Galate Samsara and Housefull. The film was subsequently remade with slight changes in the story in Malayalam in 2010 as Best of Luck which went on to be remade in Kannada in 2015 as Ond Chance Kodi."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Past_Perfect_(film)"}, "Title": {"type": "literal", "value": "Past Perfect"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Maria_Sole_Tognazzi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Valentina_Cervi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Italian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Past Perfect (Italian: Passato prossimo) is a 2003 Italian comedy film directed by Maria Sole Tognazzi. It was entered into the 25th Moscow International Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Grilled_(film)"}, "Title": {"type": "literal", "value": "Grilled"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jason_Ensler"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Barry_Newman|http://dbpedia.org/resource/Burt_Reynolds|http://dbpedia.org/resource/Juliette_Lewis|http://dbpedia.org/resource/Kevin_James|http://dbpedia.org/resource/Michael_Rapaport|http://dbpedia.org/resource/Ray_Romano|http://dbpedia.org/resource/Sofia_Vergara"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "Grilled is a 2006 comedy film starring Ray Romano and Kevin James. It was released direct-to-video in the United States on July 11, 2006."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/New_Line_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Infidel_(2010_film)"}, "Title": {"type": "literal", "value": "The Infidel"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Josh_Appignanesi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films|http://dbpedia.org/resource/Category:Jewish_comedy_and_humor"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "The Infidel is a 2010 British comedy film directed by Josh Appignanesi and written by David Baddiel. The film stars Omid Djalili, Richard Schiff, Yigal Naor and Matt Lucas and revolves around a British Muslim who goes through an identity crisis when he discovers he was adopted as a child, having been born to a Jewish family."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Gagamboy"}, "Title": {"type": "literal", "value": "Gagamboy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Erik_Matti"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aubrey_Miles|http://dbpedia.org/resource/Jay_Manalo|http://dbpedia.org/resource/Vhong_Navarro"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Philippine_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Gagamboy is a 2004 Filipino science fiction action comedy film directed by Erik Matti and starring Vhong Navarro. It is of the same ilk as the Spider-Man films, with a mutated spider that causes Gagamboy to gain his superpowers."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Regal_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/JK_Enum_Nanbanin_Vaazhkai"}, "Title": {"type": "literal", "value": "JK Enum Nanbanin Vaazhkkai / Rajadhi Raja"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Cheran_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Nithya_Menen|http://dbpedia.org/resource/Prakash_Raj|http://dbpedia.org/resource/Sharwanand"}, "Published": {"type": "literal", "value": "2015-03-06|2016-06-24"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "139"}, "Description": {"type": "literal", "value": "JK Enum Nanbanin Vaazhkai (English: My friend JK's Life) is a 2015 Tamil film written and directed by Cheran, which was simultaneously made and later released in Telugu as Rajadhi Raja. It stars Sharwanand and Nithya Menen in the lead roles while Prakash Raj and Santhanam play supporting roles. The film featured songs by G. V. Prakash Kumar and film scored by Siddharth Vipin. After failing to have a theatrical release in late 2013, the Tamil version of the film had a straight-to-video release in March 2015, becoming the first venture in a new initiative launched by Cheran known as C2H. The Telugu version of the film had been indefinitely placed on hold, but was later released in June 2016, with the makers trying to profit from Sharwanand's popularity."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Club_Sandwich_(film)"}, "Title": {"type": "literal", "value": "Club Sandwich"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Fernando_Eimbcke"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Lucio_Gim\u00e9nez_Cacho"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Mexican_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "Club Sandwich is a 2013 Mexican comedy film written and directed by Fernando Eimbcke. It was screened in the Contemporary World Cinema section at the 2013 Toronto International Film Festival. It won the Golden Shell at the 2013 San Sebasti\u00e1n film festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Don_Verdean"}, "Title": {"type": "literal", "value": "Don Verdean"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jared_Hess"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amy_Ryan|http://dbpedia.org/resource/Danny_McBride|http://dbpedia.org/resource/Jemaine_Clement|http://dbpedia.org/resource/Leslie_Bibb|http://dbpedia.org/resource/Sam_Rockwell|http://dbpedia.org/resource/Will_Forte"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Don Verdean is a 2015 American comedy film directed by Jared Hess and written by Jared Hess and Jerusha Hess. The film stars Sam Rockwell, Amy Ryan, Jemaine Clement, Danny McBride, and Will Forte. The film was released in a limited release and through video on demand on December 11, 2015, by Lionsgate Premiere."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lionsgate_Premiere"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/A_Fool"}, "Title": {"type": "literal", "value": "A Fool"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chen_Jianbin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chen_Jianbin|http://dbpedia.org/resource/Jiang_Qinqin|http://dbpedia.org/resource/Jin_Shijia"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Chinese_adventure_comedy_films|http://dbpedia.org/resource/Category:Chinese_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "A Fool (Chinese: \u4e00\u4e2a\u52fa\u5b50) is a 2015 Chinese adventure comedy-drama film directed by Chen Jianbin. It was released on November 20, 2015."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Catfish_in_Black_Bean_Sauce"}, "Title": {"type": "literal", "value": "Catfish in Black Bean Sauce"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chi_Muoi_Lo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chi_Muoi_Lo|http://dbpedia.org/resource/Mary_Alice|http://dbpedia.org/resource/Paul_Winfield|http://dbpedia.org/resource/Sanaa_Lathan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "119"}, "Description": {"type": "literal", "value": "Catfish in Black Bean Sauce is a 1999 comedy-drama film about a Vietnamese brother and sister raised by an African American couple. The film stars Chi Muoi Lo, Paul Winfield, Sanaa Lathan, and Mary Alice."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Big_Nothing"}, "Title": {"type": "literal", "value": "Big Nothing"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jean-Baptiste_Andrea"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alice_Eve|http://dbpedia.org/resource/David_Schwimmer|http://dbpedia.org/resource/Natascha_McElhone|http://dbpedia.org/resource/Simon_Pegg"}, "Published": {"type": "literal", "value": "2006-12-01"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films|http://dbpedia.org/resource/Category:British_black_comedy_films|http://dbpedia.org/resource/Category:British_criminal_comedy_films|http://dbpedia.org/resource/Category:French_black_comedy_films|http://dbpedia.org/resource/Category:French_criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Big Nothing is a 2006 British-American-French black comedy crime film directed by Jean-Baptiste Andrea starring David Schwimmer and Simon Pegg. It was released in December 2006, and had its premiere at  Cardiff Film Festival in November 2006. Big Nothing was filmed on the Isle of Man and in Wales at Barry in the Vale of Glamorgan and at Caerwent and other areas of Monmouthshire. Other scenes were at Squamish, British Columbia, Canada."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Path\u00e9"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hank_and_Mike"}, "Title": {"type": "literal", "value": "Hank and Mike"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Matthiew_Klinck"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Klein_(actor)|http://dbpedia.org/resource/Joe_Mantegna|http://dbpedia.org/resource/Paolo_Mancini|http://dbpedia.org/resource/Thomas_Michael"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Hank and Mike is a 2008 comedy film directed by Matthiew Klinck, from a screenplay written by Paolo Mancini and Thomas Michael. The film tells the story of two blue-collar Easter Bunnies who get fired and try their hand at an assortment of odd jobs. The film premiered in 2008 at the NATPE NextGen Film Festival and was slated for general audience release on October 24, 2008 in the United States. The film was released in Canada on March 27, 2009."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sarah_Silverman:_Jesus_Is_Magic"}, "Title": {"type": "literal", "value": "Jesus Is Magic"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Liam_Lynch_(musician)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bob_Odenkirk|http://dbpedia.org/resource/Brian_Posehn|http://dbpedia.org/resource/Laura_Silverman|http://dbpedia.org/resource/Sarah_Silverman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Stand-up_comedy_concert_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "72"}, "Description": {"type": "literal", "value": "Sarah Silverman: Jesus Is Magic is a 2005 comedy written by and starring Sarah Silverman, directed by Liam Lynch and distributed by Roadside Attractions. The movie is a concert film consisting of 72 minutes of clips taken from Silverman's previous stand-up show of the same name, interspersed with flashbacks and comedic sketches. Silverman addresses a number of topics, including religion, AIDS, the Holocaust, race, sexism, political parties, people with disabilities, homeless people, and dwarves. Silverman also performs several original songs in the film. The film was released November 11, 2005 in eight theatres. Receiving positive reviews, it made just under $125,000 during opening weekend. Its performance led to an expanded release in as many as 57 theatres, resulting in a box office take of more than $1.2 million. The movie was released on DVD on June 6, 2006 in the United States, June 13 in Canada, and October 13, 2008 in the United Kingdom. A soundtrack CD was also released featuring most of the musical numbers, excerpts from Silverman's stand-up comedy, and several additional songs which did not appear in the film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Roadside_Attractions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Recep_\u0130vedik_3"}, "Title": {"type": "literal", "value": "Recep \u0130vedik 3"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Togan_G\u00f6kbakar"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Turkish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Recep \u0130vedik 3 is a 2010 Turkish comedy film, directed by Togan G\u00f6kbakar, which stars \u015eahan G\u00f6kbakar as an oafish character who is attempting to combat depression following the death of his grandmother. The film, which was released nationwide in Turkey on February 12, 2010, was the highest grossing Turkish film of 2010. The film's titular comic character was created by \u015eahan G\u00f6kbakar for his Turkish comedy television show Dikkat \u015eahan \u00c7\u0131kabilir, which ran from 2005 to 2006. The series subsequently generated several sequel films, starting with Recep \u0130vedik (2008), to which this is the second sequel."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Passport_to_Love"}, "Title": {"type": "literal", "value": "Passport to Love"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Victor_Vu"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kathy_Uyen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:Vietnamese_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "Passport to Love (Vietnamese: Chuy\u1ec7n T\u00ecnh Xa X\u1ee9) is a 2009 Vietnamese romantic comedy directed by Victor Vu. Produced by Infocus Media Group and Wonderboy Entertainment, the film was released on February 13, 2009 in Vietnam. The film won Audience Choice and Best Supporting Actress at Vietnam's 2008 Golden Kite Awards."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Good_Morning_President"}, "Title": {"type": "literal", "value": "Good Morning President"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jang_Jin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Go_Doo-shim|http://dbpedia.org/resource/Jang_Dong-gun|http://dbpedia.org/resource/Lee_Soon-jae"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:South_Korean_comedy_films|http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "132"}, "Description": {"type": "literal", "value": "Good Morning President (Hangul: \uad7f\ubaa8\ub2dd \ud504\ub808\uc9c0\ub358\ud2b8; RR: Gutmoning peurejideonteu) is a 2009 South Korean film written and directed by Jang Jin that takes viewers to the private quarters of the Blue House during the terms of three fictional presidents (played by Lee Soon-jae, Jang Dong-gun and Go Doo-shim), each trapped between political and ethical choices. It was chosen as the opening film of the 14th Busan International Film Festival and was released in theaters on October 22, 2009."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/CJ_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Ape_(2005_film)"}, "Title": {"type": "literal", "value": "The Ape"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Franco"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Brian_Lally|http://dbpedia.org/resource/James_Franco"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "The Ape is a 2005 American comedy film starring James Franco in his directorial debut. Franco also serves as a writer and executive producer."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Rabbit_Bandini_Productions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tucker_&_Dale_vs._Evil"}, "Title": {"type": "literal", "value": "Tucker & Dale vs. Evil"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Eli_Craig"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alan_Tudyk|http://dbpedia.org/resource/Chelan_Simmons|http://dbpedia.org/resource/Jesse_Moss_(actor)|http://dbpedia.org/resource/Katrina_Bowden|http://dbpedia.org/resource/Tyler_Labine"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Tucker & Dale vs. Evil is a 2010 Canadian-American comedy horror film written and directed by Eli Craig, and starring Alan Tudyk, Tyler Labine, Katrina Bowden, Jesse Moss, and Chelan Simmons. Tudyk and Labine play a pair of well-meaning hillbillies who are mistaken for killers by a group of clueless college students. The film premiered at the 2010 Sundance Film Festival and received a limited release in the United States. It has an 84% approval rating at Rotten Tomatoes and a 65/100 rating on Metacritic."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Magnet_Releasing"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Broken_Record_(film)"}, "Title": {"type": "literal", "value": "Broken Record"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_S._McEwan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/John_Gaffney_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "11"}, "Description": {"type": "literal", "value": "Broken Record is a short comedy film following a pair of removal men in East Kilbride who stumble upon an old trunk in a locked cupboard. The film was produced by Pentagram Productions UK and marked the directorial debut for Andy S. McEwan."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Road_Trip_(film)"}, "Title": {"type": "literal", "value": "Road Trip"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Todd_Phillips"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amy_Smart|http://dbpedia.org/resource/Anthony_Rapp|http://dbpedia.org/resource/Breckin_Meyer|http://dbpedia.org/resource/DJ_Qualls|http://dbpedia.org/resource/Fred_Ward|http://dbpedia.org/resource/Paulo_Costanzo|http://dbpedia.org/resource/Rachel_Blanchard|http://dbpedia.org/resource/Seann_William_Scott|http://dbpedia.org/resource/Tom_Green"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Road Trip is a 2000 American comedy film directed by Todd Phillips, written by Scot Armstrong and Phillips. The film stars Breckin Meyer, Seann William Scott, Paulo Costanzo, and DJ Qualls as four college friends who embark on an 1800-mile road trip to retrieve an illicit tape mistakenly mailed to a girlfriend."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/DreamWorks"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Almanya:_Welcome_to_Germany"}, "Title": {"type": "literal", "value": "Almanya: Welcome to Germany"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Yasemin_\u015eamdereli"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:German_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Almanya: Welcome to Germany (German: Almanya \u2013 Willkommen in Deutschland) (Almanya is Turkish for Germany) is a 2011 German comedy film directed by Yasemin \u015eamdereli. The film premiered at the 61st Berlin International Film Festival in the section competition and won the Deutscher Filmpreis 2011 in the categories Best Script and Best Film. The  tragic comedy dramatizes the question of identity and belonging for former  Turkish guest workers in Germany and their descendants. The film opened in German cinemas on 10 March and was the fourth most successful German film of 2011 with 1.5 million viewers."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Catfight_(film)"}, "Title": {"type": "literal", "value": "Catfight"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Onur_Tukel"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alicia_Silverstone|http://dbpedia.org/resource/Anne_Heche|http://dbpedia.org/resource/Sandra_Oh"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Action_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Catfight is an upcoming American action comedy film directed and written by Onur Tukel. The film stars Sandra Oh, Anne Heche, and Alicia Silverstone. It has been selected to be screened in the Special Presentations section at the 2016 Toronto International Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Screen_Gems"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Six_Shooter_(film)"}, "Title": {"type": "literal", "value": "Six Shooter"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Martin_McDonagh"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Brendan_Gleeson|http://dbpedia.org/resource/R\u00faaidhr\u00ed_Conroy"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "27"}, "Description": {"type": "literal", "value": "Six Shooter is an Irish / British 2004 live action short film starring Brendan Gleeson and R\u00faaidhr\u00ed Conroy. The film earned several awards, including the Academy Award for Best Live Action Short Film."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tan_de_repente"}, "Title": {"type": "literal", "value": "Tan de repente"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Diego_Lerman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Tan de repente (Suddenly) is a 2002 Argentine and Dutch black-and-white comedy drama film directed by Diego Lerman and written by Lerman, Mar\u00eda Meira, and Eloisa Solaas, based on the novel La prueba, written by C\u00e9sar Aira. The drama features Tatiana Saphir, Carla Crespo, Veronica Hassan, among others. A young, naive clerk at a lingerie store learns about love and her own identity."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Footloose_(2011_film)"}, "Title": {"type": "literal", "value": "Footloose"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Craig_Brewer"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andie_MacDowell|http://dbpedia.org/resource/Dennis_Quaid|http://dbpedia.org/resource/Julianne_Hough|http://dbpedia.org/resource/Kenny_Wormald"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "113"}, "Description": {"type": "literal", "value": "Footloose is a 2011 American musical dance film directed by Craig Brewer. It is a remake of the 1984 film of the same name and stars Kenny Wormald, Julianne Hough, Andie MacDowell, and Dennis Quaid. The film follows a young man who moves from Boston to a small southern town and protests the town's ban against dancing. Filming took place from September to November 2010 in Georgia. It was released in Australia and New Zealand on October 6, 2011, and in North America on October 14, 2011. It grossed $15.5 million in its opening weekend and $63 million worldwide from a $24 million budget. It was met with generally positive reaction from critics."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kadhalum_Kadandhu_Pogum"}, "Title": {"type": "literal", "value": "Kadhalum Kadanthu Pogum"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nalan_Kumarasamy"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Madonna_Sebastian|http://dbpedia.org/resource/Vijay_Sethupathi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy-drama_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "136"}, "Description": {"type": "literal", "value": "Kadhalum Kadandhu Pogum (English: Love too shall pass) is a 2016 Indian Tamil-language romantic comedy -drama film written and directed by Nalan Kumarasamy. Produced by C. V. Kumar under Thirukumaran Entertainment banner, the film stars Vijay Sethupathi and Madonna Sebastian in the lead roles. An official remake of the 2010 Korean film My Dear Desperado, the film was released on 11 March 2016 to positive reviews."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Abi_&_Abi_Pictures|http://dbpedia.org/resource/Studio_Green"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Gori_Tere_Pyaar_Mein"}, "Title": {"type": "literal", "value": "Gori Tere Pyaar Mein"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Punit_Malhotra"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Imran_Khan_(Indian_actor)|http://dbpedia.org/resource/Kareena_Kapoor_Khan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "150"}, "Description": {"type": "literal", "value": "Gori Tere Pyaar Mein is a 2013 Indian romantic drama film written and directed by Punit Malhotra. Produced by Karan Johar under the banner of Dharma Productions, the film features Imran Khan and Kareena Kapoor Khan in pivotal roles."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Vance_and_Pepe's_Porn_Start"}, "Title": {"type": "literal", "value": "Vance and Pepe's Porn Start"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mark_Kenneth_Woods"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Mark_Kenneth_Woods|http://dbpedia.org/resource/Michael_Venus_(entertainer)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Black_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "53"}, "Description": {"type": "literal", "value": "Vance and Pepe's Porn Start is a comedic mockumentary which had its debut at the Out On Screen Vancouver Queer Film Festival in August 2011. The DVD was released January 17, 2012 through MKW Productions and had its television broadcast debut on July 29, 2012 on OUTtv in Canada."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/In_Bed_with_Victoria"}, "Title": {"type": "literal", "value": "In Bed with Victoria"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Justine_Triet"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Melvil_Poupaud|http://dbpedia.org/resource/Vincent_Lacoste|http://dbpedia.org/resource/Virginie_Efira"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "In Bed with Victoria (original title: Victoria) is a 2016 French comedy-drama film directed by Justine Triet. It was screened in the International Critics' Week section at the 2016 Cannes Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Why_Him%3F"}, "Title": {"type": "literal", "value": "Why Him?"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/John_Hamburg"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bryan_Cranston|http://dbpedia.org/resource/Griffin_Gluck|http://dbpedia.org/resource/James_Franco|http://dbpedia.org/resource/Keegan-Michael_Key|http://dbpedia.org/resource/Megan_Mullally|http://dbpedia.org/resource/Zoey_Deutch"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Why Him? is an upcoming American romantic comedy film directed by John Hamburg and co-written with Ian Helfer. The film stars James Franco, Bryan Cranston, Zoey Deutch, Megan Mullally, Griffin Gluck, and Keegan-Michael Key. The film will be released on December 23, 2016 by 20th Century Fox."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lilo_&_Stitch"}, "Title": {"type": "literal", "value": "Lilo & Stitch"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Sanders|http://dbpedia.org/resource/Dean_DeBlois"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Daveigh_Chase|http://dbpedia.org/resource/David_Ogden_Stiers|http://dbpedia.org/resource/Jason_Scott_Lee|http://dbpedia.org/resource/Kevin_McDonald|http://dbpedia.org/resource/Kevin_Michael_Richardson|http://dbpedia.org/resource/Tia_Carrere|http://dbpedia.org/resource/Ving_Rhames|http://dbpedia.org/resource/Zoe_Caldwell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films|http://dbpedia.org/resource/Category:Animated_comedy_films|http://dbpedia.org/resource/Category:Comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Lilo & Stitch is a 2002 American animated science fiction comedy-drama film produced by Walt Disney Feature Animation and released by Walt Disney Pictures. The 42nd Disney animated feature film, Lilo & Stitch was written and directed by Dean DeBlois and Chris Sanders, the latter also starring as Stitch, and features the voices of Daveigh Chase, Tia Carrere, David Ogden Stiers, Kevin McDonald, Ving Rhames, Jason Scott Lee, and Kevin Michael Richardson. It was the second of three Disney animated features produced primarily at the Florida animation studio located at Disney's Hollywood Studios (then known as Disney-MGM Studios during production) in Walt Disney World near Orlando, Florida. Lilo & Stitch was released on June 21, 2002 to positive reviews and was nominated for the 2002 Academy Award for Best Animated Feature, which ultimately went to Studio Ghibli's film Spirited Away, which was also distributed in the United States by Walt Disney Pictures and also starred Daveigh Chase in the English version. The success of the film eventually started a franchise: a direct-to-video sequel, Stitch! The Movie, was released on August 26, 2003. This was followed by a television series, Lilo & Stitch: The Series, which ran from September 20, 2003, to July 29, 2006. A second direct-to-video sequel, Lilo & Stitch 2: Stitch Has a Glitch, was released on August 30, 2005. A third sequel, a television film titled Leroy & Stitch, was released on June 27, 2006, as the conclusion to the TV series. An anime that succeeded Lilo & Stitch: The Series, Stitch!, ran from October 8, 2008, to June 19, 2011, in Japan, with TV specials broadcast in 2012 and 2015. Other animation studios produced the sequel films and series; Stitch! The Movie, Lilo & Stitch: The Series and Leroy & Stitch were produced by Walt Disney Television Animation, Stitch Has a Glitch was produced by DisneyToon Studios, and Stitch! was produced by Madhouse and later Shin-Ei Animation."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Chennai_600028"}, "Title": {"type": "literal", "value": "Chennai 600028"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Venkat_Prabhu"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aravind_Akash|http://dbpedia.org/resource/Ilavarasu|http://dbpedia.org/resource/Inigo_Prabhakaran|http://dbpedia.org/resource/Jai_(actor)|http://dbpedia.org/resource/Karthik_(singer)|http://dbpedia.org/resource/Nithin_Sathya|http://dbpedia.org/resource/Premji_Amaren|http://dbpedia.org/resource/Ranjith_(singer)|http://dbpedia.org/resource/Sampath_Raj|http://dbpedia.org/resource/Shiva_(actor)|http://dbpedia.org/resource/Vijay_Vasanth|http://dbpedia.org/resource/Vijayalakshmi_Ahathian"}, "Published": {"type": "literal", "value": "2007-04-27"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Sports_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "141"}, "Description": {"type": "literal", "value": "Chennai 600028 is a 2007 Tamil coming-of-age sports comedy film written and directed by Venkat Prabhu, in his directorial debut. The film stars Jai, Shiva, Premji Amaran, Aravind Akash, Nithin Sathya and newcomers Ajay Raj, Ranjith, Vijay Vasanth, Prasanna, Inigo, Karthik and Arun in the lead along with Vijayalakshmi, daughter of National Film Award-winning director Agathiyan, and Kristine Zedek, making their acting debut as well. The film was produced by S. P. B. Charan along with J. K. Saravana, a Singapore-based award-winning producer. The film's score and soundtrack were composed by Premji Amaran and Yuvan Shankar Raja, respectively. The film is based on street cricket played in India, focussing on various themes as friendship, love and rivalry in a suburban area. Following its theatrical release on 27 April 2007, it received critical acclaim and emerged a surprise sleeper hit, going on to achieve cult status in the subsequent years. The film's title is derived from the pincode for Mandaveli, a suburb of Chennai, where the story takes place. The success of the film gained the relatively unknown actors \u2014 Jai, Shiva, Premji Amaren and Nithin Sathya, newcomers Vijayalakshmi, Vijay Vasanth and the director Venkat Prabhu popularity. Upon release, the film was dubbed into Telugu and released as Kodithe Kottalira. The film was also remade in Bengali as Le Chakka (2010), Sinhalese as Super Six (2012), and in Kannada as Bangalore 560023 (2015). A sequel for the film, Chennai 600028 II: Second Innings, is under production as of 2016."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hysterical_Psycho"}, "Title": {"type": "literal", "value": "Hysterical Psycho"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dan_Fogler"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Noah_Bean"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:American_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "73"}, "Description": {"type": "literal", "value": "Hysterical Psycho is a 2009 American horror comedy film written and directed by Dan Fogler. It stars Randy Baruh, Noah Bean, Kelly Hutchinson, Charissa Camorro, Nicholas DeCegli, and Kate Gersten as a group of friends who encounter \"lunar radiation\" that causes people to go insane."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Masterminds_(2016_film)"}, "Title": {"type": "literal", "value": "Masterminds"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jared_Hess"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jason_Sudeikis|http://dbpedia.org/resource/Kate_McKinnon|http://dbpedia.org/resource/Kristen_Wiig|http://dbpedia.org/resource/Leslie_Jones_(comedian)|http://dbpedia.org/resource/Owen_Wilson|http://dbpedia.org/resource/Zach_Galifianakis"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Comedy_films_based_on_actual_events"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Masterminds is a 2016 American comedy film based on the 1997 Loomis Fargo Robbery in North Carolina. Directed by Jared Hess and written by Chris Bowman, Hubbel Palmer and Emily Spivey, the film stars Zach Galifianakis, Owen Wilson, Kristen Wiig and Jason Sudeikis. It premiered in Los Angeles on September 26, 2016, and was theatrically released in the United States on September 30, 2016, by Relativity Media. The film received mixed reviews from critics and has grossed $19 million."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Relativity_Media"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bolo_Na_Tumi_Amar"}, "Title": {"type": "literal", "value": "Bolo Na Tumi Amar"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/M_B_Manik"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anika_Kabir_Shokh|http://dbpedia.org/resource/Shakib_Khan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Bangladeshi_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "150"}, "Description": {"type": "literal", "value": "Bolo Na Tumi Amar (Bengali: \u09ac\u09b2\u09cb\u09a8\u09be \u09a4\u09c1\u09ae\u09bf \u0986\u09ae\u09be\u09b0; English: Say You are Mine) (earlier titled 'Tomake Chara Bachbo Naa') is a Bengali language comedy-action film set in Bangladesh. It was directed by M B Manik and stars Shakib Khan, Anika Kabir Shokh, Nirob And Thoma Mirza. The film was a box-office success in Bangladesh."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Now_You_Know_(film)"}, "Title": {"type": "literal", "value": "Now You Know"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jeff_Anderson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jeff_Anderson|http://dbpedia.org/resource/Jeremy_Sisto"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Now You Know is a comedy film directed, written by and starring Jeff Anderson. The film was produced by the Lumberyard production company (Alek Petrovic, Eric Nordness and Thomas Stelter). It was released theatrically in the United States on December 13, 2002, and on DVD on November 28, 2006."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Genius_Products"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bunny_and_the_Bull"}, "Title": {"type": "literal", "value": "Bunny and the Bull"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Paul_King_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Edward_Hogg|http://dbpedia.org/resource/Julian_Barratt|http://dbpedia.org/resource/Noel_Fielding|http://dbpedia.org/resource/Richard_Ayoade|http://dbpedia.org/resource/Simon_Farnaby|http://dbpedia.org/resource/Ver\u00f3nica_Echegui"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Bunny and the Bull is a 2009 British comedy film from writer-director Paul King. It stars Edward Hogg and Simon Farnaby in a surreal recreation of a road trip. King has previously worked on British television comedies The Mighty Boosh and Garth Marenghi's Darkplace; the film is made in a similar style and has guest appearances from stars of those series."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Optimum_Releasing"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Exodus_(2007_Hong_Kong_film)"}, "Title": {"type": "literal", "value": "Exodus"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pang_Ho-cheung"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Annie_Liu|http://dbpedia.org/resource/Irene_Wan|http://dbpedia.org/resource/Maggie_Shiu|http://dbpedia.org/resource/Nick_Cheung|http://dbpedia.org/resource/Simon_Yam"}, "Published": {"type": "literal", "value": "2007-09-13"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Black_comedy_films|http://dbpedia.org/resource/Category:Comedy_thriller_films|http://dbpedia.org/resource/Category:Hong_Kong_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Exodus (\u51fa\u57c3\u53ca\u8a18) is a 2007 Hong Kong black comedy thriller film written, produced and directed by Pang Ho-cheung and starring Simon Yam."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/I_Am_Chris_Farley"}, "Title": {"type": "literal", "value": "I Am Chris Farley"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Brent_Hodge|http://dbpedia.org/resource/Derik_Murray"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Sandler|http://dbpedia.org/resource/Bo_Derek|http://dbpedia.org/resource/Bob_Odenkirk|http://dbpedia.org/resource/Chris_Farley|http://dbpedia.org/resource/David_Spade|http://dbpedia.org/resource/Lorne_Michaels|http://dbpedia.org/resource/Mike_Myers|http://dbpedia.org/resource/Molly_Shannon|http://dbpedia.org/resource/Tom_Arnold_(actor)"}, "Published": {"type": "literal", "value": "2015-08-10"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Documentary_films_about_comedy_and_comedians"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "I Am Chris Farley is a 2015 documentary film based on the life of comedian and actor Chris Farley, co-directed by Brent Hodge of Hodgee Films and Derik Murray ,who was also a producer, of Network Entertainment. The production features interviews with numerous actors, comedians and others who worked with Farley during his career."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Spike_TV"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Arahan"}, "Title": {"type": "literal", "value": "Arahan"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ryoo_Seung-wan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ahn_Sung-ki|http://dbpedia.org/resource/Jung_Doo-hong|http://dbpedia.org/resource/Ryoo_Seung-bum|http://dbpedia.org/resource/Yoon_So-yi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Action_comedy_films|http://dbpedia.org/resource/Category:South_Korean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "Arahan (Hangul: \uc544\ub77c\ud55c \uc7a5\ud48d \ub300\uc791\uc804; RR: Arahan jangpung daejakjeon) is a 2004 South Korean film. The film was the third feature film directed by Ryoo Seung-wan and stars the director's brother Ryoo Seung-bum along with Yoon So-yi, Ahn Sung-ki and Jung Doo-hong. The film was a relative commercial success, selling over 2 million tickets domestically, but wasn't as well received by critics as Ryoo Seung-wan's previous films."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Cinema_Service"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Where_Is_Madame_Catherine%3F"}, "Title": {"type": "literal", "value": "Where Is Madame Catherine?"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Marc_Recha"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dominique_Marcas"}, "Published": {"type": "literal", "value": "2003-09-05"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "130"}, "Description": {"type": "literal", "value": "Where Is Madame Catherine? (Catalan: Les mans buides, Spanish: Las manos vac\u00edas, French: Les mains vides) is a 2003 Spanish-French comedy film directed by Marc Recha. It was entered into the Un Certain Regard section at the 2003 Cannes Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bed_&_Breakfast_(2010_film)"}, "Title": {"type": "literal", "value": "Bed & Breakfast"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/M\u00e1rcio_Garcia"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bill_Engvall|http://dbpedia.org/resource/Dean_Cain|http://dbpedia.org/resource/Eric_Roberts|http://dbpedia.org/resource/John_Savage_(actor)|http://dbpedia.org/resource/Julia_Duffy|http://dbpedia.org/resource/Julian_Stone|http://dbpedia.org/resource/Juliana_Paes|http://dbpedia.org/resource/Marcos_Pasquim|http://dbpedia.org/resource/Rodrigo_Lombardi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Bed & Breakfast is a 2010 romantic comedy directed by M\u00e1rcio Garcia and written by Leland Douglas. Produced by B.B. Film Productions and F.J. Productions, the movie was shot in Rio de Janeiro, Brazil and in Los Angeles. The film stars Dean Cain, Juliana Paes, Eric Roberts, John Savage, Bill Engvall, Marcos Pasquim, Rodrigo Lombardi and more. The story is about Ana Vilanova (Juliana Paes), a saleswoman from a large department store in Rio who discovers she has inherited property in the wine county of California. She could never expect what she would find in \u201cWebster\u201d, a small country town."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Main_Hoon_Part-Time_Killer"}, "Title": {"type": "literal", "value": "Main Hoon Rajinikanth"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Faisal_Saif"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adithya_(actor)|http://dbpedia.org/resource/Kavita_Radheshyam"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "127"}, "Description": {"type": "literal", "value": "Main Hoon (Part-Time) Killer previously known as Main Hoon Rajinikanth is a 2015 Indian comedy spoof film in the Hindi language. The film is written and directed by Faisal Saif and produced by Mrs. Saroj under the banner of Varsha Production House. The film marks Bollywood d\u00e9but of South Indian actor Adithya Menon. The film was initially supposed to release in the year 2014, but faced huge opposition and controversy when South-Indian actor Rajinikanth approached Madras High Court to stop the film's release based upon the use of his name in the film's title. Business of Cinema categorized the film as Top 10 banned films of Bollywood along with movies such as Bandit Queen, Black Friday, Kama Sutra: A Tale of Love and Kissa Kursi Ka. After a long-running court battle, filmmaker Faisal Saif finally changed the title of the film falling under producer's pressure and it was released on 22 May 2015 across North India. However, in South India it was not released to avoid any further legal disputes."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/There_Once_Was_a_Husband"}, "Title": {"type": "literal", "value": "There Once Was a Husband"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Fernando_M\u00e9ndez"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Lilia_Michel|http://dbpedia.org/resource/Pedro_Infante|http://dbpedia.org/resource/Rafael_Baled\u00f3n"}, "Published": {"type": "literal", "value": "1953-03-05"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1950s_comedy_films|http://dbpedia.org/resource/Category:Mexican_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "There Once Was a Husband (Spanish: Hab\u00eda una vez un marido) is a 1953 Mexican musical comedy film directed by Fernando M\u00e9ndez and starring Lilia Michel, Rafael Baled\u00f3n and Pedro Infante."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/La_Croisi\u00e8re"}, "Title": {"type": "literal", "value": "La Croisi\u00e8re"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pascale_Pouzadoux"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Antoine_Dul\u00e9ry|http://dbpedia.org/resource/Charlotte_de_Turckheim|http://dbpedia.org/resource/Line_Renaud|http://dbpedia.org/resource/Marilou_Berry"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "La Croisi\u00e8re (or The Cruise) is a 2011 French comedy film directed by Pascale Pouzadoux."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Roll_Bounce"}, "Title": {"type": "literal", "value": "Roll Bounce"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Malcolm_D._Lee"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bow_Wow_(rapper)|http://dbpedia.org/resource/Chi_McBride|http://dbpedia.org/resource/Jurnee_Smollett|http://dbpedia.org/resource/Kellita_Smith|http://dbpedia.org/resource/Meagan_Good|http://dbpedia.org/resource/Mike_Epps|http://dbpedia.org/resource/Nick_Cannon|http://dbpedia.org/resource/Wesley_Jonathan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "Roll Bounce is a 2005 American comedy-drama film written by Norman Vance Jr. and directed by Malcolm D. Lee. The film stars hip hop artist Bow Wow as the leader of a roller skating crew in 1970s Chicago. The film also stars Nick Cannon, Meagan Good, Brandon T. Jackson, Wesley Jonathan, Chi McBride, Kellita Smith, and Jurnee Smollett. (The name of the film is derived from the 1979 song \"Bounce, Rock, Skate, Roll\" by Vaughan Mason & Crew.)"}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Searchlight_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Paradise_(2013_film)"}, "Title": {"type": "literal", "value": "Paradise"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Diablo_Cody"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Holly_Hunter|http://dbpedia.org/resource/Iliza_Shlesinger|http://dbpedia.org/resource/Julianne_Hough|http://dbpedia.org/resource/Kathleen_Rose_Perkins|http://dbpedia.org/resource/Octavia_Spencer|http://dbpedia.org/resource/Russell_Brand"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Paradise (also known as Lamb of God) is an American comedy-drama film written and directed by Diablo Cody, in her directorial debut. It stars Julianne Hough, Russell Brand, Octavia Spencer, Holly Hunter, Iliza Shlesinger and Kathleen Rose Perkins and was released October 18, 2013. The title is a take on the fact that while many tourists visit the Las Vegas Strip they are actually spending most of their time in the town of Paradise rather than in the actual city of Las Vegas. This was the last film by Mandate Pictures before it was shut down."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Image_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Nayaki"}, "Title": {"type": "literal", "value": "Nayaki"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Goverdhan_Reddy"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ganesh_Venkatraman|http://dbpedia.org/resource/Satyam_Rajesh|http://dbpedia.org/resource/Sushma_Raj|http://dbpedia.org/resource/Trisha_(actress)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Nayaki / Nayagi is a 2016 Telugu-Tamil bilingual comedy  horror film, directed by Goverdhan Reddy. The film stars Trisha in the lead role, with Ganesh Venkatraman, Satyam Rajesh and Sushma Raj in supporting roles. The film is produced by Giridhar Mamidipally, who was the former manager of Trisha under Giridhar Production House, and has cinematography by Jagadeesh. Both versions of the film opened to negative reviews in mid-2016."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sri_Thenandal_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Walk_Hard:_The_Dewey_Cox_Story"}, "Title": {"type": "literal", "value": "Walk Hard: The Dewey Cox Story"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jake_Kasdan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Parnell|http://dbpedia.org/resource/Jenna_Fischer|http://dbpedia.org/resource/John_C._Reilly|http://dbpedia.org/resource/Kristen_Wiig|http://dbpedia.org/resource/Margo_Martindale|http://dbpedia.org/resource/Matt_Besser|http://dbpedia.org/resource/Raymond_J._Barry|http://dbpedia.org/resource/Tim_Meadows"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "120|96"}, "Description": {"type": "literal", "value": "Walk Hard: The Dewey Cox Story is a 2007 American music comedy film written and produced by Judd Apatow and Jake Kasdan, directed by Kasdan and starring John C. Reilly. The plot echoes the storyline of 2005's Johnny Cash biopic Walk the Line and 2004's Ray Charles biopic Ray; Walk Hard is also a parody of the biopic genre as a whole. As Walk Hard heavily references the film Walk the Line, the Dewey Cox persona is mostly based on Johnny Cash; but the character also includes elements of the lives and careers of Roy Orbison, Glen Campbell, Bob Dylan, Ray Charles, Jerry Lee Lewis, Donovan, John Lennon, James Brown, Jim Morrison, Conway Twitty, Neil Diamond, and Brian Wilson. The film portrays fictional versions of artists Buddy Holly, The Big Bopper, Elvis Presley, and The Beatles; also, some artists play themselves, including Eddie Vedder and Ghostface Killah. In addition, the film parodies or pays tribute to the musical styles of Bob Dylan, David Bowie, Van Dyke Parks with Brian Wilson, and the seventies punk rock movement. The film was released in the United States and Canada by Columbia Pictures on December 21, 2007."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Apatow_Productions|http://dbpedia.org/resource/Relativity_Media"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Zero_Motivation"}, "Title": {"type": "literal", "value": "Zero Motivation"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Talya_Lavie"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dana_Ivgy"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Israeli_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Zero Motivation (Hebrew title: \u05d0\u05e4\u05e1 \u05d1\u05d9\u05d7\u05e1\u05d9 \u05d0\u05e0\u05d5\u05e9, Zero on interpersonal relations) is a 2014 Israeli comedy-drama film directed by Talya Lavie. The film premiered at the 2014 Tribeca Film Festival where it received two awards. It was nominated for twelve Ophir Awards, and won six of them including prizes for writer/director Talya Lavie (although it was not awarded Best Film). It was the most successful Israeli film of 2014, seen by 590,000 people in Israel alone."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Torrance_Rises"}, "Title": {"type": "literal", "value": "Torrance Rises"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lance_Bangs|http://dbpedia.org/resource/Spike_Jonze"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Rock|http://dbpedia.org/resource/Fatboy_Slim|http://dbpedia.org/resource/Janeane_Garofalo|http://dbpedia.org/resource/Madonna_(entertainer)|http://dbpedia.org/resource/Regis_Philbin|http://dbpedia.org/resource/Sofia_Coppola|http://dbpedia.org/resource/Spike_Jonze|http://dbpedia.org/resource/Will_Smith"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "34"}, "Description": {"type": "literal", "value": "Torrance Rises is a 1999 mockumentary directed by and starring Spike Jonze. The film is based on a dance group in Torrance, California, and traces their journey to the MTV Video Music Awards presentation. The music video for Fatboy Slim's 1999 song \"Praise You\", also directed by Jonze, features a street performance by this group. Torrance Rises also appears in the compilation The Work Of Director Spike Jonze (Palm Pictures)."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Palm_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kambakht"}, "Title": {"type": "literal", "value": "Kambakht"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Hamza_Ali_Abbasi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gohar_Rasheed|http://dbpedia.org/resource/Hamza_Ali_Abbasi|http://dbpedia.org/resource/Humayun_Saeed|http://dbpedia.org/resource/Saba_Qamar|http://dbpedia.org/resource/Shafqat_Cheema|http://dbpedia.org/resource/Sheheryar_Munawar_Siddiqui|http://dbpedia.org/resource/Sohai_Ali_Abro"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Pakistani_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Kambakht (Urdu: \u06a9\u0645\u0628\u062e\u062a\u200e meaning \"cursed\") is an upcoming Pakistani action, comedy film directed by Hamza Ali Abbasi, and produced by Eyad Ibrahim and Sharmeen Khan. The film stars Humayun Saeed, Shafqat Cheema, Agha Haris, Sheheryar Munawar Siddiqui, Saba Qamar and Sohai Ali Abro."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/ARY_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hotel_Transylvania_2"}, "Title": {"type": "literal", "value": "Hotel Transylvania 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Genndy_Tartakovsky"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Samberg|http://dbpedia.org/resource/David_Spade|http://dbpedia.org/resource/Keegan-Michael_Key|http://dbpedia.org/resource/Kevin_James|http://dbpedia.org/resource/Mel_Brooks|http://dbpedia.org/resource/Selena_Gomez|http://dbpedia.org/resource/Steve_Buscemi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Hotel Transylvania 2 is a 2015 American 3D computer animated fantasy-comedy film. It is the second installment in the Hotel Transylvania franchise, and the sequel to the 2012 film Hotel Transylvania, with its director, Genndy Tartakovsky, and writer, Robert Smigel, returning for the film. Produced by Sony Pictures Animation, it was animated by Sony Pictures Imageworks, with an additional funding provided by LStar Capital. Hotel Transylvania 2 takes place seven years after the first film, with the hotel now open to human guests. Mavis and Johnny have a young son named Dennis, whose lack of any vampire abilities worries his grandfather Dracula. When Mavis and Johnny go on a visit to Johnny's parents, Dracula calls his friends to help him make Dennis a vampire. Soon, things turn upside-down when Dracula's old-school human-hating father, Vlad, unexpectedly visits the hotel. Original voices from the first film\u2014Adam Sandler, Andy Samberg, Selena Gomez, Kevin James, Steve Buscemi, David Spade, Fran Drescher, Molly Shannon\u2014returned for the sequel, with Keegan-Michael Key replacing CeeLo Green as Murray. New additions to the cast include Mel Brooks as Count Dracula's father, Vlad; Nick Offerman and Megan Mullally as Jonathan's parents, Mike and Linda; and Asher Blinkoff as Mavis and Johnny's half-human/half-vampire son, Dennis. The film was released on September 25, 2015, by Columbia Pictures and was a box office success. A third film, titled Hotel Transylvania 3, is scheduled to be released on September 21, 2018."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sly_Cooper_(film)"}, "Title": {"type": "literal", "value": "Sly Cooper"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Munroe"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Sly Cooper is an upcoming American-Canadian 3D computer-animated action/adventure comedy film based on the platforming video game series of the same name by Sony Interactive Entertainment, specifically 2002's Sly Cooper and the Thievius Raccoonus. Sony Computer Entertainment, its series developer, is to play a role in the film's production, screenplay, character development, and animation consulting. The film is to be directed and written by Kevin Munroe, and produced by Brad Foxhoven and David Wohl. The film is to star voice actors, including Ian James Corlett replacing Kevin Miller as the title character, Matt Olsen and Chris Murphy reprise their voice roles as Bentley and Murray respectively."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Cinema_Management_Group"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Paternity_Leave_(film)"}, "Title": {"type": "literal", "value": "Paternity Leave"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Matt_Riddlehoover"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Charlie_David|http://dbpedia.org/resource/Chris_Salvatore"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Paternity Leave is a 2015 romantic comedy film directed by Matt Riddlehoover. The film stars Jacob York, Charlie David, and Chris Salvatore. Principal photography of the film began on September 1, 2014 in Nashville, Tennessee. It made its world premiere at the Nashville Film Festival on April 19th, 2015."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Les_Ogres"}, "Title": {"type": "literal", "value": "Les Ogres"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/L\u00e9a_Fehner"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ad\u00e8le_Haenel|http://dbpedia.org/resource/Lola_Due\u00f1as"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "144"}, "Description": {"type": "literal", "value": "Les Ogres is a 2015 French comedy-drama film directed by L\u00e9a Fehner and written by Fehner, Catherine Paill\u00e9 and Brigitte Sy."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/14_Going_on_30"}, "Title": {"type": "literal", "value": "14 Going on 30"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Paul_Schneider_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Daphne_Ashbrook|http://dbpedia.org/resource/Gabriel_Olds|http://dbpedia.org/resource/Patrick_Duffy|http://dbpedia.org/resource/Steven_Eckholdt"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "14 Going on 30 is a 1988 made-for-television film broadcast by American Broadcasting Company and Buena Vista Television, and later distributed by Walt Disney Home Video. It stars Steven Eckholdt as Danny, a fourteen-year-old boy who is infatuated with his teacher Peggy Noble (Daphne Ashbrook). Danny uses a \"growth accelerator\" to make himself appear older than his actual age in an attempt to seduce her. A similar age swap and nearly identical title appears in the 2004 film 13 Going on 30, and the earlier film may have influenced the latter. The TV film was directed by Paul Schneider."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/American_Broadcasting_Company|http://dbpedia.org/resource/Buena_Vista_Television"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Range_15"}, "Title": {"type": "literal", "value": "Range 15"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ross_Patterson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:Zombie_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Range 15 is an  ensemble horror/action comedy indie film with a release date of June 15, 2016. As of January 2016, Range 15 is the 4th highest  crowd sourced film on Indiegogo. The movie is a collaboration between the veteran-run military themed apparel companies, Ranger Up and Article 15 Clothing, and stars many of their staff members. The movie was produced and directed by Ross Patterson."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Battle_of_the_Brides"}, "Title": {"type": "literal", "value": "Battle of the Brides"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Victor_Vu"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Vietnamese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Battle of the Brides also known as C\u00f4 d\u00e2u \u0111\u1ea1i chi\u1ebfn is a 2011 Vietnamese comedy film directed by Victor Vu, produced by Saiga Films and Vietnam Studio, in association with Galaxy Studios, Phuong Nam Phim, Saigon Movies Media and HK Films. Battle of the Brides was released on January 28, 2011 in Vietnam and broke box office records, becoming the country\u2019s highest grossing movie of all time. However, in the United States the movie was a Box office bomb, just grossing only $64,572."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/To_Beat_the_Band"}, "Title": {"type": "literal", "value": "To Beat the Band"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Stoloff|http://dbpedia.org/resource/Kenny_Holmes"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Fred_Keating|http://dbpedia.org/resource/Helen_Broderick|http://dbpedia.org/resource/Hugh_Herbert|http://dbpedia.org/resource/Roger_Pryor_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1930s_musical_comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "67"}, "Description": {"type": "literal", "value": "To Beat the Band is a 1935 American romantic comedy directed by Ben Stoloff using a screenplay by Rian James based on a story by George Marion, Jr.. The film stars Hugh Herbert, Helen Broderick, Roger Pryor, and Fred Keating, and features Johnny Mercer in a small role. It was released by RKO Radio Pictures on November 8, 1935."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Movin'_In"}, "Title": {"type": "literal", "value": "Movin' In"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Griff_Furst"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alex_Yves|http://dbpedia.org/resource/Birgit_Steinegger|http://dbpedia.org/resource/Christy_Carlson_Romano|http://dbpedia.org/resource/Dan_Ponsky|http://dbpedia.org/resource/Dean_Kreyling|http://dbpedia.org/resource/Estelle_Harris|http://dbpedia.org/resource/Griff_Furst|http://dbpedia.org/resource/Marco_Schwab|http://dbpedia.org/resource/Michael_Lawson|http://dbpedia.org/resource/Samantha_Cope|http://dbpedia.org/resource/Sven_Epiney|http://dbpedia.org/resource/Walter_Andreas_Mueller|http://dbpedia.org/resource/Yangzom_Brauen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Movin' In is a 2010 comedy film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/YvesCreations"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Super_Capers"}, "Title": {"type": "literal", "value": "Super Capers: The Origins of Ed and the Missing Bullion"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ray_Griggs_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_West|http://dbpedia.org/resource/Danielle_Harris|http://dbpedia.org/resource/Justin_Whalin|http://dbpedia.org/resource/Michael_Rooker|http://dbpedia.org/resource/Tom_Lister,_Jr.|http://dbpedia.org/resource/Tom_Sizemore"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Action_comedy_films|http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Super Capers: The Origins of Ed and the Missing Bullion is a 2009 action comedy film and a parody of superhero movies, written and directed by Ray Griggs who also starred as one of the misfit superheroes."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lionsgate|http://dbpedia.org/resource/Roadside_Attractions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Saroja_(film)"}, "Title": {"type": "literal", "value": "Saroja"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Venkat_Prabhu"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jayaram|http://dbpedia.org/resource/Kajal_Aggarwal|http://dbpedia.org/resource/Nikita_Thukral|http://dbpedia.org/resource/Prakash_Raj|http://dbpedia.org/resource/Premji_Amaren|http://dbpedia.org/resource/SPB_Charan|http://dbpedia.org/resource/Sampath_Raj|http://dbpedia.org/resource/Shiva_(actor)|http://dbpedia.org/resource/Vaibhav_Reddy|http://dbpedia.org/resource/Vega_Tamotia"}, "Published": {"type": "literal", "value": "2008-09-05"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "148"}, "Description": {"type": "literal", "value": "Saroja (stylised as Sa-Ro-Ja) is a 2008 Tamil language comedy thriller film written and directed by Venkat Prabhu and produced by T. Siva. It stars Shiva, Vaibhav Reddy, Premji Amaren, S. P. B. Charan and Vega Tamotia in the leads and Prakash Raj, Jayaram, Kajal Aggarwal, Sampath Raj, Nikita Thukral and Nagendran in other vital roles. Several other popular Tamil television artists and crew members make special appearances throughout the film. The score and soundtrack were composed by Yuvan Shankar Raja. The film, which is based on the 1993 Hollywood film Judgment Night, follows the journey of four young men who travel from Chennai to Hyderabad to watch a cricket match. Due to a road accident, they are forced to take a diversion off the main road to arrive on time. This leads them to a gang who have kidnapped a schoolgirl, Saroja, the only daughter of a rich millionaire. The film was released on 5 September 2008 to very positive reviews and critically acclaim, while also emerging a high commercial success. Upon release, it was partially re-shot and released in Telugu."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Pyramid_Saimira"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hives_(film)"}, "Title": {"type": "literal", "value": "Hives"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Igor_Seregi|http://dbpedia.org/resource/Michael_Lennox"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Akbar_Kurtha|http://dbpedia.org/resource/Lubos_Vesel\u00fd|http://dbpedia.org/resource/Ozren_Grabaric|http://dbpedia.org/resource/Stefan_Lampadius"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Croatian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Hives (Croatian: Ko\u0161nice) is a 2012 Croatian anthology film. It had its national premiere at the 59th Pula Film Festival (Croatia) and its international premiere at the 60th San Sebasti\u00e1n International Film Festival (Spain)."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Balls_(film)"}, "Title": {"type": "literal", "value": "Balls"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Josef_Fares"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anita_Wall|http://dbpedia.org/resource/Hamadi_Khemiri|http://dbpedia.org/resource/Jan_Fares|http://dbpedia.org/resource/Jessica_Forsberg|http://dbpedia.org/resource/Juan_Rodriguez_(actor)|http://dbpedia.org/resource/Nina_Zanjani|http://dbpedia.org/resource/Torkel_Petersson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Swedish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Balls (Swedish: Farsan) is a 2010 Swedish comedy film that was directed by Josef Fares."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/AB_Svensk_Filmindustri"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hawa_Bodol"}, "Title": {"type": "literal", "value": "Hawa Bodol|\u09b9\u09be\u0993\u09af\u09bc\u09be \u09ac\u09a6\u09b2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Parambrata_Chatterjee"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Neha_Panda|http://dbpedia.org/resource/Parambrata_Chatterjee|http://dbpedia.org/resource/Raima_Sen|http://dbpedia.org/resource/Rudranil_Ghosh"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "150"}, "Description": {"type": "literal", "value": "Hawa Bodol is a 2013 Bengali comedy film directed by Parambrata Chattopadhyay. The film revolves around two childhood friends, who met each other coincidentally after a long time, and somehow their life swapped after a night of endless drinks. The movie is inspired by the 2011 movie The Change-Up."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Battlefield_Baseball"}, "Title": {"type": "literal", "value": "Battlefield Baseball"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Y\u016bdai_Yamaguchi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Atsushi_It\u014d|http://dbpedia.org/resource/Hideo_Sakaki|http://dbpedia.org/resource/Tak_Sakaguchi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:2000s_musical_comedy_films|http://dbpedia.org/resource/Category:Japanese_comedy_films|http://dbpedia.org/resource/Category:Sports_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "Battlefield Baseball (\u5730\u7344\u7532\u5b50\u5712 Jigoku K\u014dshien, \"Hell Stadium\") is a 2003 Japanese film directed by Y\u016bdai Yamaguchi. The film is written by Gatar\u014d Man, based on his manga series of the same name, and stars Tak Sakaguchi, Atsushi It\u014d, and Hideo Sakaki. It was produced by Ryuhei Kitamura. The film is a combination of several genres, mixing martial arts action with the clich\u00e9s of the sports film\u2014particularly skewering baseball, one of Japan's most popular high school sports\u2014and the violence and brutality of a horror film. The film's bizarre\u2014sometimes almost incoherent\u2014plot, blood and gore, and unique comedy have given it something of a \"cult\" popularity in the West. Though the film is ostensibly about high school baseball rivalries, the amount of actual baseball in the film is fairly light. There are many scenes involving bats and balls, however. The film was released on Region 1 DVD by Subversive Cinema."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Shotgun_Wedding_(2013_film)"}, "Title": {"type": "literal", "value": "Shotgun Wedding"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Danny_Roew"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Joel_McKinnon_Miller|http://dbpedia.org/resource/Kim_Shaw|http://dbpedia.org/resource/Mike_Damus"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Shotgun Wedding is an American black comedy film produced by Fox Studios. It premiered on Netflix on April 1, 2013."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Digital_Studio"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jaffa_(2013_film)"}, "Title": {"type": "literal", "value": "Jaffa"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Vennela_Kishore"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ali_(actor)|http://dbpedia.org/resource/Brahmanandam|http://dbpedia.org/resource/Fish_Venkat|http://dbpedia.org/resource/Thagubothu_Ramesh"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "125"}, "Description": {"type": "literal", "value": "Jaffa is a 2013 Telugu black comedy film written and directed by Vennela Kishore. The film stars comedian Brahmanandam as the main protagonist for the first time in his career. The films also stars other comedians like Ali, Thagubothu Ramesh, Fish Venkat and even Kishore. The film is produced by Ramesh Varma, with Anoop Rubens scoring the music. Brahmanandam was supposed to direct the film on a script written by Kishore, but eventually he opted out and handed the project to Kishore, due to hectic schedules. The film, one of the most awaited Telugu films in recent times, was originally scheduled to release in 2012, but after several delays, the film finally released on 29 March 2013 amidst high expectations. Despite receiving negative critical reception, it had recorded as Super Hit at the Box Office."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jos\u00e9phine_s'arrondit"}, "Title": {"type": "literal", "value": "Jos\u00e9phine s'arrondit"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Marilou_Berry"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Marilou_Berry"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Jos\u00e9phine s'arrondit (literally, Jos\u00e9phine gets rounder) is a 2016 French comedy film directed by Marilou Berry. It is the sequel to the 2013 film Jos\u00e9phine."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/UGC_Distribution"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Geography_Club_(film)"}, "Title": {"type": "literal", "value": "Geography Club"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Gary_Entin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Allie_Gonino|http://dbpedia.org/resource/Ana_Gasteyer|http://dbpedia.org/resource/Andrew_Caldwell_(actor)|http://dbpedia.org/resource/Cameron_Deane_Stewart|http://dbpedia.org/resource/Justin_Deeley|http://dbpedia.org/resource/Marin_Hinkle|http://dbpedia.org/resource/Meaghan_Martin|http://dbpedia.org/resource/Nikki_Blonsky|http://dbpedia.org/resource/Scott_Bakula"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "Geography Club is an American comedy-drama film based on the Brent Hartinger novel of the same name. It was written by Edmund Entin, directed by Gary Entin, and stars Cameron Deane Stewart, Justin Deeley, Andrew Caldwell, Meaghan Martin, Allie Gonino, Ally Maki, and Nikki Blonsky."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Shoreline_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Arisan!"}, "Title": {"type": "literal", "value": "Arisan!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nia_Dinata"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aida_Nurmala|http://dbpedia.org/resource/Cut_Mini_Theo|http://dbpedia.org/resource/Surya_Saputra|http://dbpedia.org/resource/Tora_Sudiro"}, "Published": {"type": "literal", "value": "2003-12-10"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:Indonesian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "129"}, "Description": {"type": "literal", "value": "Arisan! is a 2003 Indonesian film that has drawn more than 100,000 viewers. It is the first Indonesian film with a gay theme, and the first Indonesian film to use high-definition color enhancement. It uses a mixture of English, standard Indonesian and Jakartan slang. Arisan! became the second film in Indonesian film history to win all six major awards in Festival Film Indonesia (FFI), including Best Picture, Best Director, Best Actor, Best Actress, Best Supporting Actor, and Best Supporting Actress, after Ibunda in 1986. Arisan! was also the first film in Indonesian film history to include two men kissing, by the characters Sakti and Nino (Tora Sudiro and Surya Saputra). Because of this, the two won Best Actor and Best Supporting Actor at the Festival Film Indonesia (FFI). A television series as a continuation of the movie with the same title has been airing on AnTV."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Garfield:_A_Tail_of_Two_Kitties"}, "Title": {"type": "literal", "value": "Garfield: A Tail of Two Kitties"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tim_Hill_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bill_Murray|http://dbpedia.org/resource/Billy_Connolly|http://dbpedia.org/resource/Breckin_Meyer|http://dbpedia.org/resource/Jennifer_Love_Hewitt|http://dbpedia.org/resource/Tim_Curry"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Garfield: A Tail of Two Kitties is a 2006 American comedy film directed by Tim Hill and written by Joel Cohen and Alec Sokolow. It is the sequel to the 2004 film Garfield: The Movie. The film stars Breckin Meyer, Jennifer Love Hewitt, Billy Connolly, Ian Abercrombie, Roger Rees, Lucy Davis, Oliver Muirhead, Bill Murray, Tim Curry, Bob Hoskins, Rhys Ifans, Vinnie Jones, Joe Pasquale, Richard E. Grant, Jane Leeves and Roscoe Lee Browne. This film was produced by Davis Entertainment Company for 20th Century Fox, and was released in United States on June 16, 2006. A video game, Garfield 2, was developed by The Game Factory. The film received negative reviews from critics and it earned $141.7 million on a $60 million budget."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Last_Weekend_(film)"}, "Title": {"type": "literal", "value": "Last Weekend"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tom_Dolby"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Patricia_Clarkson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Last Weekend is a 2014 American comedy/drama film starring Patricia Clarkson, Zachary Booth, and Joseph Cross. The film premiered at the San Francisco International Film Festival on May 2, 2014. In May, the film was acquired for theatrical release and iTunes/VOD on August 29, 2014 by IFC/Sundance Selects. The film will also open the Provincetown International Film Festival on June 18, 2014. Last Weekend was filmed entirely on location in Lake Tahoe, California. It was the first feature film in thirteen years to be shot entirely in the area."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Women_Who_Flirt"}, "Title": {"type": "literal", "value": "Women Who Flirt"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pang_Ho-cheung"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Huang_Xiaoming|http://dbpedia.org/resource/Sonia_Sui|http://dbpedia.org/resource/Zhou_Xun"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Chinese_romantic_comedy_films|http://dbpedia.org/resource/Category:Hong_Kong_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Women Who Flirt (Chinese: \u6492\u5a07\u5973\u4eba\u6700\u597d\u547d) is a 2014 Chinese-Hong Kong romantic comedy film directed by Pang Ho-cheung and starring Zhou Xun, Huang Xiaoming, Xie Yilin and Sonia Sui. The film was released on November 28, 2014."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/White_on_Rice"}, "Title": {"type": "literal", "value": "White on Rice"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dave_Boyle"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/James_Kyson_Lee|http://dbpedia.org/resource/Justin_Kwong|http://dbpedia.org/resource/Mio_Takada|http://dbpedia.org/resource/Nae_Yuuki"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "White on Rice (2009) is a comedy film directed by American director Dave Boyle, director of Big Dreams Little Tokyo (2006), and starring Hiroshi Watanabe, Nae Yuuki, Mio Takada, James Kyson Lee, and Lynn Chen. The film had its world premiere at the 27th annual San Francisco Asian American Film Festival on 17 March 2009."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Husbands_in_Goa"}, "Title": {"type": "literal", "value": "Husbands in Goa"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Saji_Surendran"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Asif_Ali_(actor)|http://dbpedia.org/resource/Bhama|http://dbpedia.org/resource/Indrajith_Sukumaran|http://dbpedia.org/resource/Jayasurya|http://dbpedia.org/resource/Lal_(actor)|http://dbpedia.org/resource/Praveena|http://dbpedia.org/resource/Remya_Nambeesan|http://dbpedia.org/resource/Rima_Kallingal"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "150"}, "Description": {"type": "literal", "value": "Husbands in Goa is a 2012 Malayalam comedy film directed by Saji Surendran and written by Krishna Poojapura, starring Jayasurya, Indrajith, Lal, Asif Ali, Rima Kallingal, Bhama, Remya Nambeesan and Praveena. The film follows the journey of three young men, who flee from their wives, for a vacation to the international tourist-destination Goa. During the trip, they become friends with an immature youthful older man, who is on the verge of a divorce. The film explores their time in Goa, the people they meet and a turn of events occur when they encounter their wives. The film is the second production of UTV Motion Pictures in Malayalam cinema. It features music composed by M. G. Sreekumar, whilst cinematography is handled by Anil Nair and is edited by Manoj. Husbands in Goa debuted at the Kerala box office with a gross of \u20b920.7 million its opening weekend. The film was a hit at the box office."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/PJ_Entertainments"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Traceroute_(film)"}, "Title": {"type": "literal", "value": "Traceroute"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Johannes_Grenzfurthner"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Austrian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "Traceroute is a 2016 Austrian/American documentary film directed by Johannes Grenzfurthner. The autobiographical documentary and road movie deals with the history, politics and impact of nerd culture. Grenzfurthner calls his film a \"personal journey into the uncharted depths of nerd culture, a realm full of dangers, creatures and more or less precarious working conditions\", an attempt to \"chase the ghosts of nerddom's past, present and future.\" The film was co-produced by art group monochrom and Reisenbauer Film. It features music by Kasson Crooker, Hans Nieswandt, and many others."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Monochrom"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Someone's_Knocking_at_the_Door"}, "Title": {"type": "literal", "value": "Someone's Knocking at the Door"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chad_Ferrin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ezra_Buzzington|http://dbpedia.org/resource/Jordan_Lawson|http://dbpedia.org/resource/Lew_Temple|http://dbpedia.org/resource/Vernon_Wells_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "Someone's Knocking at the Door is a 2009 American comedy horror film co-written,directed & produced by Chad Ferrin. The film stars Noah Segan, Andrea Rueda, Ezra Buzzington, Elina Madison, Jon Budinoff, Ricardo Gray, Lew Temple, and Vernon Wells."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_First_Day_of_the_Rest_of_Your_Life"}, "Title": {"type": "literal", "value": "The First Day of the Rest of Your Life"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/R\u00e9mi_Bezan\u00e7on"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/D\u00e9borah_Fran\u00e7ois|http://dbpedia.org/resource/Jacques_Gamblin|http://dbpedia.org/resource/Marc-Andr\u00e9_Grondin|http://dbpedia.org/resource/Zabou_Breitman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy-drama_films|http://dbpedia.org/resource/Category:Tragicomedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "The First Day of the Rest of Your Life (French: Le Premier Jour du reste de ta vie) is a 2008 French film written and directed by R\u00e9mi Bezan\u00e7on. The film received 9 C\u00e9sar Award nominations, winning three (Best Editing, Most Promising Actor and Most Promising Actress)."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Studio_Canal"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Contract_(2012_film)"}, "Title": {"type": "literal", "value": "Contract"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Shirley_Frimpong-Manso"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hlomla_Dandala|http://dbpedia.org/resource/Joseph_Benjamin_(actor)|http://dbpedia.org/resource/Yvonne_Okoro"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Contract is a 2012 Ghanaian film produced by Yvonne Okoro and directed by Shirley Frimpong-Manso, starring Hlomla Dandala, Joseph Benjamin and Yvonne Okoro. It received six nominations at the 9th Africa Movie Academy Awards including: Best Director, Achievement In Screenplay, Best Actor In A Leading Role and Best Actress In A Leading Role."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Spring_Breakers"}, "Title": {"type": "literal", "value": "Spring Breakers"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Harmony_Korine"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Spring Breakers is a 2013 American satirical crime action drama film written and directed by Harmony Korine. It stars James Franco, Vanessa Hudgens, Selena Gomez, Ashley Benson and Rachel Korine and follows four college-aged girls on their spring break in Florida where they meet an eccentric local drug dealer named Alien who helps them in a time of desperation, and their eventual descent into a world of drugs, crime, and violence. Korine had devised the concept for Spring Breakers over several years prior to production, with fleeting ideas about the plot and what should transpire. His initial desire was to create a \"sensory film\" that was more about feeling than action and placed little importance on narrative or plot, the idea for which came later. Once Korine developed the backbone of the story, which takes place around the American spring break period, he travelled to Florida to write the screenplay. Production began in 2012, on an estimated budget of $5 million\u2013a relatively small amount in today's film industry, albeit Korine's second most expensive film to date. The film is also one of Korine's first theatrical works to receive a wide release. Spring Breakers was released on March 22, 2013 in the United States by A24 and grossed $31 million worldwide, making it a resounding success considering the small budget. It received generally positive reviews from film critics, with some calling it a potential cult classic. The film was selected to compete for the Golden Lion at the 69th Venice International Film Festival. Critics and scholars have read deeper meaning in the film's plot, commenting on its reflection of modern-day superficiality and the younger generation's obsession with highly stylised pop culture media."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/A24_(company)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Understudy_(2008_film)"}, "Title": {"type": "literal", "value": "The Understudy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_Conolly|http://dbpedia.org/resource/Hannah_Davis_(filmmaker)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aasif_Mandvi|http://dbpedia.org/resource/Gloria_Reuben|http://dbpedia.org/resource/Kelli_Giddish|http://dbpedia.org/resource/Marin_Ireland|http://dbpedia.org/resource/Paul_Sparks|http://dbpedia.org/resource/Reiko_Aylesworth|http://dbpedia.org/resource/Richard_Kind|http://dbpedia.org/resource/Scott_Cohen_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:British_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Understudy is a 2008 black comedy from British duo David Conolly and Hannah Davis and is their second feature-length film through their Mansion Pictures flagship, which is currently traveling the Film Festival circuit around the world."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kismat_Love_Paisa_Dilli"}, "Title": {"type": "literal", "value": "Kismet Love Paisa Dilli"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sanjay_Khanduri"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Mallika_Sherawat|http://dbpedia.org/resource/Vivek_Oberoi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "129"}, "Description": {"type": "literal", "value": "Kismet Love Paisa Dilli is a 2012 Bollywood comedy thriller film directed by Sanjay Khanduri. The film features Vivek Oberoi opposite Malika Sherawat in lead roles. It released on 5 October 2012, and received mixed response, with average box office collections."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Righteous_Ties"}, "Title": {"type": "literal", "value": "Righteous Ties"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jang_Jin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jung_Jae-young|http://dbpedia.org/resource/Jung_Joon-ho"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Criminal_comedy_films|http://dbpedia.org/resource/Category:South_Korean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "126"}, "Description": {"type": "literal", "value": "Righteous Ties (Hangul: \uac70\ub8e9\ud55c \uacc4\ubcf4; RR: Georukhan Gyebo) is a 2006 South Korean film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/CJ_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Everybody_Wants_to_Be_Italian"}, "Title": {"type": "literal", "value": "Everybody Wants to Be Italian"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jason_Todd_Ipson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cerina_Vincent|http://dbpedia.org/resource/John_Enos_III|http://dbpedia.org/resource/John_Kapelos|http://dbpedia.org/resource/Marisa_Petroro"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Everybody Wants to Be Italian is a 2007 American romantic comedy film written and directed by Jason Todd Ipson. The screenplay focuses on the relationship between a blue collar worker and a veterinarian. The film premiered at the Boston Film Festival on September 18, 2007 and released theatrically in the United States on September 5, 2008."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Roadside_Attractions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Darkest_Universe"}, "Title": {"type": "literal", "value": "The Darkest Universe"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tom_Kingsley|http://dbpedia.org/resource/Will_Sharpe"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Langham|http://dbpedia.org/resource/Joe_Thomas|http://dbpedia.org/resource/Raph_Shirley|http://dbpedia.org/resource/Sophia_Di_Martino|http://dbpedia.org/resource/Tiani_Ghosh|http://dbpedia.org/resource/Will_Sharpe"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:British_black_comedy_films|http://dbpedia.org/resource/Category:British_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "The Darkest Universe is the second film from BAFTA nominated directors Will Sharpe and Tom Kingsley. The film premiered at the London Comedy (LOCO) film festival in April 2016 and subsequently screened at the East End Film Festival. The film was written by Tiani Ghosh and Will Sharpe and was shot over a three-year period from 2013 to 2015. It is set on the canals of London and tells the story of the disappearance of a young couple on a narrow boat."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Punks_(film)"}, "Title": {"type": "literal", "value": "Punks"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Patrik-Ian_Polk"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dwight_Ewell|http://dbpedia.org/resource/Jazzmun|http://dbpedia.org/resource/Renoly_Santiago|http://dbpedia.org/resource/Rockmond_Dunbar|http://dbpedia.org/resource/Rudolf_Martin|http://dbpedia.org/resource/Seth_Gilliam"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Punks is a 2001 film produced by Babyface, directed by Patrik-Ian Polk and starring Rockmond Dunbar, Seth Gilliam, Renoly Santiago, Jazzmun, and Dwight Ewell. The film follows the trials and tribulations of a group of gay African American friends. While black gay life is explored in the film, universal aspects of friendship plays at the plot's forefront. The film's themes were later used for the 2005 LOGO cable television series Noah's Arc. The film has made its television debut on LOGO on August 7, 2011."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Trash_Humpers"}, "Title": {"type": "literal", "value": "Trash Humpers"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Harmony_Korine"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Harmony_Korine|http://dbpedia.org/resource/Rachel_Korine"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "78|97"}, "Description": {"type": "literal", "value": "Trash Humpers is a 2009 experimental black comedy-drama horror film written and directed by Harmony Korine. Shot on worn VHS home video, the film features a \"loser-gang cult-freak collective\" living in Nashville, Tennessee."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Drag_City_(record_label)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/When_We_First_Met"}, "Title": {"type": "literal", "value": "When We First Met"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ari_Sandel"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_DeVine|http://dbpedia.org/resource/Alexandra_Daddario|http://dbpedia.org/resource/Robbie_Amell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "When We First Met is an upcoming American romantic comedy film directed by Ari Sandel and written by John Whittington and Adam DeVine. The film stars DeVine, Alexandra Daddario and Robbie Amell."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Fort_Tilden_(film)"}, "Title": {"type": "literal", "value": "Fort Tilden"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Charles_Rogers_(director)|http://dbpedia.org/resource/Sarah-Violet_Bliss"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alysia_Reiner|http://dbpedia.org/resource/Neil_Casey|http://dbpedia.org/resource/Peter_Vack"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Fort Tilden is a 2014 American independent, comedy film, written and directed by Sarah-Violet Bliss and Charles Rogers, starring Bridey Elliot, Claire McNulty, Neil Casey, Alysia Reiner, and Peter Vack. The film had its world premiere at SXSW on March 8, 2014, where it won that year's Grand Jury Award. The film was acquired by revived Orion Pictures and was released on August 14, 2015, in a limited release, and through video on demand."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Orion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Three_Flavours_Cornetto_trilogy"}, "Title": {"type": "literal", "value": "Three Flavours Cornetto Trilogy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Edgar_Wright"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Nick_Frost"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films|http://dbpedia.org/resource/Category:Comedy_films_by_series"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "329"}, "Description": {"type": "literal", "value": "The Three Flavours Cornetto trilogy (also known as the Cornetto trilogy or the Blood and Ice Cream trilogy) is a series of British comedic genre films directed by Edgar Wright, written by Wright and Simon Pegg, produced by Nira Park, and starring Pegg and Nick Frost. The trilogy consists of Shaun of the Dead (2004), Hot Fuzz (2007), and The World's End (2013). The name originates from a \"silly joke\" during the promotion of Hot Fuzz. Wright had written in Cornetto ice cream as a hangover cure for Frost's character in Shaun of the Dead, based on his own experiences. In Hot Fuzz, Wright included a couple of brief throwaway scenes that referred to the Cornetto joke in Shaun. On the promotional tour of Hot Fuzz during production of The World's End, one interviewer pointed out the use of Cornetto in the first two films, and Wright jokingly said that they represent a trilogy comparable to Krzysztof Kie\u015blowski's Three Colours film trilogy. Wright seriously considered the three films as a trilogy, and wrote The World's End to complete themes set out in the earlier films, adding a Cornetto reference to the film. Each film in the trilogy is connected to a specific Cornetto flavour appearing in each film. Shaun of the Dead features a strawberry-flavoured Cornetto, which signifies the film's bloody and gory elements, Hot Fuzz includes the blue original Cornetto, to signify the police element to the film, and The World's End features the green mint chocolate chip flavour (though only shown by a wrapper caught in the wind) representing \"little green men\" and science fiction. According to Wright, Wall's, manufacturer of the Cornetto, were \"very pleased with the namecheck\". Wright considered each of the films a \"Trojan horse\", \"genre films that have a relationship comedy smuggled inside a zombie movie, a cop movie and a sci-fi movie\". Thematically, Wright saw each of the films containing common themes of \"the individuals in a collective [...] about growing up and [...] about the dangers of perpetual adolescence\". Wright reworked the script of The World's End to conclude on these themes. The films are further linked by a common set of actors. Wright, Park, Pegg, and Frost collaborated previously in the TV series Spaced from 1999 to 2001. Martin Freeman, Bill Nighy, Rafe Spall, Julia Deakin, Patricia Franklin, and Garth Jennings appear in each of the films as well as other projects by Wright and Pegg. Clark Collis observes in Entertainment Weekly that the films also feature \"a running gag involving garden fences\"."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Focus_Features|http://dbpedia.org/resource/Rogue_Pictures|http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Big_Talk_Productions|http://dbpedia.org/resource/Film4_Productions|http://dbpedia.org/resource/Relativity_Media|http://dbpedia.org/resource/StudioCanal|http://dbpedia.org/resource/Working_Title_Films"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/He_Was_Cool"}, "Title": {"type": "literal", "value": "He Was Cool"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lee_Hwan-kyung"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jung_Da-bin|http://dbpedia.org/resource/Song_Seung-heon"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "113"}, "Description": {"type": "literal", "value": "He Was Cool (Hangul: \uadf8 \ub188\uc740 \uba4b\uc788\uc5c8\ub2e4; RR: Geunomeun meoshisseotda; lit. \"That Guy was Cool\") is a 2004 South Korean film based on the same-titled 2001 Internet novel written by Guiyeoni. The film was released in South Korean cinemas on July 23, 2004 and was the 35th most attended film of the year with 800,000 admissions."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Hapdong_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Goods:_Live_Hard,_Sell_Hard"}, "Title": {"type": "literal", "value": "The Goods: Live Hard, Sell Hard"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Neal_Brennan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Craig_Robinson_(actor)|http://dbpedia.org/resource/David_Koechner|http://dbpedia.org/resource/Ed_Helms|http://dbpedia.org/resource/James_Brolin|http://dbpedia.org/resource/Jeremy_Piven|http://dbpedia.org/resource/Jordana_Spiro|http://dbpedia.org/resource/Kathryn_Hahn|http://dbpedia.org/resource/Ving_Rhames"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "The Goods: Live Hard, Sell Hard is a 2009 American comedy film directed by Neal Brennan, starring Jeremy Piven and Ed Helms. The film was released on August 14, 2009."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Vantage"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hey,_Stop_Stabbing_Me!"}, "Title": {"type": "literal", "value": "Hey, Stop Stabbing Me!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Worm_Miller"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_%22Hippa%22_Kriss|http://dbpedia.org/resource/Jack_Shreck|http://dbpedia.org/resource/Maria_A._Morales|http://dbpedia.org/resource/N._David_Prestwood|http://dbpedia.org/resource/Patrick_Casey_(writer)|http://dbpedia.org/resource/Sean_Hall_(actor)|http://dbpedia.org/resource/Worm_Miller"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Hey, Stop Stabbing Me! is a 2003 low-budget feature starring Patrick Casey and directed by Worm Miller. Miller and Casey also co-wrote the movie. The duo went on to write Golan the Insatiable for Fox's Animation Domination HD programming block. The film was shot on location in Bloomington, Minnesota."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sub_Rosa"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Magnificent_Nine"}, "Title": {"type": "literal", "value": "The Magnificent Nine"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Yoshihiro_Nakamura"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Japanese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "129"}, "Description": {"type": "literal", "value": "The Magnificent Nine is a 2016 Japanese jidaigeki samurai comedy film directed by Yoshihiro Nakamura. It was released in Japan by Shochiku on May 14, 2016."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Shochiku"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Grandma's_Boy_(2006_film)"}, "Title": {"type": "literal", "value": "Grandma's Boy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nicholaus_Goossen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Doris_Roberts|http://dbpedia.org/resource/Linda_Cardellini|http://dbpedia.org/resource/Shirley_Jones|http://dbpedia.org/resource/Shirley_Knight"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Grandma's Boy is a 2006 American gross out stoner comedy film directed by Nicholaus Goossen. Starring and written by Allen Covert and Nick Swardson. The film stars a video game tester who is forced to move in with his grandmother after being evicted from his home. Alongside Covert, the film co-stars Nick Swardson, Doris Roberts, Linda Cardellini, Shirley Jones, Shirley Knight, Peter Dante, Joel Moore, and Kevin Nealon."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Happy_Madison_Productions|http://dbpedia.org/resource/Level_1_Entertainment"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Good_Night"}, "Title": {"type": "literal", "value": "The Good Night"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jake_Paltrow"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Danny_DeVito|http://dbpedia.org/resource/Gwyneth_Paltrow|http://dbpedia.org/resource/Martin_Freeman|http://dbpedia.org/resource/Pen\u00e9lope_Cruz|http://dbpedia.org/resource/Simon_Pegg"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Good Night is a 2007 romantic comedy film written and directed by Jake Paltrow. The film stars his sister Gwyneth Paltrow, Pen\u00e9lope Cruz, Martin Freeman, Danny DeVito, Simon Pegg and others. The movie takes place in London and New York City, where a former pop star (Freeman) who now writes commercial jingles for a living experiences a mid-life crisis. The movie was released on the 2007 Sundance Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Yari_Film_Group"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Legacy_of_a_Whitetail_Deer_Hunter"}, "Title": {"type": "literal", "value": "The Legacy of a Whitetail Deer Hunter"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jody_Hill"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Danny_McBride|http://dbpedia.org/resource/Josh_Brolin|http://dbpedia.org/resource/Scoot_McNairy"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Legacy of a Whitetail Deer Hunter is an upcoming American comedy film directed by Jody Hill and written by Jody Hill, John Carcieri and Danny McBride. The film stars Danny McBride, Josh Brolin, Scoot McNairy and Montana Jordan."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sing_Street"}, "Title": {"type": "literal", "value": "Sing Street"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/John_Carney_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aidan_Gillen|http://dbpedia.org/resource/Ferdia_Walsh-Peelo|http://dbpedia.org/resource/Jack_Reynor|http://dbpedia.org/resource/Lucy_Boynton|http://dbpedia.org/resource/Maria_Doyle_Kennedy"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:British_comedy-drama_films|http://dbpedia.org/resource/Category:Irish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Sing Street is a 2016 Irish musical comedy-drama film written, produced and directed by John Carney. Starring Lucy Boynton, Maria Doyle Kennedy, Jack Reynor, Kelly Thornton and Ferdia Walsh-Peelo, the story revolves around a boy starting a band to impress a girl. The film had its world premiere at the Sundance Film Festival on 24 January 2016. It was released in Ireland on 17 March 2016, in the US on 15 April and in the United Kingdom on 20 May."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lionsgate_Films|http://dbpedia.org/resource/The_Weinstein_Company"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/FilmNation_Entertainment|http://dbpedia.org/resource/Irish_Film_Board|http://dbpedia.org/resource/Likely_Story|http://dbpedia.org/resource/PalmStar_Media"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Wedding_Daze"}, "Title": {"type": "literal", "value": "Wedding Daze"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Ian_Black"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ebon_Moss-Bachrach|http://dbpedia.org/resource/Edward_Herrmann|http://dbpedia.org/resource/Isla_Fisher|http://dbpedia.org/resource/Jason_Biggs|http://dbpedia.org/resource/Michael_Weston"}, "Published": {"type": "literal", "value": "2006-09-10"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Wedding Daze (also known as The Pleasure of Your Company and The Next Girl I See) is a 2006 romantic comedy film, written and directed by Michael Ian Black. The film stars Jason Biggs and Isla Fisher."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/GreenStreet_Films|http://dbpedia.org/resource/Metro-Goldwyn-Mayer_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Annie_(2014_film)"}, "Title": {"type": "literal", "value": "Annie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Will_Gluck"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bobby_Cannavale|http://dbpedia.org/resource/Cameron_Diaz|http://dbpedia.org/resource/Jamie_Foxx|http://dbpedia.org/resource/Quvenzhan\u00e9_Wallis|http://dbpedia.org/resource/Rose_Byrne"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_musical_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "118"}, "Description": {"type": "literal", "value": "Annie is a 2014 American musical film directed by Will Gluck and produced by Village Roadshow Pictures and Will Smith's Overbrook Entertainment for Sony Pictures' Columbia Pictures. A contemporary adaptation of the 1977 Broadway musical of the same name, the film stars Quvenzhan\u00e9 Wallis, Jamie Foxx, Rose Byrne, Bobby Cannavale, and Cameron Diaz. The third film adaptation, following Columbia's 1982 theatrical film and Disney's 1999 television film, Annie began production in August 2013 and opened on December 19, 2014 to generally negative reviews, but was a box-office success, grossing over $133 million internationally. Annie received two Golden Globe Award nominations, one for Best Actress in a Motion Picture \u2013 Comedy or Musical (for Wallis) and for Best Original Song. Conversely, the film won the Golden Raspberry Award for Worst Prequel, Remake, Rip-off or Sequel and Cameron Diaz was nominated for Worst Supporting Actress."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bachelorette_(film)"}, "Title": {"type": "literal", "value": "Bachelorette"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Leslye_Headland"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Scott_(actor)|http://dbpedia.org/resource/Isla_Fisher|http://dbpedia.org/resource/James_Marsden|http://dbpedia.org/resource/Kirsten_Dunst|http://dbpedia.org/resource/Kyle_Bornheimer|http://dbpedia.org/resource/Lizzy_Caplan|http://dbpedia.org/resource/Rebel_Wilson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "Bachelorette is a 2012 American romantic comedy film written and directed by Leslye Headland, adapted from her play of the same name. It stars Kirsten Dunst, Lizzy Caplan and Isla Fisher as three troubled women who reunite for the wedding of a friend (played by Rebel Wilson) who was ridiculed in high school. The play which the film is based upon was originally written as one of Headland's cycle of \"Seven Deadly Sins\" plays. The film wrapped production in New York, and premiered at the Sundance Film Festival on January 23, 2012. The film was released in the United States on September 7, 2012."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Creative_Artists_Agency|http://dbpedia.org/resource/The_Weinstein_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Muslims_Are_Coming!"}, "Title": {"type": "literal", "value": "The Muslims Are Coming!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dean_Obeidallah|http://dbpedia.org/resource/Negin_Farsad"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dean_Obeidallah|http://dbpedia.org/resource/Negin_Farsad"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Documentary_films_about_comedy_and_comedians|http://dbpedia.org/resource/Category:Islamic_comedy_and_humor"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "81"}, "Description": {"type": "literal", "value": "The Muslims Are Coming! is a 2013 American comedy documentary film co-directed and co-starring Negin Farsad and Dean Obeidallah. It follows a team of Muslim-American comedians as they tour the American South and Southwest performing free stand-up comedy shows, and engaging in community activities, with an aim to \"reach out to Middle America\" and counter Islamophobia."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Filmbuff"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Wide_Awake_(1998_film)"}, "Title": {"type": "literal", "value": "Wide Awake"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/M._Night_Shyamalan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dana_Delany|http://dbpedia.org/resource/Denis_Leary|http://dbpedia.org/resource/Joseph_Cross_(actor)|http://dbpedia.org/resource/Rosie_O'Donnell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Religious_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Wide Awake is a 1998 comedy-drama film written and directed by M. Night Shyamalan and produced by Cathy Konrad and Cary Woods. The film stars Denis Leary, Dana Delany, Joseph Cross and Rosie O'Donnell. Wide Awake also features Julia Stiles in one of her earliest roles as the main character's teenage sister, Neena. Although it was made in 1995, the film was not released until 1998. The script was written in 1991. It was nominated for \"Best Family Feature \u2014 Drama\" and \"Best Performance in a Feature Film \u2014 Leading Young Actor\" at the 1999 Young Artist Awards. Shyamalan has described Wide Awake as a comedy that he hoped would also make people cry."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Miramax_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Scott_Pilgrim_vs._the_World"}, "Title": {"type": "literal", "value": "Scott Pilgrim vs. the World"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Edgar_Wright"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:British_romantic_comedy_films|http://dbpedia.org/resource/Category:Japanese_action_comedy_films|http://dbpedia.org/resource/Category:Japanese_romantic_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "Scott Pilgrim vs. the World is a 2010 action comedy film co-written, produced and directed by Edgar Wright, based on the graphic novel series Scott Pilgrim by Bryan Lee O'Malley. It stars Michael Cera as Scott Pilgrim, a slacker musician who must battle his girlfriend Ramona's seven evil exes. Initially planned as a film after the first volume of the comic was released, Wright became attached to the project and filming began in March 2009 in Toronto. The film premiered after a panel discussion at the San Diego Comic-Con International on July 22, 2010. It received a wide release in North America on August 13, 2010. It failed to regain its production budget during its theatrical release, but sold better on home formats and has gained a cult following."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Bling_Ring"}, "Title": {"type": "literal", "value": "The Bling Ring"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sofia_Coppola"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Claire_Julien|http://dbpedia.org/resource/Emma_Watson|http://dbpedia.org/resource/Israel_Broussard|http://dbpedia.org/resource/Katie_Chang|http://dbpedia.org/resource/Leslie_Mann|http://dbpedia.org/resource/Taissa_Farmiga"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Comedy_films_based_on_actual_events"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "The Bling Ring is a 2013 American satirical crime film written, directed and produced by Sofia Coppola. It features an ensemble cast including newcomers Israel Broussard, Katie Chang, and Claire Julien, as well as Taissa Farmiga and Emma Watson. It is based on an article, \"The Suspects Wore Louboutins\" by Nancy Jo Sales, which dealt with a real-life gang known as the Bling Ring. The film is a co-production of France, Germany, Japan, United Kingdom and United States. The film had its world premiere in the Un Certain Regard section of the 2013 Cannes Film Festival on May 16, 2013. It was released in a limited release on June 14, before opening in a wide release on June 21, 2013 by A24 Films. The Bling Ring represents the final work of cinematographer Harris Savides, who died of brain cancer while the film was in post-production. The film is dedicated to him."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/A24_(company)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Alan_Poza"}, "Title": {"type": "literal", "value": "Alan Poza"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Charles_Novia"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Nigerian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Alan Poza is a 2013 Nigerian romantic comedy film starring OC Ukeje as Alan Poza. It was written, produced and directed by Charles Novia. It received 2 nominations at the 9th Africa Movie Academy Awards. OC Ukeje also won a Best Of Nollywood Awards for his leading role as Alan Poza. The plot follows Alan Poza (Ukeje); music executive label play boy; who schemes his way into the hearts of several women within and outside the media company he works for, in a bid to lure them into his bed. His various emotional escapades eventually lead him to trouble as one of his 'victims' is unable to handle the heartbreak he has caused her."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Obvious_Child"}, "Title": {"type": "literal", "value": "Obvious Child"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Gillian_Robespierre"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/David_Cross|http://dbpedia.org/resource/Gaby_Hoffmann|http://dbpedia.org/resource/Jake_Lacy|http://dbpedia.org/resource/Jenny_Slate|http://dbpedia.org/resource/Polly_Draper|http://dbpedia.org/resource/Richard_Kind"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "Obvious Child is a 2014 American romantic comedy film written and directed by Gillian Robespierre in her directorial debut. The film stars Jenny Slate, Jake Lacy, Gaby Hoffmann and David Cross. The story follows Donna (Slate), a stand-up comedian, who has a drunken one-night stand with a man named Max (Lacy) after breaking up with her boyfriend. She subsequently finds out she is pregnant and decides to have an abortion. Obvious Child originated as a 2009 short film which was written by Robespierre, Anna Bean and Karen Maine, and also starred Slate in the main role. By making the film, Robespierre hoped to remove the stigma surrounding abortion and to correct what she perceived as a misrepresentation of unplanned pregnancy in earlier films. She finished the feature-length script in 2012. The film was financed through various production companies and filmmaking grants and it was shot in New York in 2013. The film premiered at the Sundance Film Festival on January 17, 2014, and was released in theaters on June 6, 2014. It grossed US$3.3 million and was well received by critics. David Edelstein, Mick LaSalle and Dana Stevens praised the film's portrayal of abortion, while A. O. Scott and Ty Burr highlighted its realism and humor. The film won numerous accolades, including two awards from the National Board of Review and two Independent Spirit Award nominations."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/A24_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Angry_Video_Game_Nerd"}, "Title": {"type": "literal", "value": "Angry Video Game Nerd"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Rolfe"}, "Author": {"type": "literal", "value": "http://dbpedia.org/resource/James_Rolfe"}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/James_Rolfe"}, "Published": {"type": "literal", "value": "2004-05-16"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Comedy_web_series"}, "Genre": {"type": "literal", "value": "http://dbpedia.org/resource/Insult_comedy"}, "Duration": {"type": "literal", "value": "-35"}, "Description": {"type": "literal", "value": "Angry Video Game Nerd (abbreviated as AVGN, and originally known as Angry Nintendo Nerd) is an American comedy retrogaming web series, created by and starring James Rolfe. The series centers on Rolfe's character \"The Nerd\", a short-tempered and foul-mouthed video game fanatic who delivers commentary and sketches on retro games he considers to be of poor quality. The show would later encompass reviews of gaming consoles, peripherals, and short lectures about video game history and culture. Starting out as an independent filmmaker, Rolfe intended for his earliest videos of the Nerd character to be a joke privately shown to his friends. With collaboration from his friend Mike Matei, Rolfe put the Angry Nintendo Nerd videos on his website, Cinemassacre.com, in 2004. In 2006, Matei persuaded Rolfe to put his work on YouTube, where it got popular. In 2007, the series became a program on ScrewAttack and GameTrailers, where it was renamed Angry Video Game Nerd to prevent trademark issues with Nintendo, and to allow Rolfe to also review games from non-Nintendo consoles. Angry Video Game Nerd was a success and has gained a cult following, as well as the character appearing in various other media such as a feature-length film, various video games, and public appearances. Considered as one of the pioneering internet reviewers in its history, the Nerd was highly influential in bringing online video reviews to the mainstream public."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kung_Fu_Panda_3"}, "Title": {"type": "literal", "value": "Kung Fu Panda 3"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alessandro_Carloni|http://dbpedia.org/resource/Jennifer_Yuh_Nelson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Angelina_Jolie|http://dbpedia.org/resource/Bryan_Cranston|http://dbpedia.org/resource/David_Cross|http://dbpedia.org/resource/Dustin_Hoffman|http://dbpedia.org/resource/J._K._Simmons|http://dbpedia.org/resource/Jack_Black|http://dbpedia.org/resource/Jackie_Chan|http://dbpedia.org/resource/James_Hong|http://dbpedia.org/resource/Kate_Hudson|http://dbpedia.org/resource/Lucy_Liu|http://dbpedia.org/resource/Randall_Duk_Kim|http://dbpedia.org/resource/Seth_Rogen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films|http://dbpedia.org/resource/Category:Chinese_action_comedy_films|http://dbpedia.org/resource/Category:Chinese_adventure_comedy_films|http://dbpedia.org/resource/Category:Martial_arts_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Kung Fu Panda 3 is a 2016 3D American-Chinese computer-animated action comedy martial arts film, produced by DreamWorks Animation, and distributed by 20th Century Fox. It was directed by Jennifer Yuh Nelson and Alessandro Carloni. The film was written by Jonathan Aibel and Glenn Berger, produced by Melissa Cobb, and executive produced by Guillermo del Toro. It is a sequel to the 2011 film Kung Fu Panda 2 and the third installment in the Kung Fu Panda franchise. The film features the voices of Jack Black, Bryan Cranston, Dustin Hoffman, Angelina Jolie, J. K. Simmons, Lucy Liu, Seth Rogen, David Cross, Kate Hudson, James Hong, Randall Duk Kim and Jackie Chan. The film received a limited release in China on January 23 for a special three-hour sneak preview and was released starting from January 28 in South Korea and Russia. It was released in theatres across the United States and Canada on January 29 in 3D, and on March 11 in the United Kingdom. The film received generally positive reviews from critics and was a financial success, grossing $519 million worldwide."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox|http://dbpedia.org/resource/CJ_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/DreamWorks_Animation|http://dbpedia.org/resource/Oriental_DreamWorks"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/American_Sharia"}, "Title": {"type": "literal", "value": "American Sharia"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Omar_Regan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Saleh|http://dbpedia.org/resource/Baba_Ali|http://dbpedia.org/resource/Eric_Roberts|http://dbpedia.org/resource/Omar_Regan|http://dbpedia.org/resource/Sheikh_Akbar"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:Islamic_comedy_and_humor|http://dbpedia.org/resource/Category:Religious_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "American Sharia is a 2015 American buddy cop comedy-drama action film directed by Omar Regan, written by Omar Regan, and stars Omar Regan, Baba Ali and Eric Roberts. The film is about rogue government officials using Islamophobia to maintain power while two Muslim police officers attempting to solve a case involving the disappearance of several Muslims."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kolpa\u00e7ino:_Bomba"}, "Title": {"type": "literal", "value": "Kolpa\u00e7ino: Bomba"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/\u015eafak_Sezer"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Kolpa\u00e7ino: Bomba is a 2011 Turkish comedy film, starring, co-written and directed by \u015eafak Sezer. The film, which opened on March 11, 2011 at number 1 in the Turkish box office, is a sequel to Kolpa\u00e7ino (2009) and is one of the highest grossing Turkish films of 2011."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Thank_You_for_Smoking"}, "Title": {"type": "literal", "value": "Thank You for Smoking"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jason_Reitman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aaron_Eckhart|http://dbpedia.org/resource/Adam_Brody|http://dbpedia.org/resource/Cameron_Bright|http://dbpedia.org/resource/David_Koechner|http://dbpedia.org/resource/J._K._Simmons|http://dbpedia.org/resource/Katie_Holmes|http://dbpedia.org/resource/Maria_Bello|http://dbpedia.org/resource/Rob_Lowe|http://dbpedia.org/resource/Robert_Duvall|http://dbpedia.org/resource/Sam_Elliott|http://dbpedia.org/resource/William_H._Macy"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Thank You for Smoking is a 2006 comedy-drama film written and directed by Jason Reitman and starring Aaron Eckhart, based on the 1994 satirical novel of the same name by Christopher Buckley. It follows the efforts of Big Tobacco's chief spokesman, Nick Naylor, who lobbies on behalf of cigarettes using heavy spin tactics while also trying to remain a role model for his 12-year-old son. Maria Bello, Adam Brody, Sam Elliott, Katie Holmes, Rob Lowe, William H. Macy, J. K. Simmons and Robert Duvall appear in supporting roles. The film was released in a limited run on March 17, 2006, and had a wide release on April 14. As of 2007, the film has grossed a total of more than $39 million worldwide. The film was released on DVD in the US on October 3, 2006, and in the UK on January 8, 2007."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Searchlight_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Little_Door_Gods"}, "Title": {"type": "literal", "value": "Little Door Gods"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Gary_Wang"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films|http://dbpedia.org/resource/Category:Chinese_comedy_films|http://dbpedia.org/resource/Category:Fantasy-comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "Little Door Gods (simplified Chinese: \u5c0f\u95e8\u795e; traditional Chinese: \u5c0f\u9580\u795e), also known as Door Guardians, is a 2016 Chinese animated fantasy comedy film directed by Gary Wang, produced by Light Chaser Animation Studios and distributed by Alibaba Pictures. It was released on January 1, 2016."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Alibaba_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Reel_Zombies"}, "Title": {"type": "literal", "value": "Reel Zombies"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_J._Francis"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Lloyd_Kaufman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:Zombie_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Reel Zombies is a 2008 Canadian zombie film directed by David J. Francis and Mike Masters. It is the third film in a loose trilogy that includes Zombie Night and Zombie Night 2: Awakening. Shot in documentary style, it depicts a film crew that attempts to follow up on their low budget zombie films during an outbreak of a real zombie apocalypse."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Lie_(2011_film)"}, "Title": {"type": "literal", "value": "The Lie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Joshua_Leonard"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jess_Weixler|http://dbpedia.org/resource/Joshua_Leonard|http://dbpedia.org/resource/Mark_Webber_(actor)"}, "Published": {"type": "literal", "value": "2011-11-18"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "The Lie is a 2011 American drama/comedy film written and directed by Joshua Leonard with additional writing by Jeff Feuerzeig, Mark Webber, and Jess Weixler, based on the short story The Lie by T. Coraghessan Boyle, printed in The New Yorker. The film stars Joshua Leonard as Lonnie, Jess Weixler as Clover, and Mark Webber as Tank. The film is about how a man's life is altered unexpectedly after telling a lie to get out of work. The original short story was sixteen pages long. The crew spent two and a half weeks shooting the film, and six months editing it. The film had its world premiere at the 2011 Sundance Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/On_the_Ropes_(2011_film)"}, "Title": {"type": "literal", "value": "On the Ropes"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mark_Noyce"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Shockley|http://dbpedia.org/resource/Mark_Noyce"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "On the Ropes is a 2011 British mockumentary film written and directed by Mark Noyce. It follows the fictional character of martial arts instructor Keith Kraft and his rivalry with boxing gym owner Big Joe, played by actor and former boxer Joe Egan. The cast also includes Ben Shockley, Lindsay Honey, Raymond Griffiths, Sean Byrne and Alex Vincent."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Get_Married_2"}, "Title": {"type": "literal", "value": "Get Married 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Hanung_Bramantyo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Nino_Fernandez|http://dbpedia.org/resource/Nirina_Zubir"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Get Married 2 is a 2009 Indonesian romantic comedy directed by Hanung Bramantyo and starring Nirina Zubir and Nino Fernandez. A sequel to the 2007 hit Get Married, it details the efforts of Mae and Rendy to have children. Although Bramantyo initially did not intend to make a sequel, he was convinced after reading the treatment by Cassandra Massardi. The film, in which most of the original cast returned, was released on 18 September and viewed by 1.2 million persons. Critical reception was mixed, although the film did receive an award at the 2010 Bandung Film Festival. Another sequel, Get Married 3, was released in 2011."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Starvision_Plus"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Reprise_(film)"}, "Title": {"type": "literal", "value": "Reprise"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Joachim_Trier"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anders_Danielsen_Lie|http://dbpedia.org/resource/Espen_Klouman_H\u00f8iner|http://dbpedia.org/resource/Viktoria_Winge"}, "Published": {"type": "literal", "value": "2006-09-08|2007-06-28|2007-08-02|2007-09-07|2008-01-04|2008-05-16"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Reprise is a Norwegian film directed by Joachim Trier. Co-written over the course of five years with Eskil Vogt, it is Trier's first feature-length film. In 2006 it was the Norwegian candidate for the Academy Award for best foreign-language film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Maverick_Films|http://dbpedia.org/resource/Spelling_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Barely_Lethal"}, "Title": {"type": "literal", "value": "Barely Lethal"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kyle_Newman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hailee_Steinfeld|http://dbpedia.org/resource/Jessica_Alba|http://dbpedia.org/resource/Samuel_L._Jackson|http://dbpedia.org/resource/Sophie_Turner_(actress)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Barely Lethal is a 2015 American independent action comedy film directed by Kyle Newman and written by John D'Arco, starring Hailee Steinfeld, Sophie Turner, Jessica Alba, and Samuel L. Jackson. The film follows a teenage special ops agent (Steinfeld) yearning for a \"normal\" adolescence who fakes her own death and enrolls as an \"exchange\" student in a suburban American high school. She quickly learns that surviving the treacherous waters of being a teenager can be more difficult than international espionage. The film received an exclusive on-demand release by DirecTV Cinema on April 30, 2015 and a limited release in theaters by A24 and through video-on-demand on May 29, 2015. The film received mixed-to-negative reviews from critics."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/A24_(company)|http://dbpedia.org/resource/DirecTV_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/No_Way_Jose"}, "Title": {"type": "literal", "value": "No Way Jose"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Goldberg"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Goldberg|http://dbpedia.org/resource/Ahna_O'Reilly|http://dbpedia.org/resource/Emily_Osment|http://dbpedia.org/resource/Gillian_Jacobs|http://dbpedia.org/resource/Pat_Healy_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "No Way Jose is a 2015 American comedy-drama film. Adam Goldberg directed the film from a screenplay that he co-wrote with Sarah Kate Levy. It stars Adam Goldberg, Ahna O'Reilly, Pat Healy, Emily Osment and Gillian Jacobs. The premiere of the movie in the United States was on July 7, 2015."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Destination_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Miss_March"}, "Title": {"type": "literal", "value": "Miss March"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Trevor_Moore_(comedian)|http://dbpedia.org/resource/Zach_Cregger"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Craig_Robinson_(actor)|http://dbpedia.org/resource/Trevor_Moore_(comedian)|http://dbpedia.org/resource/Zach_Cregger"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_screwball_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90|94"}, "Description": {"type": "literal", "value": "Miss March is a 2009 comedy film directed by and starring Trevor Moore and Zach Cregger, stars of the IFC show The Whitest Kids U' Know. The film was released in the United States on March 13, 2009."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Searchlight_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Coco_(2009_film)"}, "Title": {"type": "literal", "value": "Coco"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Gad_Elmaleh"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gad_Elmaleh|http://dbpedia.org/resource/No\u00e9mie_Lvovsky"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Coco is a 2009 French comedy film written, directed, and starring Gad Elmaleh. The film is based on a character sketch he created for his one-man show \"La Vie Normale\". The film earned $8.5 million in its opening weekend at the French box office, and went on to gross $11.7 million in the European market. Although it was a box office success, Coco was not well received by critics. It received only one star out of four from Premi\u00e8re, Paris Match, and T\u00e9l\u00e9rama and two stars from Elle and Le Journal du Dimanche."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Studio_Canal"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/A_Little_Bit_of_Heaven_(2011_film)"}, "Title": {"type": "literal", "value": "A Little Bit of Heaven"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nicole_Kassell"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gael_Garc\u00eda_Bernal|http://dbpedia.org/resource/Kate_Hudson|http://dbpedia.org/resource/Kathy_Bates|http://dbpedia.org/resource/Lucy_Punch|http://dbpedia.org/resource/Romany_Malco|http://dbpedia.org/resource/Rosemarie_DeWitt|http://dbpedia.org/resource/Treat_Williams|http://dbpedia.org/resource/Whoopi_Goldberg"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "A Little Bit of Heaven (formerly titled Earthbound) is a 2011 romantic comedy directed by Nicole Kassell and starring Kate Hudson and Gael Garc\u00eda Bernal."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Alchemy_(company)|http://dbpedia.org/resource/The_Weinstein_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Astro_Boy_(film)"}, "Title": {"type": "literal", "value": "Astro Boy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_Bowers_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bill_Nighy|http://dbpedia.org/resource/Charlize_Theron|http://dbpedia.org/resource/Donald_Sutherland|http://dbpedia.org/resource/Eugene_Levy|http://dbpedia.org/resource/Freddie_Highmore|http://dbpedia.org/resource/Kristen_Bell|http://dbpedia.org/resource/Matt_Lucas|http://dbpedia.org/resource/Nathan_Lane|http://dbpedia.org/resource/Nicolas_Cage"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Astro Boy is a 2009 Hong Kong/American computer-animated action-comedy film loosely based on the manga series of the same name by the Japanese writer and illustrator Osamu Tezuka. It was produced by Imagi Animation Studios, and directed by David Bowers. Freddie Highmore provides the voice of Astro Boy in the film. The film also features the voices of Kristen Bell, Nathan Lane, Eugene Levy, Matt Lucas, Bill Nighy, Donald Sutherland, Charlize Theron and Nicolas Cage. The film was released first in Hong Kong on October 8, 2009, Japan on October 10, 2009 and in the United States on October 23, 2009. The film received mixed reviews from film critics and it earned $41,636,243 on a $65 million budget."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Summit_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/What_We_Do_in_the_Shadows"}, "Title": {"type": "literal", "value": "What We Do in the Shadows"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jemaine_Clement|http://dbpedia.org/resource/Taika_Waititi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Rhys_Darby"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:New_Zealand_comedy_films|http://dbpedia.org/resource/Category:Zombie_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "What We Do in the Shadows is a 2014 New Zealand mockumentary horror comedy film about a group of vampires who live together in Wellington written, directed by, and starring Jemaine Clement and Taika Waititi. It premiered at the Sundance Film Festival in January 2014. The film was theatrically released on August 18, 2014 by Madman Entertainment. The film earned $6.9 million on a $1.6 million budget."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Madman_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Funny_or_Die|http://dbpedia.org/resource/New_Zealand_Film_Commission"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Just_the_3_of_Us"}, "Title": {"type": "literal", "value": "Just the 3 of Us"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Cathy_Garcia-Molina"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Philippine_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "Just the 3 of Us is a 2016 Filipino romantic comedy-drama film directed by Cathy Garcia Molina with a script developed and written by the collaboration of Kiko Abrillo, Gillian Ebreo, Katherine Labayen, and Vanessa R. Valdez, and was produced by ABS-CBN Film Productions. The film stars John Lloyd Cruz, and Jennylyn Mercado with a special participation of Richard Yap. It was released on May 4, 2016 under Star Cinema. The film marks Cruz and Mercado's first movie project together. In Just the 3 of Us, Jennylyn plays a flight stewardess who is deeply infatuated with a pilot played by John Lloyd. The film was a critical and commercial success earning \u20b1230 million worldwide."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Star_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Soap_Opera_(2014_film)"}, "Title": {"type": "literal", "value": "Soap Opera"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alessandro_Genovesi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cristiana_Capotondi|http://dbpedia.org/resource/Fabio_De_Luigi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Italian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Soap Opera is a 2014 Italian comedy film written and directed by Alessandro Genovesi. It opened the 2014 Rome Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hatchet_II"}, "Title": {"type": "literal", "value": "Hatchet II"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Green_(filmmaker)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/AJ_Bowen|http://dbpedia.org/resource/Colton_Dunn|http://dbpedia.org/resource/Danielle_Harris|http://dbpedia.org/resource/David_Foy|http://dbpedia.org/resource/Kane_Hodder|http://dbpedia.org/resource/Parry_Shen|http://dbpedia.org/resource/R._A._Mihailoff|http://dbpedia.org/resource/Rick_McCallum|http://dbpedia.org/resource/Tom_Holland_(director)|http://dbpedia.org/resource/Tony_Todd"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Hatchet II is a 2010 American slasher film written and directed by Adam Green. It is the sequel to Green's film, Hatchet.Picking up right where the first film ended, Hatchet II follows Marybeth as she escapes the clutches of the deformed, swamp-dwelling killer Victor Crowley. After learning the truth about her family\u2019s connection to the hatchet-wielding madman, Marybeth returns to the Louisiana swamps along with an army of hunters to recover the bodies of her family and exact the bloodiest revenge against the bayou butcher. The film sees the return of Kane Hodder and Tony Todd who portrayed Victor Crowley and Reverend Zombie in the 2006 film, respectively. Danielle Harris portrays Marybeth, a role originally played by Tamara Feldman. The film was originally screened at the 2010 London FrightFest Film Festival on August 26, 2010. It was released unrated in the United States on October 1, 2010."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Simple_Agi_Ondh_Love_Story"}, "Title": {"type": "literal", "value": "Simple Aagi Ondu Love Story"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Simple_Suni"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Rakshit_Shetty|http://dbpedia.org/resource/Shwetha_Srivatsav"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "130"}, "Description": {"type": "literal", "value": "Simple Agi Ondh Love Story (Kannada: \u0cb8\u0cbf\u0c82\u0caa\u0cb2\u0ccd\u0cb2\u0cbe\u0c97\u0ccd \u0c92\u0c82\u0ca6\u0ccd \u0cb2\u0cb5\u0ccd \u0cb8\u0ccd\u0c9f\u0ccb\u0cb0\u0cbf) is a 2013 Indian Kannada romance comedy film written and directed by Suni, and stars Rakshit Shetty and Shwetha Srivatsav in the lead roles. The film is being remade in Telugu as Idhi Naa Love Story."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hollywood_Outlaw_Movie"}, "Title": {"type": "literal", "value": "Hollywood Outlaw, The Unmaking of a Bitter Jester"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Maija_DiGiorgio"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Maija_DiGiorgio"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Hollywood Outlaw, The Unmaking of a Bitter Jester is the director\u2019s cut of the controversial documentary Bitter Jester which was buried in 2004 amidst much scandal, never to be seen again. Directed by, written by, and starring Maija DiGiorgio, this film follows her through the construction and subsequent deconstruction of Bitter Jester, including all of the footage that sparked the scandal leading to blackmail and censorship."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Superhero_Movie"}, "Title": {"type": "literal", "value": "Superhero Movie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Craig_Mazin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Brent_Spiner|http://dbpedia.org/resource/Christopher_McDonald|http://dbpedia.org/resource/Drake_Bell|http://dbpedia.org/resource/Jeffrey_Tambor|http://dbpedia.org/resource/Kevin_Hart|http://dbpedia.org/resource/Leslie_Nielsen|http://dbpedia.org/resource/Pamela_Anderson|http://dbpedia.org/resource/Regina_Hall|http://dbpedia.org/resource/Robert_Joy|http://dbpedia.org/resource/Sara_Paxton"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Superhero Movie is a 2008 American spoof comedy film written and directed by Craig Mazin, produced by Robert K. Weiss and David Zucker, and starring Drake Bell, Sara Paxton, Christopher McDonald, and Leslie Nielsen. It was originally titled Superhero! as a nod to one of the Zuckers' previous films, Airplane!, in which Nielsen also starred. A spoof of the superhero film genre, primarily the first Spider-Man, as well as other modern-day Marvel Comics film adaptations, the film follows in the footsteps of the Scary Movie series of comedies, with which the film's poster shares a resemblance. It was also inspired by, and contains homages to, some of Zucker, Abrahams and Zucker's earlier spoof films such as Airplane! and The Naked Gun. Production began on September 17, 2007, in New York. It was released on March 28, 2008 in the United States to generally negative reviews from critics (but more positive than earlier entries such as Date Movie and Meet the Spartans) and moderate box office success, grossing over $71 million worldwide."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jawbreaker_(film)"}, "Title": {"type": "literal", "value": "Jawbreaker"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Darren_Stein"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Carol_Kane|http://dbpedia.org/resource/Ethan_Erickson|http://dbpedia.org/resource/Judy_Greer|http://dbpedia.org/resource/Julie_Benz|http://dbpedia.org/resource/Pam_Grier|http://dbpedia.org/resource/Rebecca_Gayheart|http://dbpedia.org/resource/Rose_McGowan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "Jawbreaker is a 1999 American black comedy film written and directed by Darren Stein. The film stars Rose McGowan, Rebecca Gayheart, Julie Benz, and Judy Greer as girls in an exclusive clique in their high school. Charlotte Ayanna has a non-speaking cameo role as a murdered prom queen. The film was inspired by the film Heathers, and is often compared to it, particularly the plot involving a popular female clique, and the accidental murder of one of its members. Of his concept for the film, Stein has stated \"The jawbreaker just came to represent the duality of the poppy sweetness of the girls, of high school and of youth, versus the whole idea that this thing could break your jaw\". The film was released on February 19, 1999 and was a critical and financial failure, though it has come to gain a cult following. Similarities have been drawn between Jawbreaker and the 2004 film Mean Girls."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/TriStar_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Buddies_in_India"}, "Title": {"type": "literal", "value": "Buddies in India"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Wang_Baoqiang"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Vikramjeet_Virk|http://dbpedia.org/resource/Wang_Baoqiang"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Chinese_action_comedy_films|http://dbpedia.org/resource/Category:Indian_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Buddies in India (Chinese: \u5927\u95f9\u5929\u7afa) is an upcoming Chinese-Indian action comedy film directed by Wang Baoqiang, at his directorial debut, and also starring Wang Baoqiang. Vikramjeet Virk. It is scheduled for release in China by Beijing Enlight Pictures on December 24, 2016."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Beijing_Enlight_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Election_Night_(film)"}, "Title": {"type": "literal", "value": "Election Night"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Anders_Thomas_Jensen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ulrich_Thomsen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:Danish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "11"}, "Description": {"type": "literal", "value": "Election Night (Danish: Valgaften) is a 1998 Danish short comedy film directed by Anders Thomas Jensen. It won an Academy Award in 1999 for Best Short Subject."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Scary_Movie_(film_series)"}, "Title": {"type": "literal", "value": "Scary Movie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_Zucker_(filmmaker)|http://dbpedia.org/resource/Keenen_Ivory_Wayans|http://dbpedia.org/resource/Malcolm_D._Lee|http://dbpedia.org/resource/Scary_Movie|http://dbpedia.org/resource/Scary_Movie_2|http://dbpedia.org/resource/Scary_Movie_3|http://dbpedia.org/resource/Scary_Movie_4|http://dbpedia.org/resource/Scary_Movie_5"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anna_Faris|http://dbpedia.org/resource/Anthony_Anderson|http://dbpedia.org/resource/Ashley_Tisdale|http://dbpedia.org/resource/Carmen_Electra|http://dbpedia.org/resource/Charlie_Sheen|http://dbpedia.org/resource/Chris_Elliott|http://dbpedia.org/resource/Erica_Ash|http://dbpedia.org/resource/Kevin_Hart_(actor)|http://dbpedia.org/resource/Leslie_Nielsen|http://dbpedia.org/resource/Marlon_Wayans|http://dbpedia.org/resource/Regina_Hall|http://dbpedia.org/resource/Shawn_Wayans|http://dbpedia.org/resource/Simon_Rex"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Black_comedy|http://dbpedia.org/resource/Category:Comedy_films_by_series"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "337"}, "Description": {"type": "literal", "value": "Scary Movie is a series of American horror comedy parody films created by Keenen Ivory Wayans with his younger brothers, Shawn Wayans and Marlon Wayans, that mainly specialize in parodying horror films, which have collectively grossed over $895 million at the box-office worldwide. The two main recurring actors of the first four installments were Anna Faris and Regina Hall as Cindy Campbell and Brenda Meeks, joined by new or recurring actors and characters. The franchise was conceptualized by The Wayans Brothers, who wrote and directed the first two films before leaving the franchise. Their entries were produced by Dimension Films and distributed by two different studios: Miramax Films, as it was originally the studio's genre film label during executive producers Bob and Harvey Weinstein's run and produced the first three films, and The Weinstein Company\u2014the brothers' subsequently formed studio\u2014which produced the rest of the series' release after the Weinsteins departed Miramax and took the Dimension label with them. The franchise had 1 movie in 2013 with Scary Movie 5, which doesn't have Anna Faris or Regina Hall, but with new characters, and is still in the original film series and timeline."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Miramax_Films|http://dbpedia.org/resource/The_Weinstein_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Scary_Movie_5"}, "Title": {"type": "literal", "value": "Scary Movie 5"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Malcolm_D._Lee"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ashley_Tisdale|http://dbpedia.org/resource/Charlie_Sheen|http://dbpedia.org/resource/Erica_Ash|http://dbpedia.org/resource/Heather_Locklear|http://dbpedia.org/resource/J._P._Manoux|http://dbpedia.org/resource/Jerry_O'Connell|http://dbpedia.org/resource/Lindsay_Lohan|http://dbpedia.org/resource/Molly_Shannon|http://dbpedia.org/resource/Simon_Rex"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86|89"}, "Description": {"type": "literal", "value": "Scary Movie 5 (stylized as SCARY MOV\u0332IE) is a 2013 American horror comedy parody film and the fifth installment of the Scary Movie franchise. It is the second film to be distributed by The Weinstein Company under the Dimension Films brand. The film is directed by Malcolm D. Lee and written by David Zucker. It was released on April 12, 2013. Scary Movie 5 is the only installment of the franchise not to feature Cindy Campbell (played by Anna Faris) or Brenda Meeks (Regina Hall) (due to the end of their storyline). It premiered on April 11 at the Hollywood\u2019s ArcLight Cinerama Dome. The film parodies various horror films and other popular culture."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Dimension_Films|http://dbpedia.org/resource/The_Weinstein_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dear_Enemy_(film)"}, "Title": {"type": "literal", "value": "\u4eb2\u5bc6\u654c\u4eba Dear Enemy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Xu_Jinglei"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aarif_Rahman|http://dbpedia.org/resource/Christy_Chung|http://dbpedia.org/resource/Gigi_Leung|http://dbpedia.org/resource/Michael_Wong_(actor)|http://dbpedia.org/resource/Stanley_Huang|http://dbpedia.org/resource/Xu_Jinglei|http://dbpedia.org/resource/Zhao_Baogang"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Chinese_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "Dear Enemy (simplified Chinese: \u4eb2\u5bc6\u654c\u4eba; traditional Chinese: \u89aa\u5bc6\u6575\u4eba) is a 2011 Chinese romantic comedy film which sets its background in financial industry. It represents how bankers conduct the act of mergers and acquisitions. During this process, a pair of lovers, serving for two warring investment banks and having broken up half a year ago, get back together."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/My_Grandfather's_People"}, "Title": {"type": "literal", "value": "My Grandfather's People"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/\u00c7a\u011fan_Irmak"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/H\u00fcmeyra|http://dbpedia.org/resource/\u00c7etin_Tekindor"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "123"}, "Description": {"type": "literal", "value": "My Grandfather's People (Turkish: Dedemin \u0130nsanlar\u0131) is a 2011 Turkish drama film directed by \u00c7a\u011fan Irmak."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/I'm_Still_Here_(2010_film)"}, "Title": {"type": "literal", "value": "I'm Still Here"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Casey_Affleck"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Antony_Langdon|http://dbpedia.org/resource/Ben_Stiller|http://dbpedia.org/resource/Billy_Crystal|http://dbpedia.org/resource/Bruce_Willis|http://dbpedia.org/resource/Casey_Affleck|http://dbpedia.org/resource/Danny_DeVito|http://dbpedia.org/resource/Edward_James_Olmos|http://dbpedia.org/resource/Jack_Nicholson|http://dbpedia.org/resource/Jamie_Foxx|http://dbpedia.org/resource/Joaquin_Phoenix|http://dbpedia.org/resource/Mos_Def|http://dbpedia.org/resource/Sean_Combs"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "I'm Still Here is a 2010 American mockumentary comedy-drama film directed by Casey Affleck, and written by Affleck and Joaquin Phoenix. The film purports to follow the life of Phoenix, from the announcement of his retirement from acting, through his transition into a career as a hip hop artist. Filming officially began on January 16, 2009 at a Las Vegas nightclub. Throughout the filming period, Phoenix remained in character for public appearances, giving many the impression that he was genuinely pursuing a new career. The film premiered at the 67th Venice International Film Festival on September 6, 2010. It had a limited release in the United States on September 10, 2010 before being expanded to a wide release a week later on September 17. Although widely suspected to be a \"mockumentary\", the fact that the events of the film had been deliberately staged was not disclosed until after the film had been released."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Magnolia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Employee_of_the_Month_(2006_film)"}, "Title": {"type": "literal", "value": "Employee of the Month"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Greg_Coolidge"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dane_Cook|http://dbpedia.org/resource/Dax_Shepard|http://dbpedia.org/resource/Jessica_Simpson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "Employee of the Month is a 2006 American comedy film directed by Greg Coolidge, written by Don Calame, Chris Conroy, and Coolidge, and starring Dane Cook, Jessica Simpson and Dax Shepard. The main plot revolves around two shop employees (portrayed by Cook and Shepard) who compete for the affection of their newest co-worker. The film was shot primarily at the Costco in Albuquerque, New Mexico located at 1420 N Renaissance Blvd NE."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lionsgate"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Atomic_Space_Bug"}, "Title": {"type": "literal", "value": "The Atomic Space Bug"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jonathan_M._Parisen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Conrad_Brooks|http://dbpedia.org/resource/Eddie_Grayce|http://dbpedia.org/resource/Jan_Weichun|http://dbpedia.org/resource/Jason_Colucci|http://dbpedia.org/resource/Johann_Tonnessen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "60"}, "Description": {"type": "literal", "value": "The Atomic Space Bug is a 1999 horror film directed by Jonathan M. Parisen and starring Conrad Brooks (Plan 9 from Outer Space). The Atomic Space Bug is Parisen's homage to such fifties films as Robot Monster and Plan 9 from Outer Space. The film is about a giant insect-like creature that terrorizes a small town."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Parivision_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Busted_(film)"}, "Title": {"type": "literal", "value": "Busted"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Corey_Feldman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ava_Fabian|http://dbpedia.org/resource/Corey_Feldman|http://dbpedia.org/resource/Corey_Haim|http://dbpedia.org/resource/Dominick_Brascia"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:Teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Busted is a 1997 comedy film, starring Corey Feldman, Corey Haim, Dominick Brascia and Ava Fabian. The film marked Corey Feldman's directorial debut. Due to his frequent absences and drug use during filming, Corey Haim was eventually fired by director Corey Feldman. Feldman later said that this was one of the most hard and painful things he ever had to do."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Fifty_Pills"}, "Title": {"type": "literal", "value": "Fifty Pills"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Theo_Avgerinos"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Diora_Baird|http://dbpedia.org/resource/Eddie_Kaye_Thomas|http://dbpedia.org/resource/Jane_Lynch|http://dbpedia.org/resource/John_Hensley|http://dbpedia.org/resource/Kristen_Bell|http://dbpedia.org/resource/Lou_Taylor_Pucci|http://dbpedia.org/resource/Michael_Pe\u00f1a|http://dbpedia.org/resource/Monica_Keena|http://dbpedia.org/resource/Nora_Zehetner"}, "Published": {"type": "literal", "value": "2006-04-26|2007-02-20"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "Fifty Pills (also known as 50 Pills) is the debut feature film of director Theo Avgerinos, which premiered at the 2006 Tribeca Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/PalmStar_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dirty_Love_(film)"}, "Title": {"type": "literal", "value": "Dirty Love"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/John_Asher"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Carmen_Electra|http://dbpedia.org/resource/Eddie_Kaye_Thomas|http://dbpedia.org/resource/Victor_Webster"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Dirty Love is a 2005 American romantic comedy film written by and starring Jenny McCarthy and directed by John Mallory Asher. At the time of filming, McCarthy and Asher were married; they divorced the month the film was released. Playing heavily off McCarthy's reputation for toilet humor, the film was critically panned and was a box office bomb; it also received the Golden Raspberry Award for Worst Picture."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/First_Look_Studios"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/DEJ_Productions|http://dbpedia.org/resource/Palisades_Pictures"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Shrek_Forever_After"}, "Title": {"type": "literal", "value": "Shrek Forever After"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mike_Mitchell_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Antonio_Banderas|http://dbpedia.org/resource/Cameron_Diaz|http://dbpedia.org/resource/Eddie_Murphy|http://dbpedia.org/resource/John_Cleese|http://dbpedia.org/resource/Julie_Andrews|http://dbpedia.org/resource/Mike_Myers|http://dbpedia.org/resource/Walt_Dohrn"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films|http://dbpedia.org/resource/Category:Fantasy-comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Shrek Forever After (also marketed as Shrek 3D: The Final Chapter and Shrek: The Final Chapter) is a 2010 American 3D computer-animated fantasy comedy film. It is the fourth installment in the Shrek series, produced by DreamWorks Animation. The film premiered on April 21, 2010 at the Tribeca Film Festival, and was theatrically released by Paramount Pictures on May 21, 2010 in the United States. It was also released in 3D and IMAX 3D formats. Taking place after Shrek the Third, Shrek is now a family man and beloved among the local villagers. Yearning for the days when he was feared, he makes a deal with Rumpelstiltskin and accidentally wipes out his entire existence. To restore his existence, Shrek has to regain Fiona's love and kiss her before the sun rises, or he will disappear forever. The film was the #1 film in the United States and Canada for three consecutive weeks and grossed a worldwide total of over $752 million. Additionally, Shrek Forever After is DreamWorks Animation's second highest-grossing film at the foreign box office."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Clerks_II"}, "Title": {"type": "literal", "value": "Clerks II"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Smith"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Brian_O'Halloran|http://dbpedia.org/resource/Jason_Mewes|http://dbpedia.org/resource/Jeff_Anderson|http://dbpedia.org/resource/Jennifer_Schwalbach_Smith|http://dbpedia.org/resource/Rosario_Dawson|http://dbpedia.org/resource/Trevor_Fehrman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Clerks II is a 2006 American comedy film written and directed by Kevin Smith, the sequel to his 1994 film Clerks, and his sixth feature film to be set in the View Askewniverse. The film stars Brian O'Halloran, Jeff Anderson, Rosario Dawson, Trevor Fehrman, Jennifer Schwalbach Smith, Jason Mewes, and Smith, and picks up with the original characters from Clerks: Dante Hicks, Randal Graves and Jay and Silent Bob ten years after the events of the first film. Unlike the first film, which was shot in black-and-white, this film was shot in color. The film screened out of competition at the 2006 Cannes Film Festival and won the Audience Award at the 2006 Edinburgh International Film Festival before receiving a theatrical release on July 21, 2006 to critical and commercial success, grossing $27 million worldwide from a $5 million budget."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Metro-Goldwyn-Mayer"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_Hart:_What_Now%3F"}, "Title": {"type": "literal", "value": "Kevin Hart: What Now?"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tim_Story"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Stand-up_comedy_concert_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "Kevin Hart: What Now? is a 2016 American stand-up comedy film starring comedian Kevin Hart, based on his 2015 stand-up tour of the same name. The film was released in the United States on October 14, 2016."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ishq_Garaari"}, "Title": {"type": "literal", "value": "Ishq Garaari"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dheeraj_Rattan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gunjan_Walia|http://dbpedia.org/resource/Mandy_Takhar|http://dbpedia.org/resource/Miss_Pooja|http://dbpedia.org/resource/Prabhleen_Sandhu|http://dbpedia.org/resource/Rannvijay_Singh|http://dbpedia.org/resource/Sharry_Maan|http://dbpedia.org/resource/Vinaypal_Buttar"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Ishq Garaari is a Punjabi film directed by Dheeraj Rattan. It is produced by Ravi Jain & Karan Bali and stars Sharry Maan, Rannvijay Singh, Mandy Takhar, Gulzar Chahal, Miss Pooja Vinaypal Buttar, Gunjan Walia and Prabhleen Sandhu, the film also has a song titled 'Khalaara' by Yo Yo Honey Singh."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/White_Hill_Productions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Queen_of_Hearts_(2009_film)"}, "Title": {"type": "literal", "value": "The Queen of Hearts"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Val\u00e9rie_Donzelli"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/B\u00e9atrice_de_Sta\u00ebl|http://dbpedia.org/resource/J\u00e9r\u00e9mie_Elka\u00efm|http://dbpedia.org/resource/Val\u00e9rie_Donzelli"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "The Queen of Hearts (French: La Reine des pommes) is a 2009 film directed by Val\u00e9rie Donzelli. It was presented at the Locarno International Film Festival for the Filmmakers of the Present Competition."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Madhura_Naranga"}, "Title": {"type": "literal", "value": "Madhura Naranga"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sugeeth"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aparna_Nair|http://dbpedia.org/resource/Biju_Menon|http://dbpedia.org/resource/Ganja_Karuppu|http://dbpedia.org/resource/Kunchacko_Boban|http://dbpedia.org/resource/Neeraj_Madhav|http://dbpedia.org/resource/Parvathy_Ratheesh"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "145"}, "Description": {"type": "literal", "value": "Madhura Naranga is a 2015 Malayalam film written by Nishad Koya and Salam Kottakkal, directed by Sugeeth. The film says that it was adapted from a true incident. The film stars Kunchacko Boban, Biju Menon, Neeraj Madhav and debutante Parvathy Ratheesh in lead roles. The movie was well received by critics and audience alike"}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jenny's_Wedding"}, "Title": {"type": "literal", "value": "Jenny's Wedding"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mary_Agnes_Donoghue"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alexis_Bledel|http://dbpedia.org/resource/Grace_Gummer|http://dbpedia.org/resource/Katherine_Heigl|http://dbpedia.org/resource/Linda_Emond|http://dbpedia.org/resource/Matthew_Metzger|http://dbpedia.org/resource/Tom_Wilkinson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Jenny's Wedding is a 2015 American independent film written and directed by Mary Agnes Donoghue. The film stars Katherine Heigl, Alexis Bledel, Tom Wilkinson, Linda Emond, Grace Gummer and Matthew Metzger. Heigl plays Jenny, a woman who finally decides to get married, but her choice of partner tears her conventional family apart. Jenny's Wedding was filmed on location in Cleveland from October 2013. An Indiegogo campaign was later launched to help raise money for post-production costs. The film was released on July 31, 2015 in a limited release by IFC Films."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Big_Sick"}, "Title": {"type": "literal", "value": "The Big Sick"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Showalter"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Holly_Hunter|http://dbpedia.org/resource/Ray_Romano|http://dbpedia.org/resource/Zoe_Kazan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Big Sick is an upcoming American romantic comedy film directed by Michael Showalter, from a screenplay by Kumail Nanjiani and Emily V. Gordon. It stars Nanjiani, Ray Romano, Holly Hunter and Zoe Kazan."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Qu\u00e9bec-Montr\u00e9al"}, "Title": {"type": "literal", "value": "Qu\u00e9bec-Montr\u00e9al"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ricardo_Trogi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Isabelle_Blais_(actress)|http://dbpedia.org/resource/Julie_LeBreton|http://dbpedia.org/resource/Patrice_Robitaille|http://dbpedia.org/resource/St\u00e9phane_Breton_(actor)"}, "Published": {"type": "literal", "value": "2002-08-02"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "Qu\u00e9bec-Montr\u00e9al is a Canadian comedy film, released in 2002. Directed by Ricardo Trogi, the film focuses on nine people, all on the cusp of turning 30 and dealing with complex questions about life and love, whose lives intersect on four separate road trips from Quebec City to Montreal along Quebec Autoroute 20. The film's cast includes Patrice Robitaille, Jean-Phillipe Pearson, St\u00e9phane Breton, Fran\u00e7ois L\u00e9tourneau, Isabelle Blais, Beno\u00eet Gouin and Julie LeBreton. The film garnered four Genie Award nominations at the 23rd Genie Awards in 2003, including Best Picture, Best Director, Best Original Screenplay and Best Editing. It won four Jutra Awards, including Best Picture, Best Director, Best Screenplay and Best Supporting Actress (Blais), and was nominated but did not win for Best Actor (Robitaille), Best Supporting Actor (Gouin) and Best Score."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Alliance_Vivafilm"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Pee-wee's_Big_Holiday"}, "Title": {"type": "literal", "value": "Pee-wee's Big Holiday"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/John_Lee_(producer)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Paul_Reubens"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Pee-wee's Big Holiday is a 2016 American adventure comedy film directed by John Lee and written by Paul Reubens and Paul Rust. The film stars Reubens as Pee-wee Herman. The film was released on March 18, 2016, on Netflix."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Netflix"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/I_Sell_the_Dead"}, "Title": {"type": "literal", "value": "I Sell The Dead"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Glenn_McQuaid"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Angus_Scrimm|http://dbpedia.org/resource/Dominic_Monaghan|http://dbpedia.org/resource/Ron_Perlman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "I Sell the Dead is a 2008 horror comedy, the feature film debut from Irish director Glenn McQuaid. The film is a period horror comedy about grave robbing and stars Dominic Monaghan, Ron Perlman, Larry Fessenden and Angus Scrimm."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Norberto's_Deadline"}, "Title": {"type": "literal", "value": "Norberto's Deadline"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Daniel_Hendler"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Norberto's Deadline (Spanish: Norberto apenas tarde) is a 2010 opera prima and tells the story of Norberto. Fired from his job, Norberto tries his luck as a real estate agent, putting off telling his wife. His new boss recommends that he attend a personal assertiveness course to overcome his timidity and he starts studying acting at a beginners\u2019 workshop. While preparing the 3-monthly show, while he fails in his endeavours to behave credibly towards his clients and his wife, what he does discover is a tremendous ability to lie to himself."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mankatha"}, "Title": {"type": "literal", "value": "Mankatha"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Venkat_Prabhu"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ajith_Kumar|http://dbpedia.org/resource/Andrea_Jeremiah|http://dbpedia.org/resource/Anjali_(actress_born_1986)|http://dbpedia.org/resource/Aravind_Akash|http://dbpedia.org/resource/Arjun_Sarja|http://dbpedia.org/resource/Ashwin_Kakumanu|http://dbpedia.org/resource/Jayaprakash|http://dbpedia.org/resource/Lakshmi_Rai|http://dbpedia.org/resource/Mahat_Raghavendra|http://dbpedia.org/resource/Premji_Amaren|http://dbpedia.org/resource/Trisha_Krishnan|http://dbpedia.org/resource/Vaibhav_Reddy"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_action_comedy_films|http://dbpedia.org/resource/Category:Indian_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "160"}, "Description": {"type": "literal", "value": "Mankatha is a 2011 Indian Tamil-language black comedy action-heist film, written and directed by Venkat Prabhu. It features Ajith Kumar in the lead role, starring in his 50th film, along with an ensemble cast including Arjun Sarja, Trisha Krishnan, Vaibhav Reddy, Lakshmi Rai, Andrea Jeremiah, Premji Amaren, Mahat Raghavendra and Anjali. It was produced by Dhayanidhi Alagiri's Cloud Nine Movies while Yuvan Shankar Raja composed the musical score and soundtrack, with Sakthi Saravanan working as the cinematographer and the duo Praveen K. L. and N. B. Srikanth as editors. The story, set in Mumbai, revolves around a heist of cricket betting money, executed by a gang of four thieves, who are joined by a fifth unknown man, and its aftermath.The film became a blockbuster very soon and became the first salt and pepper hit for Venkat Prabhu after which he continued the same style in all his upcoming films. The film was formally launched in August 2010, with its principal photography beginning on 25 October 2010. Filming was held for more than eight months and took place primarily across Chennai, the Dharavi slum in Mumbai and Bangkok, Thailand. Following speculations regarding the film's release, Sun Pictures acquired the theatrical rights and distributed the film via Raadhika Sarathkumar's Radaan Mediaworks. Mankatha released on 31 August 2011 worldwide to generally positive reviews and grossed the second biggest opening of all time after Endhiran at the time of release. The film was also dubbed into Telugu as Gambler and released in Andhra Pradesh ten days later while it was a box-office hit in Kerala as well."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Ayngaran_International|http://dbpedia.org/resource/Raadhika_Sarathkumar|http://dbpedia.org/resource/Sun_Pictures|http://dbpedia.org/resource/Telugu_language"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Deuce_Bigalow:_Male_Gigolo"}, "Title": {"type": "literal", "value": "Deuce Bigalow: Male Gigolo"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mike_Mitchell_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Arija_Bareikis|http://dbpedia.org/resource/Eddie_Griffin|http://dbpedia.org/resource/William_Forsythe_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Deuce Bigalow: Male Gigolo is a 1999 American sex comedy film directed by Mike Mitchell at his feature debut, written by Harris Goldberg and Rob Schneider, and starring Schneider as a hapless fishtank cleaner who goes into business as a male prostitute in an attempt to earn enough money to repair damage he caused while house-sitting. It was the first film released by Happy Madison Productions. Released on December 10, 1999, the film received negative critical reviews but became a box office success, grossing $92 million worldwide on a $17 million budget. The film has developed a minor cult following and spawned a sequel in 2005, titled Deuce Bigalow: European Gigolo, but with Columbia Pictures replacing Touchstone and upon release, received worse reviews and became a box office disappointment."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Love_for_Share"}, "Title": {"type": "literal", "value": "Berbagi Suami"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nia_Dinata"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Atiqah_Hasiholan|http://dbpedia.org/resource/El_Manik|http://dbpedia.org/resource/Jajang_C._Noer|http://dbpedia.org/resource/Lukman_Sardi|http://dbpedia.org/resource/Reuben_Elishama|http://dbpedia.org/resource/Ria_Irawan|http://dbpedia.org/resource/Rieke_Diah_Pitaloka|http://dbpedia.org/resource/Tio_Pakusadewo|http://dbpedia.org/resource/Winky_Wiryawan"}, "Published": {"type": "literal", "value": "2006-03-23"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Love for Share (Indonesian: Berbagi Suami) is a 2006 Indonesian film directed by Nia Dinata. It tells three interrelated stories. It was submitted to the 79th Academy Awards as Indonesia's official submission for the Best Foreign Language Film, but was not nominated. The film received Golden Orchid Award as Best Foreign Language Film at the Hawaii Film Festival in 2007."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bheja_Fry_2"}, "Title": {"type": "literal", "value": "Bheja Fry 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sagar_Ballary"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amol_Gupte|http://dbpedia.org/resource/Kay_Kay_Menon|http://dbpedia.org/resource/Minisha_Lamba|http://dbpedia.org/resource/Rukhsaar_Rehman|http://dbpedia.org/resource/Suresh_Menon|http://dbpedia.org/resource/Vinay_Pathak"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "130"}, "Description": {"type": "literal", "value": "Bheja Fry 2 (meaning 'Brain Fry' 2) is an Indian comedy film released on 17 June 2011. It is the sequel to the 2007 low budget but successful film Bheja Fry, and the second installment of Bheja Fry trilogy. The film garnered negative to mixed reviews upon its release but was a success at the boxoffice."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/American_Pie_Presents:_The_Naked_Mile"}, "Title": {"type": "literal", "value": "American Pie Presents:|The Naked Mile"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Joe_Nussbaum"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Christopher_McDonald|http://dbpedia.org/resource/Eugene_Levy|http://dbpedia.org/resource/Jessy_Schram|http://dbpedia.org/resource/John_White_(actor)|http://dbpedia.org/resource/Steve_Talley"}, "Published": {"type": "literal", "value": "2006-12-12"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films|http://dbpedia.org/resource/Category:Direct-to-video_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "American Pie Presents: The Naked Mile (also known as American Pie: The Naked Mile) is a 2006 American sex comedy film released by Universal Pictures. It is the second installment in the American Pie Presents series and the fifth installment in the American Pie franchise. The film begins a story arc that concludes with Beta House (2007). John White stars as Erik Stifler, a high school senior who is given a \"guilt free pass\" by his girlfriend, Tracy Sterling (Jessy Schram), and so visits the Beta House fraternity led by his cousin, Dwight Stifler (Steve Talley), to run a mile naked. Christopher McDonald co-stars as Erik's father, Harry, and Eugene Levy once again plays Jim's Dad, who turns out to be a family friend of both Erik's and Tracy's. Also, it is in this film that his name is revealed to be \"Noah Levenstein\"."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Rogue_Pictures|http://dbpedia.org/resource/Universal_Studios_Home_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Summer_Storm_(2004_film)"}, "Title": {"type": "literal", "value": "Summer Storm"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Marco_Kreuzpaintner"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alicja_Bachleda|http://dbpedia.org/resource/Kostja_Ullmann|http://dbpedia.org/resource/Miriam_Morgenstern|http://dbpedia.org/resource/Robert_Stadlober"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:German_romantic_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films|http://dbpedia.org/resource/Category:Teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Summer Storm (German: Sommersturm) is a 2004 German coming-of-age comedy-drama film directed by Marco Kreuzpaintner, starring Robert Stadlober, Kostja Ullmann, Alicja Bachleda-Curu\u015b, and Miriam Morgenstern. The story is set to the background of a rowing regatta, which climaxes into a summer storm."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/My_Only_\u00dc"}, "Title": {"type": "literal", "value": "My Only &Uuml;"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Cathy_Garcia-Molina"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Toni_Gonzaga|http://dbpedia.org/resource/Vhong_Navarro"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "My Only \u00dc is a 2008 Filipino comedy drama film starring Vhong Navarro and Toni Gonzaga and directed by the award-winning director Cathy Garcia-Molina released under Star Cinema."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Star_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Happy_(2016_film)"}, "Title": {"type": "literal", "value": "Happy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jordan_Goldnadel"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jordan_Goldnadel"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:French_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Happy is a French feature film directed by Jordan Goldnadel, with Isabel Ryan, Vladimir Perrin, Jordan Goldnadel and L\u00e9a Moszkowicz, released in 2016. The film premiered at the Montr\u00e9al World Film Festival, where it received great reviews. \u00b7 With a great soundtrack, including some Amanda Palmer songs, the film is sold internationally by Wide Management and receives two nominations at the prestigious 2016 Prix Henri Langlois (Henri Langlois Awards). The film also integrates the Eye on Films European Label and is released in several countries including the US, the UK, Ireland and South Korea.It is also bought by Amazon Prime (Amazon.com)."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_First_Time_(2012_film)"}, "Title": {"type": "literal", "value": "The First Time"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jon_Kasdan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Britt_Robertson|http://dbpedia.org/resource/Christine_Taylor|http://dbpedia.org/resource/Craig_Roberts|http://dbpedia.org/resource/Dylan_O'Brien|http://dbpedia.org/resource/James_Frecheville|http://dbpedia.org/resource/Joshua_Malina|http://dbpedia.org/resource/LaMarcus_Tinker|http://dbpedia.org/resource/Victoria_Justice"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "The First Time is a 2012 teen romantic comedy film written and directed by Jon Kasdan, and stars Britt Robertson, Dylan O'Brien, James Frecheville and Victoria Justice. Dave Hodgman (Dylan O'Brien) is a high school senior who spends most of his time pining away over Jane Harmon (Victoria Justice), a girl he can't have. Aubrey Miller (Britt Robertson), a junior at a different high school, has an older boyfriend Ronny (James Frecheville) who doesn't quite understand her or seem to care. A casual conversation between Dave and Aubrey sparks an instant connection, and, over the course of a weekend, things turn magical, romantic, complicated, and funny as Aubrey and Dave discover what it's like to fall in love for the first time."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Destination_Films|http://dbpedia.org/resource/Samuel_Goldwyn_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bheja_Fry_(film_series)"}, "Title": {"type": "literal", "value": "Bheja Fry series"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sagar_Ballary"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Vinay_Pathak"}, "Published": {"type": "literal", "value": "2007-04-13|2011-06-17|2017-04-21"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Comedy_films_by_series"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Bheja Fry is a series of Indian comedy films written and directed by Sagar Ballary and starring Vinay Pathak."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Watch_(2012_film)"}, "Title": {"type": "literal", "value": "The Watch"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Akiva_Schaffer"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Stiller|http://dbpedia.org/resource/Jonah_Hill|http://dbpedia.org/resource/Richard_Ayoade|http://dbpedia.org/resource/Rosemarie_DeWitt|http://dbpedia.org/resource/Vince_Vaughn"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "The Watch (previously known as Neighborhood Watch) is a 2012 American science fiction comedy film directed by Akiva Schaffer and written by Jared Stern, Seth Rogen and Evan Goldberg. It stars Ben Stiller, Vince Vaughn, Jonah Hill and Richard Ayoade. The film follows Evan (Stiller), Bob (Vaughn), Franklin (Hill), and Jamarcus (Ayoade), a group of neighbors who form a suburban neighborhood watch group. When they uncover an alien plot threatening the world, they are forced into action. The film began its development in 2008 under producer Shawn Levy as a teen-targeted project written by Jared Stern. Between 2009 and late 2010 it saw different directors and stars join the project until November 2010, when it moved in a new direction under Rogen and Goldberg (who rewrote the script for an adult audience). Filming began in October 2011 in the state of Georgia, concluding in January 2012. The film's marketing campaign was affected by the 2012 shooting of Trayvon Martin by a neighborhood-watch member. As a result, the campaign was refocused on the alien premise instead of the film leads and the film's name was changed from Neighborhood Watch to The Watch. Released on July 27, 2012, the film received generally negative reviews, with critics focusing on the plot, frequent \"vulgar and offensive\" jokes and numerous product placements. However, the lead cast was more positively received."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/It's_a_Wonderful_Life_(2007_film)"}, "Title": {"type": "literal", "value": "It's a Wonderful Life"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ronald_Cheng"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alex_Fong_(singer)|http://dbpedia.org/resource/Louisa_So|http://dbpedia.org/resource/Ronald_Cheng|http://dbpedia.org/resource/Teresa_Mo|http://dbpedia.org/resource/Tony_Leung_Ka-fai|http://dbpedia.org/resource/Vincent_Kok"}, "Published": {"type": "literal", "value": "2007-02-15"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Fantasy-comedy_films|http://dbpedia.org/resource/Category:Hong_Kong_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "It's a Wonderful Life is a 2007 Hong Kong comedy film written, directed by and starring Ronald Cheng, who makes his directorial debut. The film co-stars Tony Leung, Vincent Kok, Alex Fong, Teresa Mo and Louisa So."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Gold_Typhoon"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Your_Highness"}, "Title": {"type": "literal", "value": "Your Highness"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_Gordon_Green"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/James_Franco|http://dbpedia.org/resource/Natalie_Portman|http://dbpedia.org/resource/Zooey_Deschanel"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films|http://dbpedia.org/resource/Category:American_fantasy-comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films|http://dbpedia.org/resource/Category:Fantasy-comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Your Highness is a 2011 American stoner comic fantasy film directed by David Gordon Green, and stars Danny McBride, James Franco, Natalie Portman, Zooey Deschanel and Justin Theroux. Written by McBride and Ben Best, the film was released on April 8, 2011. The film received negative reviews from critics and was a box office bomb, grossing $28 million worldwide against a $50 million budget."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Vaayai_Moodi_Pesavum"}, "Title": {"type": "literal", "value": "Vaayai Moodi Pesavum"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Balaji_Mohan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dulquer_Salman|http://dbpedia.org/resource/Madhoo|http://dbpedia.org/resource/Nazriya_Nazim"}, "Published": {"type": "literal", "value": "2014-04-25"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Vaayai Moodi Pesavum (English: Speak With Your Mouth Shut) is a 2014 Tamil romantic comedy film directed by Balaji Mohan starring Dulquer Salman and Nazriya Nazim. Sean Roldan scored the music, while Soundararajan was the cinematographer and Abhinav Sunder Nayak worked as the editor. Filming began in November 2013. The film was simultaneously made in Malayalam with the same lead actors and slightly changed supporting actors list, under the title Samsaaram Aarogyathinu Haanikaram."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Transamerica_(film)"}, "Title": {"type": "literal", "value": "Transamerica"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Duncan_Tucker"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Burt_Young|http://dbpedia.org/resource/Carrie_Preston|http://dbpedia.org/resource/Elizabeth_Pe\u00f1a|http://dbpedia.org/resource/Felicity_Huffman|http://dbpedia.org/resource/Fionnula_Flanagan|http://dbpedia.org/resource/Graham_Greene_(actor)|http://dbpedia.org/resource/Kevin_Zegers"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "Transamerica is a 2005 American comedy-drama film written and directed by Duncan Tucker, and starring Felicity Huffman and Kevin Zegers. Produced by IFC Films and The Weinstein Company, the film premiered at the Berlin International Film Festival on February 14, 2005 and was released theatrically in the United States on December 2, 2005. The screenplay, inspired in part by conversations between Tucker and his then roommate Katherine Connella, tells the story of Bree, a transgender woman (Huffman), who goes on a road trip with her long-lost son Toby (Zegers). One of the major themes is the personal journey toward self-discovery, according to interviews with the director and actors. The film is marked by an Academy Award\u2013nominated and Golden Globe\u2013winning performance by Huffman, who is also known for her performance in Desperate Housewives."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Final_Girls"}, "Title": {"type": "literal", "value": "The Final Girls"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Todd_Strauss-Schulson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_DeVine|http://dbpedia.org/resource/Alexander_Ludwig|http://dbpedia.org/resource/Alia_Shawkat|http://dbpedia.org/resource/Malin_\u00c5kerman|http://dbpedia.org/resource/Nina_Dobrev|http://dbpedia.org/resource/Taissa_Farmiga|http://dbpedia.org/resource/Thomas_Middleditch"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "The Final Girls is a 2015 American slasher comedy film, directed by Todd Strauss-Schulson and written by M.A. Fortin and Joshua John Miller. The film stars Taissa Farmiga and Malin \u00c5kerman, with supporting performances from Adam DeVine, Thomas Middleditch, Alia Shawkat, Alexander Ludwig, Nina Dobrev, Chloe Bridges, and Angela Trimbur. The plot follows a group of college students who are transported into a 1986 slasher film called Camp Bloodbath. The film had its world premiere on March 13, 2015 at South by Southwest. It then screened at the 2015 Toronto International Film Festival on September 19, 2015. It was released in the United States on October 9, 2015 in a limited release and through video on demand by Stage 6 Films and Vertical Entertainment."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Stage_6_Films|http://dbpedia.org/resource/Vertical_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Barbershop_(film_series)"}, "Title": {"type": "literal", "value": "Barbershop"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bille_Woodruff|http://dbpedia.org/resource/Kevin_Rodney_Sullivan|http://dbpedia.org/resource/Malcolm_D._Lee|http://dbpedia.org/resource/Tim_Story"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anthony_Anderson|http://dbpedia.org/resource/Cedric_the_Entertainer|http://dbpedia.org/resource/Eve_(rapper)|http://dbpedia.org/resource/Ice_Cube|http://dbpedia.org/resource/Michael_Ealy|http://dbpedia.org/resource/Sean_Patrick_Thomas"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Comedy_films_by_series"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Barbershop is an American comedy film series that started in 2002 with Barbershop, directed by Tim Story. Barbershop 2: Back in Business was directed by Kevin Rodney Sullivan and released in 2004, while the third film, Barbershop: The Next Cut directed by Malcolm D. Lee, was released in April 2016. A spin-off starring Queen Latifah, Beauty Shop, was released in 2005. The series received generally positive reviews and grossed over $235 million worldwide."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Metro-Goldwyn-Mayer|http://dbpedia.org/resource/Warner_Bros._Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Compleat_Al"}, "Title": {"type": "literal", "value": "The Compleat Al"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Robert_K._Weiss"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/%22Weird_Al%22_Yankovic"}, "Published": {"type": "literal", "value": "1985-08-07|1985-09-25|2014-11-11"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1980s_musical_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "The Compleat Al is a mockumentary about the life of \"Weird Al\" Yankovic, from his birth in 1959, to 1985. It was partially written by Yankovic and directed by Jay Levey. An abbreviated version premiered on August 7, 1985 on the Showtime network before the full film was released on video on September 25, 1985. The title of the film is a parody from the 1982 documentary The Compleat Beatles. Although it is a mockumentary, it is roughly based on Yankovic's real life. For example, Yankovic was raised in Lynwood, California, and has a degree in architecture from Cal Poly San Luis Obispo. His real-life parents appear in the mockumentary, as does a picture of his real-life childhood house. Because of the mixture of Yankovic's real life and fiction, many of the film's fabricated information was accepted by fans as real. For example, the false information that Yankovic was born in a Saint Vitus hospital (Saint Vitus where Saint Vitus is the Catholic patron saint of comedy); or the film's pun which claimed his birth in an elevator signified his \"rise to the top.\" The mockumentary also contains clips from his first Three \"AL-TV\"s, and all of Yankovic's music videos up to 1985: \"Ricky\", \"I Love Rocky Road\", \"Eat It\", \"I Lost on Jeopardy\", \"This Is the Life\", \"Like a Surgeon\" ,\"One More Minute\", and \"Dare to Be Stupid\". The parody also extends to the technical aspects of the film, such as the copyright warning message which starts routinely but escalates to warnings that copying the video may result in damage to your VCR, smoke may come out of your TV set, escalating to possible destruction of the planet due to the greed of the viewer."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/S.C.O.O.B."}, "Title": {"type": "literal", "value": "S.C.O.O.B."}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dax_Shepard|http://dbpedia.org/resource/Tony_Cervone"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "S.C.O.O.B. is an upcoming American 3D computer animated film featuring characters from the Scooby-Doo cartoon franchise. It is co-directed by Tony Cervone and Dax Shepard, and written by Matt Lieberman and Shepard. Warner Bros. will release the film on September 21, 2018, in the United States. It is a reboot of the Scooby-Doo live-action films and the first film in the Hanna-Barbera Cinematic Universe."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Capture_the_Flag_(film)"}, "Title": {"type": "literal", "value": "Capture the Flag"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Enrique_Gato"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dani_Rovira|http://dbpedia.org/resource/Michelle_Jenner"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Adventure_comedy_films|http://dbpedia.org/resource/Category:Comedy_science_fiction_films|http://dbpedia.org/resource/Category:Spanish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Capture the Flag (Spanish: Atrapa la bandera) is a 2015 Spanish computer-animated science fiction adventure comedy film directed by Enrique Gato and written by Patxi Amezcua. Produced by 4 Cats Pictures and animated by Lightbox Entertainment, the film is distributed by Paramount Pictures International. It was released in 3D. The film won the Goya Award for Best Animated Film at the 2016 Goya Awards"}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Superstar_Female_Serial_Killer"}, "Title": {"type": "literal", "value": "Superstar Female Serial Killer"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Morrissey_(filmmaker)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Christina_Muzyk|http://dbpedia.org/resource/Lenii_Reed|http://dbpedia.org/resource/Matt_Miyahara|http://dbpedia.org/resource/Polyester|http://dbpedia.org/resource/Share_Fantasia|http://dbpedia.org/resource/Tiffany_Walker|http://dbpedia.org/resource/Veneta_Hillis|http://dbpedia.org/resource/Vickie_Velvet"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "Superstar Female Serial Killer is a 2000 feature film written and directed by Los Angeles-based filmmaker Chris Morrissey. It was released theatrically on March 24, 2000 and stars singers Vickie Velvet, Share Fantasia, and Tiffany Walker."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Morrissey_(filmmaker)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Crush_and_Blush"}, "Title": {"type": "literal", "value": "Crush and Blush"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lee_Kyoung-mi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gong_Hyo-jin|http://dbpedia.org/resource/Hwang_Woo-seul-hye|http://dbpedia.org/resource/Lee_Jong-hyuk|http://dbpedia.org/resource/Seo_Woo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films|http://dbpedia.org/resource/Category:South_Korean_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Crush and Blush (Hangul: \ubbf8\uc4f0 \ud64d\ub2f9\ubb34; RR: Misseu Hongdangmu; lit. \"Miss Hongdangmu\" or \"Miss Carrot\") is a 2008 South Korean film. It is the feature film debut of director Lee Kyoung-mi, and also the first film to be produced by Park Chan-wook. Crush and Blush premiered at the 13th Pusan International Film Festival, and went on general release in South Korea on October 16, 2010."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ready%3F_OK!"}, "Title": {"type": "literal", "value": "Ready? OK!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Vasquez"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Carrie_Preston|http://dbpedia.org/resource/John_G._Preston|http://dbpedia.org/resource/Kali_Rocha|http://dbpedia.org/resource/Lurie_Poston|http://dbpedia.org/resource/Michael_Emerson|http://dbpedia.org/resource/Sam_Pancake|http://dbpedia.org/resource/Tara_Karsian"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Ready? OK! is a 2008 comedy film written, edited, and directed by James Vasquez, and produced by Daisy 3 Pictures."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Horton_Hears_a_Who!_(film)"}, "Title": {"type": "literal", "value": "Horton Hears a Who!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jimmy_Hayward|http://dbpedia.org/resource/Steve_Martino"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jim_Carrey|http://dbpedia.org/resource/Steve_Carell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Horton Hears a Who! (also known as Dr. Seuss\u2019 Horton Hears a Who!) is a 2008 American computer-animated fantasy adventure comedy film based on the book of the same name by Dr. Seuss. Produced by Blue Sky Studios, the film was directed by Jimmy Hayward and Steve Martino, and written by Cinco Paul and Ken Daurio. It features the voices of Jim Carrey and Steve Carell. Released theatrically on March 14, 2008, by 20th Century Fox, it grossed $297 million on a budget of $85 million. The film is the third Dr. Seuss feature film adaptation, the second Dr. Seuss film starring Jim Carrey after How the Grinch Stole Christmas (2000), and the first adaptation of a Dr. Seuss work fully animated using CGI technology."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Seven_Psychopaths"}, "Title": {"type": "literal", "value": "Seven Psychopaths"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Martin_McDonagh"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films|http://dbpedia.org/resource/Category:British_black_comedy_films|http://dbpedia.org/resource/Category:British_criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "Seven Psychopaths is a 2012 metacinema crime black comedy film written and directed by Martin McDonagh. It stars Colin Farrell, Sam Rockwell, Woody Harrelson, and Christopher Walken, with Tom Waits, Abbie Cornish, Olga Kurylenko, and \u017deljko Ivanek in supporting roles. The film marks the second collaboration between McDonagh, Farrell, and Ivanek, following 2008's In Bruges. The film was a co-production of the United States and the United Kingdom. Seven Psychopaths had its world premi\u00e8re on 7 September 2012 at the Toronto International Film Festival. It was released in the United States and Canada on 12 October 2012, and in the United Kingdom on 5 December 2012."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/It_Happened_in_Acapulco"}, "Title": {"type": "literal", "value": "It Happened in Acapulco"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alejandro_Galindo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Domingo_Soler|http://dbpedia.org/resource/Martha_Roth|http://dbpedia.org/resource/Ra\u00fal_Mart\u00ednez_(actor)"}, "Published": {"type": "literal", "value": "1953-10-21"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1950s_comedy_films|http://dbpedia.org/resource/Category:Mexican_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "It Happened in Acapulco (Spanish: Sucedi\u00f3 en Acapulco) is a 1953 Mexican comedy drama film directed by Alejandro Galindo and starring Martha Roth, Ra\u00fal Mart\u00ednez and Domingo Soler."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Big_Stone_Gap_(film)"}, "Title": {"type": "literal", "value": "Big Stone Gap"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Adriana_Trigiani"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anthony_LaPaglia|http://dbpedia.org/resource/Ashley_Judd|http://dbpedia.org/resource/Jane_Krakowski|http://dbpedia.org/resource/Jasmine_Guy|http://dbpedia.org/resource/Jenna_Elfman|http://dbpedia.org/resource/John_Benjamin_Hickey|http://dbpedia.org/resource/Patrick_Wilson_(American_actor)|http://dbpedia.org/resource/Whoopi_Goldberg"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "Big Stone Gap is a 2014 American drama romantic comedy film written and directed by Adriana Trigiani and produced by Donna Gigliotti for Altar Identity Studios, a subsidiary of Media Society. Based on Trigiani's 2000 best-selling novel of the same name, the story is set in the actual Virginia town of Big Stone Gap circa 1970s. The film had its world premiere at the Virginia Film Festival on November 6, 2014.The film was released on October 9, 2015, by Picturehouse. The film was released in Blu-Ray by Universal Pictures on February 2, 2016."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Picturehouse_(company)|http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tully_(upcoming_film)"}, "Title": {"type": "literal", "value": "Tully"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jason_Reitman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Mackenzie_Davis|http://dbpedia.org/resource/Mark_Duplass"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Tully is an upcoming American comedy-drama film directed by Jason Reitman and written by Diablo Cody. The film stars Charlize Theron."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Yuriko's_Aroma"}, "Title": {"type": "literal", "value": "Yuriko's Aroma"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/K\u014dta_Yoshida"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Japanese_comedy-drama_films|http://dbpedia.org/resource/Category:Japanese_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "74"}, "Description": {"type": "literal", "value": "Yuriko's Aroma (\u30e6\u30ea\u5b50\u306e\u30a2\u30ed\u30de Yuriko no Aroma) is a 2010 Japanese erotic comedy drama film directed by K\u014dta Yoshida. It was released on May 8."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Adam's_Apples"}, "Title": {"type": "literal", "value": "Adam's Apples"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Anders_Thomas_Jensen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Mads_Mikkelsen|http://dbpedia.org/resource/Nicolas_Bro|http://dbpedia.org/resource/Paprika_Steen|http://dbpedia.org/resource/Ulrich_Thomsen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Danish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Adam's Apples (Danish: Adams \u00c6bler) is a 2005 Danish black comedy-drama film directed and written by Anders Thomas Jensen. The film revolves around the theme of the Book of Job. The main roles are played by Ulrich Thomsen and Mads Mikkelsen."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Nordisk_Film"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lady_Godiva_(film)"}, "Title": {"type": "literal", "value": "Lady Godiva"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Vicky_Jewson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Matthew_Chambers|http://dbpedia.org/resource/Natalie_Walter|http://dbpedia.org/resource/Phoebe_Thomas"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:British_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Lady Godiva is a 2008 British romantic comedy film written and directed by Vicky Jewson. The film, starring Phoebe Thomas, Matthew Chambers, and Natalie Walter, was shot in 2006 but went unreleased for two years. Based on the historic tale of Lady Godiva, it was set in modern-day Oxford."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Back_in_the_Day_(2014_film)"}, "Title": {"type": "literal", "value": "Back in the Day"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Rosenbaum"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Rosenbaum|http://dbpedia.org/resource/Morena_Baccarin|http://dbpedia.org/resource/Nick_Swardson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Back in the Day is a 2014 comedy film, directed and written by Smallville actor Michael Rosenbaum. It is distributed by Screen Media Films."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Screen_Media_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Damned_United"}, "Title": {"type": "literal", "value": "The Damned United"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tom_Hooper"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Colm_Meaney|http://dbpedia.org/resource/Jim_Broadbent|http://dbpedia.org/resource/Michael_Sheen|http://dbpedia.org/resource/Timothy_Spall"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:British_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "(For the novel on which this film is based, see The Damned Utd.) The Damned United is a 2009 British biographical sports drama film directed by Tom Hooper and adapted by Peter Morgan from David Peace's bestselling novel The Damned Utd, a largely fictional book based on the author's interpretation of Brian Clough's ill-fated tenure as football manager of Leeds United in 1974. It was produced by BBC Films and Left Bank Pictures with additional funding from Screen Yorkshire and Columbia Pictures. Sony Pictures Entertainment distributed the film. The film was originally proposed by Stephen Frears but he pulled out of the project in November 2007. Hooper took his place and film was shot from May to July 2008. The film marks the fifth collaboration between screenwriter Peter Morgan and actor Michael Sheen who plays Clough. The film was released in the United Kingdom on 27 March 2009 and in North America on 25 September. The film grossed $4.1 million worldwide against a $10 million production budget. The film received nominations for the British Independent Film Award for Best Supporting Actor, the ALFS Award for British Supporting Actor of the Year, the Satellite Award for Best Actor in a Motion Picture, Drama and Best Actor in a Supporting Role and the Writers' Guild of Great Britain Award for Best Feature Film Screenplay."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sony_Pictures_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/BBC_Films|http://dbpedia.org/resource/Columbia_Pictures|http://dbpedia.org/resource/Left_Bank_Pictures|http://dbpedia.org/resource/Regional_screen_agencies"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jumanji_(2017_sequel)"}, "Title": {"type": "literal", "value": "Jumanji"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jake_Kasdan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dwayne_Johnson|http://dbpedia.org/resource/Jack_Black|http://dbpedia.org/resource/Karen_Gillan|http://dbpedia.org/resource/Kevin_Hart|http://dbpedia.org/resource/Nick_Jonas"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films|http://dbpedia.org/resource/Category:American_fantasy-comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The untitled sequel to Jumanji is an upcoming 2017 American fantasy adventure film directed by Jake Kasdan and written by Scott Rosenberg. It is a continuation of the 1995 film of the same name and a tribute to the late Robin Williams. The film stars Dwayne Johnson, Kevin Hart, Jack Black, Karen Gillan and Nick Jonas. The film is scheduled to be released on July 28, 2017."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sony_Pictures_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/My_Dear_Desperado"}, "Title": {"type": "literal", "value": "My Dear Desperado"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kim_Kwang-sik"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jung_Yu-mi_(actress_born_1983)|http://dbpedia.org/resource/Park_Joong-hoon"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "My Dear Desperado (Hangul: \ub0b4 \uae61\ud328 \uac19\uc740 \uc560\uc778; RR: Nae Kkangpae Kateun Aein; lit. My Gangster Lover) is a 2010 South Korean romantic comedy film written and directed by Kim Kwang-sik, and starring Park Joong-hoon and Jung Yu-mi as two people who become semi-basement one-room neighbors: brave yet jobless Se-jin and Dong-chul, the neighborhood gangster who always gets beaten up. The film received 688,832 admissions nationwide. This film was remade in Hindi titled Jayantabhai Ki Luv Story in 2013 starring Vivek Oberoi opposite Neha Sharma in lead roles. The movie was officially remade in Tamil by Nalan Kumarasamy titled Kadhalum Kadandhu Pogum for which \u20b940 lakh (US$59,000) or \u20a971,587,640.57 was paid as copyrights."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Butter_(2011_film)"}, "Title": {"type": "literal", "value": "Butter"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jim_Field_Smith"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alicia_Silverstone|http://dbpedia.org/resource/Ashley_Greene|http://dbpedia.org/resource/Hugh_Jackman|http://dbpedia.org/resource/Jennifer_Garner|http://dbpedia.org/resource/Olivia_Wilde|http://dbpedia.org/resource/Rob_Corddry|http://dbpedia.org/resource/Ty_Burrell|http://dbpedia.org/resource/Yara_Shahidi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Butter is a 2011 comedy film directed by Jim Field Smith, from a screenplay by Jason Micallef, starring Yara Shahidi, Jennifer Garner, Ty Burrell, Olivia Wilde, Rob Corddry, Ashley Greene, Alicia Silverstone, and Hugh Jackman. It was released on October 5, 2012 in the United States and Canada by The Weinstein Company. The film is said to be a satire of the 2008 Democratic presidential primary. Butter received mixed reviews from critics who questioned Smith's direction of the film's script in terms of humor and satire and the performances from the ensemble cast."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Best_Man_Holiday"}, "Title": {"type": "literal", "value": "The Best Man Holiday"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Malcolm_D._Lee"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Harold_Perrineau|http://dbpedia.org/resource/Melissa_De_Sousa|http://dbpedia.org/resource/Monica_Calhoun|http://dbpedia.org/resource/Morris_Chestnut|http://dbpedia.org/resource/Nia_Long|http://dbpedia.org/resource/Regina_Hall|http://dbpedia.org/resource/Sanaa_Lathan|http://dbpedia.org/resource/Taye_Diggs|http://dbpedia.org/resource/Terrence_Howard"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Tragicomedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "123"}, "Description": {"type": "literal", "value": "The Best Man Holiday is a 2013 American comedy-drama film written and directed by Malcolm D. Lee. It is the sequel to the 1999 film, The Best Man. The film was released on November 15, 2013 by Universal Pictures. It stars Morris Chestnut, Taye Diggs, Regina Hall, Terrence Howard, Sanaa Lathan, Nia Long, Harold Perrineau, Monica Calhoun, and Melissa De Sousa reprising their roles from the 1999 film along with the supporting cast."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Diary_of_a_Wimpy_Kid_(film)"}, "Title": {"type": "literal", "value": "Diary of a Wimpy Kid"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Thor_Freudenthal"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Rachael_Harris|http://dbpedia.org/resource/Robert_Capron|http://dbpedia.org/resource/Steve_Zahn|http://dbpedia.org/resource/Zachary_Gordon"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Diary of a Wimpy Kid is a 2010 American comedy film directed by Thor Freudenthal and based on Jeff Kinney's book of the same name. The film stars Zachary Gordon and Devon Bostick. Robert Capron, Rachael Harris, Steve Zahn, and Chlo\u00eb Grace Moretz also have prominent roles. It is the first film in the Diary of a Wimpy Kid film series followed by 2011's Diary of a Wimpy Kid: Rodrick Rules, 2012's Diary of a Wimpy Kid: Dog Days and the upcoming Diary of a Wimpy Kid: The Long Haul. The film earned $75.7 million on a $15 million budget. It is the only film in the series to be directed by Thor Freudenthal, who was replaced by David Bowers for the next two installments. The film was theatrically released on March 19, 2010 in the United States by 20th Century Fox."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Legend_of_Michael_Mishra"}, "Title": {"type": "literal", "value": "The Legend of Michael Mishra"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Manish_Jha"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aditi_Rao_Hydari|http://dbpedia.org/resource/Arshad_Warsi|http://dbpedia.org/resource/Boman_Irani|http://dbpedia.org/resource/Gulfam_Khan|http://dbpedia.org/resource/Kayoze_Irani"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Indian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Legend of Michael Mishra is a 2016 Indian Hindi comedy film written and directed by Manish Jha. It is produced by Kishor Arora and Shareen Mantri Kedia of Eyecandy Films. The film stars Arshad Warsi, Aditi Rao Hydari, Boman Irani and Kayoze Irani. It was released on 5 August 2016."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/True_North_trilogy"}, "Title": {"type": "literal", "value": "True North Trilogy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Smith"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014-09-06|2014-09-19|2016-01-24"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101|88"}, "Description": {"type": "literal", "value": "The True North Trilogy is a series of horror comedy films written and directed by Kevin Smith. The trilogy consists of the films Tusk, Yoga Hosers, and Moose Jaws."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Carmina_or_Blow_Up"}, "Title": {"type": "literal", "value": "Carmina or Blow Up"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Paco_Le\u00f3n"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Mar\u00eda_Le\u00f3n_(actress)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Spanish_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "70"}, "Description": {"type": "literal", "value": "Carmina or Blow Up (Spanish:) is a Spanish comedy-drama film, directed and written by Paco Le\u00f3n. The film stars his mother Carmina Barrios (Carmina), his sister, Mar\u00eda Le\u00f3n (Mar\u00eda), Paco Casaus (Antonio Le\u00f3n) and Ana M\u00aa Garc\u00eda (Ani). It is the first Spanish film released in cinemas, online and as a digital copy at the same time."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kamillions"}, "Title": {"type": "literal", "value": "Kamillions"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mike_B._Anderson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Allison_Rachel_Golde|http://dbpedia.org/resource/Andrew_Ross_Litzky|http://dbpedia.org/resource/Christopher_Gasti|http://dbpedia.org/resource/Chuck_Bartelle|http://dbpedia.org/resource/David_Allan_Shaw|http://dbpedia.org/resource/Dru-Anne_Cakmis|http://dbpedia.org/resource/Harry_S._Robins|http://dbpedia.org/resource/Kate_Alexander_(actor)|http://dbpedia.org/resource/Laura_O'Malley"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1980s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films|http://dbpedia.org/resource/Category:Fantasy-comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Kamillions is a 1989 film directed by Mikel B. Anderson from a story by Robert Hsi and a screenplay Anderson wrote in collaboration with Harry S. Robins. The film was re-edited by producer Teresa Woo, who later admitted she did not really understand an English language science fiction comedy, and was expecting more of an action film. The film was shot primarily in the Dunsmuir House and Gardens in Oakland, California."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Ulysses_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Robot_&_Frank"}, "Title": {"type": "literal", "value": "Robot & Frank"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jake_Schreier"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films|http://dbpedia.org/resource/Category:Comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Robot & Frank is a 2012 American science fiction comedy-drama film directed by Jake Schreier and written by Christopher Ford. Set in the near future, it focuses on Frank Weld, an aging jewel thief played by Frank Langella, whose son buys him a domestic robot. Resistant at first, Frank warms up to the robot when he realizes he can use it to restart his career as a cat burglar. It was the first feature film for both Ford and Schreier and received critical acclaim for its writing, production, and acting. It won the Alfred P. Sloan Prize at the 2012 Sundance Film Festival, tying with the Kashmiri film Valley of Saints. The robot was created by Tony Gardner (designer)'s special effects company Alterian, Inc."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Samuel_Goldwyn_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/I_Killed_My_Lesbian_Wife,_Hung_Her_on_a_Meat_Hook,_and_Now_I_Have_a_Three-Picture_Deal_at_Disney"}, "Title": {"type": "literal", "value": "I Killed My Lesbian Wife, Hung Her on a Meat Hook, and Now I Have a Three-Picture Deal at Disney"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Affleck"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "16"}, "Description": {"type": "literal", "value": "I Killed My Lesbian Wife, Hung Her on a Meat Hook, and Now I Have a Three-Picture Deal at Disney is a 1993 short satirical film directed by Ben Affleck from a screenplay by Kamala Lopez and Jay Lacopo. The film is Affleck's first directorial effort."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Everything_You_Want_(film)"}, "Title": {"type": "literal", "value": "Everything You WAnt"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ryan_Little"}, "Author": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Lawrence_King|http://dbpedia.org/resource/Natalie_Prado|http://dbpedia.org/resource/Steven_A._Lee"}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alexandra_Holden|http://dbpedia.org/resource/Nick_Zano|http://dbpedia.org/resource/Orlando_Seale|http://dbpedia.org/resource/Shiri_Appleby|http://dbpedia.org/resource/Will_Friedle"}, "Published": {"type": "literal", "value": "2005-04-17"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Everything You Want is a 2005 romantic-comedy television film on ABC Family starring Shiri Appleby and Nick Zano."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/ABC_Family"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Comment_c'est_loin"}, "Title": {"type": "literal", "value": "Comment c'est loin"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Orelsan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ablaye|http://dbpedia.org/resource/Gringe|http://dbpedia.org/resource/Skread"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Comment c'est loin is a 2015 French quasi-autobiographical comedy film written by French rapper Orelsan and directed by Orelsan and Christophe Offenstein. The film stars Orelsan and fellow French rapper Gringe, both of whom form the rap duo Casseurs Flowters, and is based on their debut studio album Orelsan et Gringe sont les Casseurs Flowters, which was released on 15 November 2013. The film is set over a 24-hour period in the city of Caen, Normandy, and follows Aur\u00e9lien, known as Orel (Orelsan, as he was formerly known), and Guillaume, known as Gringe (himself). They seek to finish recording their first song together at the request of their producers Skread (himself) and Ablaye (himself), but struggle to do so as they wander around the town with friends looking for quick ways to make money and a good time. Comment c'est loin was premiered at the Saint-Jean-de-Luz International Film Festival on October 10, 2015, as well as being shown at the Sarlat Film Festival on November 13, 2015, before being released to the French public on December 9, 2015. The film has received mixed-to-positive reviews from critics, and grossed $1,001,196 in the domestic box office within its first three weeks."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hick_(film)"}, "Title": {"type": "literal", "value": "Hick"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Derick_Martini"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alec_Baldwin|http://dbpedia.org/resource/Blake_Lively|http://dbpedia.org/resource/Chlo\u00eb_Grace_Moretz|http://dbpedia.org/resource/Eddie_Redmayne|http://dbpedia.org/resource/Juliette_Lewis|http://dbpedia.org/resource/Ray_McKinnon_(actor)|http://dbpedia.org/resource/Rory_Culkin"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_sex_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Hick is a 2011 comedy-drama film directed by Derick Martini, based on the novel of the same name by Andrea Portes that draws on non-fictional elements. The film stars Chlo\u00eb Grace Moretz, Eddie Redmayne, Ray McKinnon, Rory Culkin, Juliette Lewis, Blake Lively, and Alec Baldwin. It premiered at the Toronto International Film Festival on September 10, 2011. It had a limited theatrical release on May 11 and is distributed by Phase 4 Films."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Phase_4_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sorority_Boys"}, "Title": {"type": "literal", "value": "Sorority Boys"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Wallace_Wolodarsky"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Barry_Watson_(actor)|http://dbpedia.org/resource/Harland_Williams|http://dbpedia.org/resource/Michael_Rosenbaum"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_sex_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Sorority Boys is a 2002 American comedy film directed by Wallace Wolodarsky, about a group of college guys who dress up as women in order to prove their innocence for a crime they did not commit. The film starred Barry Watson, Michael Rosenbaum and Harland Williams."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bling_Bling_(video)"}, "Title": {"type": "literal", "value": "Bling Bling"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Bobin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Sacha_Baron_Cohen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "142"}, "Description": {"type": "literal", "value": "Bling Bling is a straight-to-video release of clips from the Da Ali G Show, plus unaired segments and an interview with David and Victoria Beckham from a Comic Relief special. It is hosted by Ali G himself."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/2_Entertain"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Come_tu_mi_vuoi"}, "Title": {"type": "literal", "value": "Come tu mi vuoi"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Volfango_De_Biasi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cristiana_Capotondi|http://dbpedia.org/resource/Giulia_Steigerwalt|http://dbpedia.org/resource/Niccol\u00f2_Senni|http://dbpedia.org/resource/Nicolas_Vaporidis"}, "Published": {"type": "literal", "value": "2007-11-09"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Italian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "Come tu mi vuoi is a 2007 Italian comedy film directed by Volfango De Biasi. The stars, Cristiana Capotondi and Nicolas Vaporidis had previously appeared together in the film Notte prima degli esami."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Medusa_Film"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Youth_(2015_film)"}, "Title": {"type": "literal", "value": "Youth"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Paolo_Sorrentino"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Harvey_Keitel|http://dbpedia.org/resource/Jane_Fonda|http://dbpedia.org/resource/Michael_Caine|http://dbpedia.org/resource/Paul_Dano|http://dbpedia.org/resource/Rachel_Weisz"}, "Published": {"type": "literal", "value": "2015-12-04"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:British_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy-drama_films|http://dbpedia.org/resource/Category:Italian_comedy-drama_films|http://dbpedia.org/resource/Category:Swiss_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "124"}, "Description": {"type": "literal", "value": "Youth (Italian: La giovinezza) is a 2015 Italian comedy-drama film written and directed by Paolo Sorrentino. It is the director's second English language film, and stars Michael Caine and Harvey Keitel as best friends who reflect on their lives while holidaying in the Swiss Alps. It is a story of the eternal struggle between age and youth, the past and the future, life and death, commitment and betrayal. The cast also includes Rachel Weisz, Paul Dano, and Jane Fonda. The film premiered at the 2015 Cannes Film Festival, where it competed for the Palme d'Or and had a positive critical response. At the 28th European Film Awards, Youth won Best Film, Best Director for Sorrentino, and Best Actor for Caine. It received one Academy Award nomination: Best Original Song, for David Lang's composition of \"Simple Song #3\". At the Golden Globe Awards, Lang was also nominated along with Jane Fonda for Best Supporting Actress."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Searchlight_Pictures|http://dbpedia.org/resource/Path\u00e9|http://dbpedia.org/resource/StudioCanal_UK"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Canal+|http://dbpedia.org/resource/Film4|http://dbpedia.org/resource/France_T\u00e9l\u00e9visions|http://dbpedia.org/resource/Mediaset_Premium"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Saving_Face_(2004_film)"}, "Title": {"type": "literal", "value": "Saving Face"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alice_Wu"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Joan_Chen|http://dbpedia.org/resource/Lynn_Chen|http://dbpedia.org/resource/Michelle_Krusiec"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Saving Face is a 2004 American romantic comedy drama film directed by Alice Wu. The film focuses on Wilhelmina, a young Chinese-American surgeon; her unwed, pregnant mother; and her dancer girlfriend. The name itself is a reference to the pan-East Asian social concept of face."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sony_Pictures_Classics"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Mexican_Dream"}, "Title": {"type": "literal", "value": "The Mexican Dream"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Gustavo_Hern\u00e1ndez_P\u00e9rez"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "28"}, "Description": {"type": "literal", "value": "The Mexican Dream is a tragic comedy film, written and directed by Gustavo Hern\u00e1ndez P\u00e9rez, inspired by true events. The film stars Jes\u00fas Chuy P\u00e9rez as Ajileo Barajas, an illegal alien who in many ways represents a modern Don Quixote in pursuit of becoming a movie star. A fast paced and fresh film that brings together two worlds and slices into one of this century\u2019s biggest social realities; immigration.The film explores the dreams and delusions, the hopes and desperation of an individual who goes to extremes to give his family a better tomorrow by testing the strength, courage, and passion it takes to follow your dreams."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/HBO"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Yoroi_Samurai_Zombie"}, "Title": {"type": "literal", "value": "Yoroi Samurai Zombie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tak_Sakaguchi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hiromi_Ueda|http://dbpedia.org/resource/Nana_Natsume"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Yoroi Samurai Zombie AKA Samurai Zombie (\u93a7 \u30b5\u30e0\u30e9\u30a4\u30be\u30f3\u30d3 Yoroi: Samurai zonbi) is a 2008 Japanese comic horror film directed by Tak Sakaguchi and written by Ryuhei Kitamura, who had previously collaborated on Versus. A family taken hostage and their kidnappers become prey to an undead samurai in a haunted cemetery."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/GAGA"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bring_It_On_(film_series)"}, "Title": {"type": "literal", "value": "Bring It On (film series)"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bille_Woodruff|http://dbpedia.org/resource/Damon_Santostefano|http://dbpedia.org/resource/Peyton_Reed|http://dbpedia.org/resource/Steve_Rash"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Bring It On is a series cheerleading films. The series began with Bring It On (2000) and was followed by four direct-to-video sequels, none of which contain any of the original film's cast members: Bring It On Again (2004), which shared producers with the original film, Bring It On: All or Nothing (2006), Bring It On: In It to Win It (2007), and Bring It On: Fight to the Finish (2009)."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/O_Concurso"}, "Title": {"type": "literal", "value": "O Concurso"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pedro_Vasconcellos"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Carol_Castro|http://dbpedia.org/resource/Danton_Mello|http://dbpedia.org/resource/F\u00e1bio_Porchat|http://dbpedia.org/resource/Sabrina_Sato"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Brazilian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "O Concurso is a 2013 Brazilian comedy film directed by Pedro Vasconcellos. The film was released in Brazil on July 19, 2013."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Downtown_Filmes"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bin_Phere_Free_Me_Ttere"}, "Title": {"type": "literal", "value": "Bin Phere Free Me Ttere"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Manoj_Sharma"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Manoj_Joshi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Bin Phere Free Me Ttere is a 2013 Hindi comedy film written and directed by Manoj Sharma. The film stars Arsh Deol, Ashrita Agarwal and Manoj Joshi (actor)."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/More_American_Graffiti"}, "Title": {"type": "literal", "value": "More American Graffiti"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bill_L._Norton"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bo_Hopkins|http://dbpedia.org/resource/Candy_Clark|http://dbpedia.org/resource/Charles_Martin_Smith|http://dbpedia.org/resource/Cindy_Williams|http://dbpedia.org/resource/Mackenzie_Phillips|http://dbpedia.org/resource/Paul_Le_Mat|http://dbpedia.org/resource/Ron_Howard"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1970s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "More American Graffiti is a 1979 American comedy-drama film written and directed by Bill L. Norton. It is the sequel to the 1973 film American Graffiti. Whereas the first film followed a group of friends during the summer evening before they set off for college, this film shows where the characters from the first film end up a few years later. Most of the main cast members from the first film returned for the sequel, including Candy Clark, Ron Howard, Paul Le Mat, Cindy Williams, Mackenzie Phillips, Charles Martin Smith, Bo Hopkins, and Harrison Ford. Richard Dreyfuss was the only principal cast member from the original film not to appear in the sequel. It was the final live-action film in which Ron Howard would play a credited, named character."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Golmaal_3"}, "Title": {"type": "literal", "value": "Golmaal 3"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rohit_Shetty"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ajay_Devgan|http://dbpedia.org/resource/Arshad_Warsi|http://dbpedia.org/resource/Kareena_Kapoor|http://dbpedia.org/resource/Kunal_Khemu|http://dbpedia.org/resource/Mithun_Chakraborty|http://dbpedia.org/resource/Ratna_Pathak|http://dbpedia.org/resource/Shreyas_Talpade|http://dbpedia.org/resource/Tusshar_Kapoor"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "155"}, "Description": {"type": "literal", "value": "Golmaal 3 is a 2010 Bollywood action comedy film directed by Rohit Shetty and the sequel to the 2008 film Golmaal Returns and the third film in the Golmaal series. The film stars most of the actors from the previous films, including Ajay Devgan, Kareena Kapoor, Arshad Warsi, Tusshar Kapoor and Shreyas Talpade. New additions to the cast include actors Mithun Chakraborty and Kunal Khemu. Principal photography for the film began in March 2010 in Mumbai, Goa and Hyderabad. It was reportedly inspired by Basu Chatterjee's Khatta Meetha (1978) (which itself was based on the 1968 movie Yours, Mine and Ours ) wherein Ashok Kumar and Pearl Padamsee played an old couple marrying with children from their previous marriages, and film's rights were later bought over. Golmaal 3 was released on 5 November 2010. In 2014, a Telugu feature film Pandavulu Pandavulu Tummada is a remake of Golmaal with top actors like Mohan Babu, Manchu Vishnu, Manchu Manoj, Varun Sandesh, Raveena Tandon."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Eros_International|http://dbpedia.org/resource/New_Line_Cinema|http://dbpedia.org/resource/Shree_Ashtavinayak_Cine_Vision_Ltd|http://dbpedia.org/resource/Universal_Pictures|http://dbpedia.org/resource/Warner_Bros._Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Rice_Rhapsody"}, "Title": {"type": "literal", "value": "Rice Rhapsody"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kenneth_Bi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Craig_Toh|http://dbpedia.org/resource/LePham_Tan|http://dbpedia.org/resource/Martin_Yan|http://dbpedia.org/resource/M\u00e9lanie_Laurent|http://dbpedia.org/resource/Sylvia_Chang"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "Rice Rhapsody (alternative title Hainan Chicken Rice) (Chinese: \u6d77\u5357\u96de\u98ef, literally meaning \"Hainanese chicken rice\") is a 2004 film directed by Kenneth Bi. The cast includes Sylvia Chang and Martin Yan. Jackie Chan was one of the executive producers."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/JCE_Movies_Limited"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Longshots"}, "Title": {"type": "literal", "value": "The Longshots"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Fred_Durst"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dash_Mihok|http://dbpedia.org/resource/Debby_Ryan|http://dbpedia.org/resource/Ice_Cube|http://dbpedia.org/resource/Jill_Marie_Jones|http://dbpedia.org/resource/Keke_Palmer|http://dbpedia.org/resource/Tasha_Smith"}, "Published": {"type": "literal", "value": "2008-08-22"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "The Longshots is a 2008 biopic family comedy-drama film sports movie based on the real life events of Jasmine Plummer, the first female to participate in the Pop Warner football tournament. The film stars Ice Cube and Keke Palmer, their second movie together after Barbershop 2: Back in Business. It is directed by Limp Bizkit frontman Fred Durst."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Dimension_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Summer_of_Flying_Fish"}, "Title": {"type": "literal", "value": "The Summer of Flying Fish"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Marcela_Said"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Chilean_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Summer of Flying Fish (Spanish: El Verano de los Peces Voladores) is a Chilean-French film directed by Marcela Said. The film premiered in the Directors' Fortnight at the 2013 Cannes Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Power_(2014_Telugu_film)"}, "Title": {"type": "literal", "value": "Power"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/K._S._Ravindra"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hansika_Motwani|http://dbpedia.org/resource/Ravi_Teja|http://dbpedia.org/resource/Regina_Cassandra"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "143"}, "Description": {"type": "literal", "value": "Power is a 2014 Telugu action comedy film directed by K. S. Ravindra and produced by Rockline Venkatesh under the banner Rockline Entertainments, both marking their debut in Telugu cinema. It features Ravi Teja playing a dual role with Hansika Motwani and Regina Cassandra playing the female lead roles. S. Thaman composed the music while Gautham Raju edited the film. Arthur A. Wilson and Jayanan Vincent handled the film's cinematography. The film revolves around two similar looking people, Baldev Sahay - a corrupt ACP in Kolkata and Tirupathi - a person aspiring to become a police officer in Hyderabad. The home minister of Kolkata recruits Tirupathi to play as Baldev to catch a gangster rescued by Baldev. Rest of the story is all about why Baldev became a corrupt cop and how Tirupathi executed the unfinished mission of Baldev. Production began on 11 December 2013. The film's talkie part was shot in Hyderabad, Bangalore, Kolkata, Chennai and Bangkok while two songs were shot in Bulgaria marking it the first Telugu film to be shot there. Principal photography ended on 14 August 2014. The film was released on 12 September 2014. This film was remade into Bengali with the same title.The film was dubbed in Hindi as Power Unlimited."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Continent_(film)"}, "Title": {"type": "literal", "value": "The Continent"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Han_Han"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bolin_Chen|http://dbpedia.org/resource/Feng_Shaofeng|http://dbpedia.org/resource/Joe_Chen|http://dbpedia.org/resource/Wallace_Chung|http://dbpedia.org/resource/Wang_Luodan|http://dbpedia.org/resource/Yuan_Quan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Chinese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "The Continent (Chinese: \u540e\u4f1a\u65e0\u671f) is a 2014 Chinese road trip comedy film directed and written by Han Han. The film was released on July 24, 2014. This movie was produced by Beijing Lorry Limited, Hangzhou Guomai Media Limited, and Bona Film Group Limited. Han Han, the famous youth author in China mainland, is this movie\u2019s screenwriter and director. Bolin Chen and William Feng are the leading roles. This movie is talking about several young men who lived in an island which is located in East Sea have planned a journey to across the China mainland, and the experiences they have gone through finally decided the ends of their destinies. The filming process was started on February 14, 2014. The movie team had found views from five places, which were Shanghai, Xichang, Chifeng, Mount Putuo in Zhoushan, and Dongji Island. It was finished on May 26, 2014. One of the leading roles, William Feng, was injured when the filming process was nearly finished. On July 24, 2014, the movie was shown in China mainland."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Prime_(film)"}, "Title": {"type": "literal", "value": "Prime"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Younger"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bryan_Greenberg|http://dbpedia.org/resource/Meryl_Streep|http://dbpedia.org/resource/Uma_Thurman"}, "Published": {"type": "literal", "value": "2005-09-21|2005-10-28"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Prime is a 2005 American romantic comedy film starring Uma Thurman, Meryl Streep and Bryan Greenberg. It was written and directed by Ben Younger. The film grossed $67,937,503 worldwide."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Evil_Aliens"}, "Title": {"type": "literal", "value": "Evil Aliens"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jake_West"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Christopher_Adamson_(actor)|http://dbpedia.org/resource/Emily_Booth_(actress)|http://dbpedia.org/resource/Norman_Lovett"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:British_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Evil Aliens is a British slapstick horror-comedy film directed by Jake West, in the tradition of films such as Braindead, House, and Evil Dead. It was the first full-length British horror film to be filmed using Sony HD (High Definition) cameras, and contains almost 140 digital effects shots and a huge amount of gory conventional special effects."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/ContentFilm"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/She's_Dating_the_Gangster"}, "Title": {"type": "literal", "value": "She's Dating the Gangster"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Cathy_Garcia-Molina"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Daniel_Padilla|http://dbpedia.org/resource/Kathryn_Bernardo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Philippine_comedy-drama_films|http://dbpedia.org/resource/Category:Philippine_romantic_comedy_films|http://dbpedia.org/resource/Category:Philippine_tragicomedy_films|http://dbpedia.org/resource/Category:Star_Cinema_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "113"}, "Description": {"type": "literal", "value": "She's Dating the Gangster is a 2014 Filipino teen romantic comedy-drama film based on the best Pop Fiction book of the same name originally published on CandyMag.com's Teen Talk section and it was popularized on Wattpad by Bianca Bernardino (pen name: SGwannaB). The film is directed by Cathy Garcia-Molina, starring Kathryn Bernardo and Daniel Padilla. It was distributed by Star Cinema with co-production of Summit Media and was released on July 16, 2014 in theatres nationwide as part of its 20th anniversary presentation."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Star_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Girl_Next_Door_(2004_film)"}, "Title": {"type": "literal", "value": "The Girl Next Door"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Luke_Greenfield"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Marquette|http://dbpedia.org/resource/Elisha_Cuthbert|http://dbpedia.org/resource/Emile_Hirsch|http://dbpedia.org/resource/James_Remar|http://dbpedia.org/resource/Olivia_Wilde|http://dbpedia.org/resource/Paul_Dano|http://dbpedia.org/resource/Timothy_Olyphant"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "The Girl Next Door is a 2004 American romantic comedy film about a high school senior who falls in love for the first time with the girl next door, but finds the situation becoming complicated after he learns that she is a former pornographic actress. It stars Emile Hirsch, Elisha Cuthbert, Timothy Olyphant, James Remar, Chris Marquette and Paul Dano and is directed by Luke Greenfield."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Na_Maloom_Afraad"}, "Title": {"type": "literal", "value": "Na Maloom Afraad"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nabeel_Qureshi_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amanullah_Khan_(comedian)|http://dbpedia.org/resource/Fahad_Mustafa|http://dbpedia.org/resource/Irfan_Motiwala|http://dbpedia.org/resource/Javed_Sheikh|http://dbpedia.org/resource/Kubra_Khan|http://dbpedia.org/resource/Mohsin_Abbas_Haider|http://dbpedia.org/resource/Saleem_Mairaj|http://dbpedia.org/resource/Salman_Shahid|http://dbpedia.org/resource/Urwa_Hocane|http://dbpedia.org/resource/Zaheen_Tahira"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Criminal_comedy_films|http://dbpedia.org/resource/Category:Pakistani_comedy_films|http://dbpedia.org/resource/Category:Pakistani_comedy_thriller_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "137"}, "Description": {"type": "literal", "value": "Na Maloom Afraad (Urdu: \u0646\u0627 \u0645\u0639\u0644\u0648\u0645 \u0627\u0641\u0631\u0627\u062f\u200e; meaning Unidentified Persons), is a 2014 Pakistani comedy thriller film co-written and directed by Nabeel Qureshi as his directorial debut. It stars Javed Sheikh, Fahad Mustafa, Mohsin Abbas Haider with supporting cast of Urwa Hocane, Kubra Khan and Salman Shahid. The story follows Shakeel (Sheikh), Farhaan (Mustafa) and Moon (Haider), three poor struggling individuals who chase every possible means of becoming rich, all getting into trouble as they struggle to fulfill their desires and ambitions through questionably moral ways. Most of the Na Maloom Afrad shots were filmed in real locations of Saddar Town, maintaining the authenticity of scenes and staying true to actual content; many elements of post-production required consideration before principal photography. The script was written years before the shooting, the cast went through meticulous rehearsals, and it became the one of few films that is developed completely in Pakistan. The film was shot in Karachi during the January of 2014 with a budget of \u20a89 crore (US$880,000) jointly franchised by Hum Films, Filmwala Pictures and Eveready Pictures. It premiered the following year in November where it closed the South Asian International Film Festival 2014. Na Maloom Afraad had a wide theatrical release in Pakistan on October 6, 2014 at Eid al-adha, followed by a release in UK on May 22, 2015  which has grossed \u20a814.0 crore (US$1.4 million) worldwide. The film garnered wide critical praise. At 3rd Hum Awards film was awarded Hum Honorary Special Recognition Award to Nabeel and Fizza. The film became the most nominated film of the Lux's 14th annual awards ceremony in film section with total of seven nominations in four categories, ultimately winning Best Film for Fizza, Best Director for Nabeel and Best Actor for Javed. It became first Pakistani film since 2007 to make a milestone of longest running film for 165 days (22 weeks) breaking the record of Waar who previously held for 163 days."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Hum_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/200_Pounds_Beauty"}, "Title": {"type": "literal", "value": "200 Pounds Beauty"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kim_Yong-hwa"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Joo_Jin-mo|http://dbpedia.org/resource/Kim_Ah-joong"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "200 Pounds Beauty (Hangul: \ubbf8\ub140\ub294 \uad34\ub85c\uc6cc; RR: Minyeoneun Goerowo; lit. \"It's hard to be a beautiful woman\") is a 2006 South Korean romantic comedy musical film written and directed by Kim Yong-hwa. It is based on the Japanese manga Kanna's Big Success! (\u30ab\u30f3\u30ca\u3055\u3093\u5927\u6210\u529f\u3067\u3059! Kanna-san Daiseikou Desu!) by Yumiko Suzuki about an overweight ghost singer who undergoes intensive plastic surgery to become a pop sensation. The film was a critical and commercial success. It was the third best-selling domestic film of 2009 with 6,619,498 admissions nationwide, grossing US$42,013,016. 200 Pounds Beauty also received several awards and nominations, including Best Actress for Kim Ah-joong at the 2007 Grand Bell Awards."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Showbox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tout_ce_qui_brille"}, "Title": {"type": "literal", "value": "Tout ce qui brille"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/G\u00e9raldine_Nakache|http://dbpedia.org/resource/Herv\u00e9_Mimran"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Audrey_Lamy|http://dbpedia.org/resource/G\u00e9raldine_Nakache|http://dbpedia.org/resource/Le\u00efla_Bekhti|http://dbpedia.org/resource/Virginie_Ledoyen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Tout ce qui brille is a 2010 French film and the debut feature film for G\u00e9raldine Nakache and Herv\u00e9 Mimran, who co-wrote and co-directed the film. It was filmed in Puteaux, La D\u00e9fense, and Paris, notably the 16th arrondissement. Originally, Tout ce qui brille was a 2007 short film shot by the same directors."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Path\u00e9"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Free_the_Nipple_(film)"}, "Title": {"type": "literal", "value": "Free The Nipple"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lina_Esco"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Free the Nipple is a 2014 American comedy-drama independent film directed by Lina Esco and written by Hunter Richards. Lina Esco started the \"Free the Nipple\" campaign after it was nearly impossible to release the film. The campaign addresses societal taboos about public exposure of female breasts; Esco created this film to draw public attention to the issue of gender equality and encourage discussion over America's glorification of violence and repression of sexuality. The Free the Nipple campaign supports feminine body equality and empowerment through social action while working to defeat female body oppression and archaic censorship laws. The film stars Casey LaBow, Monique Coleman, Zach Grenier, Lina Esco, Griffin Newman and Lola Kirke. When in post-production during February 2014, the film was picked up for distribution by Paris-based WTFilms."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kedi_Billa_Killadi_Ranga"}, "Title": {"type": "literal", "value": "Kedi Billa Killadi Ranga"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pandiraj"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bindu_Madhavi|http://dbpedia.org/resource/Regina_Cassandra|http://dbpedia.org/resource/Sivakarthikeyan|http://dbpedia.org/resource/Vimal"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "132"}, "Description": {"type": "literal", "value": "Kedi Billa Killadi Ranga is a 2013 Tamil coming-of-age comedy film written, directed and co-produced by Pandiraj. It features Vimal and Sivakarthikeyan in lead roles, alongside Bindu Madhavi and Regina Cassandra. Yuvan Shankar Raja composed the soundtrack. The film released on 29 March 2013 and received very high positive responses from critics as well as audiences. It successfully completed 100 days in many theatres in Tamil Nadu. The film was remade in Kannada as Katte with Nagashekhar and Chandan."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Studio_Green"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Next_Day_Air"}, "Title": {"type": "literal", "value": "Next Day Air"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Benny_Boom"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Darius_McCrary|http://dbpedia.org/resource/Donald_Faison|http://dbpedia.org/resource/Mike_Epps|http://dbpedia.org/resource/Mos_Def|http://dbpedia.org/resource/Omari_Hardwick|http://dbpedia.org/resource/Wood_Harris|http://dbpedia.org/resource/Yasmin_Deliz"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "Next Day Air is a 2009 American action comedy film that was released by Summit Entertainment on May 8, 2009. The film starring Donald Faison and Mike Epps was produced on an estimated budget of $3 million. Two criminals accidentally accept a package of cocaine which they must sell before the real owner finds it missing."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Summit_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/1987_(film)"}, "Title": {"type": "literal", "value": "1987"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ricardo_Trogi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jean-Carl_Boucher|http://dbpedia.org/resource/Sandrine_Bisson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Canadian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "1987 is a Canadian film, directed by Ricardo Trogi and released in 2014. It's the sequel to 2009's 1981."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/La_La_Land_(film)"}, "Title": {"type": "literal", "value": "La La Land"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Damien_Chazelle"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Emma_Stone|http://dbpedia.org/resource/Finn_Wittrock|http://dbpedia.org/resource/J._K._Simmons|http://dbpedia.org/resource/Meagen_Fay|http://dbpedia.org/resource/Rosemarie_DeWitt|http://dbpedia.org/resource/Ryan_Gosling|http://dbpedia.org/resource/Tom_Everett_Scott"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_musical_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_musical_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "128"}, "Description": {"type": "literal", "value": "La La Land is a 2016 American romantic musical comedy-drama film written and directed by Damien Chazelle, and starring Ryan Gosling, Emma Stone, J. K. Simmons, Finn Wittrock, Tom Everett Scott, Rosemarie DeWitt, and Meagen Fay. The plot follows a musician and aspiring actress who meet and fall in love in Los Angeles. The film also features Gosling and Stone's third roles as lovers, after Crazy, Stupid, Love and Gangster Squad. The film's title is a reference to both a nickname for the city of Los Angeles as well as a euphemism for a state of being out of touch with reality. La La Land had its world premiere at the Venice Film Festival on August 31, 2016 before being set for release in the United States on December 9, 2016 by Summit Entertainment."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/You_Are_the_Apple_of_My_Eye"}, "Title": {"type": "literal", "value": "You Are the Apple of My Eye"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Giddens_Ko"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ko_Chen-tung|http://dbpedia.org/resource/Michelle_Chen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Chinese_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "You Are the Apple of My Eye (Chinese: \u90a3\u4e9b\u5e74\uff0c\u6211\u5011\u4e00\u8d77\u8ffd\u7684\u5973\u5b69, literally \"Those Years, The Girl We Went After Together\") is a 2011 Taiwanese Romance film. It is based on the semi-autobiographical novel of the same name by Taiwanese author Giddens Ko, who also made his directorial debut with the film. The film stars Ko Chen-tung as Ko Ching-teng, a prankster and a mischievous student who eventually becomes a writer. Michelle Chen stars as Shen Chia-yi, an honor student who is very popular amongst the boys in her class. You Are the Apple of My Eye was filmed almost entirely on location in Changhua County, including at the high school which Giddens attended. The lyrics of \"Those Years\", the film's main theme, were written by Giddens. The song, which was well received by the public, was nominated for Best Original Film Song at the 48th Golden Horse Awards. The film's world premiere was at the 13th Taipei Film Festival on 25 June 2011, and it was subsequently released in Taiwanese cinemas on 19 August. Well received by film critics, the movie set box-office records in Taiwan, Hong Kong, and Singapore. Ko Chen-tung won the Best Newcomer award at the Golden Horse Awards for his role in the film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Doghouse_(film)"}, "Title": {"type": "literal", "value": "Doghouse"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jake_West"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Danny_Dyer|http://dbpedia.org/resource/Noel_Clarke|http://dbpedia.org/resource/Stephen_Graham_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:British_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Doghouse  is a 2009 British slapstick comedy horror splatter film. A group of male friends travel to a remote village in England for a 'boys' weekend'. Upon their arrival, they find out that all the women in the town have been transformed into ravenous man-eaters \u2014 literally."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sony_Pictures_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Alvin_and_the_Chipmunks:_Chipwrecked"}, "Title": {"type": "literal", "value": "Alvin and the Chipmunks: Chipwrecked"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mike_Mitchell_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alan_Tudyk|http://dbpedia.org/resource/Amy_Poehler|http://dbpedia.org/resource/Anna_Faris|http://dbpedia.org/resource/Christina_Applegate|http://dbpedia.org/resource/David_Cross|http://dbpedia.org/resource/Jason_Lee_(actor)|http://dbpedia.org/resource/Jenny_Slate|http://dbpedia.org/resource/Jesse_McCartney|http://dbpedia.org/resource/Justin_Long|http://dbpedia.org/resource/Matthew_Gray_Gubler"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "Alvin and the Chipmunks: Chipwrecked is a 2011 American live-action musical comedy film directed by Mike Mitchell. It is the third installment in the Alvin and the Chipmunks film series following the 2009 film Alvin and the Chipmunks: The Squeakquel, which was a sequel to the 2007 film Alvin and the Chipmunks. The film stars Jason Lee, David Cross and Jenny Slate with the voices of Justin Long, Matthew Gray Gubler, Jesse McCartney, Amy Poehler, Anna Faris and Christina Applegate. It was distributed by 20th Century Fox and produced by Fox 2000 Pictures, Regency Enterprises and Bagdasarian Company. The film was released on December 16, 2011. A fourth film, Alvin and the Chipmunks: The Road Chip, was released on December 18, 2015."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bhale_Bhale_Magadivoy"}, "Title": {"type": "literal", "value": "Bhale Bhale Magadivoy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Maruthi_Dasari"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Lavanya_Tripathi|http://dbpedia.org/resource/Murali_Sharma|http://dbpedia.org/resource/Nani_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "145"}, "Description": {"type": "literal", "value": "Bhale Bhale Magadivoy (English: You are an interesting man) is a 2015 Indian Telugu-language romantic comedy film written and directed by Maruthi Dasari. Jointly produced by Bunny Vasu, V. Vamsi Krishna Reddy, and Pramod Uppalapati under their production companies GA2 Pictures and UV Creations, Bhale Bhale Magadivoy features Nani and Lavanya Tripathi in the lead roles, and Murli Sharma, Ajay, Naresh, Sithara, and Vennela Kishore in supporting roles. The film revolves around Lucky, an absent-minded plant scientist and his efforts to hide his inherent memory-related flaws from Nandana, a benevolent kuchipudi dancer with whom he is in a relationship. The title Bhale Bhale Magadivoy was borrowed from a song of the same name composed by M. S. Viswanathan for K. Balachander's 1978 Telugu film Maro Charitra. Gopi Sunder composed the film's soundtrack and background score. Production commenced in March 2013, and the film's principal photography was completed in July 2015. Including post-production tasks, the film was completed in seven months. Though mostly shot in and around Hyderabad, one of the songs was filmed in Goa. Produced on a budget of around \u20b970\u201490 million, Bhale Bhale Magadivoy was released on 4 September 2015 in 700 screens across the globe. It received positive reviews from critics and was a box office success, grossing over \u20b9550 million globally in its full run. It also became the fourth-highest grossing Telugu film of all time at the United States box office, where it was released in 115 screens. The production of the film's Kannada remake, Sundaranga Jaana, commenced in February 2016."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Norwegian_Ninja"}, "Title": {"type": "literal", "value": "Norwegian Ninja"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Thomas_Cappelen_Malling"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amund_Maarud|http://dbpedia.org/resource/Henrik_Horge|http://dbpedia.org/resource/Jon_\u00d8igarden|http://dbpedia.org/resource/Linn_Stokke|http://dbpedia.org/resource/Mads_Ousdal"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Action_comedy_films|http://dbpedia.org/resource/Category:Spy_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "77"}, "Description": {"type": "literal", "value": "Norwegian Ninja (Norwegian: Kommand\u00f8r Treholt & ninjatroppen) is a 2010 Norwegian action comedy film, directed by Thomas Cappelen Malling. The film, based on a 2006 book, presents real-life espionage-convicted Arne Treholt as the leader of a ninja group saving Norway during the Cold War and stars Mads Ousdal as Treholt. The film is loosely based on the story of Norwegian politician and diplomat Arne Treholt, who in 1985 was convicted of high treason and espionage on behalf of the Soviet Union and Iraq. In 2006, Thomas Cappelen Malling wrote the book Ninjateknikk II. Usynlighet i strid 1978 (\"Ninja Technique II: Invisibility in combat 1978\"). The book was presented as a military manual written by Treholt in 1978. It achieved a certain cult status, and was considered a success at 5,000 units sold."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Euforia_Film"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Don't_Think_Twice_(film)"}, "Title": {"type": "literal", "value": "Don't Think Twice"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mike_Birbiglia"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Gethard|http://dbpedia.org/resource/Gillian_Jacobs|http://dbpedia.org/resource/Kate_Micucci|http://dbpedia.org/resource/Keegan-Michael_Key|http://dbpedia.org/resource/Tami_Sagher"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Don't Think Twice is a 2016 American dramedy film written and directed by Mike Birbiglia and stars Birbiglia, Keegan-Michael Key, Gillian Jacobs, Kate Micucci, Tami Sagher and Chris Gethard. The film had its world premiere at South by Southwest on March 13, 2016 and was released on July 22, 2016, by The Film Arcade."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/The_Film_Arcade"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/You_Changed_My_Life"}, "Title": {"type": "literal", "value": "You Changed My Life"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Cathy_Garcia-Molina"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/John_Lloyd_Cruz|http://dbpedia.org/resource/Sarah_Geronimo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "You Changed My Life is a 2009 Filipino romantic comedy film directed by Cathy Garcia-Molina and starring John Lloyd Cruz and Sarah Geronimo. It is the sequel to the 2008 film A Very Special Love. It received an \u201cA\u201d rating from the Cinema Evaluation Board of the Philippines. Filming began in November 2008, and it was released on February 25, 2009, by Star Cinema and Viva Films. The film surpassed Sukob to become the highest grossing Filipino film at the time until it was surpassed by No Other Woman (2011). More newer films surpassed the movie in recent years. It is currently the twenty-first highest grossing Filipino film of all time. The film was followed by a second sequel, It Takes a Man and a Woman, released on March 30, 2013."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Star_Cinema|http://dbpedia.org/resource/Viva_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Shall_We_Kiss%3F"}, "Title": {"type": "literal", "value": "Shall We Kiss?"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Emmanuel_Mouret"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Emmanuel_Mouret|http://dbpedia.org/resource/Julie_Gayet|http://dbpedia.org/resource/Virginie_Ledoyen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "Shall We Kiss? (French title: Un baiser s'il vous pla\u00eet) is a 2007 French romantic comedy film directed by Emmanuel Mouret and starring Virginie Ledoyen, Mouret, Julie Gayet, Micha\u00ebl Cohen, Fr\u00e9d\u00e9rique Bel and Stefano Accorsi."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sgt._Kabukiman_N.Y.P.D."}, "Title": {"type": "literal", "value": "Sgt. Kabukiman N.Y.P.D."}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lloyd_Kaufman|http://dbpedia.org/resource/Michael_Herz_(producer)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Action_comedy_films|http://dbpedia.org/resource/Category:Police_comedy_films|http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Sgt. Kabukiman N.Y.P.D. is a 1990 comedic superhero film directed by Lloyd Kaufman and Michael Herz and distributed by Troma Entertainment."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Troma_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Something_Borrowed_(film)"}, "Title": {"type": "literal", "value": "Something Borrowed"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Luke_Greenfield"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ashley_Williams_(actress)|http://dbpedia.org/resource/Colin_Egglesfield|http://dbpedia.org/resource/Ginnifer_Goodwin|http://dbpedia.org/resource/John_Krasinski|http://dbpedia.org/resource/Kate_Hudson|http://dbpedia.org/resource/Steve_Howey_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "Something Borrowed is a 2011 American romantic comedy film based on Emily Giffin's book of the same name, directed by Luke Greenfield, starring Ginnifer Goodwin, Kate Hudson, Colin Egglesfield, and John Krasinski and was distributed by Warner Bros."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Paul_Blart:_Mall_Cop_2"}, "Title": {"type": "literal", "value": "Paul Blart: Mall Cop 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Fickman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Daniella_Alonso|http://dbpedia.org/resource/David_Henrie|http://dbpedia.org/resource/Loni_Love|http://dbpedia.org/resource/Neal_McDonough|http://dbpedia.org/resource/Raini_Rodriguez"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Paul Blart: Mall Cop 2 is a 2015 American comedy film directed by Andy Fickman and distributed by Columbia Pictures. It is the sequel to Paul Blart: Mall Cop released in 2009 and was written by Kevin James and Nick Bakay. The film stars James as the eponymous mall cop Paul Blart, along with Neal McDonough, Daniella Alonso, David Henrie, Raini Rodriguez, and Vic Dibitetto. Filming began in April 2014 at Wynn Las Vegas casino resort. It was released the following year on April 17, 2015. Paul Blart: Mall Cop 2 is the first film shot on the Steve Wynn property. It is also the first film to receive Nevada's film tax credit enacted in 2013. The film grossed $107 million worldwide at the box office and was thoroughly panned by critics."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Landline_(film)"}, "Title": {"type": "literal", "value": "Landline"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Gillian_Robespierre"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Edie_Falco|http://dbpedia.org/resource/Finn_Wittrock|http://dbpedia.org/resource/Jay_Duplass|http://dbpedia.org/resource/Jenny_Slate|http://dbpedia.org/resource/John_Turturro"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Landline is an upcoming American comedy film directed by Gillian Robespierre and written by Robespierre and Elisabeth Holm. The film stars Jenny Slate, Edie Falco, Abby Quinn, John Turturro, Jay Duplass, and Finn Wittrock."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Escort_in_Love"}, "Title": {"type": "literal", "value": "Escort in Love"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Massimiliano_Bruno"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Paola_Cortellesi|http://dbpedia.org/resource/Raoul_Bova"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Italian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Escort in Love (Italian: Nessuno mi pu\u00f2 giudicare, \"Nobody can judge me\") is a 2011 Italian comedy film directed by Massimiliano Bruno. Paola Cortellesi won the 2011 David di Donatello for Best Actress for her performance as Alice."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/01_Distribution"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Goon:_Last_of_the_Enforcers"}, "Title": {"type": "literal", "value": "Goon: Last of the Enforcers"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jay_Baruchel"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alison_Pill|http://dbpedia.org/resource/Elisha_Cuthbert|http://dbpedia.org/resource/Jay_Baruchel|http://dbpedia.org/resource/Kim_Coates|http://dbpedia.org/resource/Liev_Schreiber|http://dbpedia.org/resource/Marc-Andr\u00e9_Grondin|http://dbpedia.org/resource/Seann_William_Scott|http://dbpedia.org/resource/Wyatt_Russell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_sports_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy-drama_films|http://dbpedia.org/resource/Category:Canadian_comedy_films|http://dbpedia.org/resource/Category:Sports_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Goon: Last of the Enforcers is an upcoming Canadian-American sports comedy film written by Jay Baruchel and Jesse Chabot as a sequel to the 2011 film Goon. The film was directed by Baruchel in his directorial debut and stars Elisha Cuthbert, Seann William Scott, Baruchel, Liev Schreiber, Alison Pill, Wyatt Russell, Marc-Andr\u00e9 Grondin and Kim Coates. Principal photography began in Toronto on June 22, 2015."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Listen_Up_Philip"}, "Title": {"type": "literal", "value": "Listen Up Philip"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alex_Ross_Perry"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Elisabeth_Moss|http://dbpedia.org/resource/Jason_Schwartzman|http://dbpedia.org/resource/Jonathan_Pryce|http://dbpedia.org/resource/Jos\u00e9phine_de_La_Baume|http://dbpedia.org/resource/Krysten_Ritter"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "Listen Up Philip is a 2014 American comedy-drama film written and directed by Alex Ross Perry. The film had its world premiere at 2014 Sundance Film Festival on January 20, 2014."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/All_in_All_Azhagu_Raja"}, "Title": {"type": "literal", "value": "All in All Azhagu Raja"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/M._Rajesh"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kajal_Aggarwal|http://dbpedia.org/resource/Karthi|http://dbpedia.org/resource/Prabhu_(actor)|http://dbpedia.org/resource/Radhika_Apte|http://dbpedia.org/resource/Santhanam_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "162"}, "Description": {"type": "literal", "value": "All in All Azhagu Raja (2013) is a Tamil romantic comedy film written and directed by M. Rajesh. It featured Karthi, Prabhu, Kajal Aggarwal and Santhanam. The film was released on 2 November 2013 and received negative reviews and became a flop at boxoffice."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lapland_Odyssey"}, "Title": {"type": "literal", "value": "Lapland Odyssey"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dome_Karukoski"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jasper_P\u00e4\u00e4kk\u00f6nen|http://dbpedia.org/resource/Jussi_Vatanen|http://dbpedia.org/resource/Kari_Ketonen|http://dbpedia.org/resource/Miia_Nuutila|http://dbpedia.org/resource/Pamela_Tola|http://dbpedia.org/resource/Timo_Lavikainen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Lapland Odyssey (Finnish: Napapiirin sankarit) is a 2010 Finnish comedy film directed by Dome Karukoski. The film stars Jussi Vatanen, Jasper P\u00e4\u00e4kk\u00f6nen, Timo Lavikainen, Pamela Tola, Kari Ketonen and Miia Nuutila."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bandidas"}, "Title": {"type": "literal", "value": "Bandidas"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Espen_Sandberg|http://dbpedia.org/resource/Joachim_R\u00f8nning"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dwight_Yoakam|http://dbpedia.org/resource/Ismael_'East'_Carlo|http://dbpedia.org/resource/Pen\u00e9lope_Cruz|http://dbpedia.org/resource/Salma_Hayek|http://dbpedia.org/resource/Sam_Shepard|http://dbpedia.org/resource/Steve_Zahn"}, "Published": {"type": "literal", "value": "2006-02-03"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Western_(genre)_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Bandidas is a 2006 French-Mexican-American Western action comedy film starring Salma Hayek and Pen\u00e9lope Cruz directed by Norwegian directors Joachim R\u00f8nning and Espen Sandberg and produced and written by Luc Besson. It tells the tale of two very different women in mid-19th century Mexico who become a bank robbing duo in an effort to combat a ruthless enforcer terrorising their town. This is the first movie that Cruz and Hayek starred in together. It was a co-production among France, the United States and Mexico."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Rubber_(2010_film)"}, "Title": {"type": "literal", "value": "Rubber"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mr._Oizo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ethan_Cohn|http://dbpedia.org/resource/Haley_Ramm|http://dbpedia.org/resource/Jack_Plotnick|http://dbpedia.org/resource/Roxane_Mesquida|http://dbpedia.org/resource/Stephen_Spinella|http://dbpedia.org/resource/Wings_Hauser"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:Black_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "Rubber is a 2010 English-language French independent dark comedy horror film about a tire that comes to life and kills people with its psychic powers. It was directed and written by Quentin Dupieux. The producers of the film were Gregory BernardJulien Berlan and Kevos Van Der Meiren. The film was shown at the Cannes Film Festival in 2010. The film received positive reviews from critics."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Magnet_Releasing"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Another_Happy_Day"}, "Title": {"type": "literal", "value": "Another Happy Day"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sam_Levinson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Demi_Moore|http://dbpedia.org/resource/Diana_Scarwid|http://dbpedia.org/resource/Ellen_Barkin|http://dbpedia.org/resource/Ellen_Burstyn|http://dbpedia.org/resource/Ezra_Miller|http://dbpedia.org/resource/George_Kennedy|http://dbpedia.org/resource/Jeffrey_DeMunn|http://dbpedia.org/resource/Kate_Bosworth|http://dbpedia.org/resource/Michael_Nardelli|http://dbpedia.org/resource/Siobhan_Fallon_Hogan|http://dbpedia.org/resource/Thomas_Haden_Church"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "119"}, "Description": {"type": "literal", "value": "Another Happy Day is a 2011 American black comedy-drama film written and directed by Sam Levinson. The film stars an ensemble cast including Ellen Barkin, Kate Bosworth, Ellen Burstyn, Thomas Haden Church, George Kennedy, Ezra Miller, Demi Moore, Siobhan Fallon Hogan, Michael Nardelli, Jeffrey DeMunn, and Diana Scarwid."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Phase_4_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ant_Story"}, "Title": {"type": "literal", "value": "Ant Story"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mostofa_Sarwar_Farooki"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Noor_Imran|http://dbpedia.org/resource/Sheena_Chohan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Bangladeshi_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Ant Story (Bengali: \u09aa\u09bf\u09aa\u09a1\u09bc\u09be\u09ac\u09bf\u09a6\u09cd\u09af\u09be) is a 2013 Bangladeshi drama film directed by Mostofa Sarwar Farooki and starring Sheena Chohan, Noor Imran Mitu and others."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Holyman_Undercover"}, "Title": {"type": "literal", "value": "Holyman Undercover"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_A._R._White"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/David_A._R._White|http://dbpedia.org/resource/Edie_McClurg|http://dbpedia.org/resource/Fred_Willard|http://dbpedia.org/resource/John_Schneider_(screen_actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Holyman Undercover is a 2010 Christian comedy film directed by David A. R. White. The film was featured at the Greater Boston Christian Film Festival, and stars David A. R. White, Fred Willard, Jennifer Lyons, John Schneider, Staci Keanan, Clint Howard, Gregg Binkley, among others."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Pure_Flix_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sequoia_(2014_film)"}, "Title": {"type": "literal", "value": "Sequoia"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Landen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aly_Michalka|http://dbpedia.org/resource/Dustin_Milligan|http://dbpedia.org/resource/Joey_Lauren_Adams|http://dbpedia.org/resource/Lou_Diamond_Phillips"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Sequoia is a 2014 American comedy film directed by Andy Landen and written by Andrew Rothschild. The film stars Aly Michalka, Dustin Milligan, Joey Lauren Adams, Lou Diamond Phillips, Corbin Frost and Sophi Bairley. The film was released on August 25, 2015, by The Orchard."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/The_Orchard_(company)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mallrats"}, "Title": {"type": "literal", "value": "Mallrats"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Smith"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Claire_Forlani|http://dbpedia.org/resource/Jason_Lee_(actor)|http://dbpedia.org/resource/Jeremy_London|http://dbpedia.org/resource/Michael_Rooker|http://dbpedia.org/resource/Priscilla_Barnes|http://dbpedia.org/resource/Shannen_Doherty"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Mallrats is a 1995 American romantic comedy film written and directed by Kevin Smith. It is the second film in the View Askewniverse series and prequel to 1994's Clerks. As in the other View Askewniverse films, the characters Jay and Silent Bob feature prominently, and characters and events from other films are discussed. Several cast members, including Jason Lee, Ben Affleck, and Joey Lauren Adams, have gone on to work in several other Smith films. Comic book icon Stan Lee appeared, as did Brian O'Halloran, the star of Smith's breakout feature Clerks. Plans for a sequel, MallBrats, were announced in March 2015. In June 2016, Smith announced that the sequel would instead be a 10-episode TV series."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Gramercy_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lost_in_Hong_Kong"}, "Title": {"type": "literal", "value": "Lost in Hong Kong"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Xu_Zheng_(actor)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bao_Bei'er|http://dbpedia.org/resource/Du_Juan|http://dbpedia.org/resource/Xu_Zheng_(actor)|http://dbpedia.org/resource/Zhao_Wei"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Chinese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "Lost in Hong Kong is a 2015 Chinese comedy film directed, co-written and co-produced by Xu Zheng, starring himself along with Bao Bei'er, Zhao Wei, and Du Juan. This is Xu's second directorial feature, after the huge domestic hit Lost in Thailand (2012) which grossed over US$208 million. It was released in China on September 25, 2015 and broke several box office records there. It was released in Hong Kong on November 19."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Grimsby_(film)"}, "Title": {"type": "literal", "value": "Grimsby"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Louis_Leterrier"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gabourey_Sidibe|http://dbpedia.org/resource/Isla_Fisher|http://dbpedia.org/resource/Mark_Strong|http://dbpedia.org/resource/Pen\u00e9lope_Cruz|http://dbpedia.org/resource/Rebel_Wilson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_action_comedy_films|http://dbpedia.org/resource/Category:British_sports_comedy_films|http://dbpedia.org/resource/Category:Sports_comedy_films|http://dbpedia.org/resource/Category:Spy_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "Grimsby (released in the United States as The Brothers Grimsby) is a 2016 British-American action comedy film directed by Louis Leterrier and written by Sacha Baron Cohen, Phil Johnston, and Peter Baynham. The film stars Baron Cohen, Mark Strong, Rebel Wilson, Isla Fisher, Annabelle Wallis, Gabourey Sidibe, Pen\u00e9lope Cruz, and Ian McShane. It was released by Columbia Pictures on 24 February 2016 in the United Kingdom and 11 March 2016 in the United States."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Big_Talk_Productions|http://dbpedia.org/resource/Village_Roadshow_Pictures|http://dbpedia.org/resource/Working_Title_Films"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tiny_Furniture"}, "Title": {"type": "literal", "value": "Tiny Furniture"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lena_Dunham"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alex_Karpovsky|http://dbpedia.org/resource/Amy_Seimetz|http://dbpedia.org/resource/David_Call|http://dbpedia.org/resource/Grace_Dunham|http://dbpedia.org/resource/Jemima_Kirke|http://dbpedia.org/resource/Laurie_Simmons|http://dbpedia.org/resource/Merritt_Wever"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Tiny Furniture is a 2010 American independent comedy-drama film written, directed by, and starring Lena Dunham. The film premiered at South by Southwest, where it won the award for 'Best Narrative Feature,' screened at such festivals as Maryland Film Festival, and was released theatrically in the United States on November 12, 2010. Dunham\u2019s own mother, the artist Laurie Simmons, plays Aura\u2019s mother, while her real sister, Grace, plays Aura\u2019s on-screen sibling. The actors Jemima Kirke and Alex Karpovsky would also appear in Dunham's television series Girls."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Friday_Night_(2000_film)"}, "Title": {"type": "literal", "value": "Friday Night"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Danijel_Sraka"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Katarina_\u010cas|http://dbpedia.org/resource/Primoz_Preksavec|http://dbpedia.org/resource/Primoz_Rokavc|http://dbpedia.org/resource/Tadej_Cepeljnik"}, "Published": {"type": "literal", "value": "2000-03-31"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Friday Night (Slovene: V petek zve\u010der) is a Slovenian low-budget film that premiered in theaters across Slovenia in 2000. Directed by Danijel Sraka; written by Beno 'Stef' Torkar; produced by Ales Blatnik and Danijel Sraka. The film received extensive media coverage in Slovenia during filming as a result of being privately financed and having an international crew when most films from the area where dependent on state funds and local workers. The crew members brought in from abroad where Mikael Karlmark from Sweden, Roy Kurtluyan from Turkey/United States, Donald L. Painchaud from Canada and James Debbs from the United States."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Corpse_Bride"}, "Title": {"type": "literal", "value": "Corpse Bride"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mike_Johnson_(animator)|http://dbpedia.org/resource/Tim_Burton"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Helena_Bonham_Carter|http://dbpedia.org/resource/Johnny_Depp"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_fantasy-comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films|http://dbpedia.org/resource/Category:British_musical_comedy_films|http://dbpedia.org/resource/Category:Fantasy-comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "77"}, "Description": {"type": "literal", "value": "Corpse Bride, often referred to as Tim Burton's Corpse Bride, is a 2005 stop-motion-animated musical fantasy film directed by Mike Johnson and Tim Burton with a screenplay by John August, Caroline Thompson and Pamela Pettler based on characters created by Burton and Carlos Grangel. The plot is set in a fictional Victorian era village in Europe. Johnny Depp led a cast as the voice of Victor, while Helena Bonham Carter voiced Emily, the title character. Corpse Bride is the third stop-motion feature film produced by Burton and the first directed by him (the previous two films, The Nightmare Before Christmas and James and the Giant Peach, were directed by Henry Selick). This is also the first stop-motion feature from Burton that was distributed by Warner Bros. Pictures. It was dedicated to executive producer Joe Ranft, who died during production. The film, a critical and commercial success, was nominated for the 78th Academy Awards for Best Animated Feature, but lost to Wallace & Gromit: The Curse of the Were-Rabbit, which also starred Bonham Carter. It was shot with Canon EOS-1D Mark II digital SLRs, rather than the 35mm film cameras used for Burton's previous stop-motion film The Nightmare Before Christmas."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros._Pictures"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Laika_(company)|http://dbpedia.org/resource/Tim_Burton_Productions"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Imaginary_Larry"}, "Title": {"type": "literal", "value": "Imaginary Larry"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Riki_Lindhome"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Christopher_Stewart_(actor)|http://dbpedia.org/resource/Kate_Micucci|http://dbpedia.org/resource/Malcolm_Barrett_(actor)|http://dbpedia.org/resource/Riki_Lindhome|http://dbpedia.org/resource/Ryan_Devlin"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "14"}, "Description": {"type": "literal", "value": "Imaginary Larry is a 2009 short film co-directed by Riki Lindhome and Dori Oskowitz and starring Riki Lindhome, Kate Micucci, Malcolm Barrett, Ryan Devlin, Christopher Stewart."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/5_Idiots"}, "Title": {"type": "literal", "value": "5 Idiots"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Master_Anand"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Harshika_Poonacha|http://dbpedia.org/resource/Master_Anand|http://dbpedia.org/resource/Naveen_Krishna"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "141"}, "Description": {"type": "literal", "value": "5 Idiots (Kannada: \u0ceb \u0c88\u0ca1\u0cbf\u0caf\u0c9f\u0ccd\u0cb8\u0ccd) is a 2011 Indian Kannada language comedy film directed by Master Anand making his debut in direction. Besides Anand, the film stars Vasu, Naveen Krishna, Petrol Prasanna, Harshika Poonacha and Namratha Hegde in the lead roles. It is a remake of Hindi film Darwaaza Bandh Rakho (2006) starring Aftab Shivdasani, Isha Sharvani and Manisha Koirala. The film released on 18 February 2011 across Karnataka. Upon release, the film generally met with average reviews from the critics and audience."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sisters_(2015_film)"}, "Title": {"type": "literal", "value": "Sisters"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jason_Moore_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amy_Poehler|http://dbpedia.org/resource/Dianne_Wiest|http://dbpedia.org/resource/Ike_Barinholtz|http://dbpedia.org/resource/James_Brolin|http://dbpedia.org/resource/John_Cena|http://dbpedia.org/resource/John_Leguizamo|http://dbpedia.org/resource/Madison_Davenport|http://dbpedia.org/resource/Maya_Rudolph|http://dbpedia.org/resource/Samantha_Bee"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "118"}, "Description": {"type": "literal", "value": "Sisters is a 2015 American comedy film directed by Jason Moore and written by Paula Pell. The film stars Tina Fey and Amy Poehler, and was released on December 18, 2015 by Universal Pictures. The film received mixed reviews, though most critics praised the chemistry of the lead actresses Fey and Poehler. The film, which opened the same weekend as the highly-anticipated Star Wars: The Force Awakens, grossed $105 million on a budget of $30 million."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Muppets_(film)"}, "Title": {"type": "literal", "value": "The Muppets"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Bobin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amy_Adams|http://dbpedia.org/resource/Chris_Cooper|http://dbpedia.org/resource/Jason_Segel|http://dbpedia.org/resource/Rashida_Jones"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "The Muppets is a 2011 American musical comedy film and the seventh theatrical film featuring the Muppets. The film is directed by James Bobin, written by Jason Segel and Nicholas Stoller, produced by David Hoberman and Todd Lieberman, and stars Segel, Amy Adams, Chris Cooper and Rashida Jones, as well as Muppet performers Steve Whitmire, Eric Jacobson, Dave Goelz, Bill Barretta, David Rudman, Matt Vogel, and Peter Linz. Bret McKenzie of comedy band Flight of the Conchords served as music supervisor, writing four of the film's five original songs, and Christophe Beck composed the film's score. In The Muppets, devoted fan Walter, his brother Gary, and Gary's girlfriend Mary, help Kermit the Frog reunite the Muppets, as they must raise $10 million to save the Muppet Theater from Tex Richman, a businessman who plans to demolish the studio to drill for oil. Walt Disney Pictures announced the film's development in March 2008, with Segel and Stoller writing the screenplay, and Mandeville Films co-producing the film. Bobin was hired to direct in January 2010, and the film's supporting cast was filled out in October of the same year, with the casting of Adams, Cooper, and Jones. Filming began in September 2010 and was completed entirely in Los Angeles. The film was the first theatrical Muppet production without the involvement of veteran Muppet performers Frank Oz and Jerry Nelson, although Nelson provides an uncredited vocal cameo. Instead, their characters are performed by Jacobson and Vogel, respectively, marking their theatrical feature film debut as those characters. The Muppets premiered at the Savannah Film Festival and was released theatrically in North America on November 23, 2011. The film was a critical and commercial success; grossing $165 million worldwide and garnering praise for its humor, screenplay, and music. The film won an Academy Award for Best Original Song for McKenzie's \"Man or Muppet\", as well as garnering BAFTA and Critic's Choice Awards nominations. A sequel, Muppets Most Wanted, was released on March 21, 2014."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Vicious_Kind"}, "Title": {"type": "literal", "value": "The Vicious Kind"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lee_Toland_Krieger"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Scott_(actor)|http://dbpedia.org/resource/Alex_Frost|http://dbpedia.org/resource/Brittany_Snow|http://dbpedia.org/resource/J.K._Simmons"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "The Vicious Kind is a 2009 drama film directed and written by Lee Toland Krieger. The screenplay was originally set in a small town in Rhode Island, but the film was shot in Norfolk, CT, which also became the character's hometown. The film stars Adam Scott, Brittany Snow, Alex Frost and J.K. Simmons. The film premiered at the 2009 Sundance Film Festival, and opened in Los Angeles on December 11, 2009 at the Laemlle Sunset 5. \"The Vicious Kind\" was nominated for two 2010 Independent Spirit Awards, Scott for Best Male Lead, and Krieger for Best Screenplay. In 2009, \"The Vicious Kind\" won several awards at film festivals around the world including Adam Scott for Best Actor at the Strasbourg International Film Festival, Scott for Best Performance at the Sidewalk Moving Picture Festival, Lee Toland Krieger for Emerging Filmmaker at the Denver Film Festival, and Best Feature at the New Orleans Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Toxic_Avenger_Part_III:_The_Last_Temptation_of_Toxie"}, "Title": {"type": "literal", "value": "The Last Temptation of Toxie|The Toxic Avenger Part III:"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lloyd_Kaufman|http://dbpedia.org/resource/Michael_Herz_(producer)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Lisa_Gaye_(actress_born_1960)|http://dbpedia.org/resource/Phoebe_Legere"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1980s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "The Toxic Avenger III: The Last Temptation of Toxie is a 1989 American superhero comedy horror film and the second sequel to The Toxic Avenger."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Troma_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Annan_Thambi"}, "Title": {"type": "literal", "value": "Annan Thambi"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Anwar_Rasheed"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gopika|http://dbpedia.org/resource/Harisree_Ashokan|http://dbpedia.org/resource/Janardhanan_(actor)|http://dbpedia.org/resource/Jayan_Cherthala|http://dbpedia.org/resource/Lakshmi_Rai|http://dbpedia.org/resource/Mammootty|http://dbpedia.org/resource/Salim_Kumar|http://dbpedia.org/resource/Shivani_Bhai|http://dbpedia.org/resource/Siddique_(actor)|http://dbpedia.org/resource/Suraj_Venjaramoodu"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Annan Thambi is a 2008 Malayalam film directed by Anwar Rasheed, starring Mammootty, Lakshmi Rai and Gopika. Mammootty plays twins Achu and Appu in the film. The film was a success at the box office."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/1981_(film)"}, "Title": {"type": "literal", "value": "1981"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ricardo_Trogi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jean-Carl_Boucher"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "1981, longer title 1981: L'ann\u00e9e ou je suis devenu un menteur (1981: The Year I Became a Liar) is a 2009 Canadian French language comedy-drama film from Quebec written and directed by Ricardo Trogi. It was released on 4 September 2009. The film is autobiographical about the youth years of the director as told by him during the film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Alliance_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/A_Prairie_Home_Companion_(film)"}, "Title": {"type": "literal", "value": "A Prairie Home Companion"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Paul_Thomas_Anderson|http://dbpedia.org/resource/Robert_Altman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Garrison_Keillor|http://dbpedia.org/resource/John_C._Reilly|http://dbpedia.org/resource/Kevin_Kline|http://dbpedia.org/resource/Lily_Tomlin|http://dbpedia.org/resource/Lindsay_Lohan|http://dbpedia.org/resource/Maya_Rudolph|http://dbpedia.org/resource/Meryl_Streep|http://dbpedia.org/resource/Tommy_Lee_Jones|http://dbpedia.org/resource/Virginia_Madsen|http://dbpedia.org/resource/Woody_Harrelson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "A Prairie Home Companion is a 2006 American comedy film directed by Robert Altman and is his final film. The film is a fictional representation of behind-the-scenes activities at the long-running public radio show of the same name. The film received mostly positive reviews and was a moderate box office success on its small budget. The film features an ensemble cast including Meryl Streep, Kevin Kline, Tommy Lee Jones, Woody Harrelson, Lily Tomlin, Garrison Keillor, Virginia Madsen, John C. Reilly, and Lindsay Lohan."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/New_Line_Cinema|http://dbpedia.org/resource/Picturehouse_(company)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Rosencrantz_and_Guildenstern_Are_Undead"}, "Title": {"type": "literal", "value": "Rosencrantz and Guildenstern Are Undead"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jordan_Galland"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Devon_Aoki|http://dbpedia.org/resource/Jake_Hoffman|http://dbpedia.org/resource/John_Ventimiglia"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Rosencrantz and Guildenstern Are Undead is a 2009 American independent film written and directed by Jordan Galland. The film's title refers to a fictitious play-within-the-movie, which is a comic reinterpretation of Shakespeare\u2019s Hamlet and its aftermath and whose title is a reference to the play Rosencrantz and Guildenstern are Dead. The cast includes Devon Aoki, John Ventimiglia, Kris Lemche, Ralph Macchio, Jeremy Sisto and Waris Ahluwalia. The film stars Jake Hoffman (son of Dustin Hoffman). An original musical score was composed and performed by Sean Lennon. Shooting began in late November, 2007, and principal photography was completed on December 23, 2007. It was filmed entirely in New York City with the Red Digital Cinema Camera, an extra-high-definition video camera."}, "Distributor": {"type": "literal", "value": "http://www.imdb.com/company/co0034057/?ref_=fn_al_co_1"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Art_Machine"}, "Title": {"type": "literal", "value": "Art Machine"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Doug_Karr"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jessica_Szohr|http://dbpedia.org/resource/Joey_Lauren_Adams|http://dbpedia.org/resource/Joseph_Cross_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Art Machine is a 2012 film by writer/director Doug Karr starring Joseph Cross, Jessica Szohr, and Joey Lauren Adams. At age six, child prodigy painter Declan Truss was propelled into the art world as a rare marvel, but by seventeen, the tightrope of notoriety is catching up with him. Declan seeks inspiration as the immense pressures of an impending coming-of-age exhibition loom. His world expands when he stumbles on a commune of rebellious freethinkers. Declan reaches beyond painting to wild experimentation, quickly spinning out of control. As he becomes consumed by his mania, he begins to regard his family as part of a system that\u2019s keeping him down, and magnetically rallies the rebels to take part in his progressively subversive art exhibition\u2014one that will ultimately shock and destroy. Set against the backdrop of Brooklyn\u2019s vibrant art and music scene, Art Machine is a dark comedy about the tenuous relationship between art and commerce, the fine line between creative genius and clinical mania, and the damaging effects of fame. The film was produced by Pie Face Pictures in association with Sundial Pictures."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Sapphires_(film)"}, "Title": {"type": "literal", "value": "The Sapphires"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Wayne_Blair"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_O'Dowd|http://dbpedia.org/resource/Deborah_Mailman|http://dbpedia.org/resource/Eka_Darville|http://dbpedia.org/resource/Jessica_Mauboy|http://dbpedia.org/resource/Miranda_Tapsell|http://dbpedia.org/resource/Shari_Sebbens|http://dbpedia.org/resource/Tory_Kittles"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Australian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103|98"}, "Description": {"type": "literal", "value": "The Sapphires is a 2012 Australian musical comedy-drama film produced by Goalpost Pictures and distributed by Hopscotch Films, based on the 2004 stage play of the same name which is loosely based on a true story. The film is directed by Wayne Blair and written by Keith Thompson and Tony Briggs, the latter of whom wrote the play. The Sapphires centres around four indigenous women, Gail (Deborah Mailman), Julie (Jessica Mauboy), Kay (Shari Sebbens) and Cynthia (Miranda Tapsell), who are discovered by a talent scout (Chris O'Dowd), and form a music group named The Sapphires, travelling to Vietnam in 1968 to sing for troops during the war. Production began in 2010, with the casting of the four members of The Sapphires, and filming taking place in and around Albury in Australia and Vietnam during August and September 2011. The Sapphires made its world premiere at the 2012 Cannes Film Festival on 19 May 2012 during its out of competition screenings, was theatrically released in Australia on 9 August and received a limited release in the United States on 22 March 2013."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/The_Weinstein_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sahara_(2005_film)"}, "Title": {"type": "literal", "value": "Sahara"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Breck_Eisner"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Lambert_Wilson|http://dbpedia.org/resource/Matthew_McConaughey|http://dbpedia.org/resource/Pen\u00e9lope_Cruz|http://dbpedia.org/resource/Steve_Zahn|http://dbpedia.org/resource/William_H._Macy"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "124"}, "Description": {"type": "literal", "value": "Sahara is a 2005 American\u2013Spanish action-comedy adventure film directed by Breck Eisner that is based on the best-selling book of the same name by Clive Cussler. It stars Matthew McConaughey, Steve Zahn and Pen\u00e9lope Cruz. It opened at number one in the US box office, grossing $18 million on its first weekend. From a financial perspective, Sahara was unusual because it performed reasonably well, generating $119 million in gross box-office sales. However, due to its huge budget\u2014including $130 million in production costs and $81.1 million in distribution expenses\u2014its box-office take amounted to barely half of its expenses. The film lost approximately $105 million according to a financial executive assigned to the movie; however, Hollywood accounting methods assign losses at $78.3 million, taking into account projected revenue. According to Hollywood accounting, the film has a projected revenue of $202.9 million against expenses of $281.2 million. The Los Angeles Times presented an extensive special report on April 15, 2007, dissecting the budget of Sahara as an example of how Hollywood movies can cost so much to produce and fail. Many of the often closely held documents had become public domain after a lawsuit involving the film. Among some of the items in the budget were bribes to the Moroccan government, some of which may have been legally questionable under American law."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Love_on_Credit"}, "Title": {"type": "literal", "value": "Love on Credit"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Leste_Chen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chen_Kun|http://dbpedia.org/resource/Liao_Fan|http://dbpedia.org/resource/Lin_Chi-ling|http://dbpedia.org/resource/Tony_Yang"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Chinese_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Love on Credit (Chinese: \u5e78\u798f\u989d\u5ea6) is a 2011 Chinese romantic-comedy film created by Zhang Yibai and released by Xiaoma Benteng. It was directed by Leste Chen. The film stars Lin Chi-ling, Chen Kun, Liao Fan, Tony Yang and Jiayi Zhang."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Seeing_Other_People"}, "Title": {"type": "literal", "value": "Seeing Other People"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Wallace_Wolodarsky"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Richter|http://dbpedia.org/resource/Bryan_Cranston|http://dbpedia.org/resource/Helen_Slater|http://dbpedia.org/resource/Jay_Mohr|http://dbpedia.org/resource/Jill_Ritchie|http://dbpedia.org/resource/Josh_Charles|http://dbpedia.org/resource/Julianne_Nicholson|http://dbpedia.org/resource/Lauren_Graham"}, "Published": {"type": "literal", "value": "2004-05-07"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Seeing Other People is a 2004 comedy film about a couple who decide to see other people two months before their wedding."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lantern_Lane_Entertainment|http://dbpedia.org/resource/Shaw_Organisation"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mitsuko_Delivers"}, "Title": {"type": "literal", "value": "Hara ga Kore Nande"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Yuya_Ishii_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aoi_Nakamura|http://dbpedia.org/resource/Riisa_Naka"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Japanese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "Mitsuko Delivers (\u30cf\u30e9\u304c\u30b3\u30ec\u306a\u3093\u3067 Hara ga Kore Nande) is a 2011 Japanese comedy film directed by Yuya Ishii."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Fasten_Your_Seatbelt_(film)"}, "Title": {"type": "literal", "value": "Fasten Your Seatbelt"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ha_Jung-woo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jung_Kyung-ho_(actor,_born_1983)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:South_Korean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Fasten Your Seatbelt (Hangul: \ub864\ub7ec\ucf54\uc2a4\ud130; RR: Rolleo Koseuteo; lit. \"Rollercoaster\") is a 2013 South Korean comedy film written and directed by actor Ha Jung-woo, in his directorial debut. The film made its world premiere at the 18th Busan International Film Festival, and was released in theaters on October 17, 2013."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/CJ_E&M_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ceremony_(film)"}, "Title": {"type": "literal", "value": "Ceremony"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Max_Winkler_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jake_Johnson|http://dbpedia.org/resource/Lee_Pace|http://dbpedia.org/resource/Michael_Angarano|http://dbpedia.org/resource/Reece_Thompson|http://dbpedia.org/resource/Uma_Thurman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Ceremony is a 2010 American film directed by Max Winkler, in his feature film directorial debut. The film stars Michael Angarano, Uma Thurman, Lee Pace, Rebecca Mader and Reece Thompson. It premiered at the Toronto International Film Festival in September 2010. The film was released on VOD on March 4, 2011 and opened in theaters April 8, 2011."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Wood"}, "Title": {"type": "literal", "value": "The Wood"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rick_Famuyiwa"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aubrey_Allen|http://dbpedia.org/resource/Jascha_Washington|http://dbpedia.org/resource/Malinda_Williams|http://dbpedia.org/resource/Omar_Epps|http://dbpedia.org/resource/Richard_T._Jones|http://dbpedia.org/resource/Sean_Nelson_(actor)|http://dbpedia.org/resource/Taye_Diggs"}, "Published": {"type": "literal", "value": "1999-07-16"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "The Wood is a 1999 coming of age film, written by Rick Famuyiwa and Todd Boyd. Famuyiwa also directed the film, which stars Omar Epps, Richard T. Jones, and Taye Diggs."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/War_Machine_(film)"}, "Title": {"type": "literal", "value": "War Machine"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_Mich\u00f4d"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anthony_Michael_Hall|http://dbpedia.org/resource/Ben_Kingsley|http://dbpedia.org/resource/Tilda_Swinton|http://dbpedia.org/resource/Topher_Grace|http://dbpedia.org/resource/Will_Poulter"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Comedy_films_based_on_actual_events"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "War Machine is an upcoming American comedy war film directed and written by David Mich\u00f4d, based on the nonfiction book The Operators by Michael Hastings. The film stars Brad Pitt, Anthony Michael Hall, Topher Grace, Will Poulter, Tilda Swinton, Jonathan Ing and Ben Kingsley."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Netflix"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/72_Days"}, "Title": {"type": "literal", "value": "72 Days"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Danilo_\u0160erbed\u017eija"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bogdan_Dikli\u0107|http://dbpedia.org/resource/Kre\u0161imir_Miki\u0107|http://dbpedia.org/resource/Rade_\u0160erbed\u017eija|http://dbpedia.org/resource/\u017divko_Ano\u010di\u0107"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "72 Days (Croatian: Sedamdeset i dva dana) is a 2010 Croatian-Serbian black comedy film starring Rade \u0160erbed\u017eija and directed by his son Danilo \u0160erbed\u017eija. The film was selected as the Croatian entry for the Best Foreign Language Film at the 84th Academy Awards, but it did not make the final shortlist."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hit_and_Run_(2012_film)"}, "Title": {"type": "literal", "value": "Hit and Run"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dax_Shepard"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bradley_Cooper|http://dbpedia.org/resource/Dax_Shepard|http://dbpedia.org/resource/Kristen_Bell|http://dbpedia.org/resource/Kristin_Chenoweth|http://dbpedia.org/resource/Tom_Arnold_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Hit and Run is a 2012 American action comedy film written by Dax Shepard, with David Palmer and Shepard co-directing again (their first film being Brother's Justice in 2010). The film stars Shepard and his now-wife Kristen Bell, with Kristin Chenoweth, Tom Arnold, and Bradley Cooper. It was released on August 22, 2012."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Open_Road_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Those_Happy_Days_(2006_film)"}, "Title": {"type": "literal", "value": "Those Happy Days"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Olivier_Nakache_&_\u00c9ric_Toledano"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jean-Paul_Rouve|http://dbpedia.org/resource/Jos\u00e9phine_de_Meaux|http://dbpedia.org/resource/Lannick_Gautry|http://dbpedia.org/resource/Marilou_Berry|http://dbpedia.org/resource/Omar_Sy"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "Those Happy Days (French: Nos jours heureux) is a 2006 French film, directed and written by Olivier Nakache & \u00c9ric Toledano and starring Marilou Berry, Jean-Paul Rouve and Omar Sy"}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/SND_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Piranha_3D"}, "Title": {"type": "literal", "value": "Piranha 3D"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alexandre_Aja"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Scott_(actor)|http://dbpedia.org/resource/Christopher_Lloyd|http://dbpedia.org/resource/Elisabeth_Shue|http://dbpedia.org/resource/Jerry_O'Connell|http://dbpedia.org/resource/Jessica_Szohr|http://dbpedia.org/resource/Richard_Dreyfuss|http://dbpedia.org/resource/Steven_R._McQueen|http://dbpedia.org/resource/Ving_Rhames"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Piranha 3D is a 2010 American 3D horror comedy film that serves as a loose remake of the 1978 horror film Piranha. It was directed by Alexandre Aja and has an ensemble cast featuring Elisabeth Shue, Adam Scott, Jerry O'Connell, Ving Rhames, Steven R. McQueen, Jessica Szohr, Christopher Lloyd, Richard Dreyfuss, Dina Meyer, Kelly Brook, Riley Steele, and Eli Roth."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Dimension_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Orange_(2010_film)"}, "Title": {"type": "literal", "value": "Orange"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bhaskar_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Genelia_D'Souza|http://dbpedia.org/resource/Prabhu_Ganesan|http://dbpedia.org/resource/Ram_Charan|http://dbpedia.org/resource/Sanchita_Shetty|http://dbpedia.org/resource/Shazahn_Padamsee"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "160"}, "Description": {"type": "literal", "value": "Orange (Telugu: \u0c06\u0c30\u0c02\u0c1c\u0c4d) is a 2010 Telugu romantic dramedy film directed by Bhaskar in his third venture after Bommarillu and Parugu. The film features Ram Charan and Genelia D'Souza with Shazahn Padamsee playing a pivotal role. The film, whose music was composed by Harris Jayaraj, began the first schedule in February 2010, and was released on 26 November 2010. The film was dubbed in Malayalam as Hai Ram Charan and Tamil as Ram Charan.Orange Satellite rights were sold for \u20b96.5 crore (US$970,000)."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Cyrano_Agency"}, "Title": {"type": "literal", "value": "Cyrano Agency"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kim_Hyun-seok_(filmmaker)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Choi_Daniel|http://dbpedia.org/resource/Lee_Min-jung|http://dbpedia.org/resource/Park_Chul-min|http://dbpedia.org/resource/Park_Shin-hye|http://dbpedia.org/resource/Uhm_Tae-woong"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "121"}, "Description": {"type": "literal", "value": "Cyrano Agency (Hangul: \uc2dc\ub77c\ub178; \uc5f0\uc560\uc870\uc791\ub2e8; RR: Sirano; yeonaejojakdan; lit. \"Cyrano Dating Agency\") is a 2010 South Korean romantic comedy starring Uhm Tae-woong, Lee Min-jung, Choi Daniel, Park Shin-hye and Park Chul-min. As the title suggests, it is a modern take on Edmond Rostand's 1897 play Cyrano de Bergerac, and the plot focuses on a dating agency that helps its customers win the hearts of the people they desire. Produced by Myung Films and distributed by Lotte Entertainment, the film was released on September 16, 2010 and ran for 121 minutes."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lotte_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Straitjacket_Lottery"}, "Title": {"type": "literal", "value": "The Straitjacket Lottery"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Doug_Karr"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Jones_(comedian)|http://dbpedia.org/resource/David_Huband|http://dbpedia.org/resource/Joe_Cobden|http://dbpedia.org/resource/Tara_Slone"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Straitjacket Lottery is a 2004 film from writer/director Doug Karr starring Andy Jones, David Huband, Tara Slone and Joe Cobden. When Boris Durban loses a busload of mental health patients, he\u2019ll resort to any means in order to get them back. This 22 minute comedic short, set in urban Nova Scotia, is a window into the erratic world of mental health and the thin line between idiosyncrasy and insanity."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Toxic_Avenger_(film)"}, "Title": {"type": "literal", "value": "The Toxic Avenger"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lloyd_Kaufman|http://dbpedia.org/resource/Michael_Herz_(producer)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/R._L._Ryan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1980s_comedy_horror_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "The Toxic Avenger is a 1984 American superhero horror comedy film directed by Michael Herz and Lloyd Kaufman (credited as Samuel Weil) and written by Kaufman and Joe Ritter. The film was released by Troma Entertainment, known for producing low budget B-movies with campy concepts and gruesome violence. Virtually ignored upon its first release, The Toxic Avenger caught on with filmgoers after a long and successful midnight movie engagement at the famed Bleecker Street Cinemas in New York City in late 1985. It now is regarded as a cult classic. The film has generated three film sequels, a stage musical production and a children's TV cartoon. Two less successful sequels, The Toxic Avenger Part II and The Toxic Avenger Part III: The Last Temptation of Toxie, were filmed as one. Director Lloyd Kaufman realized that he had shot far too much footage for one film and re-edited it into two. A third independent sequel was also released, titled Citizen Toxie: The Toxic Avenger IV. A fourth sequel entitled The Toxic Avenger 5: Toxic Twins is planned for a future release. An animated children's TV series spin-off, Toxic Crusaders, featured Toxie as the leader of a team of mutated superheroes who fought against evil alien polluters. The cartoon series was short-lived and quickly cancelled. New Line Cinema had planned a live-action film based on the cartoon, but the deal fell through."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Troma_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Just_Buried"}, "Title": {"type": "literal", "value": "Just Buried"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chaz_Thorne"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Graham_Greene_(actor)|http://dbpedia.org/resource/Jay_Baruchel|http://dbpedia.org/resource/Nigel_Bennett|http://dbpedia.org/resource/Rose_Byrne"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Black_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Just Buried is a 2007 Canadian film written and directed by Chaz Thorne and stars Jay Baruchel and Rose Byrne."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Marguerite_(film)"}, "Title": {"type": "literal", "value": "Marguerite"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Xavier_Giannoli"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Catherine_Frot"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Tragicomedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "128"}, "Description": {"type": "literal", "value": "Marguerite is a French/Czech/Belgian 2015 comedy and drama film directed by Xavier Giannoli and written by Giannoli and Marcia Romano, loosely inspired by the life of Florence Foster Jenkins. Set in the Golden Twenties, the film stars Catherine Frot as a socialite and aspiring opera singer who believes she has a beautiful voice. The film is an international co-production among France, the Czech Republic, and Belgium. Marguerite received eleven nominations at the 41st C\u00e9sar Awards, winning for Best Actress, Best Costume Design, Best Sound, and Best Production Design."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Canal+|http://dbpedia.org/resource/Centre_national_de_la_cin\u00e9matographie|http://dbpedia.org/resource/Eurimages|http://dbpedia.org/resource/France_2|http://dbpedia.org/resource/France_T\u00e9l\u00e9visions|http://dbpedia.org/resource/La_Banque_postale"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Diary_of_a_Teenage_Girl"}, "Title": {"type": "literal", "value": "The Diary of a Teenage Girl"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Marielle_Heller"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alexander_Skarsg\u00e5rd|http://dbpedia.org/resource/Bel_Powley|http://dbpedia.org/resource/Christopher_Meloni|http://dbpedia.org/resource/Kristen_Wiig"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "The Diary of a Teenage Girl is a 2015 American coming-of-age drama written and directed by Marielle Heller, based on the graphic novel The Diary of a Teenage Girl: An Account in Words and Pictures by Phoebe Gloeckner. The film stars Bel Powley as a 15-year-old girl who becomes sexually active by starting a relationship with her mother's boyfriend. It also stars Kristen Wiig, Alexander Skarsg\u00e5rd, Christopher Meloni, Quinn Nagle, and Austin Lyon. It premiered at the 2015 Sundance Film Festival and had a limited release on August 7, 2015 by Sony Pictures Classics."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sony_Pictures_Classics"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Seconds_(2014_film)"}, "Title": {"type": "literal", "value": "Seconds"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Aneesh_Upasana"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jayasurya"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Seconds is a Malayalam thriller film directed by Aneesh Upasana. The film stars Jayasurya, Aparna Nair, Vinay Forrt, Ajay Nataraj, Ambika Mohan, Riyaz Khan, Anusree Nair, Salim Kumar, Shankar Ramakrishnan and Vinayakan in prominent roles. It was released on December 5, 2014. The film is a multi-narrative, told in a non linear format, which revolves around a murder that happens in the elevator of a city apartment. Four unrelated persons of which one was a ruffian were in the lift; two were left seriously injured and one dead. The police officer on investigation, Bimal Vaas, asks for the whereabouts of the persons who were in the lift and their lives on the day leading up to the incident is shown."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/A_Five_Star_Life"}, "Title": {"type": "literal", "value": "A Five Star Life"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Maria_Sole_Tognazzi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "A Five Star Life (Italian: Viaggio sola, also known as I Travel Alone) is a 2013 Italian comedy-drama film directed by Maria Sole Tognazzi. For her performance, Margherita Buy won the David di Donatello for Best Actress. The film also won the Nastro d'Argento for Best Comedy."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Love_at_First_Fight_(film)"}, "Title": {"type": "literal", "value": "Love at First Fight"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Thomas_Cailley"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ad\u00e8le_Haenel|http://dbpedia.org/resource/K\u00e9vin_Aza\u00efs"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:French_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Love at First Fight (French: Les Combattants) is a 2014 French romantic comedy film directed by Thomas Cailley. It was screened as part of the Directors' Fortnight section of the 2014 Cannes Film Festival, where it won the FIPRESCI Prize in the Parallel Section. In January 2015, the film received nine nominations at the 40th C\u00e9sar Awards, winning Best Actress, Most Promising Actor and Best First Feature Film."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Ugly_Truth"}, "Title": {"type": "literal", "value": "The Ugly Truth"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Robert_Luketic"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gerard_Butler|http://dbpedia.org/resource/Katherine_Heigl"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "The Ugly Truth is a 2009 American romantic comedy film starring Katherine Heigl and Gerard Butler. The film was released in North America on July 24, 2009 by Columbia Pictures."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Neighbor_(2009_film)"}, "Title": {"type": "literal", "value": "Neighbor"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Robert_A._Masciantonio"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/America_Olivo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Neighbor is a 2009 American horror film written and directed by Robert A. Masciantonio."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Da_Thadiya"}, "Title": {"type": "literal", "value": "Da Thadiya"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Aashiq_Abu"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ann_Augustine|http://dbpedia.org/resource/Arundathi_Nag|http://dbpedia.org/resource/Edavela_Babu|http://dbpedia.org/resource/Maniyanpilla_Raju|http://dbpedia.org/resource/Nivin_Pauly|http://dbpedia.org/resource/Sekhar_Menon|http://dbpedia.org/resource/Sreenath_Bhasi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Da Thadiya (Malayalam: \u0d1f\u0d3e \u0d24\u0d1f\u0d3f\u0d2f\u0d3e, Hey Fatso) is a 2012 Malayalam romantic comedy film directed by Aashiq Abu, and starring Sekhar Menon, Sreenath Bhasi and Ann Augustine in the lead roles. The cast also includes Nivin Pauly, Arundathi Nag, Maniyanpilla Raju and Edavela Babu. The film was produced by Anto Joseph in association with OPM cinema. DJ Sekhar Menon who had worked as the same in around 500 stages makes his film debut as an actor. The film released on 21 December 2012 to mixed to positive reviews from critics and audience. As part of the movie's promotional activities, free tickets were offered toil appeared in the posters of this film."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Miss_Granny"}, "Title": {"type": "literal", "value": "Miss Granny"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Hwang_Dong-hyuk"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Na_Moon-hee|http://dbpedia.org/resource/Shim_Eun-kyung"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:South_Korean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "124"}, "Description": {"type": "literal", "value": "Miss Granny (Hangul: \uc218\uc0c1\ud55c \uadf8\ub140; RR: Susanghan Geunyeo; lit. \"Suspicious Girl\") is a 2014 South Korean comedy-drama film directed by Hwang Dong-hyuk. Na Moon-hee stars as a woman in her 70s who magically finds herself in the body of her 20-year-old self (Shim Eun-kyung) after having her picture taken at a mysterious photo studio. After opening in theaters on January 22, 2014, it became a huge box office hit, with 8.65 million tickets sold."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/CJ_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Inbetweeners_2"}, "Title": {"type": "literal", "value": "The Inbetweeners 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Damon_Beesley|http://dbpedia.org/resource/Iain_Morris"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Blake_Harrison|http://dbpedia.org/resource/James_Buckley_(actor)|http://dbpedia.org/resource/Joe_Thomas_(actor)|http://dbpedia.org/resource/Simon_Bird"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_teen_comedy_films|http://dbpedia.org/resource/Category:British_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "The Inbetweeners 2 is a 2014 British comedy film and sequel to The Inbetweeners Movie (2011), which is based on the E4 sitcom The Inbetweeners. It was written and directed by series creators Damon Beesley and Iain Morris. The film involves four school friends who meet up again for a holiday in Australia, and stars Simon Bird, Joe Thomas, James Buckley and Blake Harrison. In media interviews, the film's writers and actors stated that it was to be an end to the series. The Inbetweeners 2 was released on 6 August 2014 in the United Kingdom and the Republic of Ireland, to positive reception from critics. It surpassed the record of its predecessor for the highest gross on the opening day of a comedy in the UK, with \u00a32.75 million, and ended its first weekend with a gross of \u00a312.5 million, the largest opening of any film in 2014, then remained on top for a second week. With an overall gross of \u00a333.3 million, it was the highest-grossing British film in the domestic market in 2014. On 21 August, it was released in Australia, to a mixed reception, and topped the box office in its opening weekend."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Entertainment_Film_Distributors"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Bwark_Productions|http://dbpedia.org/resource/Film4_Productions"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Continental,_a_Film_Without_Guns"}, "Title": {"type": "literal", "value": "Continental, un film sans fusil"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/St\u00e9phane_Lafleur"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Fanny_Mallette|http://dbpedia.org/resource/Gilbert_Sicotte|http://dbpedia.org/resource/Marie-Ginette_Guay|http://dbpedia.org/resource/Pauline_Martin|http://dbpedia.org/resource/R\u00e9al_Boss\u00e9"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "Continental, a Film Without Guns (French: Continental, un film sans fusil) is a 2007 Canadian comedy-drama film directed and written by St\u00e9phane Lafleur."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Christal_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/D.E.B.S._(2004_film)"}, "Title": {"type": "literal", "value": "D.E.B.S."}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Angela_Robinson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Devon_Aoki|http://dbpedia.org/resource/Jill_Ritchie|http://dbpedia.org/resource/Jordana_Brewster|http://dbpedia.org/resource/Meagan_Good|http://dbpedia.org/resource/Sara_Foster"}, "Published": {"type": "literal", "value": "2004-01-22|2005-03-25"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films|http://dbpedia.org/resource/Category:Spy_comedy_films|http://dbpedia.org/resource/Category:Teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "D.E.B.S. is a 2004 American action-comedy film written and directed by Angela Robinson. It is an expansion of the short film D.E.B.S. that made the festival circuit (including the Sundance Film Festival). The film is both a parody and an emulation of the Charlie's Angels format. The plot revolves around a love story between one of the heroes and the villain. Their relationship is hindered because they are on opposite sides of the law and the fact that they are both female."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Screen_Gems"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Violet_Tendencies"}, "Title": {"type": "literal", "value": "Violet Tendencies"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Casper_Andreas"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Marcus_Patrick|http://dbpedia.org/resource/Mindy_Cohn"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "Violet Tendencies is a 2010 romantic comedy film directed by Casper Andreas, written by Jesse Archer, and starring Mindy Cohn and Marcus Patrick. The film was released in the United States on November 19, 2010, and came out on video on demand in March 2011 and DVD on May 24, 2011."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Embrem_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hoodwinked!"}, "Title": {"type": "literal", "value": "Hoodwinked!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Cory_Edwards|http://dbpedia.org/resource/Todd_Edwards_(film_writer)|http://dbpedia.org/resource/Tony_Leech"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Dick|http://dbpedia.org/resource/Anne_Hathaway|http://dbpedia.org/resource/Anthony_Anderson|http://dbpedia.org/resource/Chazz_Palminteri|http://dbpedia.org/resource/David_Ogden_Stiers|http://dbpedia.org/resource/Glenn_Close|http://dbpedia.org/resource/Jim_Belushi|http://dbpedia.org/resource/Patrick_Warburton|http://dbpedia.org/resource/Xzibit"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "Hoodwinked! (alternatively styled Hoodwinked) is a 2005 American computer-animated family comedy film. It retells the folktale Little Red Riding Hood as a police investigation, using flashbacks to show multiple characters' points of view. It was produced independently by Blue Yonder Films with Kanbar Entertainment, directed and written by Cory Edwards, Todd Edwards, and Tony Leech, and produced by Katie Hooten, Maurice Kanbar, David K. Lovegren, Sue Bea Montgomery, and Preston Stutzman. The film was released by The Weinstein Company in Los Angeles, California, on December 16, 2005 for a one-week engagement before expanding nationwide on January 13, 2006. The cast features Anne Hathaway, Glenn Close, Jim Belushi, Patrick Warburton, Anthony Anderson, David Ogden Stiers, Xzibit, Chazz Palminteri and Andy Dick. Hoodwinked! was among the earliest computer-animated films to be completely independently funded. Working apart from a major studio allowed the filmmakers greater creative control, but also restrained them economically. Due to the film's small budget, its animation was produced in the Philippines, with a less realistic design inspired by stop motion films. The Weinstein Company did not sign on as the film's distributor until near the end of production, and while the company had many roles recast, it otherwise made few changes to the film. Structurally, the film was inspired by non-linear crime dramas, such as Rashomon and Pulp Fiction. It was released shortly after the first two installments in the successful Shrek series, which accentuated the fairy tale parody genre of which it is a part. The film however, intentionally deviated from that series in its style of humor and in certain plot elements. This was in part based on Cory Edwards' concerns over exposing children to the high level of cynicism often found in the genre. Critical reception to the film was varied; although its script and cast were praised by many reviews, its animation quality was heavily criticized. The film was a commercial success, earning over thirteen times its less- than-$8 million budget. A sequel, Hoodwinked Too! Hood vs. Evil, directed by Mike Disa, and written by the Edwards brothers and Leech, was released in 2011 to negative reviews and financial failure."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/The_Weinstein_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Queen_(film)"}, "Title": {"type": "literal", "value": "Queen"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Vikas_Bahl"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kangana_Ranaut|http://dbpedia.org/resource/Lisa_Haydon|http://dbpedia.org/resource/Rajkummar_Rao"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "146"}, "Description": {"type": "literal", "value": "Queen is a 2014 Indian comedy-drama film directed by Vikas Bahl and produced by Anurag Kashyap, Vikramaditya Motwane, and Madhu Mantena. The film stars Kangana Ranaut in the lead role, with Lisa Haydon and Rajkummar Rao playing supporting roles. Rani, an under-confident Punjabi girl from New Delhi embarks on her honeymoon to Paris and Amsterdam by herself after her fianc\u00e9 calls off their wedding. Bahl co-wrote the script of Queen with Chaitally Parmar and Parveez Shaikh. Anvita Dutt Guptan wrote the dialogues for the film. Ranaut, who was encouraged by Bahl to improvise her lines during filming, is credited as an additional dialogue writer. Amit Trivedi provided the musical score and Guptan also wrote the lyrics. Principal photography of the film began in 2012 and took 45 days to complete. Queen premiered at the Busan International Film Festival and released theatrically on 7 March 2014. The film garnered critical acclaim, with praise directed to the direction, writing, and Ranaut's performance. It is widely considered by critics to be one of the best films of 2014. Made on a budget of \u20b912.5 crore (US$1.9 million), the film earned over \u20b9108 crore (US$16 million) at the global box-office, emerging as a commercial success. Queen won several awards. At the 60th Filmfare Awards ceremony, the film won a leading six awards, including Best Film, Best Director, and Best Actress for Ranaut. At the 62nd National Film Awards ceremony, the film won the Best Hindi Film and Best Actress awards."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Viacom_18_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bol_Bachchan"}, "Title": {"type": "literal", "value": "Bol Bachchan"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rohit_Shetty"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Abhishek_Bachchan|http://dbpedia.org/resource/Ajay_Devgn|http://dbpedia.org/resource/Asin|http://dbpedia.org/resource/Prachi_Desai"}, "Published": {"type": "literal", "value": "2012-07-06"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "149"}, "Description": {"type": "literal", "value": "Bol Bachchan is a 2012 Bollywood action comedy film. The film, made on a budget of \u20b9700 million (US$10 million), is inspired by the 1979 film, Gol Maal. Bol Bachchan's official trailer was released on 24 May 2012 and the film was released on 6 July 2012 in around 2575 screens worldwide with 2700 prints. It received mixed critical acclaim but had a good opening at the box office. The film reportedly made a record for its advance bookings.It was remade in Telugu as Masala with Venkatesh and Ram Pothineni reprised the roles of Ajay Devgan and Abhishek Bachchan respectively."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Star_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sleeping_Beauties"}, "Title": {"type": "literal", "value": "Sleeping Beauties"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jamie_Babbit"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Radha_Mitchell|http://dbpedia.org/resource/Sarah_Lassez"}, "Published": {"type": "literal", "value": "1999-06-10"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "13"}, "Description": {"type": "literal", "value": "Sleeping Beauties is a 1999 short comedy film directed by Jamie Babbit. It premiered at the 1998 Sundance Film Festival. It stars Sarah Lassez as a morgue beautician trying to get over her ex-girlfriend, played by Radha Mitchell. Babbit made the film with help from David Fincher and Michael Douglas. It played at several film festivals during 1998 and 1999, and was later distributed on a DVD collection of short films by production company POWER UP. Babbit won a Channel 4 award for the film."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Just_Jim_(2015_film)"}, "Title": {"type": "literal", "value": "Just Jim"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Craig_Roberts"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Emile_Hirsch"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "Just Jim is a 2015 British black comedy film written and directed by Craig Roberts in his directorial debut. The film stars Roberts as a lonely Welsh teenager who is given the chance to increase his popularity when a cool American (Emile Hirsch) moves in next door."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Soda_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bey_Yaar"}, "Title": {"type": "literal", "value": "Bey Yaar"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Abhishek_Jain"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Darshan_Jariwala|http://dbpedia.org/resource/Kavin_Dave|http://dbpedia.org/resource/Manoj_Joshi_(actor)|http://dbpedia.org/resource/Pratik_Gandhi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "150"}, "Description": {"type": "literal", "value": "Bey Yaar (Gujarati: \u0aac\u0ac7 \u0aaf\u0abe\u0ab0 \"Oh! Friend\"\u2014An expression) is a coming-of-age Gujarati film directed by Abhishek Jain. The film is about friendship and two friends. The film stars Manoj Joshi, Darshan Jariwala, Divyang Thakkar, Pratik Gandhi, Amit Mistry, Samvedna Suwalka. The film was released on 29 August 2014 to positive reviews and box-office success as it completed 50 weeks in theatres. The film was screened at New York Indian Film Festival, the first ever Gujarati film to do so."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/CineMan_Productions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Fred:_The_Movie"}, "Title": {"type": "literal", "value": "Fred: The Movie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Clay_Weiner"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jake_Weary|http://dbpedia.org/resource/Jennette_McCurdy|http://dbpedia.org/resource/John_Cena|http://dbpedia.org/resource/Lucas_Cruikshank|http://dbpedia.org/resource/Oscar_Nunez|http://dbpedia.org/resource/Pixie_Lott|http://dbpedia.org/resource/Siobhan_Fallon_Hogan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "Fred: The Movie (stylized as F\u042fED: THE MOVIE) is a 2010 television comedy film written by David A. Goodman, directed by Clay Weiner and produced by Brian Robbins. The film is based on the adventures of Fred Figglehorn, a character created and played by Lucas Cruikshank for Cruikshank's YouTube channel. The film casts Siobhan Fallon Hogan and John Cena as Fred's parents and pop singer and actress Pixie Lott as Fred's crush Judy. First optioned as a theatrical release in the United States, the film instead premiered on children's TV channel Nickelodeon on September 18, 2010. In the United Kingdom and Ireland, the film was released theatrically on December 17, 2010. This film was the debut of Pixie Lott as an actress."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lionsgate"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Thieves"}, "Title": {"type": "literal", "value": "The Thieves"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Choi_Dong-hoon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jun_Ji-hyun|http://dbpedia.org/resource/Kim_Hye-soo|http://dbpedia.org/resource/Kim_Yoon-seok|http://dbpedia.org/resource/Lee_Jung-jae"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Action_comedy_films|http://dbpedia.org/resource/Category:Criminal_comedy_films|http://dbpedia.org/resource/Category:South_Korean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "136"}, "Description": {"type": "literal", "value": "The Thieves (Hangul: \ub3c4\ub451\ub4e4; RR: Dodukdeul; MR: Todukd\u016dl) is a 2012 South Korean heist film directed by Choi Dong-hoon with an all-star ensemble cast. Splashy action in overseas locations is mixed with double-dealings and multiple betrayals as a gang of South Korean thieves team up with a Hong Kong crew to steal a diamond necklace from a heavily guarded casino safe in Macau. With over 12.9 million ticket sales, the action comedy is currently the fifth highest-grossing movie in Korean film history."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Showbox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Love_and_Other_Catastrophes"}, "Title": {"type": "literal", "value": "Love and Other Catastrophes"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Emma-Kate_Croghan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alice_Garner|http://dbpedia.org/resource/Frances_O'Connor|http://dbpedia.org/resource/Kym_Gyngell|http://dbpedia.org/resource/Matt_Day|http://dbpedia.org/resource/Matthew_Dyktynski|http://dbpedia.org/resource/Radha_Mitchell"}, "Published": {"type": "literal", "value": "1996-08-01|1997-03-28"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_romantic_comedy_films|http://dbpedia.org/resource/Category:Australian_comedy_films|http://dbpedia.org/resource/Category:Australian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "Love and Other Catastrophes is a quirky 1996 Australian romantic comedy film featuring Frances O'Connor, Radha Mitchell, Alice Garner, Matthew Dyktynski, Matt Day and Kym Gyngell. The film was the first full-length release by director Emma-Kate Croghan and is set and filmed at Melbourne University where she studied writing and film directing. The film was nominated for five Australian Film Institute awards, including best film, best original screenplay, best actress, best supporting actress, and editing. Garner won a Film Critics Circle of Australia award for best supporting actress for her role in the movie."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Searchlight_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Golmaal_(film_series)"}, "Title": {"type": "literal", "value": "Golmaal series"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rohit_Shetty"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ajay_Devgan|http://dbpedia.org/resource/Arshad_Warsi|http://dbpedia.org/resource/Tusshar_Kapoor"}, "Published": {"type": "literal", "value": "2006-07-14|2008-10-19|2010-11-05"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Comedy_films_by_series|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Golmaal is a series of Indian action comedy films directed by Rohit Shetty and produced by Dhillin Mehta. All three films starred Ajay Devgan, Arshad Warsi, Tusshar Kapoor in lead roles. The first film Golmaal: Fun Unlimited is released in 2006, the second film Golmaal Returns is released in 2008 and the third film Golmaal 3 is released in 2010. The first film was a semi hit, but the other two films was blockbuster at Indian box office.Golmaal 3 became the second highest-grossing Bollywood film of 2010.The fourth instalment of this series named Golmaal 4 is currently in production. Golmaal is now the fourth highest grossing film series in Bollywood."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Shree_Ashtavinayak_Cine_Vision_Ltd"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Terrorama"}, "Title": {"type": "literal", "value": "Terrorama!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Edwin_Brienen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Edwin_Brienen|http://dbpedia.org/resource/Esther_Eva_Verkaaik|http://dbpedia.org/resource/Kiki_Classen|http://dbpedia.org/resource/Theo_van_Gogh_(film_director)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "Terrorama! (2001) is the first feature film of Dutch director Edwin Brienen. In 2002 Terrorama! won the award for Best film at the Melbourne Underground Film Festival and best leading actress at the Toronto Independent Film Festival (Esther Eva Verkaaik)."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Baxter"}, "Title": {"type": "literal", "value": "The Baxter"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Showalter"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Elizabeth_Banks|http://dbpedia.org/resource/Justin_Theroux|http://dbpedia.org/resource/Michael_Showalter|http://dbpedia.org/resource/Michelle_Williams_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "The Baxter is a 2005 film written by, directed by and starring American comedian Michael Showalter. A \u201cBaxter\u201d, as defined by the film, is the nice, dull guy in a romantic comedy who is dumped at the end of the story for the protagonist. Much light humor is made of showing Showalter as a \"Baxter\" in several typical romantic comedy clich\u00e9s; for instance, he is shown being left at the altar as a former love is claimed by her high school sweetheart, and being left in college at a pep rally for an underdog sports hero. The plot revolves around the life of Elliot Sherman during the two weeks before his wedding, as he doggedly fights off the curse of his former Baxter role in relationships. IFC Films financed the film and produced it with Plum Pictures. They gave the film a very limited release; it had a U.S. box office gross of $181,872."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Machete_(film)"}, "Title": {"type": "literal", "value": "Machete"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ethan_Maniquis|http://dbpedia.org/resource/Robert_Rodriguez"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cheech_Marin|http://dbpedia.org/resource/Danny_Trejo|http://dbpedia.org/resource/Don_Johnson|http://dbpedia.org/resource/Jeff_Fahey|http://dbpedia.org/resource/Jessica_Alba|http://dbpedia.org/resource/Lindsay_Lohan|http://dbpedia.org/resource/Michelle_Rodriguez|http://dbpedia.org/resource/Robert_De_Niro|http://dbpedia.org/resource/Steven_Seagal"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Machete is a 2010 American action film written, produced, and directed by Robert Rodriguez and Ethan Maniquis. This film is an expansion of a fake trailer that was included in Rodriguez's and Quentin Tarantino's 2007 Grindhouse double-feature. Machete continues the B movie and exploitation style of Grindhouse, and includes some of the footage. The film stars Danny Trejo in his first lead role as the title character, and co-stars Robert De Niro, Jessica Alba, Don Johnson, Michelle Rodriguez, Steven Seagal, Lindsay Lohan, Cheech Marin and Jeff Fahey. This was Steven Seagal's first theatrical release film in eight years since his starring role in 2002's Half Past Dead. Machete was released in the United States by 20th Century Fox and Rodriguez's company, Troublemaker Studios, on September 3, 2010. A sequel, Machete Kills, was released on October 11, 2013."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox|http://dbpedia.org/resource/Sony_Pictures_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/A_Bigger_Splash_(film)"}, "Title": {"type": "literal", "value": "A Bigger Splash"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Luca_Guadagnino"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dakota_Johnson|http://dbpedia.org/resource/Matthias_Schoenaerts|http://dbpedia.org/resource/Ralph_Fiennes|http://dbpedia.org/resource/Tilda_Swinton"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "124"}, "Description": {"type": "literal", "value": "A Bigger Splash is a 2015 English-language Italian-French erotic psychological dark comedy film directed by Luca Guadagnino and written by Alain Page and David Kajganich, based on the film La Piscine. The film stars Tilda Swinton, Matthias Schoenaerts, Ralph Fiennes and Dakota Johnson. The film was named after David Hockney's 1967 painting of the same title. It competed for the Golden Lion at the 72nd Venice International Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Searchlight_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Oopiri"}, "Title": {"type": "literal", "value": "Oopiri"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Vamsi_Paidipally"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Akkineni_Nagarjuna|http://dbpedia.org/resource/Karthi|http://dbpedia.org/resource/Tamannaah"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "158|179"}, "Description": {"type": "literal", "value": "Oopiri (English: Breath) is a 2016 Indian bilingual comedy-drama film directed by Vamsi Paidipally. A remake of Olivier Nakache & \u00c9ric Toledano's French comedy-drama The Intouchables (2011), the film was produced by Prasad V Potluri and Kavin Anne of PVP Cinema in Telugu and Tamil as Thozha (Companion). It features Akkineni Nagarjuna, Karthi, and Tamannaah in the lead roles; Prakash Raj, Ali, Vivek, and Jayasudha play supporting roles. The film focuses on the lives of Vikramadhitya (Nagarjuna), a quadriplegic billionaire, and Seenu (Karthi), his ex-convict caretaker. Their realisation of the primacy of life and relationships over money and disability forms the major part of its story. Gopi Sunder composed the film's soundtrack and score, and P. S. Vinod was its cinematographer. Madhu and Praveen K. L. edited the Telugu and Tamil versions, respectively. Principal photography began in March 2015, ending the following February. Most of the film was shot in and around Chennai, Hyderabad, and in Europe in Paris and Belgrade. Produced on a budget of \u20b9500\u2013600 million, Oopiri and Thozha were released globally on 25 March 2016 (simultaneously with Zack Snyder's Batman v Superman: Dawn of Justice and Nishikant Kamat's Rocky Handsome). Both received critical acclaim for the performances of the principal cast, the cinematography, and Paidipally's work in adapting the original. They were commercially successful, grossing over \u20b91 billion worldwide."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mickey's_House_of_Villains"}, "Title": {"type": "literal", "value": "Mickey's House of Villains"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jamie_Mitchell|http://dbpedia.org/resource/Mike_Moon|http://dbpedia.org/resource/Rick_Calabash|http://dbpedia.org/resource/Roberts_Gannaway|http://dbpedia.org/resource/Tony_Craig"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bill_Farmer|http://dbpedia.org/resource/Corey_Burton|http://dbpedia.org/resource/James_Woods|http://dbpedia.org/resource/Jonathan_Freeman_(actor)|http://dbpedia.org/resource/Pat_Carroll_(actress)|http://dbpedia.org/resource/Russi_Taylor|http://dbpedia.org/resource/Scott_Weinger|http://dbpedia.org/resource/Tony_Anselmo|http://dbpedia.org/resource/Wayne_Allwine"}, "Published": {"type": "literal", "value": "2002-09-03"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "70"}, "Description": {"type": "literal", "value": "Mickey's House of Villains is a 2002 direct-to-video animated movie produced by The Walt Disney Company (Walt Disney Television Animation and Toon City Animation, and animation was coordination by Walt Disney Feature Animation Florida). It is a film adaptation based on the Disney Channel animated television series Disney's House of Mouse and a sequel to the direct-to-video animated film Mickey's Magical Christmas: Snowed in at the House of Mouse, starring Mickey Mouse, Donald Duck, Minnie Mouse, Goofy, Daisy Duck and Disney Villains that have appeared in past Disney productions. It was released on both VHS and DVD by Walt Disney Home Video on September 3, 2002. It was followed by a 2004 direct-to-video animated film, Mickey, Donald, Goofy: The Three Musketeers, produced by DisneyToon Studios, on August 17, 2004."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Home_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Les_Gazelles"}, "Title": {"type": "literal", "value": "Les Gazelles"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mona_Achache"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anne_Brochet|http://dbpedia.org/resource/Audrey_Fleurot|http://dbpedia.org/resource/Jos\u00e9phine_de_Meaux|http://dbpedia.org/resource/Naidra_Ayadi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "Les Gazelles is a 2014 French comedy film directed by Mona Achache."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Pyaar_Impossible!"}, "Title": {"type": "literal", "value": "Pyaar Impossible!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jugal_Hansraj"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dino_Morea|http://dbpedia.org/resource/Priyanka_Chopra|http://dbpedia.org/resource/Uday_Chopra"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "141"}, "Description": {"type": "literal", "value": "Pyaar Impossible! (English: Love Impossible!) is a 2010 Bollywood romantic comedy film directed by actor-turned-director Jugal Hansraj under the banner of Yash Raj Films. It features Priyanka Chopra and Uday Chopra in the lead roles. The film stars Anupam Kher and Dino Morea in supporting roles. It is based on the 1991 Malayalam film Kilukkampetti. Pyaar Impossible! was released on 8 January 2010."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Yash_Raj_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Twenty_(film)"}, "Title": {"type": "literal", "value": "Twenty"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lee_Byeong-heon_(filmmaker)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kang_Ha-neul|http://dbpedia.org/resource/Kim_Woo-bin|http://dbpedia.org/resource/Lee_Jun-ho_(singer)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "Twenty (Hangul: \uc2a4\ubb3c; RR: Seumul) is a 2015 South Korean coming-of-age film starring Kim Woo-bin, Lee Junho and Kang Ha-neul. It was written and directed by Lee Byeong-heon, his second feature after the 2012 indie Cheer Up, Mr. Lee."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Next_Entertainment_World"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kubot:_The_Aswang_Chronicles_2"}, "Title": {"type": "literal", "value": "Kubot: The Aswang Chronicles"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Erik_Matti"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dingdong_Dantes|http://dbpedia.org/resource/Isabelle_Daza"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Philippine_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Kubot: The Aswang Chronicles 2  is a 2014 Filipino action horror comedy adventure film co-written and directed by Erik Matti.It is the second installment of the Aswang Chronicles franchise and the sequel to the 2012 film Tiktik: The Aswang Chronicles. The film stars Dingdong Dantes reprising his role as Makoy, Joey Marquez as Nestor, along with the new cast members Isabelle Daza, Lotlot de Leon, KC Montero and Elizabeth Oropesa. It is an official entry to the 40th Metro Manila Film Festival and was released on December 25, 2014 in Philippine cinemas."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/GMA_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kung_Fu_Panda"}, "Title": {"type": "literal", "value": "Kung Fu Panda"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/John_Stevenson_(director)|http://dbpedia.org/resource/Mark_Osborne_(filmmaker)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Angelina_Jolie|http://dbpedia.org/resource/David_Cross|http://dbpedia.org/resource/Dustin_Hoffman|http://dbpedia.org/resource/Ian_McShane|http://dbpedia.org/resource/Jack_Black|http://dbpedia.org/resource/Jackie_Chan|http://dbpedia.org/resource/James_Hong|http://dbpedia.org/resource/Lucy_Liu|http://dbpedia.org/resource/Randall_Duk_Kim|http://dbpedia.org/resource/Seth_Rogen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films|http://dbpedia.org/resource/Category:Martial_arts_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Kung Fu Panda is a 2008 American computer-animated action comedy martial arts film produced by DreamWorks Animation and distributed by Paramount Pictures. It was directed by John Stevenson and Mark Osborne and produced by Melissa Cobb, and stars the voices of Jack Black, Dustin Hoffman, Angelina Jolie, Ian McShane, Seth Rogen, Lucy Liu, David Cross, Randall Duk Kim, James Hong, and Jackie Chan. Set in a version of ancient China populated by anthropomorphic talking animals, the plot revolves around a bumbling panda named Po who aspires to be a kung fu master. When an evil kung fu warrior is foretold to escape after 20 years in prison, Po is unwittingly named the chosen one destined to bring peace to the land, much to the chagrin of the resident kung fu warriors. The idea for the film was conceived by Michael Lachance, a DreamWorks Animation executive. The film was originally intended to be a parody, but director Stevenson decided instead, to shoot an action comedy wuxia film that incorporates the hero's journey narrative archetype for the lead character. The computer animation in the film was more complex than anything DreamWorks had done before. As with most DreamWorks animated films, Hans Zimmer (collaborating with John Powell this time) scored Kung Fu Panda. He visited China to absorb the culture and get to know the China National Symphony Orchestra as part of his preparation. A sequel, Kung Fu Panda 2, was released on May 26, 2011, along with a television series, Kung Fu Panda: Legends of Awesomeness later that same year as a part of a franchise. A second sequel called Kung Fu Panda 3 debuted in January 2016. Kung Fu Panda premiered in the United States on June 6, 2008. The film received critical acclaim upon release. Kung Fu Panda opened in 4,114 theaters, grossing $20.3 million on its opening day and $60.2 million on its opening weekend, resulting in the number one position at the box office. The film became DreamWorks' biggest opening for a non-sequel film, the highest grossing animated film of the year worldwide, and also had the fourth-largest opening weekend for a DreamWorks animated film at the American and Canadian box office, behind Shrek 2, Shrek the Third, and Shrek Forever After."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Detention_(2011_film)"}, "Title": {"type": "literal", "value": "Detention"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Joseph_Kahn"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dane_Cook|http://dbpedia.org/resource/Shanley_Caswell|http://dbpedia.org/resource/Spencer_Locke|http://dbpedia.org/resource/Walter_Perez_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Detention is a 2011 American satirical horror film directed by Joseph Kahn, and co-written with Mark Palermo. The film premiered March 2011 in Austin, Texas at SXSW. Detention stars Josh Hutcherson, Dane Cook, Spencer Locke, Shanley Caswell, Walter Perez, Organik and Erica Shaffer. Produced by Richard Weager and MaryAnne Tanedo."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sony_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Gilded_Cage_(2013_film)"}, "Title": {"type": "literal", "value": "The Gilded Cage"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ruben_Alves"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chantal_Lauby|http://dbpedia.org/resource/Joaquim_de_Almeida|http://dbpedia.org/resource/Rita_Blanco|http://dbpedia.org/resource/Roland_Giraud"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "The Gilded Cage (French: La Cage Dor\u00e9e) is a French-Portuguese comedy film released in 2013. It won the People's Choice Award at the 26th European Film Awards. It was the film with the most admissions at the Portuguese box office in 2013, with 755 000 and it is the 7th film with most admissions and the 3rd highest-grossing in Portugal since 2004. The film won the Radio-Canada Audience Award at the 2014 edition of the Cin\u00e9franco film festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Path\u00e9"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Soodhu_Kavvum"}, "Title": {"type": "literal", "value": "Soodhu Kavvuum"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nalan_Kumarasamy"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Sanchita_Shetty|http://dbpedia.org/resource/Vijay_Sethupathi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Comedy_thriller_films|http://dbpedia.org/resource/Category:Indian_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "128"}, "Description": {"type": "literal", "value": "Soodhu Kavvum (English: Evil Engulfs) is a 2013 Tamil black comedy crime film directed by Nalan Kumarasamy. It features Vijay Sethupathi and Sanchita Shetty in the lead roles. The film was released on 1 May. The film's main concept is about how silly talk has engulfed people's day-to-day life and modern society. The film received positive reviews from critics and become a commercial success."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Studio_Green"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/7_Chinese_Brothers"}, "Title": {"type": "literal", "value": "7 Chinese Brothers"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bob_Byington"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alex_Karpovsky|http://dbpedia.org/resource/Jason_Schwartzman|http://dbpedia.org/resource/Jonathan_Togo|http://dbpedia.org/resource/Olympia_Dukakis|http://dbpedia.org/resource/Stephen_Root"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "75"}, "Description": {"type": "literal", "value": "7 Chinese Brothers is a 2015 American comedy film written and directed by Bob Byington. The film stars Jason Schwartzman, Stephen Root, Olympia Dukakis, Jonathan Togo and Alex Karpovsky. The film was released in the United States on August 28, 2015, in a limited release and through video on demand."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Screen_Media_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tangerine_(film)"}, "Title": {"type": "literal", "value": "Tangerine"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sean_S._Baker"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/James_Ransone|http://dbpedia.org/resource/Kitana_Kiki_Rodriguez|http://dbpedia.org/resource/Mya_Taylor"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Tangerine is a 2015 American comedy-drama film directed by Sean S. Baker and written by Baker and Chris Bergoch, starring Kitana Kiki Rodriguez, Mya Taylor, and James Ransone. The story follows a transgender sex worker who discovers her boyfriend and pimp has been cheating on her. The film was shot with three iPhone 5s smartphones. Tangerine premiered at the 2015 Sundance Film Festival on January 23, 2015. It had a limited release on July 10, 2015 through Magnolia Pictures. It received positive reviews."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Magnolia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Duplass_Brothers_Productions"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Trotsky"}, "Title": {"type": "literal", "value": "The Trotsky"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jacob_Tierney"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Colm_Feore|http://dbpedia.org/resource/Emily_Hampshire|http://dbpedia.org/resource/Jay_Baruchel|http://dbpedia.org/resource/Michael_Murphy_(actor)|http://dbpedia.org/resource/Saul_Rubinek"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "The Trotsky is a 2009 Canadian comedy film directed by Jacob Tierney."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Alliance_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Men_&_Chicken"}, "Title": {"type": "literal", "value": "Men & Chicken"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Anders_Thomas_Jensen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/David_Dencik|http://dbpedia.org/resource/Mads_Mikkelsen|http://dbpedia.org/resource/Nicolas_Bro|http://dbpedia.org/resource/Nikolaj_Lie_Kaas|http://dbpedia.org/resource/S\u00f8ren_Malling"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Danish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "Men & Chicken (Danish: M\u00e6nd og H\u00f8ns) is a 2015 Danish comedy film directed by Anders Thomas Jensen. It was shown in the Vanguard section of the 2015 Toronto International Film Festival. It was one of three films shortlisted by Denmark to be their submission for the Academy Award for Best Foreign Language Film at the 88th Academy Awards."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/100%25_Love_(2011_film)"}, "Title": {"type": "literal", "value": "100% Love"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sukumar_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Naga_Chaitanya|http://dbpedia.org/resource/Tamannaah_Bhatia"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "140"}, "Description": {"type": "literal", "value": "100% Love is a 2011 Telugu-language Indian romantic drama film directed by Sukumar and produced by Bunny Vasu under Geetha Arts studio. The film features Naga Chaitanya and Tamanna in the lead roles. Production works began in February 2010, while the filming continued for over one year, with the title only being announced in March 2011. The film features music by Devi Sri Prasad and was released on 6 May 2011. The film was dubbed and released in Malayalam and Tamil with the same title and as Nooru Sadhaveedham Kaadhal / 100% Kaadhal, respectively. It was declared a Blockbuster and is said to be the best film of Naga Chaitanya after Ye Maaya Chesave and for Sukumar after Arya, completing 50 days in 65 centres and 100 days on 13 August 2011. It was remade in Bengali in 2016 as Prem Ki Bujhini."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Geetha_Arts"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Meddler"}, "Title": {"type": "literal", "value": "The Meddler"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lorene_Scafaria"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amy_Landecker|http://dbpedia.org/resource/Billy_Magnussen|http://dbpedia.org/resource/Casey_Wilson|http://dbpedia.org/resource/Cecily_Strong|http://dbpedia.org/resource/Harry_Hamlin|http://dbpedia.org/resource/J._K._Simmons|http://dbpedia.org/resource/Jason_Ritter|http://dbpedia.org/resource/Jerrod_Carmichael|http://dbpedia.org/resource/Laura_San_Giacomo|http://dbpedia.org/resource/Lucy_Punch|http://dbpedia.org/resource/Michael_McKean|http://dbpedia.org/resource/Rose_Byrne|http://dbpedia.org/resource/Sarah_Baker|http://dbpedia.org/resource/Susan_Sarandon"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "The Meddler is a 2016 American comedy-drama film directed and written by Lorene Scafaria. The film stars Susan Sarandon, Rose Byrne and J. K. Simmons. Principal photography began on March 30, 2015 in Los Angeles. It was screened in the Special Presentations section of the 2015 Toronto International Film Festival. The film was released on April 22, 2016, by Sony Pictures Classics."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sony_Pictures_Classics"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Castaway_on_the_Moon"}, "Title": {"type": "literal", "value": "Castaway on the Moon"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lee_Hae-jun"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jung_Jae-young|http://dbpedia.org/resource/Jung_Ryeo-won"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "Castaway on the Moon (Hangul: \uae40\uc528 \ud45c\ub958\uae30; RR: Kimssi Pyoryugi; lit. \"Mr Kim's drifting experience\": \ud45c\ub958: drifting; hanja: \u6f02\u6d41\u8a18) is a 2009 South Korean romantic comedy film written and directed by Lee Hae-jun. It is a love story between a suicidal man turned castaway on Bamseom in the Han River and an agoraphobic woman who is addicted to Cyworld."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Cinema_Service"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/American_Ultra"}, "Title": {"type": "literal", "value": "American Ultra"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nima_Nourizadeh"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bill_Pullman|http://dbpedia.org/resource/Connie_Britton|http://dbpedia.org/resource/Jesse_Eisenberg|http://dbpedia.org/resource/John_Leguizamo|http://dbpedia.org/resource/Kristen_Stewart|http://dbpedia.org/resource/Tony_Hale|http://dbpedia.org/resource/Topher_Grace|http://dbpedia.org/resource/Walton_Goggins"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_comedy_thriller_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "American Ultra is a 2015 American action comedy film directed by Nima Nourizadeh and written by Max Landis. The film stars Jesse Eisenberg, Kristen Stewart, Topher Grace, Connie Britton, Walton Goggins, John Leguizamo, Bill Pullman, and Tony Hale. It was released on August 21, 2015, by Lionsgate."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lionsgate_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Happy_Christmas_(film)"}, "Title": {"type": "literal", "value": "Happy Christmas"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Joe_Swanberg"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anna_Kendrick|http://dbpedia.org/resource/Joe_Swanberg|http://dbpedia.org/resource/Lena_Dunham|http://dbpedia.org/resource/Mark_Webber_(actor)|http://dbpedia.org/resource/Melanie_Lynskey"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Happy Christmas is a 2014 American dramedy written, produced and directed by Joe Swanberg. It stars Swanberg, Anna Kendrick, Melanie Lynskey, Lena Dunham and Mark Webber. Like most of Swanberg's previous features, the film's dialogue was entirely improvised. The film had its world premiere at the 2014 Sundance Film Festival (where it was nominated for the Grand Jury Prize in the U.S. Dramatic Competition) on January 19, 2014. It was released on June 26, 2014, through video on demand prior to being released in a limited release July 25, 2014 in the United States by Magnolia Pictures."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Magnolia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Results_(film)"}, "Title": {"type": "literal", "value": "Results"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Bujalski"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anthony_Michael_Hall|http://dbpedia.org/resource/Brooklyn_Decker|http://dbpedia.org/resource/Cobie_Smulders|http://dbpedia.org/resource/Constance_Zimmer|http://dbpedia.org/resource/Giovanni_Ribisi|http://dbpedia.org/resource/Guy_Pearce|http://dbpedia.org/resource/Kevin_Corrigan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Results is a 2015 indie romantic comedy film written and directed by Andrew Bujalski. The film stars Guy Pearce, Cobie Smulders, Kevin Corrigan, Giovanni Ribisi, Brooklyn Decker, Anthony Michael Hall, and Constance Zimmer. Ahead of its Sundance Film Festival Premiere, Results was acquired by Magnolia Pictures. The film had its premiere at the 2015 Sundance Film Festival on January 27, 2015. The film was released in a limited release and through video on demand on May 29, 2015."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Magnolia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Save_the_Green_Planet!"}, "Title": {"type": "literal", "value": "Save the Green Planet!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jang_Joon-hwan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Baek_Yoon-sik|http://dbpedia.org/resource/Shin_Ha-kyun"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Black_comedy_films|http://dbpedia.org/resource/Category:Comedy_science_fiction_films|http://dbpedia.org/resource/Category:South_Korean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "118"}, "Description": {"type": "literal", "value": "Save the Green Planet! (Korean title: \uc9c0\uad6c\ub97c \uc9c0\ucf1c\ub77c!, Jigureul Jikyeora!) is a South Korean film, written and directed by Jang Joon-hwan, released on 4 April 2003 . The movie mixes elements of multiple genres, including comedy, science fiction, horror and thriller. The basic story begins when the main character, Lee Byeong-gu, kidnaps another man, convinced that the latter is an alien."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/CJ_Entertainment|http://dbpedia.org/resource/Koch-Lorber_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lazer_Team"}, "Title": {"type": "literal", "value": "Lazer Team"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Matt_Hullum"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Lazer Team is a 2015 American science fiction action comedy film directed, produced, and co-written by Matt Hullum. The first feature film produced by Rooster Teeth, it stars Burnie Burns, Gavin Free, Michael Jones, Colton Dunn, Allie DeBerry, and Alan Ritchson. The film follows the Lazer Team, a group of four who find themselves responsible for the fate of the planet upon discovering an alien crash site containing a battle suit. Lazer Team is produced by Hullum, Burns, and Doreen Copeland. Burns and Hullum also co-wrote the script, alongside Rooster Teeth employees Chris Demarais and Josh Flanagan. Funding for the film was largely raised through a successful Indiegogo campaign, raising over $2.4 million in a month. Filming began in October 2014, with principal photography taking place in Austin and New Mexico. Lazer Team premiered at Fantastic Fest on September 24, 2015, and was released theatrically on January 27, 2016. As of February 10, 2016, the film is also available on YouTube Red."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fullscreen_(company)|http://dbpedia.org/resource/YouTube_Red"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hot_Fuzz"}, "Title": {"type": "literal", "value": "Hot Fuzz"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Edgar_Wright"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Nick_Frost"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Best_Comedy_Empire_Award_winners|http://dbpedia.org/resource/Category:British_comedy_films|http://dbpedia.org/resource/Category:Police_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "121"}, "Description": {"type": "literal", "value": "Hot Fuzz is a 2007 British satirical action comedy film directed by Edgar Wright, written by Wright and Simon Pegg, and starring Pegg and Nick Frost. The three and the film's producer Nira Park had previously worked together on the television series Spaced and the 2004 film Shaun of the Dead. The film follows two police officers attempting to solve a series of mysterious deaths in Sandford, a fictional small English village. Over a hundred action films were used as inspiration for developing the script. Filming took place over eleven weeks in early 2006, and featured an extensive cast along with various uncredited cameos. Visual effects were developed by ten artists to expand on or add explosions, gore, and gunfire scenes. Debuting on 14 February 2007 in the United Kingdom and 20 April in the United States, Hot Fuzz received critical and commercial success. Shortly after the film's release, two different soundtracks were released in the UK and US. The film is the second in Wright and Pegg's Three Flavours Cornetto trilogy and was preceded by 2004's Shaun of the Dead and followed by 2013's The World's End, each of them featuring a different flavour of Cornetto ice cream. It is also the most financially successful film in the trilogy."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Rogue_Pictures|http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Manto_(film)"}, "Title": {"type": "literal", "value": "Manto"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sarmad_Khoosat"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hina_Khawaja_Bayat|http://dbpedia.org/resource/Nimra_Bucha|http://dbpedia.org/resource/Saba_Qamar|http://dbpedia.org/resource/Sania_Saeed|http://dbpedia.org/resource/Sarmad_Khoosat"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "127"}, "Description": {"type": "literal", "value": "Manto (Urdu: \u0645\u0646\u0679\u0648\u200e) is a 2015 Pakistani biographical drama film based on the life of Pakistani short-story writer Sadat Hassan Manto, starring Sarmad Khoosat in the title role. It was directed by Khoosat himself, produced by Babar Javed, and written by Shahid Nadeem, whose screenplay was adapted from Manto's short stories, particularly \"Thanda Gosht\", Madari\", \"License\", \"Hatak\" and \"Peshawar Se Lahore\". It also depicts his relationship with singer-actress Noor Jehan. The film was released on September 11, 2015, sixty years after Manto's death. The full-length official trailer was released on August 29, 2015. The motion trailer along with film music was released on August 6, 2015. The TV series on the life of writer entitled Main Manto with the same cast and production, initially made in 2012, was aired in December 2015."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Geo_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Joe_+_Belle"}, "Title": {"type": "literal", "value": "Joe + Belle"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Veronica_Kedar"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Romi_Aboulafia|http://dbpedia.org/resource/Sivan_Levy|http://dbpedia.org/resource/Veronica_Kedar"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "Joe + Belle is a 2011 dark Romantic Comedy film directed by Veronica Kedar about a drug dealer called Joe and a suicidal psychopath called Belle."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Women_in_Trouble"}, "Title": {"type": "literal", "value": "Women in Trouble"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sebastian_Gutierrez"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adrianne_Palicki|http://dbpedia.org/resource/Cameron_Richardson|http://dbpedia.org/resource/Carla_Gugino|http://dbpedia.org/resource/Connie_Britton|http://dbpedia.org/resource/Elizabeth_Berkley|http://dbpedia.org/resource/Emmanuelle_Chriqui|http://dbpedia.org/resource/Joseph_Gordon-Levitt|http://dbpedia.org/resource/Marley_Shelton"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Women in Trouble is a 2009 American comedy film, written and directed by Sebasti\u00e1n Guti\u00e9rrez, and starring a cast consisting of Carla Gugino, Adrianne Palicki, Marley Shelton, Cameron Richardson, Connie Britton and Emmanuelle Chriqui.It was shot in 10 days for $50,000."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Myriad_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Rebound"}, "Title": {"type": "literal", "value": "The Rebound"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bart_Freundlich"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Catherine_Zeta-Jones|http://dbpedia.org/resource/Justin_Bartha"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95|97"}, "Description": {"type": "literal", "value": "The Rebound is a 2009 American romantic comedy film directed by Bart Freundlich, starring Catherine Zeta-Jones and Justin Bartha. It was released in theaters in several countries in late 2009. It was originally scheduled to be released in the United States on December 25, 2010, but was cancelled due to the film's distributor shutting down. It ended up going direct-to-DVD in the United States on February 7, 2012."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/The_Film_Department"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hanger_(film)"}, "Title": {"type": "literal", "value": "Hanger"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ryan_Nicholson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alastair_Gamble|http://dbpedia.org/resource/Debbie_Rochon"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Hanger is a 2009 horror film written and directed by Ryan Nicholson, and co-written by Patrick Coble."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Pudsey_the_Dog:_The_Movie"}, "Title": {"type": "literal", "value": "Pudsey The Dog: The Movie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nick_Moore_(film_director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/David_Walliams|http://dbpedia.org/resource/Jessica_Hynes|http://dbpedia.org/resource/John_Sessions|http://dbpedia.org/resource/Olivia_Colman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Pudsey The Dog: The Movie is a 2014 British 3D live action family comedy film directed by Nick Moore, produced by Simon Cowell, written by Paul Rose with music by Simon Woodgate and starring Pudsey the Dog, one half of the dancing duo Ashleigh and Pudsey, voiced by David Walliams. Other stars include Jessica Hynes, John Sessions, Jim Tavar\u00e9 and Izzy Meikle-Small. The film was made by Vertigo Films and Syco Entertainment, and was released in the United Kingdom on 18 July 2014, after it was originally set to be released in December the previous year. The film received negative reviews from critics, and it earned \u00a32.6 millon on a \u00a32.5 million budget. On 10 November 2014 Pudsey the Dog: The Movie was released on DVD in the United Kingdom."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Cathay-Keris_Films|http://dbpedia.org/resource/Silverline_Multimedia|http://dbpedia.org/resource/Vertigo_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Wish_I_Was_Here"}, "Title": {"type": "literal", "value": "Wish I Was Here"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Zach_Braff"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ashley_Greene|http://dbpedia.org/resource/Joey_King|http://dbpedia.org/resource/Josh_Gad|http://dbpedia.org/resource/Kate_Hudson|http://dbpedia.org/resource/Mandy_Patinkin"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "Wish I Was Here is a 2014 American comedy drama film directed by Zach Braff and co-written with his brother Adam Braff. The film stars Zach Braff, Josh Gad, Ashley Greene, Kate Hudson, Joey King and Mandy Patinkin. The film had its world premiere at the Sundance Film Festival on January 18, 2014 and was given a limited release on July 18, 2014 by Focus Features."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Focus_Features"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jiseul"}, "Title": {"type": "literal", "value": "Jiseul"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/O_Muel"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "Jiseul (Hangul: \uc9c0\uc2ac) is a 2012 South Korean war drama film written and directed by Jeju Island native O Muel. The film is shot in black and white with the entire cast composed of local actors speaking their natural dialect. \"Jiseul\" means \"potato\" in Jeju dialect. O said he picked it as the title of his film because \"potatoes are considered a staple food in many countries, often symbolizing survival and hope.\" Set during the Jeju Uprising on the island in 1948, O said the film does not focus on the large-scale struggle, but on a forgotten true story about a group of villagers who hid in a cave for 60 days to escape from a military attack. They hid underground for months, cold and numb, far too close for comfort\u2014just like the potatoes to which the title refers. The film had a small budget of \u20a9210 million (US$190,000), part of which was raised through crowdfunding. It premiered at the 2012 Busan International Film Festival where it received 3 awards\u2014the CGV Movie Collage Award, the Director's Guild of Korea Award for Best Director, and the NETPAC Jury Award. Jiseul later won the prestigious World Cinema Dramatic Grand Jury Prize at the 2013 Sundance Film Festival. It became the first Korean film ever to win the top prize in this category. Festival organizers said that the jury\u2019s decision was unanimous, and their deliberation lasted less than one minute. It also won the Cyclo d'Or, the top prize at the 2013 Vesoul International Film Festival of Asian Cinema, and Best Film at the inaugural Wildflower Film Awards in 2014. The broader response from critics and international audiences was more mixed, with some viewers feeling frustration at not being given more background information in the film."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Me_and_Earl_and_the_Dying_Girl_(film)"}, "Title": {"type": "literal", "value": "Me and Earl and the Dying Girl"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alfonso_Gomez-Rejon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Connie_Britton|http://dbpedia.org/resource/Jon_Bernthal|http://dbpedia.org/resource/Molly_Shannon|http://dbpedia.org/resource/Nick_Offerman|http://dbpedia.org/resource/Olivia_Cooke|http://dbpedia.org/resource/RJ_Cyler|http://dbpedia.org/resource/Thomas_Mann_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Me and Earl and the Dying Girl is a 2015 American comedy-drama film directed by Alfonso Gomez-Rejon and written by Jesse Andrews, based on Andrews' 2012 debut novel of the same name. The film stars Thomas Mann, Olivia Cooke, RJ Cyler, and Jon Bernthal. The film premiered at the 2015 Sundance Film Festival to a standing ovation. It won the U.S. Grand Jury Prize: Dramatic and the Audience Award for U.S. Drama at the festival. The film was released on June 12, 2015, by Fox Searchlight Pictures."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Searchlight_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/A_Stranger_of_Mine"}, "Title": {"type": "literal", "value": "A Stranger of Mine"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kenji_Uchida_(film_director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Reika_Kirishima|http://dbpedia.org/resource/S\u014d_Yamanaka|http://dbpedia.org/resource/Yasuhi_Nakamura|http://dbpedia.org/resource/Yuka_Itaya"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "A Stranger of Mine (\u904b\u547d\u3058\u3083\u306a\u3044\u4eba Unmei janai hito) is a 2005 Japanese film by Kenji Uchida, starring Yasuhi Nakamura, Reika Kirishima, S\u014d Yamanaka and Yuka Itaya"}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Fakers"}, "Title": {"type": "literal", "value": "Fakers"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Richard_Janes"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Art_Malik|http://dbpedia.org/resource/Jonathan_Cecil|http://dbpedia.org/resource/Kate_Ashfield|http://dbpedia.org/resource/Matthew_Rhys|http://dbpedia.org/resource/Tom_Chambers_(actor)|http://dbpedia.org/resource/Tony_Haygarth"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Fakers is a 2004 British film directed by Richard Janes and starring Matthew Rhys as con-man with a big debt to pay off to wanna-be crime lord Art Malik. It was produced by Richard Janes Claire Bee and Todd Kleparski, three graduates from Ravensbourne College of Design and Communication. Completely funded via independent routes the film cost $1,500,000 to make and has opened theatrically in the United Kingdom, America and Japan as well as other territories."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Foot_Fist_Way"}, "Title": {"type": "literal", "value": "The Foot Fist Way"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jody_Hill"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Danny_McBride"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Martial_arts_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "The Foot Fist Way is a 2006 American low-budget martial arts black comedy film directed by Jody Hill and starring Danny McBride. The film was produced by Gary Sanchez Productions that picked up distribution rights to the film and hoped for it to achieve a Napoleon Dynamite-like success. It premiered in 2006 at the Los Angeles Film Festival and at Sundance."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Vantage"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Baghead"}, "Title": {"type": "literal", "value": "Baghead"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jay_Duplass|http://dbpedia.org/resource/Mark_Duplass"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Greta_Gerwig|http://dbpedia.org/resource/Ross_Partridge|http://dbpedia.org/resource/Steve_Zissis"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "Baghead is a 2008 comedy horror film written and directed by Jay Duplass and Mark Duplass. The film stars Ross Partridge, Elise Muller, Greta Gerwig, and Steve Zissis. The film had its world premiere at the Sundance Film Festival on January 22, 2008. The film was released in a limited release on July 13, 2008, by Sony Pictures Classics."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sony_Pictures_Classics"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Babysitting_2"}, "Title": {"type": "literal", "value": "Babysitting 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nicolas_Benamou|http://dbpedia.org/resource/Philippe_Lacheau"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alice_David|http://dbpedia.org/resource/Philippe_Lacheau"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Babysitting 2 is a 2015 French comedy film shot in the \"found footage\" style. It is directed by Nicolas Benamou and Philippe Lacheau. The film is the sequel of Babysitting."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Pictures_International"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Muppets_Most_Wanted"}, "Title": {"type": "literal", "value": "Muppets Most Wanted"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Bobin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ricky_Gervais|http://dbpedia.org/resource/Tina_Fey|http://dbpedia.org/resource/Ty_Burrell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "Muppets Most Wanted is a 2014 American musical comedy film produced by Walt Disney Pictures and Mandeville Films, and the eighth theatrical film featuring the Muppets. Directed by James Bobin and written by Bobin and Nicholas Stoller, the film is a sequel to 2011's The Muppets and stars Ricky Gervais, Ty Burrell, and Tina Fey as well as Muppet performers Steve Whitmire, Eric Jacobson, Dave Goelz, Bill Barretta, David Rudman, Matt Vogel, and Peter Linz. In the film, the Muppets find themselves unwittingly involved in an international crime caper while on tour in Europe. Aside from co-writer Jason Segel, the majority of the production team behind The Muppets returned for Muppets Most Wanted including Bobin, Stoller, and producers David Hoberman and Todd Lieberman. Bret McKenzie and Christophe Beck returned to compose the film's songs and musical score, respectively. Principal photography commenced in January 2013 at Pinewood Studios in Buckinghamshire, England. Muppets Most Wanted had its world premiere at the El Capitan Theatre in Los Angeles on March 11, 2014 and was released theatrically in North America on March 21, 2014. The film grossed $80.4 million worldwide."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Yeh_Jawaani_Hai_Deewani"}, "Title": {"type": "literal", "value": "Yeh Jawaani Hai Deewani"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ayan_Mukerji"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aditya_Roy_Kapur|http://dbpedia.org/resource/Deepika_Padukone|http://dbpedia.org/resource/Kalki_Koechlin|http://dbpedia.org/resource/Ranbir_Kapoor"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "161"}, "Description": {"type": "literal", "value": "Yeh Jawaani Hai Deewani (English: This Youth is Crazy, abbreviated as YJHD), is a 2013 Indian romantic drama film, written and directed by Ayan Mukerji and produced by Karan Johar. It stars Deepika Padukone and Ranbir Kapoor in lead roles. This is their second film together after 2008's Bachna Ae Haseeno. Kalki Koechlin and Aditya Roy Kapur play supporting roles. Madhuri Dixit appears in an item number with Ranbir Kapoor. Initially set for a March 2013 release, the film was released on 31 May 2013. Upon release, it received mixed to positive reviews and was a box office success. Yeh Jawaani Hai Deewani has become one of the highest grossing Bollywood film of all time in India and worldwide. It is also the tenth highest grossing Bollywood film in overseas markets up until then."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/UTV_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hamlet_A.D.D."}, "Title": {"type": "literal", "value": "Hamlet A.D.D."}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Swant|http://dbpedia.org/resource/Bobby_Ciraldo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Swant|http://dbpedia.org/resource/Bobby_Ciraldo|http://dbpedia.org/resource/David_Robbins_(artist)|http://dbpedia.org/resource/Dustin_Diamond|http://dbpedia.org/resource/Kevin_Murphy_(actor)|http://dbpedia.org/resource/Kumar_Pallana|http://dbpedia.org/resource/Leslie_Hall|http://dbpedia.org/resource/Majel_Barrett|http://dbpedia.org/resource/Mark_Borchardt|http://dbpedia.org/resource/Mark_Metcalf|http://dbpedia.org/resource/Neil_Hamburger_(actor)|http://dbpedia.org/resource/Samwell_(entertainer)|http://dbpedia.org/resource/Tay_Zonday|http://dbpedia.org/resource/Trace_Beaulieu"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Hamlet A.D.D., directed by Bobby Ciraldo & Andrew Swant and produced by Special Entertainment, is a 2014 independent feature film and web series which re-imagines Shakespeare\u2019s play as a bizarre and comical tour through the ages. The world premiere was held at the Los Angeles Museum of Contemporary Art (MOCA LA) in April 2014. This version of Hamlet is a comedy shot entirely in front of a green screen and features live-action characters in an animated world. The story begins in 1602 and leaps chronologically through time to the present, then into the distant future. Guest stars include Dustin Diamond (Saved by the Bell), Mark Metcalf (Animal House), Majel Barrett Roddenberry (Star Trek), Trace Beaulieu & Kevin Murphy (Mystery Science Theater 3000), Mark Borchardt & Mike Schank (American Movie), Kumar Pallana (Rushmore), Leslie Hall (Yo Gabba Gabba!), Samwell (\"What What\"), Tay Zonday (Chocolate Rain), Michael Q. Schmidt (Tim & Eric Awesome Show), and comic Gregg Turkington as his character Neil Hamburger (Tim & Eric Awesome Show). Scenes from the film have been shown at White Columns gallery (New York City), the Green Gallery (Milwaukee), the Frederick Layton Gallery (MIAD), INOVA gallery (UW-Milwaukee), and appeared as a special feature on the Mystery Science Theater 3000 XV box set. The film was supported by the Mary L. Nohl Fellowship for Artists."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Time_Freak"}, "Title": {"type": "literal", "value": "Time Freak"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Bowler"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "11"}, "Description": {"type": "literal", "value": "Time Freak is a 2011 short comedy film written and directed by Andrew Bowler, and produced by Gigi Causey. The film was nominated for the 2012 Academy Award for Best Live Action Short Film. The time-travel comedy was inspired by other time-travel movies like Primer and Back to the Future. Bowler and Causey decided to produce the film after they got married, spending the $25,000 they had saved to buy an apartment in New York. The film was rejected by several film festivals, including Sundance, Telluride, and Tribeca, but the couple submitted it to the Academy of Motion Picture Arts and Sciences, which selected the film as a nominee for the award. The film stars John Conor Brooke, Michael Nathanson and Emilea Wilson. Brooke and Nathanson are roommates, but Nathanson hasn't been home for three days, so Brooke goes to Nathanson's lab in a run down building to check on him. Nathanson has just perfected the time machine he had been working on, but is behaving oddly. It turns out he has been re-doing the events of the day before, trying to perfect his interactions at a dry cleaner and with a woman (Wilson) that he wants to impress."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Natale_col_Boss"}, "Title": {"type": "literal", "value": "Natale col Boss"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Volfango_De_Biasi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Lillo_&_Greg|http://dbpedia.org/resource/Paolo_Ruffini"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Italian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "Natale col Boss (\"Christmas with the Boss\") is a 2015 Italian criminal comedy film written and directed by Volfango De Biasi. It grossed $8,528,805 at the Italian box office."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tanu_Weds_Manu"}, "Title": {"type": "literal", "value": "Tanu Weds Manu"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Anand_L._Rai"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jimmy_Shergill|http://dbpedia.org/resource/Kangana_Ranaut|http://dbpedia.org/resource/R._Madhavan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Indian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "119"}, "Description": {"type": "literal", "value": "Tanu Weds Manu is a 2011 Indian romantic drama film directed by Anand L. Rai, and produced by Shailesh R. Singh. It stars R. Madhavan, Kangana Ranaut and Jimmy Shergill in the lead roles. The story of the film has been written by Himanshu Sharma, music is directed by Krsna Solo and the lyrics penned by Rajshekhar. The film was released on 25 February 2011. Upon release, the film was commercially successful, particularly in Delhi, UP and Punjab. It was dubbed in German and released under the title Tanu Und Manu Trauen Sich. The film was remade in Telugu as Mr. Pellikoduku. A sequel, titled Tanu Weds Manu Returns was released on May 22, 2015."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Soundrya_Production|http://dbpedia.org/resource/Viacom_18_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Conversations_with_Other_Women"}, "Title": {"type": "literal", "value": "Conversations with Other Women"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Hans_Canosa"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aaron_Eckhart|http://dbpedia.org/resource/Helena_Bonham_Carter|http://dbpedia.org/resource/Nora_Zehetner|http://dbpedia.org/resource/Olivia_Wilde"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "Conversations with Other Women is a 2005 bittersweet romantic drama film directed by Hans Canosa, written by Gabrielle Zevin, starring Aaron Eckhart and Helena Bonham Carter. The film won Best Actress for Bonham Carter at the 2005 Tokyo International Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Zonad"}, "Title": {"type": "literal", "value": "Zonad"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/John_Carney_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Irish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Zonad is a film by John Carney and Kieran Carney that premiered in July 2009 at the Galway Film Fleadh with the directors in attendance.The film went to general release in Ireland March 19, 2010."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Chintakayala_Ravi"}, "Title": {"type": "literal", "value": "Chintakayala Ravi"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Yogie"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anushka_Shetty|http://dbpedia.org/resource/Daggubati_Venkatesh|http://dbpedia.org/resource/Mamta_Mohandas"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "152"}, "Description": {"type": "literal", "value": "Chintakayala Ravi....Software Engineer is a 2008 Telugu romantic comedy produced by Nallamalupu Bujji, and directed by Yogi. The cross over cinema, starring Venkatesh, Anushka Shetty, Mamta Mohandas in lead roles and Jr. NTR in a cameo appearance, with music composed by Vishal-Shekhar, received positive reviews."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Hangover_Part_III"}, "Title": {"type": "literal", "value": "The Hangover Part III"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Todd_Phillips"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bradley_Cooper|http://dbpedia.org/resource/Ed_Helms|http://dbpedia.org/resource/Heather_Graham|http://dbpedia.org/resource/Jeffrey_Tambor|http://dbpedia.org/resource/John_Goodman|http://dbpedia.org/resource/Justin_Bartha|http://dbpedia.org/resource/Ken_Jeong|http://dbpedia.org/resource/Mike_Epps|http://dbpedia.org/resource/Zach_Galifianakis"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "The Hangover Part III is a 2013 American comedy film produced by Legendary Pictures and distributed by Warner Bros. Pictures. It is the third and final installment in The Hangover trilogy. The film stars Bradley Cooper, Ed Helms, Zach Galifianakis, Justin Bartha, and Ken Jeong. The supporting cast includes Jeffrey Tambor, Heather Graham, Mike Epps, Melissa McCarthy and John Goodman with Todd Phillips directing a screenplay written by himself and Craig Mazin. The film follows the \"Wolfpack\" (Phil, Stu, Doug, and Alan) as they try to get Alan the help he needs after facing a personal crisis. However, things go awry when an incident from the original film comes back to haunt them. The Hangover Part III was announced days before the release of The Hangover Part II and Mazin, who co-wrote Part II, was brought on board. In January 2012, the principal actors re-signed to star. In March 2012, Warner Bros. announced a U.S. Memorial Weekend release. The supporting roles were cast between June and September 2012. Principal photography began in September 2012 in Los Angeles, California before moving to Nogales, Arizona and Las Vegas, Nevada. The film was released on May 23, 2013."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jesus_Christ_Vampire_Hunter"}, "Title": {"type": "literal", "value": "Jesus Christ Vampire Hunter"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lee_Demarbre"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ian_Driscoll|http://dbpedia.org/resource/Jeff_Moffet|http://dbpedia.org/resource/Murielle_Varhelyi|http://dbpedia.org/resource/Nicholas_Edwards_(actor)|http://dbpedia.org/resource/Phil_Caracas"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:2000s_musical_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Jesus Christ Vampire Hunter is a 2001 cult film from Odessa Filmworks which deals with Jesus' modern-day struggle to protect the lesbians of Ottawa, Ontario, Canada, from vampires with the help of Mexican wrestler El Santo (based on El Santo, Enmascarado de Plata, and played by actor Jeff Moffet, who starred as El Santo in two other Odessa Filmworks productions). This film earned an honorable mention in the Spirit of Slamdance category at the 2002 Slamdance Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Odessa_Filmworks"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Chasing_Amy"}, "Title": {"type": "literal", "value": "Chasing Amy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Smith"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Affleck|http://dbpedia.org/resource/Dwight_Ewell|http://dbpedia.org/resource/Jason_Lee_(actor)|http://dbpedia.org/resource/Jason_Mewes|http://dbpedia.org/resource/Joey_Lauren_Adams|http://dbpedia.org/resource/Kevin_Smith"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "113"}, "Description": {"type": "literal", "value": "Chasing Amy is a 1997 American romantic comedy-drama film written and directed by Kevin Smith. The central tension revolves around sexuality, sexual history, and evolving friendships. It is the third film in Smith's View Askewniverse series. The film was originally inspired by a brief scene from an early movie by a friend of Smith's. In Guinevere Turner's Go Fish, one of the lesbian characters imagines her friends passing judgment on her for \"selling out\" by sleeping with a man. Kevin Smith was dating star Joey Lauren Adams at the time he was writing the script, which was also partly inspired by her. The film won two awards at the 1998 Independent Spirit Awards (Best Screenplay for Smith and Best Supporting Actor for Jason Lee)."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Miramax_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/This_Is_Sanlitun"}, "Title": {"type": "literal", "value": "This Is Sanlitun"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/R\u00f3bert_Ingi_Douglas"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Carlos_Ottery"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Chinese_comedy_films|http://dbpedia.org/resource/Category:Irish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "This Is Sanlitun is a 2013 comedy film directed by R\u00f3bert Ingi Douglas. It is a co-production between China, Iceland and Ireland. It was screened in the Contemporary World Cinema section at the 2013 Toronto International Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Men_Who_Save_the_World"}, "Title": {"type": "literal", "value": "Men Who Save the World"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Liew_Seng_Tat"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Dutch_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films|http://dbpedia.org/resource/Category:German_comedy_films|http://dbpedia.org/resource/Category:Malaysian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Men Who Save the World (Malay: Lelaki Harapan Dunia) is a 2014 internationally co-produced comedy film written and directed by Liew Seng Tat. It is produced by Sharon Gan and is a co-production project between Everything Films Sdn. Bhd. (Malaysia) and Volya Films (The Netherlands), Flying Moon Filmproduktion (Germany) and Mandra Films (France) with support from Ministry of Information, Communication and Culture (Malaysia), Torino Film Lab (Italy), Hubert Bals Fund (The Netherlands), Netherlands Film Fund, World Cinema Fund (Germany), Visions Sud Est (Switzerland), Fondation Groupama Gan pour le Cin\u00e9ma - Cinefondation (France), Prince Claus (The Netherlands), Sundance Institute Mahindra Global Filmmaking Award, Sundance Institute Feature Film Program dan the Doris Duke Foundation (USA). The film was selected as the Malaysian entry for the Best Foreign Language Film at the 88th Academy Awards but it was not nominated."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Misfortunates"}, "Title": {"type": "literal", "value": "The Misfortunates"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Felix_Van_Groeningen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Johan_Heldenbergh"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Belgian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "The Misfortunates (Dutch: De helaasheid der dingen) is a 2009 Belgian comedy-drama film directed by Felix Van Groeningen. It is adapted from the (partly autobiographical) book De Helaasheid der Dingen by Belgian writer Dimitri Verhulst. The film stars Koen De Graeve, Johan Heldenbergh, Wouter Hendrickx, Bert Haelvoet, Valentijn Dhaenens, Kenneth Vanbaeden and Gilda De Bal."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Players_(film)"}, "Title": {"type": "literal", "value": "The Players"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Emmanuelle_Bercot|http://dbpedia.org/resource/Gilles_Lellouche|http://dbpedia.org/resource/Jan_Kounen|http://dbpedia.org/resource/Jean_Dujardin|http://dbpedia.org/resource/Michel_Hazanavicius|http://dbpedia.org/resource/\u00c9ric_Lartigau"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gilles_Lellouche|http://dbpedia.org/resource/Jean_Dujardin"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "The Players (French: Les Infid\u00e8les) is a 2012 omnibus comedy film starring Jean Dujardin and Gilles Lellouche, with each of them also directing and writing a segment."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Porn_in_the_Hood"}, "Title": {"type": "literal", "value": "Porn in the Hood"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Franck_Gastambide"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Porn in the Hood (French: Les Ka\u00efra) is a 2012 French comedy film directed by Franck Gastambide. It is based on a popular web series, Kaira Shopping. It was a commercial success, being the most profitable French film in 2012."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Marc_Pease_Experience"}, "Title": {"type": "literal", "value": "The Marc Pease Experience"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Todd_Louiso"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anna_Kendrick|http://dbpedia.org/resource/Ben_Stiller|http://dbpedia.org/resource/Ebon_Moss-Bachrach|http://dbpedia.org/resource/Jason_Schwartzman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "The Marc Pease Experience is a 2009 comedy film directed by Todd Louiso and written by Louiso and Jacob Koskoff. Shot primarily in and around Wilmington and New Hanover County, North Carolina in early 2007, the film is centered on Marc Pease, a man living in the past, when he was the star of his high school's musicals. The film stars Jason Schwartzman as Pease, Ben Stiller as Marc's former mentor, and Anna Kendrick as his love interest."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Vantage"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/In_Search_of_La_Che"}, "Title": {"type": "literal", "value": "In Search of La Che"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mark_D._Ferguson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Duncan_Airlie_James"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "71"}, "Description": {"type": "literal", "value": "In Search of La Che is a Scottish spoof documentary film directed by Mark D. Ferguson. The screenplay was written by Andy S. McEwan. In Search of La Che premiered at the Glasgow Film Theatre on 9 November 2011."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Waitress!"}, "Title": {"type": "literal", "value": "Waitress!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lloyd_Kaufman|http://dbpedia.org/resource/Michael_Herz_(producer)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1980s_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Waitress! is a 1981 comedy film directed by Lloyd Kaufman and Michael Herz of Troma Entertainment. It was the second in Troma's line of \"sexy comedies\", preceded by the 1979's Squeeze Play! and followed by 1982's Stuck on You! and 1983's The First Turn-On!."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Troma_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Cabin_Fever_(2002_film)"}, "Title": {"type": "literal", "value": "Cabin Fever"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Eli_Roth"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Arie_Verveen|http://dbpedia.org/resource/Cerina_Vincent|http://dbpedia.org/resource/Giuseppe_Andrews|http://dbpedia.org/resource/James_DeBello|http://dbpedia.org/resource/Joey_Kern|http://dbpedia.org/resource/Jordan_Ladd|http://dbpedia.org/resource/Rider_Strong"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Cabin Fever is a 2002 American horror film directed by Eli Roth and starring Rider Strong, Jordan Ladd, James DeBello, and Giuseppe Andrews. It was produced by Lauren Moews and Evan Astrowsky and executive produced by Susan Jackson. The film was the directing debut of Roth, who co-wrote the film with Randy Pearlstein. The story follows a group of college graduates who rent a cabin in the woods and begin to fall victim to a flesh-eating virus. The inspiration for the film's story came from a real life experience during a trip to Iceland when Roth developed a skin infection. Roth wanted the style of his film to make a departure from many modern horror films that had been released at the time. One modern horror film, The Blair Witch Project, did inspire Roth to use the internet to help promote the film during its production and help gain interest towards its distribution. The film itself, however, draws from many of Roth's favorite horror films, such as The Evil Dead, The Texas Chain Saw Massacre, and The Last House on the Left."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lions_Gate_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Me_Him_Her"}, "Title": {"type": "literal", "value": "Me Him Her"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Max_Landis"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dustin_Milligan|http://dbpedia.org/resource/Emily_Meade|http://dbpedia.org/resource/Luke_Bracey"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Me Him Her is a 2015 American comedy film written and directed by Max Landis, in his directorial debut. The film stars Luke Bracey, Dustin Milligan, and Emily Meade. The film had its world premiere at the Seattle International Film Festival on June 5, 2015. The film was released in a limited release and through video on demand on March 11, 2016, by FilmBuff."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Filmbuff"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ugly_Me"}, "Title": {"type": "literal", "value": "Pretendiendo"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Melissa_George"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amaya_Forch|http://dbpedia.org/resource/B\u00e1rbara_Mori|http://dbpedia.org/resource/Felipe_Camiroaga|http://dbpedia.org/resource/Gonzalo_Robles|http://dbpedia.org/resource/Jaime_Az\u00f3car|http://dbpedia.org/resource/Marcelo_Mazzarello|http://dbpedia.org/resource/Rodrigo_Mu\u00f1oz"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "118"}, "Description": {"type": "literal", "value": "Pretendiendo (Pretending) known as Ugly Me in the U.S. is a 2006 Chilean romantic comedy film directed and written by Claudio Dabed. The film is about a beautiful but romantically disappointed woman named Amanda who decides to transform into an ugly duckling in an attempt to ward off men. Amanda also adopts another persona, that of a gorgeous vixen named Helena. The film stars B\u00e1rbara Mori."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Second_Hand_Husband"}, "Title": {"type": "literal", "value": "Second Hand Husband"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Smeep_Kang"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dharmendra|http://dbpedia.org/resource/Gippy_Grewal|http://dbpedia.org/resource/Tina_Ahuja"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Second Hand Husband is a 2015 Indian romantic comedy film produced by GB Entertainment and directed by Smeep Kang and starring Gippy Grewal, Tina Ahuja, and Dharmendra. The film marks the Bollywood film debut of Govinda\u2019s daughter, Tina Ahuja, and famous Punjabi Singer and Actor Gippy Grewal. The film released on 3 July 2015 to negative reviews."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Stuck_on_You!"}, "Title": {"type": "literal", "value": "Stuck on You!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lloyd_Kaufman|http://dbpedia.org/resource/Michael_Herz_(producer)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Irwin_Corey"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1980s_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Stuck on You! is a 1982 comedy film directed by Lloyd Kaufman and Michael Herz of Troma Entertainment. Stuck on You! was the third in a series of four \"sexy comedies\" that helped establish Troma, beginning with 1979's smash hit Squeeze Play!, 1981's Waitress!, and followed by 1983's The First Turn-On!. Lloyd Kaufman has stated that Stuck on You! is his favorite of Troma's \"sexy comedies\". The tagline of the film is \"It's Boys, It's Girls, It's Crazy...It's A Stuckin' Good Time!!!\""}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Troma_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Anuvahood"}, "Title": {"type": "literal", "value": "Anuvahood"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Deacon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Deacon|http://dbpedia.org/resource/Ashley_Walters|http://dbpedia.org/resource/Femi_Oyeniran|http://dbpedia.org/resource/Jazzie_Zonzolo|http://dbpedia.org/resource/Ollie_Barbieri|http://dbpedia.org/resource/Wil_Johnson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:British_comedy-drama_films|http://dbpedia.org/resource/Category:British_criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Anuvahood is a 2011 British urban comedy film directed by Adam Deacon, who also plays the film's lead character. It also stars Paul Kaye, Wil Johnson, Ollie Barbieri, Femi Oyeniran, Jocelyn Jee Esien, and Ashley Walters. Critics received it negatively; it had a strong box-office opening. The film released worldwide on 18 March 2011. Anuvahood is a parody of films in the vein of urban movies such as Kidulthood, Adulthood, and Shank, all of which Deacon starred in."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Eating_Out_4:_Drama_Camp"}, "Title": {"type": "literal", "value": "Eating Out: Drama Camp"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Q._Allan_Brocka"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Salvatore|http://dbpedia.org/resource/Rebekah_Kochan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "Eating Out 4: Drama Camp (2011) is the fourth film in the Eating Out franchise. The film is co-written (with Phillip J. Bartell) and directed by Q. Allan Brocka."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bin_Bulaye_Baraati"}, "Title": {"type": "literal", "value": "Bin Bulaye Baraati"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chandrakant_Singh"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aftab_Shivdasani|http://dbpedia.org/resource/Om_Puri|http://dbpedia.org/resource/Priyanka_Kothari|http://dbpedia.org/resource/Rajpal_Yadav|http://dbpedia.org/resource/Sanjai_Mishra|http://dbpedia.org/resource/Vijay_Raaz"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Bin Bulaye Baraati is a 2011 Bollywood comedy film written by Praful Parekh and M.Salim and directed by Chandrakant Singh. The stars Aftab Shivdasani, Priyanka Kothari, Rajpal Yadav, Om Puri, Sanjay Mishra, Shakti Kapoor and Vijay Raaz in lead roles, with Shweta Tiwari featured in a cameo appearance and Mallika Sherawat and Shweta Bhardwaj appearing in song numbers. The film was released in India on 17 June 2011 and received mixed reviews."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Dhanraj_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Think_Like_a_Man"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tim_Story"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "123"}, "Description": {"type": "literal", "value": "Think Like a Man is a 2012 American romantic comedy film directed by Tim Story and written by Keith Marryman and David A. Newman, based on Steve Harvey's 2009 book Act Like a Lady, Think Like a Man. The film stars an ensemble cast, featuring Michael Ealy, Jerry Ferrara,Meagan Good, Regina Hall, Kevin Hart, Terrence J, Taraji P. Henson, Romany Malco and Gabrielle Union. The film was released on April 20, 2012 by Screen Gems."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Screen_Gems"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Cousinhood"}, "Title": {"type": "literal", "value": "Cousinhood"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Daniel_S\u00e1nchez_Ar\u00e9valo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Inma_Cuesta|http://dbpedia.org/resource/Quim_Guti\u00e9rrez|http://dbpedia.org/resource/Ra\u00fal_Ar\u00e9valo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Cousinhood (Spanish: Primos) is a 2011 Spanish film written and directed by Daniel Sanchez Ar\u00e9valo and starring Quim Guti\u00e9rrez, Ra\u00fal Ar\u00e9valo and Adri\u00e1n Lastra. This is the third film of Sanch\u00e9z Ar\u00e9valo, but his very first comedy, and it premiered on February 4, 2011. The film was shot in Comillas (Cantabria) during spring 2010. The film received two nominations for the Goya awards 2012: best \"breakout author\" (Adri\u00e1n Lastra) and best \"supporting actor\" (Ra\u00fal Ar\u00e9valo)."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Space_Chimps"}, "Title": {"type": "literal", "value": "Space Chimps"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kirk_DeMicco"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Samberg|http://dbpedia.org/resource/Cheryl_Hines|http://dbpedia.org/resource/Jeff_Daniels|http://dbpedia.org/resource/Kristin_Chenoweth|http://dbpedia.org/resource/Patrick_Warburton|http://dbpedia.org/resource/Stanley_Tucci"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "Space Chimps is a 2008 American 3D computer-animated science fiction comedy film directed by Kirk DeMicco and written by DeMicco and Rob Moreland. It features the voices of Andy Samberg, Cheryl Hines, Jeff Daniels, Patrick Warburton, Kristin Chenoweth, Kenan Thompson, Zack Shada, Carlos Alazraqui, Omid Abtahi, Patrick Breen, Jane Lynch, Kath Soucie, and Stanley Tucci. The film follows three chimpanzees that go into space to an alien planet. 20th Century Fox theatrically released the film on July 18, 2008. The film grossed $64.8 million on a $37 million budget. It received a Artios Award nomination for Outstanding Achievement in Casting - Animation Feature. A video game based on the film was released in 2008. A direct-to-video sequel, entitled Zartog Strikes Back, directed by John H. Williams, was released in 2010."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Odyssey_Entertainment|http://dbpedia.org/resource/Starz_Animation|http://dbpedia.org/resource/Studiopolis|http://dbpedia.org/resource/Vanguard_Animation"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Polka_King"}, "Title": {"type": "literal", "value": "The Polka King"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Maya_Forbes|http://dbpedia.org/resource/Wallace_Wolodarsky"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jack_Black|http://dbpedia.org/resource/Jacki_Weaver|http://dbpedia.org/resource/Jason_Schwartzman|http://dbpedia.org/resource/Jenny_Slate"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:2010s_criminal_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films|http://dbpedia.org/resource/Category:Comedy_films_based_on_actual_events"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Polka King is an upcoming American comedy film directed and written by Maya Forbes and Wallace Wolodarsky. The film stars Jack Black, Jenny Slate, Jason Schwartzman, and Jacki Weaver."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Horrid_Henry:_The_Movie"}, "Title": {"type": "literal", "value": "Horrid Henry: The Movie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nick_Moore_(film_director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anjelica_Huston|http://dbpedia.org/resource/Dick_and_Dom|http://dbpedia.org/resource/Jo_Brand|http://dbpedia.org/resource/Kimberley_Walsh|http://dbpedia.org/resource/Mathew_Horne|http://dbpedia.org/resource/Noel_Fielding|http://dbpedia.org/resource/Parminder_Nagra|http://dbpedia.org/resource/Richard_E._Grant|http://dbpedia.org/resource/Siobhan_Hayes|http://dbpedia.org/resource/Theo_Stevenson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Horrid Henry: The Movie is a 2011 British 3D children's adventure film directed by Nick Moore and produced by Allan Niblo, Rupert Preston, Mike Watts, and Lucinda Whiteley, who wrote it. In it, Henry and The Purple Hand Gang fight to prevent the closure of their school by an evil private school Headmaster. It is based on the fictional character Horrid Henry from the children's book series by Francesca Simon. It stars Theo Stevenson, Richard E. Grant, Parminder Nagra, Kimberley Walsh, Mathew Horne, Siobhan Hayes, Dick and Dom, Noel Fielding, Jo Brand, and Anjelica Huston. It was the first British film for children to be shot in 3D. The film was officially released in cinemas on 29 July 2011 in 2D, RealD 3D, and 3D formats by Vertigo Films in the United Kingdom. Phase 4 Films and Entertainment One released the film in theatres in the United States and Canada on 22 December 2012. The film has an approval rating of 10% on Rotten Tomatoes and grossed $10.1 million worldwide. Horrid Henry: The Movie was released on DVD and Blu-ray on 9 November 2012."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Vertigo_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kopps"}, "Title": {"type": "literal", "value": "Kopps"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Josef_Fares"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Fares_Fares|http://dbpedia.org/resource/G\u00f6ran_Ragnerstam|http://dbpedia.org/resource/Sissela_Kyle|http://dbpedia.org/resource/Torkel_Petersson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Swedish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Kopps is a Swedish film which was released to cinemas in Sweden on 7 February 2003, directed by Josef Fares. The name itself is a pun on pronouncing the English word \"Cops\" with a Swedish accent. The film is a comedy about Swedish police, starring Fares Fares, Torkel Petersson, Sissela Kyle, G\u00f6ran Ragnerstam and Eva R\u00f6se."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sonet_Film"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Teacher's_Pet_(2004_film)"}, "Title": {"type": "literal", "value": "Teacher's Pet"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Timothy_Bj\u00f6rklund"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/David_Ogden_Stiers|http://dbpedia.org/resource/Debra_Jo_Rupp|http://dbpedia.org/resource/Jerry_Stiller|http://dbpedia.org/resource/Kelsey_Grammer|http://dbpedia.org/resource/Nathan_Lane|http://dbpedia.org/resource/Shaun_Fleming"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "74"}, "Description": {"type": "literal", "value": "Teacher's Pet is a 2004 American animated musical comedy film based on the television series of the same name; the film ends the central storyline of the series. Produced by Disney Television Animation and released theatrically on January 16, 2004, the film was a box office bomb but a critical success.The movie is dedicated to creator Gary Baseman's dog, Hubcaps, who died while the film was in production."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Caprice_(2015_film)"}, "Title": {"type": "literal", "value": "Caprice"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Emmanuel_Mouret"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ana\u00efs_Demoustier|http://dbpedia.org/resource/Emmanuel_Mouret|http://dbpedia.org/resource/Laurent_Stocker|http://dbpedia.org/resource/Virginie_Efira"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:French_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Caprice is a 2015 French romantic comedy film written and directed by Emmanuel Mouret, and starring Mouret, Virginie Efira, Ana\u00efs Demoustier and Laurent Stocker. It won the award for Best Film at the 2015 Cabourg Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/She_Wants_Me"}, "Title": {"type": "literal", "value": "She Wants Me"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rob_Margolies"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aaron_Yoo|http://dbpedia.org/resource/Hilary_Duff|http://dbpedia.org/resource/Johnny_Messner_(actor)|http://dbpedia.org/resource/Josh_Gad|http://dbpedia.org/resource/Kristen_Ruhlin|http://dbpedia.org/resource/Melonie_Diaz"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "She Wants Me is a 2012 comedy film starring Josh Gad, Kristen Ruhlin, Johnny Messner, Aaron Yoo and Melonie Diaz and also featured appearances of Hilary Duff and Charlie Sheen. It was written and directed by Rob Margolies."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lymelife"}, "Title": {"type": "literal", "value": "Lymelife"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Derick_Martini"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alec_Baldwin|http://dbpedia.org/resource/Emma_Roberts|http://dbpedia.org/resource/Rory_Culkin"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Lymelife is a 2008 independent comedy-drama film written by brothers Derick Martini and Steven Martini, and directed by Derick Martini, depicting aspects of their life in 1970s Long Island from the perspective of a teenager. The film stars Alec Baldwin, Rory Culkin, and Emma Roberts. Martin Scorsese served as an executive producer. The film debuted at the 2008 Toronto International Film Festival, in September 2008 and won the International Federation of Film Critics Award (FIPRESCI). After its theatrical release in 2009, writer director Derick Martini was nominated for a Gotham Award for Breakthrough Director."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Screen_Media_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ted_(film)"}, "Title": {"type": "literal", "value": "Ted"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Seth_MacFarlane"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Mark_Wahlberg|http://dbpedia.org/resource/Mila_Kunis"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_fantasy-comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films|http://dbpedia.org/resource/Category:Best_Comedy_Empire_Award_winners|http://dbpedia.org/resource/Category:Fantasy-comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "Ted is a 2012 American comedy film directed by Seth MacFarlane in his feature film directorial debut. The screenplay by MacFarlane, Alec Sulkin, and Wellesley Wild is from MacFarlane's story. The film stars MacFarlane, Mark Wahlberg, Mila Kunis, and with Joel McHale and Giovanni Ribisi in supporting roles, with MacFarlane providing the voice of the title character. The film tells the story of John Bennett, a Boston native whose childhood wish brings his teddy bear friend Ted to life. However, Ted prevents John and his love interest Lori Collins from moving on with their lives. The film is MacFarlane's feature-length directorial debut, produced by Media Rights Capital and distributed by Universal Pictures. It was the twelfth-highest-grossing film of 2012 and received an Academy Award nomination for Best Original Song. A sequel, Ted 2, was released on June 26, 2015."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Fuzzy_Door_Productions|http://dbpedia.org/resource/Media_Rights_Capital"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Me,_Myself_and_Mum"}, "Title": {"type": "literal", "value": "Me, Myself and Mum"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Guillaume_Gallienne"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andr\u00e9_Marcon|http://dbpedia.org/resource/Fran\u00e7oise_Fabian|http://dbpedia.org/resource/Nanou_Garcia"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Me, Myself and Mum (French: Les Gar\u00e7ons et Guillaume, \u00e0 table !) is a 2013 French autobiographical coming of age comedy film written, directed by and starring Guillaume Gallienne. Based on his stage show of the same name, it follows Guillaume as a boy as he develops his own identity and his relationship with his mother. The film premiered at the 2013 Cannes Film Festival and was released in France on 20 November 2013. In January 2014, the film was nominated for ten C\u00e9sar Awards and won five, including awards for Best Film and Best First Feature Film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Gaumont_Film_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/My_Big_Fat_Independent_Movie"}, "Title": {"type": "literal", "value": "My Big Fat Independent Movie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Philip_Zlotorynski"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Clint_Howard|http://dbpedia.org/resource/Jason_Mewes|http://dbpedia.org/resource/Paget_Brewster|http://dbpedia.org/resource/Pauly_Shore"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "My Big Fat Independent Movie is a 2005 independent film produced, written and directed by former film critic Chris Gore spoofing well-known independent films, such as My Big Fat Greek Wedding, Memento, Swingers, Pulp Fiction, Magnolia, Am\u00e9lie, Reservoir Dogs, Pi, The Good Girl, Run Lola Run, Clerks and El Mariachi. My Big Fat Independent Movie was eventually acquired by Anchor Bay Entertainment distribution and the film was released on DVD. Broadcast cable rights were picked up by CBS Corporation for Showtime, The Movie Channel and Sundance Channel."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Anchor_Bay_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Seeking_a_Friend_for_the_End_of_the_World"}, "Title": {"type": "literal", "value": "Seeking a Friend for the End of the World"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lorene_Scafaria"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Brody|http://dbpedia.org/resource/Derek_Luke_(actor)|http://dbpedia.org/resource/Keira_Knightley|http://dbpedia.org/resource/Steve_Carell|http://dbpedia.org/resource/William_Petersen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films|http://dbpedia.org/resource/Category:Comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Seeking a Friend for the End of the World is a 2012 American comedy-drama film written and directed by Lorene Scafaria, in her directorial debut. The film stars Steve Carell and Keira Knightley. The title and plot are a reference to a track on Chris Cornell's 1999 album, Euphoria Morning, called \"Preaching the End of the World\". Filming began May 2011, in Los Angeles, California. The film was theatrically released on June 22, 2012 in the United States by Focus Features. The movie received mixed reviews from critics and it earned $9.6 million on a $10 million budget. Seeking a Friend for the End of the World was released on DVD and Blu-ray Disc and made available for digital streaming in the United States on October 23, 2012."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Focus_Features"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Yaaron_Ki_Baraat"}, "Title": {"type": "literal", "value": "Yaaron Ki Baraat"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ikram_Akhtar"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Sunny_Leone"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy-drama_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Yaaron Ki Baraat is an upcoming Indian 2016 Bollywood comedy-drama film directed by Ikram Akhtar and produced by Vinod Bachchan, under the Soundrya Production banner. The principal photography of the film will begin in March 2016 and will be released sometime in the fourth quarter of 2016. Sunny Leone will be in lead role."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Soundrya_Production"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kick-Ass_(film_series)"}, "Title": {"type": "literal", "value": "Kick-Ass"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jeff_Wadlow|http://dbpedia.org/resource/Matthew_Vaughn"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aaron_Taylor-Johnson|http://dbpedia.org/resource/Chlo\u00eb_Grace_Moretz|http://dbpedia.org/resource/Christopher_Mintz-Plasse|http://dbpedia.org/resource/Jim_Carrey|http://dbpedia.org/resource/Mark_Strong|http://dbpedia.org/resource/Nicolas_Cage"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films|http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "220"}, "Description": {"type": "literal", "value": "Kick-Ass is a British-American superhero comedy film series, based on the comic book of the same name by Mark Millar and John Romita, Jr. Its premise is that teenager Dave Lizewski sets out to become a real-life superhero, calling himself \"Kick-Ass\"."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Perfect_Match_(2016_film)"}, "Title": {"type": "literal", "value": "The Perfect Match"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bille_Woodruff"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "The Perfect Match is a 2016 American romantic comedy film directed by Bille Woodruff. The film was written by Dana Verde, Brandon Broussard and Gary Hardwick and stars Terrence J, Cassie Ventura, Lauren London and Paula Patton. It was released on March 11, 2016."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lions_Gate_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sleeping_with_Other_People"}, "Title": {"type": "literal", "value": "Sleeping with Other People"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Leslye_Headland"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Brody|http://dbpedia.org/resource/Adam_Scott_(actor)|http://dbpedia.org/resource/Alison_Brie|http://dbpedia.org/resource/Amanda_Peet|http://dbpedia.org/resource/Jason_Mantzoukas|http://dbpedia.org/resource/Jason_Sudeikis|http://dbpedia.org/resource/Natasha_Lyonne"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Sleeping with Other People is a 2015 American romantic comedy film directed and written by Leslye Headland. The film stars Jason Sudeikis, Alison Brie, Natasha Lyonne, Amanda Peet, and Adam Scott. Premiering at the 2015 Sundance Film Festival on January 24, 2015, the film was released theatrically on September 11, 2015, by IFC Films."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Films"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Gary_Sanchez_Productions|http://dbpedia.org/resource/IM_Global|http://dbpedia.org/resource/Sidney_Kimmel_Entertainment"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/2016_The_End"}, "Title": {"type": "literal", "value": "2016 The End"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jaideep_Chopra"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 The End is upcoming Drama & Comedy film written and directed by Jaideep Chopra under the banner Jaideep Chopra Productions."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hotel_Transylvania"}, "Title": {"type": "literal", "value": "Hotel Transylvania"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Genndy_Tartakovsky"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Sandler|http://dbpedia.org/resource/Andy_Samberg|http://dbpedia.org/resource/CeeLo_Green|http://dbpedia.org/resource/David_Spade|http://dbpedia.org/resource/Fran_Drescher|http://dbpedia.org/resource/Kevin_James|http://dbpedia.org/resource/Molly_Shannon|http://dbpedia.org/resource/Selena_Gomez|http://dbpedia.org/resource/Steve_Buscemi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Hotel Transylvania is a 2012 American 3D computer animated fantasy comedy film produced by Sony Pictures Animation. It was directed by Genndy Tartakovsky, and produced by Michelle Murdocca. The film stars the voices of Adam Sandler, Andy Samberg, Selena Gomez, Kevin James, Fran Drescher, Steve Buscemi, Molly Shannon, David Spade, and CeeLo Green. The film tells a story of Count Dracula, the owner of a hotel called Hotel Transylvania where the world's monsters can take a rest from human civilization. Dracula invites some of the most famous monsters to celebrate the 118th birthday of his daughter Mavis. When the \"non-human hotel\" is unexpectedly visited by an ordinary 21-year-old traveler named Jonathan, Dracula must protect Mavis from falling in love with him before the hotel's guests learn there is a human in the castle, which may jeopardize the hotel's future and his career. The film was released on September 28, 2012, by Columbia Pictures. It was met with mixed critical reception, while the general public received it favorably. Despite mixed reviews, Hotel Transylvania earned a total of $358 million on a budget of $85 million. The film was nominated for a Golden Globe Award for Best Animated Feature Film. It had launched a franchise, with a sequel, Hotel Transylvania 2, which takes place seven years after the film, in 2015, and a third film scheduled for 2018. A television series is planned for early 2017, and it will focus on the teenage years of Mavis and her friends at the Hotel Transylvania."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Strange_Bedfellows_(2004_film)"}, "Title": {"type": "literal", "value": "Strange Bedfellows"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dean_Murphy"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Caton|http://dbpedia.org/resource/Paul_Hogan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Australian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Strange Bedfellows is a 2004 Australian film starring Paul Hogan and Michael Caton as heterosexual men who pass themselves off as a gay couple in order to get financial benefits from the government. A stage musical based on the film ran at the Princess Theatre in Melbourne."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Drop_Dead_Gorgeous_(film)"}, "Title": {"type": "literal", "value": "Drop Dead Gorgeous"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Patrick_Jann"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Allison_Janney|http://dbpedia.org/resource/Amy_Adams_(actress)|http://dbpedia.org/resource/Brittany_Murphy|http://dbpedia.org/resource/Denise_Richards|http://dbpedia.org/resource/Ellen_Barkin|http://dbpedia.org/resource/Kirsten_Dunst|http://dbpedia.org/resource/Kirstie_Alley|http://dbpedia.org/resource/Mindy_Sterling|http://dbpedia.org/resource/Sam_McMurray|http://dbpedia.org/resource/Will_Sasso"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Drop Dead Gorgeous is a 1999 American black comedy film directed by Michael Patrick Jann and starring Kirstie Alley, Ellen Barkin, Kirsten Dunst, Allison Janney, Denise Richards, Brittany Murphy, and Amy Adams in her film debut. Shot in a mockumentary format, it follows the contestants in a beauty pageant called the Sarah Rose Cosmetics Mount Rose American Teen Princess Pageant, held in the small fictional town of Mount Rose, Minnesota, in which various contestants begin to die in suspicious ways."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/New_Line_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bad_Teacher"}, "Title": {"type": "literal", "value": "Bad Teacher"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jake_Kasdan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cameron_Diaz|http://dbpedia.org/resource/Jason_Segel|http://dbpedia.org/resource/Justin_Timberlake"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Bad Teacher is a 2011 American comedy film directed by Jake Kasdan based on a screenplay by Lee Eisenberg and Gene Stupnitsky, and starring Cameron Diaz, Justin Timberlake and Jason Segel. The film was released in the United States and Canada on June 24, 2011."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/In_a_World..."}, "Title": {"type": "literal", "value": "In a World..."}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lake_Bell"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "(This article is about the 2013 film. For the voice actor known for the phrase \"In a world...\", see Don LaFontaine.) In a World... is a 2013 American comedy film written, directed and co-produced by Lake Bell. The film stars Bell as Carol Solomon, a vocal coach intent on doing voice-over work for film trailers. The film co-stars Demetri Martin, Fred Melamed, Rob Corddry, Michaela Watkins, Ken Marino, Nick Offerman, and Tig Notaro. The film was a financial success, grossing nearly $3 million on a budget of less than $1 million, and received positive reviews from critics."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Flickering_Lights"}, "Title": {"type": "literal", "value": "Flickering Lights"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Anders_Thomas_Jensen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Mads_Mikkelsen|http://dbpedia.org/resource/Nikolaj_Lie_Kaas|http://dbpedia.org/resource/S\u00f8ren_Pilmark|http://dbpedia.org/resource/Ulrich_Thomsen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Flickering Lights (Danish: Blinkende Lygter) is a 2000 Danish black comedy film directed by Anders Thomas Jensen starring S\u00f8ren Pilmark, Mads Mikkelsen, Ulrich Thomsen and Nikolaj Lie Kaas. A major success in its native Denmark, it is frequently elected in polls as the greatest film in Danish cinema."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Lucky_Ones_(film)"}, "Title": {"type": "literal", "value": "The Lucky Ones"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Neil_Burger"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "The Lucky Ones is a 2008 American comedy-drama directed by Neil Burger. The screenplay by Burger and Dirk Wittenborn focuses on three United States Army soldiers who find themselves drawn together by unforeseen circumstances."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lions_Gate_Entertainment|http://dbpedia.org/resource/Roadside_Attractions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jai_Maruthi_800"}, "Title": {"type": "literal", "value": "Jai Maruthi 800"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Harsha_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Sharan_(actor)|http://dbpedia.org/resource/Shruthi_Hariharan|http://dbpedia.org/resource/Shubha_Poonja"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Jai Maruthi 800 is a 2016 Indian Kannada action-comedy film written and directed by A. Harsha and produced by Jayanna. It stars Sharan, Shruthi Hariharan and Shubha Poonja in the lead roles. The music is composed by Arjun Janya and cinematography by Swamy.J. The director had revealed that the script had been penned by a renowned Telugu writer. It was also reported that Sharan plays a small-time realtor called Maruti in the movie and is unexpectedly caught in a crisis over a litigated 800-acre land.Sharan had also developed six-pack abs for the film especially for the climax of the film"}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Rags_(2012_film)"}, "Title": {"type": "literal", "value": "Rags"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bille_Woodruff"}, "Author": {"type": "literal", "value": "http://dbpedia.org/resource/Jason_Fuchs"}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Avan_Jogia|http://dbpedia.org/resource/Burkely_Duffield|http://dbpedia.org/resource/Drake_Bell|http://dbpedia.org/resource/Keenan_Tracey|http://dbpedia.org/resource/Keke_Palmer|http://dbpedia.org/resource/Max_Schneider"}, "Published": {"type": "literal", "value": "2012-05-28"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_musical_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Rags is a Nickelodeon Original Movie. It is a musical gender switched inversion of the Cinderella fairy tale, starring Max Schneider, Keke Palmer, Drake Bell, Avan Jogia and Nick Cannon. The movie premiered on Nickelodeon in May 28, 2012. The film was released on August 28, 2012 as a double feature with Big Time Movie."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kapoor_&_Sons"}, "Title": {"type": "literal", "value": "Kapoor & Sons"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Shakun_Batra"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alia_Bhatt|http://dbpedia.org/resource/Fawad_Khan|http://dbpedia.org/resource/Rajat_Kapoor|http://dbpedia.org/resource/Ratna_Pathak|http://dbpedia.org/resource/Rishi_Kapoor|http://dbpedia.org/resource/Sidharth_Malhotra"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy-drama_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "132"}, "Description": {"type": "literal", "value": "Kapoor & Sons, also known as Kapoor & Sons (Since 1921), is an Indian Hindi-language comedy-drama film directed by Shakun Batra and produced by Karan Johar, Hiroo Yash Johar, and Apoorva Mehta under the banners of Dharma Productions and Fox Star Studios. The film stars an ensemble cast, featuring Sidharth Malhotra, Fawad Khan and Alia Bhatt in leading roles, while Rishi Kapoor, Ratna Pathak and Rajat Kapoor were cast in supporting roles. Kapoor & Sons tells the story of two estranged brothers who return to their dysfunctional family after their grandfather suffers a cardiac arrest. The film was released worldwide on 18 March 2016. Kapoor & Sons and Khan's performance received critical acclaim upon release. Made on a budget of \u20b935 crore (US$5.2 million), the film earned over \u20b9152 crore (US$23 million) worldwide."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Star_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Buford's_Beach_Bunnies"}, "Title": {"type": "literal", "value": "Buford's Beach Bunnies"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mark_Pirro"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Buford's Beach Bunnies is a 1993 American comedy film featuring Jim Hanks."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kamome_Shokudo"}, "Title": {"type": "literal", "value": "Kamome Shokud\u014d"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Naoko_Ogigami"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hairi_Katagiri|http://dbpedia.org/resource/Jarkko_Niemi_(actor)|http://dbpedia.org/resource/Markku_Peltola|http://dbpedia.org/resource/Masako_Motai|http://dbpedia.org/resource/Satomi_Kobayashi|http://dbpedia.org/resource/Tarja_Markus"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Japanese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Kamome Shokud\u014d (\u304b\u3082\u3081\u98df\u5802 Kamome shokud\u014d) is a 2006 comedy film written and directed by Japanese director Naoko Ogigami, It's based on a novel by Y\u014dko Mure. The film is set in the Finnish capital Helsinki, and follows a Japanese woman who sets up a diner serving Japanese food in the city, and the friends she makes in the process. Cast members include: Hairi Katagiri (Midori), Satomi Kobayashi (Sachie, the shopkeeper), Masako Motai (Masako), Markku Peltola, Tarja Markus (Liisa), and Jarkko Niemi (Tommi)."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ved_verdens_ende"}, "Title": {"type": "literal", "value": "Ved verdens ende"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tomas_Villum_Jensen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Birgitte_Hjort_S\u00f8rensen|http://dbpedia.org/resource/Nikolaj_Coster-Waldau|http://dbpedia.org/resource/Nikolaj_Lie_Kaas"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Ved verdens ende (At World's End) is a 2009 Danish action comedy film directed by Tomas Villum Jensen and starring Nikolaj Lie Kaas, Birgitte Hjort S\u00f8rensen and Nikolaj Coster-Waldau."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Boog_and_Elliot's_Midnight_Bun_Run"}, "Title": {"type": "literal", "value": "Boog and Elliot's Midnight Bun Run"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Anthony_Stacchi|http://dbpedia.org/resource/Jill_Culton"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ashton_Kutcher|http://dbpedia.org/resource/Cody_Cameron|http://dbpedia.org/resource/Georgia_Engel|http://dbpedia.org/resource/Gordon_Tootoosis|http://dbpedia.org/resource/Martin_Lawrence"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "4"}, "Description": {"type": "literal", "value": "Boog and Elliot's Midnight Bun Run is a 2007 computer-animated short film from Sony Pictures Animation. A spin-off of the animated movie Open Season, Boog and Elliot's Midnight Bun Run was released on the Open Season DVD and Blu-ray on January 30, 2007."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures|http://dbpedia.org/resource/Sony_Pictures_Home_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Horns_(film)"}, "Title": {"type": "literal", "value": "Horns"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alexandre_Aja"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Daniel_Radcliffe|http://dbpedia.org/resource/David_Morse_(actor)|http://dbpedia.org/resource/Heather_Graham|http://dbpedia.org/resource/James_Remar|http://dbpedia.org/resource/Joe_Anderson_(actor)|http://dbpedia.org/resource/Juno_Temple|http://dbpedia.org/resource/Kathleen_Quinlan|http://dbpedia.org/resource/Kelli_Garner|http://dbpedia.org/resource/Max_Minghella|http://dbpedia.org/resource/Sabrina_Carpenter"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Horror_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "Horns is a 2013 American dark fantasy horror film directed by Alexandre Aja, loosely based on Joe Hill's novel of the same name. Daniel Radcliffe stars as a man who is accused of raping and murdering his girlfriend (Juno Temple) and uses his newly discovered paranormal abilities to uncover the real killer. The film had its world premiere at the 2013 Toronto International Film Festival, and was released theatrically in the United States on October 31, 2014."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Dimension_Films|http://dbpedia.org/resource/The_Weinstein_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Temporary_Family"}, "Title": {"type": "literal", "value": "Temporary Family"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Cheuk_Wan-chi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Angelababy|http://dbpedia.org/resource/Nick_Cheung|http://dbpedia.org/resource/Sammi_Cheng"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Hong_Kong_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "Temporary Family (\u5931\u6200\u6025\u8b93) is a 2014 Hong Kong comedy film."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tim_and_Eric's_Billion_Dollar_Movie"}, "Title": {"type": "literal", "value": "Tim and Eric's Billion Dollar Movie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Eric_Wareheim|http://dbpedia.org/resource/Tim_Heidecker"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Eric_Wareheim|http://dbpedia.org/resource/John_C._Reilly|http://dbpedia.org/resource/Tim_Heidecker|http://dbpedia.org/resource/Will_Ferrell|http://dbpedia.org/resource/Zach_Galifianakis"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Surreal_comedy"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Tim and Eric's Billion Dollar Movie (shorthand B$M) is a 2012 American comedy film written and directed by Tim Heidecker and Eric Wareheim, creators of Tim and Eric Awesome Show, Great Job!. The film stars Heidecker and Wareheim with a supporting cast which includes Zach Galifianakis, Will Ferrell, John C. Reilly, Ray Wise, Twink Caplan, Robert Loggia, and Will Forte. The film centers on Heidecker and Wareheim attempting to gain a billion dollars by re-opening a shopping mall to pay their debt to the \"Schlaaang Corporation\", after failing to create a film with the billion dollars provided to them. It was released in theaters on March 2, 2012, and was released to iTunes and on-demand January 27, 2013. The film was made without the involvement of Adult Swim and Williams Street Productions who have broadcast and produced several of the duo's projects, though many of the cast and crew members involved had previously collaborated with the duo."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Magnet_Releasing"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Reno_911!:_Miami"}, "Title": {"type": "literal", "value": "Reno 911!: Miami"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Robert_Ben_Garant"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Carlos_Alazraqui|http://dbpedia.org/resource/Cedric_Yarbrough|http://dbpedia.org/resource/Kerri_Kenney-Silver|http://dbpedia.org/resource/Mary_Birdsong|http://dbpedia.org/resource/Niecy_Nash|http://dbpedia.org/resource/Robert_Ben_Garant|http://dbpedia.org/resource/Thomas_Lennon_(actor)|http://dbpedia.org/resource/Wendi_McLendon-Covey"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Comedy_Central_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "Reno 911!: Miami is a 2007 American cop comedy film based on Comedy Central's Reno 911! directed by cast member Robert Ben Garant, who plays \"Junior\". It was released on February 23, 2007. The film opened at #4 with an estimated gross of $10.4 million."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox|http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mumbai_Delhi_Mumbai"}, "Title": {"type": "literal", "value": "Mumbai Delhi Mumbai"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Satish_Rajwade"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Piaa_Bajpai|http://dbpedia.org/resource/Shiv_Pandit"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "Mumbai Delhi Mumbai is 2014 Hindi language Indian romance-comedy written and directed by Satish Rajwade for Viacom 18 Motion Pictures. The film, adapted from Rajwade's 2011 Mumbai-Pune-Mumbai, stars Shiv Pandit and Pia Bajpai, and released on 5 December."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Viacom_18_Motion_Pictures"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Elektra_Luxx"}, "Title": {"type": "literal", "value": "Elektra Luxx"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sebastian_Gutierrez"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "Elektra Luxx is a 2010 comedy film directed and written by Sebastian Gutierrez featuring Carla Gugino. The film is a sequel to the ensemble comedy, Women in Trouble. The film premiered at the South by Southwest Film Festival 2010, where it was acquired by Sony Pictures and was released to the rest of the country on March 11, 2011. It was shown on UK TV on February 28, 2011."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Myriad_pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/War_Dogs_(2016_film)"}, "Title": {"type": "literal", "value": "War Dogs"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Todd_Phillips"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ana_de_Armas|http://dbpedia.org/resource/Jonah_Hill|http://dbpedia.org/resource/Miles_Teller"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_criminal_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films|http://dbpedia.org/resource/Category:Comedy_films_based_on_actual_events"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "War Dogs is a 2016 American biographical black comedy war film directed by Todd Phillips and written by Phillips, Jason Smilovic and Stephen Chin, based on a Rolling Stone article by Guy Lawson. Lawson then wrote a book titled Arms and the Dudes detailing the story. The film follows two arms dealers, Efraim Diveroli and David Packouz, who receive a US Army contract to supply munitions for the Afghan National Army worth approximately $300 million and are eventually charged with fraud for repackaging Chinese ammunition. The film is heavily fictionalized and dramatized, and some of its events, such as the duo driving through Iraq, were either invented or based on other events, such as screenwriter Stephen Chin's own experiences. The film stars Jonah Hill, Miles Teller, Ana de Armas and Bradley Cooper, who also co-produced. Filming began on March 2, 2015 in Romania. The film premiered in New York City on August 3, 2016 and was theatrically released by Warner Bros. Pictures on August 19, 2016. It received mixed reviews from critics, although Hill's performance was praised, and has grossed over $83 million."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros._Pictures"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/The_Mark_Gordon_Company"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Imsai_Arasan_23rd_Pulikecei"}, "Title": {"type": "literal", "value": "Imsai Arasan 23rd Pulikecei"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chimbu_Deven"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Monica_(actress)|http://dbpedia.org/resource/Tejashree|http://dbpedia.org/resource/Vadivelu"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "142"}, "Description": {"type": "literal", "value": "Imsai Arasan 23rd Pulikecei (English: The King of Torture, Pulikecei the 23rd) is a 2006 Indian Tamil language historical-comedy film written and directed by Chimbu Deven. The film stars Vadivelu in his debut as a lead actor. Monica and Tejashree play the female leads, while Manorama, Nassar, Ilavarasu, Sreeman and Nagesh play supporting roles. Sabesh-Murali composed the soundtrack album and background score. S. Shankar produced and distributed the film under his production banner S Pictures. Set in the late 18th century during the early stages of the British Raj, the film tells the story of twin brothers separated at birth. Pulikecei XXIII, the foolish elder brother, becomes a puppet of his uncle, the Chief Minister, while Ukraputhan, the wise younger brother, becomes a patriot intent on saving his land and his brother. Principal photography began in November 2005 at Prasad Studios. Imsai Arasan 23rd Pulikecei was released on 8 July 2006, and was the first historical Tamil film released since Madhuraiyai Meetta Sundharapandiyan (1978). The film received positive reviews, with critics praising the screenplay, the performances, and the dialogues. A box office success, the film won two Tamil Nadu State Film Awards and one Filmfare Award. The film was dubbed into Telugu as Himsinche 23 Va Raju Pulikesi."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/S_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/I_Kissed_a_Girl_(film)"}, "Title": {"type": "literal", "value": "I Kissed a Girl"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/No\u00e9mie_Saglio"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adrianna_Gradziel|http://dbpedia.org/resource/Camille_Cottin|http://dbpedia.org/resource/Franck_Gastambide|http://dbpedia.org/resource/Lannick_Gautry|http://dbpedia.org/resource/Pio_Marma\u00ef"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "I Kissed a Girl (French: Toute premi\u00e8re fois) is a 2015 French comedy film directed by No\u00e9mie Saglio and Maxime Govare."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/But_I'm_a_Cheerleader"}, "Title": {"type": "literal", "value": "But I'm a Cheerleader"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jamie_Babbit"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cathy_Moriarty|http://dbpedia.org/resource/Clea_DuVall|http://dbpedia.org/resource/Douglas_Spain|http://dbpedia.org/resource/Eddie_Cibrian|http://dbpedia.org/resource/Melanie_Lynskey|http://dbpedia.org/resource/Natasha_Lyonne|http://dbpedia.org/resource/Richard_Moll|http://dbpedia.org/resource/RuPaul|http://dbpedia.org/resource/Wesley_Mann"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85|92"}, "Description": {"type": "literal", "value": "But I'm a Cheerleader is a 1999 satirical romantic comedy film directed by Jamie Babbit and written by Brian Wayne Peterson. Natasha Lyonne stars as Megan Bloomfield, a high school cheerleader whose parents send her to a residential inpatient conversion therapy camp to cure her lesbianism. There Megan soon comes to embrace her sexual orientation, despite the therapy, and falls in love. The supporting cast includes Melanie Lynskey, Dante Basco, Eddie Cibrian, Clea DuVall, Cathy Moriarty, RuPaul, Richard Moll, Mink Stole, Kip Pardue, Michelle Williams, and Bud Cort. But I'm a Cheerleader was Babbit's first feature film. It was inspired by an article about conversion therapy and her childhood familiarity with rehabilitation programs. She used the story of a young woman finding her sexual identity to explore the social construction of gender roles and heteronormativity. The costume and set design of the film highlighted these themes using artificial textures in intense blues and pinks. When it was initially rated as NC-17 by the MPAA, Babbit made cuts to allow it to be re-rated as R. When interviewed in the documentary film This Film Is Not Yet Rated Babbit criticized the MPAA for discriminating against films with gay content. Many critics did not like the film, comparing it unfavorably with the films of John Waters and criticizing the colorful production design. Although the lead actors were praised for their performances, some of the characters were described as stereotypical."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lions_Gate_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Lookalike_(2014_film)"}, "Title": {"type": "literal", "value": "The Lookalike"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Richard_Gray_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gillian_Jacobs|http://dbpedia.org/resource/Gina_Gershon|http://dbpedia.org/resource/Jerry_O'Connell|http://dbpedia.org/resource/John_Corbett|http://dbpedia.org/resource/Justin_Long|http://dbpedia.org/resource/Luis_Guzm\u00e1n|http://dbpedia.org/resource/Scottie_Thompson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_thriller_films|http://dbpedia.org/resource/Category:Criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "The Lookalike is an 2014 American comedy crime thriller film directed by Richard Gray and written by Michele Davis-Gray. The film stars Justin Long, John Corbett, Gillian Jacobs, Jerry O'Connell, Gina Gershon, Scottie Thompson and Luis Guzm\u00e1n. Filming began on December 3, 2012 and ended on January 18, 2013 in New Orleans and the Bahamas."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lost_Embrace"}, "Title": {"type": "literal", "value": "Lost Embrace"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Daniel_Burman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adriana_Aizemberg|http://dbpedia.org/resource/Daniel_Hendler|http://dbpedia.org/resource/Sergio_Boris"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:Argentine_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy-drama_films|http://dbpedia.org/resource/Category:Spanish_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Lost Embrace (Spanish: El abrazo partido) is a 2004 Argentine, French, Italian, and Spanish comedy drama film, directed by Daniel Burman and written by Burman and Marcelo Birmajer. The picture features Daniel Hendler, Adriana Aizemberg, Jorge D'El\u00eda, among others. The drama was Argentina's official choice for the 2004 Oscar Awards, Foreign Language film category. The comedy-drama tells of Ariel Makaroff, the grandson of Holocaust-era Polish refugees, who is currently on a complex search for his personal and cultural identity."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Axiom_Films|http://dbpedia.org/resource/BD_Cine"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Free_Birds"}, "Title": {"type": "literal", "value": "Free Birds"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jimmy_Hayward"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amy_Poehler|http://dbpedia.org/resource/Owen_Wilson|http://dbpedia.org/resource/Woody_Harrelson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Free Birds is a 2013 American 3D computer-animated buddy comedy film about two turkeys traveling back in time to prevent Thanksgiving. It was produced by Reel FX Creative Studios as its first animated feature film. Jimmy Hayward directed the film, which he also co-wrote with Scott Mosier, the film's producer. The film stars the voices of Owen Wilson, Woody Harrelson and Amy Poehler, with supporting roles done by George Takei, Colm Meaney, Keith David and Dan Fogler. Originally titled Turkeys, and scheduled for 2014, the film was released on November 1, 2013, by Relativity Media. The film received negative reviews from critics and earned $110 million on a $55 million budget."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Relativity_Media"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Byl_jednou_jeden_polda"}, "Title": {"type": "literal", "value": "Byl jednou jeden polda"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jaroslav_Soukup"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ladislav_Potm\u011b\u0161il|http://dbpedia.org/resource/Rudolf_Hru\u0161\u00ednsk\u00fd|http://dbpedia.org/resource/Simona_Krainov\u00e1"}, "Published": {"type": "literal", "value": "1995-02-02"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "Byl jednou jeden polda  is a Czech comedy film directed by Jaroslav Soukup. It was released in 1995."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Declaration_of_War_(film)"}, "Title": {"type": "literal", "value": "Declaration of War"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Val\u00e9rie_Donzelli"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Val\u00e9rie_Donzelli"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Declaration of War (French: La Guerre est d\u00e9clar\u00e9e) is a 2011 French film directed by Val\u00e9rie Donzelli, and written by and starring Donzelli and J\u00e9r\u00e9mie Elka\u00efm; it is based on actual events in their lives together, when they were a young couple caring for their dangerously ill son. It was released on the 31 August 2011 and received very positive reviews; Allocin\u00e9, a review aggregation website gave it an average of 4.3 stars out of five. Le Monde gave it a full five stars, saying \"Against cancer, an undoubtable force of happiness\". The film was selected as the French entry for the Best Foreign Language Film at the 84th Academy Awards, but it did not make the final shortlist."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Wild_Bunch_Distribution"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Details_(film)"}, "Title": {"type": "literal", "value": "The Details"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jacob_Aaron_Estes"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dennis_Haysbert|http://dbpedia.org/resource/Elizabeth_Banks|http://dbpedia.org/resource/Kerry_Washington|http://dbpedia.org/resource/Laura_Linney|http://dbpedia.org/resource/Ray_Liotta|http://dbpedia.org/resource/Tobey_Maguire"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "The Details is a 2011 film directed by Jacob Aaron Estes. When a family of raccoons discover worms living underneath the sod in Jeff and Nealy's backyard, this pest problem begins a darkly comic and wild chain reaction of domestic tension, infidelity and murder. It has a rating of 46% on Rotten Tomatoes based on 35 reviews."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/The_Weinstein_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Magician_(2006_film)"}, "Title": {"type": "literal", "value": "The Magician"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Cem_Y\u0131lmaz"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cem_Y\u0131lmaz|http://dbpedia.org/resource/Mazhar_Alanson|http://dbpedia.org/resource/\u00d6zlem_Tekin"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:Turkish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "119"}, "Description": {"type": "literal", "value": "The Magician (Turkish: Hokkabaz) is a 2006 Turkish comedy-drama film, directed by Cem Y\u0131lmaz and Ali Taner Baltac\u0131, about a magician who tours around Turkey with his father and best friend so that he can make enough money for laser eye surgery. The film, which was released on October 20, 2006, was short-listed for Turkey's official entry for the Academy Award for Best Foreign Language Film at the 80th Academy Awards but lost out to Takva."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Meet_Me_in_Montenegro"}, "Title": {"type": "literal", "value": "Meet Me in Montenegro"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alex_Holdridge|http://dbpedia.org/resource/Linnea_Saasen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alex_Holdridge|http://dbpedia.org/resource/Jennifer_Ulrich|http://dbpedia.org/resource/Linnea_Saasen|http://dbpedia.org/resource/Rupert_Friend"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Meet Me in Montenegro is a romantic comedy film written and directed by Alex Holdridge and Linnea Saasen. It had its premiere at the Toronto International Film Festival in September 2014. The film was distributed by The Orchard and had its North American Theatrical release in Summer 2015; it was launched at festivals across Europe throughout 2015, including the Edinburgh International Film Festival, Munich Film Film Festival, Dublin International Film Festival, Krak\u00f3w's Off Camera International Festival of Independent Cinema and Troms\u00f8 International Film Festival. The film stars Alex Holdridge, Linnea Saasen, Rupert Friend and Jennifer Ulrich."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/The_Orchard_(company)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mr._Magorium's_Wonder_Emporium"}, "Title": {"type": "literal", "value": "Mr. Magorium's Wonder Emporium"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Zach_Helm"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dustin_Hoffman|http://dbpedia.org/resource/Jason_Bateman|http://dbpedia.org/resource/Natalie_Portman|http://dbpedia.org/resource/Zach_Mills"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Fantasy-comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Mr. Magorium's Wonder Emporium is a 2007 Canadian-American family/children's fantasy comedy film written and directed by Zach Helm, produced by FilmColony, Mandate Pictures, Walden Media, Richard N. Gladstein and James Garavente and music composed by Alexandre Desplat and Aaron Zigman. The film stars Dustin Hoffman as the owner of a magical toy store, and Natalie Portman as his store employee. Also starring Jason Bateman as the mutant accountant and Zach Mills as the hat collector and his store volunteer. The film was theatrically released on November 16, 2007 by 20th Century Fox, Icon Productions, Roadshow Entertainment, Best Film, Dutch FilmWorks, Universum Film, Metropolitan Filmexport, Nordisk Film Distribution, Shapira, Ascot Elite Entertainment Group and LNK Audiovisuais (now Pris Audiovisuais). The film grossed $69.5 million worldwide. It received a Young Artist Award nomination for Best Performance in a Feature Film - Leading Young Actor. The film was released on DVD and Blu-ray Disc on March 4, 2008 by 20th Century Fox Home Entertainment."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox|http://dbpedia.org/resource/Dutch_FilmWorks|http://dbpedia.org/resource/Icon_Productions|http://dbpedia.org/resource/Metropolitan_Filmexport|http://dbpedia.org/resource/Nordisk_Film|http://dbpedia.org/resource/Roadshow_Entertainment|http://dbpedia.org/resource/Universum_Film_AG"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Timer_(film)"}, "Title": {"type": "literal", "value": "TiMER"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jac_Schaeffer"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Desmond_Harrington|http://dbpedia.org/resource/Emma_Caulfield|http://dbpedia.org/resource/JoBeth_Williams|http://dbpedia.org/resource/John_Patrick_Amedori|http://dbpedia.org/resource/Kali_Rocha|http://dbpedia.org/resource/Michelle_Borth"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "Timer (stylized as TiMER) is a 2009 science-fiction romantic comedy film by Jac Schaeffer about a device that counts down to the moment one meets their soulmate."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Capewatch_Pictures|http://dbpedia.org/resource/Present_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hotel_for_Dogs_(film)"}, "Title": {"type": "literal", "value": "Hotel for Dogs"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Thor_Freudenthal"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Don_Cheadle|http://dbpedia.org/resource/Emma_Roberts|http://dbpedia.org/resource/Jake_T._Austin|http://dbpedia.org/resource/Johnny_Simmons|http://dbpedia.org/resource/Kevin_Dillon|http://dbpedia.org/resource/Kyla_Pratt|http://dbpedia.org/resource/Lisa_Kudrow|http://dbpedia.org/resource/Troy_Gentile"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Hotel for Dogs is a 2009 American family comedy film based on the 1971 Lois Duncan novel of the same name. The film, directed by Thor Freudenthal and adapted by Jeff Lowell, Bob Schooley, and Mark McCorkle, stars Jake T. Austin, Emma Roberts, Troy Gentile, Kyla Pratt, Johnny Simmons, Lisa Kudrow, Kevin Dillon and Don Cheadle. It tells the story of two orphans, Andi and Bruce (played by Roberts and Austin), who attempt to hide their dog at an abandoned hotel after their strict new guardians tell them that pets are forbidden at their home. They also take in other dogs to avoid the dogs being taken away by two cold hearted animal pound workers and police officers. The film is Nickelodeon's second film to be produced by DreamWorks Pictures after Lemony Snicket's A Series of Unfortunate Events and the first Nickelodeon film ever to be produced outside of Paramount Pictures, which still distributed the film for DreamWorks. Shooting began in November 2007 and filming took place entirely in the cities of Los Angeles and Universal City, California. The dogs in the film were trained for several months before shooting. Nearly 80 boys auditioned for the role of Bruce before Austin was ultimately selected. The film was released in the United States on January 16, 2009, and grossed approximately $17 million in its opening weekend in 3,271 theaters."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Frozen_(2013_film)"}, "Title": {"type": "literal", "value": "Frozen"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Buck|http://dbpedia.org/resource/Jennifer_Lee_(filmmaker)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Idina_Menzel|http://dbpedia.org/resource/Jonathan_Groff|http://dbpedia.org/resource/Josh_Gad|http://dbpedia.org/resource/Kristen_Bell|http://dbpedia.org/resource/Santino_Fontana"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Frozen is a 2013 American 3D computer-animated musical fantasy comedy-drama film produced by Walt Disney Animation Studios and released by Walt Disney Pictures. It is the 53rd Disney animated feature film. Inspired by Hans Christian Andersen's fairy tale The Snow Queen, the film tells the story of a fearless princess who sets off on an epic journey alongside a rugged iceman, his loyal pet reindeer, and a na\u00efve snowman to find her estranged sister, whose icy powers have inadvertently trapped the kingdom in eternal winter. Frozen underwent several story treatments for years before being commissioned in 2011, with a screenplay written by Jennifer Lee, and both Chris Buck and Lee serving as directors. It features the voices of Kristen Bell, Idina Menzel, Jonathan Groff, Josh Gad and Santino Fontana. Christophe Beck, who had worked on Disney's award-winning short Paperman (2012), was hired to compose the film's orchestral score, while husband-and-wife songwriting team Robert Lopez and Kristen Anderson-Lopez wrote the songs. Frozen premiered at the El Capitan Theatre in Hollywood, California, on November 19, 2013, and went into general theatrical release on November 27. It was met with strongly positive reviews from critics and audiences, with some film critics considering Frozen to be the best Disney animated feature film since the studio's renaissance era. The film was also a massive commercial success; it accumulated nearly $1.3 billion in worldwide box office revenue, $400 million of which was earned in the United States and Canada and $247 million of which was earned in Japan. It ranks as the highest-grossing animated film of all time, the third-highest-grossing original film of all time, the ninth-highest-grossing film of all time, the highest-grossing film of 2013, and the third-highest-grossing film in Japan. With over 18 million home media sales in 2014, it became the best-selling film of the year in the United States. By January 2015, Frozen had become the all-time best-selling Blu-ray Disc in the United States. Frozen won two Academy Awards for Best Animated Feature and Best Original Song (\"Let It Go\"), the Golden Globe Award for Best Animated Feature Film, the BAFTA Award for Best Animated Film, five Annie Awards (including Best Animated Feature), two Grammy Awards for Best Compilation Soundtrack for Visual Media and Best Song Written for Visual Media (\"Let It Go\"), and two Critics' Choice Movie Awards for Best Animated Feature and Best Original Song (\"Let It Go\"). An animated short sequel, Frozen Fever, premiered on March 13, 2015, with Disney's Cinderella. On March 12, 2015, a feature-length sequel was announced, with Buck and Lee returning as directors and Peter Del Vecho returning as producer. A release date has not been disclosed."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/30_Minutes_or_Less"}, "Title": {"type": "literal", "value": "30 Minutes or Less"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ruben_Fleischer"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aziz_Ansari|http://dbpedia.org/resource/Danny_McBride|http://dbpedia.org/resource/Fred_Ward|http://dbpedia.org/resource/Jesse_Eisenberg|http://dbpedia.org/resource/Michael_Pena|http://dbpedia.org/resource/Nick_Swardson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "30 Minutes or Less is a 2011 American action comedy film directed by Ruben Fleischer starring Jesse Eisenberg, Danny McBride, Aziz Ansari and Nick Swardson. It is produced by Columbia Pictures and funded by Media Rights Capital."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bam_Margera_Presents:_Where_the_\u266f$&%25_Is_Santa%3F"}, "Title": {"type": "literal", "value": "Bam Margera Presents: Where the #$&% Is Santa?"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bam_Margera"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Bam Margera Presents: Where the #$&% Is Santa? (A.K.A. Bam Margera Presents: Where the Fuck is Santa?) is an original film released in 2008 by Warner Bros.. The film stars Bam Margera, Brandon Novak, Mark The Bagger, and other members both of Bam's family and friends. It follows the daredevil and comedic themes of Margera's MTV shows Viva La Bam and Jackass, while retaining a holiday-themed goal for the film; namely celebrating Christmas and finding Santa Claus. Bam Margera also mentioned a sequel to this movie on Radio Bam."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Home_Video"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Right_Way_(film)"}, "Title": {"type": "literal", "value": "The Right Way"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mark_Penney"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/James_McGowan_(actor)|http://dbpedia.org/resource/Jefferson_Brown|http://dbpedia.org/resource/Karyn_Dwyer|http://dbpedia.org/resource/Keir_Gilchrist|http://dbpedia.org/resource/Sarain_Boylan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:Canadian_comedy-drama_films|http://dbpedia.org/resource/Category:Canadian_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "77"}, "Description": {"type": "literal", "value": "The Right Way is a 2004 Canadian film directed by Mark Penney. It tells the story of Amy and David two young people from suburbia, whose lives are going nowhere, when they meet their relationship alters their lives forever and sends them surreal and existential crisis. The Right Way was an Official Selection of the 2004 Venice Film Festival and had a limited theatrical release in the United States in December 2005, it was released to video on demand services in 2010."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tanu_Weds_Manu:_Returns"}, "Title": {"type": "literal", "value": "Tanu Weds Manu Returns"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Anand_L._Rai"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Deepak_Dobriyal|http://dbpedia.org/resource/Jimmy_Shergill|http://dbpedia.org/resource/Kangana_Ranaut|http://dbpedia.org/resource/R._Madhavan|http://dbpedia.org/resource/Swara_Bhaskar"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy-drama_films|http://dbpedia.org/resource/Category:Indian_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "128"}, "Description": {"type": "literal", "value": "Tanu Weds Manu Returns is a 2015 Indian romantic drama film directed by Anand L. Rai which serves as a sequel to the 2011 film Tanu Weds Manu. Kangana Ranaut, R. Madhavan, Jimmy Shergill, Deepak Dobriyal, Swara Bhaskar and Eijaz Khan reprise their roles from the original film. Ranaut also portrays the additional role of a Haryanvi athlete in it. The story, screenplay and the dialogues were written by Himanshu Sharma. The soundtrack and film score were composed by Krsna Solo and the lyrics were penned by Rajshekhar. Saroj Khan and Bosco\u2013Caesar were the film\u2032s choreographers while the editing was done by Hemal Kothari. The principal photography began in October 2014 and the film was released on 22 May 2015. The film carries the story forward showing the next chapter of the couple's life. Tanu Weds Manu Returns received acclaim from critics and Ranaut's performance was particularly praised. Made on a budget of \u20b939 crore (US$5.8 million), the film earned \u20b9243 crore (US$36 million) worldwide and became one of the highest grossing Bollywood films. The film received three awards at the 63rd National Film Awards, including a best actress award for Ranaut."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Eros_International"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Off_the_Ledge"}, "Title": {"type": "literal", "value": "Off the Ledge"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Brooke_Mikey_Anderson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Brooke_Mikey_Anderson|http://dbpedia.org/resource/Maria_Cina|http://dbpedia.org/resource/Nathan_Baesel"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Off the Ledge is a 2009 American comedy genre film, with a twist."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Poola_Rangadu_(2012_film)"}, "Title": {"type": "literal", "value": "Poola Rangadu"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Veerabhadram_Chowdary"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Isha_Chawla|http://dbpedia.org/resource/Sunil_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "150"}, "Description": {"type": "literal", "value": "Poola Rangadu is a Telugu comedy film directed by Veerabhadram starring Sunil and Isha Chawla in lead roles. Atchi Reddy has produced the film under Max India banner. Anoop Rubens has scored the music and Prasad Murella has done the camera."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/R._R._Movie_Makers"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Nice_Package"}, "Title": {"type": "literal", "value": "Nice Package"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dan_Macarthur"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dwayne_Cameron"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Australian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Nice Package is a 2013 gangster comedy feature starring Dwayne Cameron, Isabella Tannock and Leon Cain. The film is produced by Melanie Poole and directed by Dan Macarthur."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Butch_Jamie"}, "Title": {"type": "literal", "value": "Butch Jamie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michelle_Ehlen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Michelle_Ehlen"}, "Published": {"type": "literal", "value": "2007-07-12"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "Butch Jamie is a gender-bending comedy film that premiered in July 2007 at Outfest: the Los Angeles Gay and Lesbian Film Festival. Writer, director, and lead actress Michelle Ehlen won Outfest's Grand Jury Award for \"Outstanding Actress in a Feature Film.\" The film was produced independently through the filmmaker's production company, Ballet Diesel Films."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/It's_Kind_of_a_Funny_Story_(film)"}, "Title": {"type": "literal", "value": "It's Kind of a Funny Story"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Anna_Boden|http://dbpedia.org/resource/Ryan_Fleck"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Emma_Roberts|http://dbpedia.org/resource/Jim_Gaffigan|http://dbpedia.org/resource/Keir_Gilchrist|http://dbpedia.org/resource/Lauren_Graham|http://dbpedia.org/resource/Viola_Davis|http://dbpedia.org/resource/Zach_Galifianakis|http://dbpedia.org/resource/Zo\u00eb_Kravitz"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:Teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "It's Kind of a Funny Story is a 2010 comedy-drama film written and directed by Anna Boden and Ryan Fleck, an adaptation of Ned Vizzini's 2006 novel of the same name. The film stars Keir Gilchrist, Zach Galifianakis, Emma Roberts, and Viola Davis. It was released in the United States on October 8, 2010 and received generally positive reviews."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Focus_Features"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/A_Room_for_Romeo_Brass"}, "Title": {"type": "literal", "value": "A Room for Romeo Brass"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Shane_Meadows"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Shim|http://dbpedia.org/resource/Paddy_Considine|http://dbpedia.org/resource/Vicky_McClure"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy-drama_films|http://dbpedia.org/resource/Category:British_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "A Room for Romeo Brass is a 1999 British comedy-drama film directed and written by Shane Meadows. It was co-written by frequent Meadows collaborator Paul Fraser. Filming began in September 1998. The film stars Andrew Shim as Romeo Brass, Ben Marshall as Gavin Woolley and Paddy Considine as Morell. It marked the screen debut of McClure and Considine, the latter who went on to star in Meadows' 2004 film, Dead Man's Shoes. It was nominated in three categories at the 1999 British Independent Film Awards."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Alliance_Atlantis|http://dbpedia.org/resource/Momentum_Pictures|http://dbpedia.org/resource/USA_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jay_Jay"}, "Title": {"type": "literal", "value": "Jay Jay"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Saran_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Pooja_Umashankar|http://dbpedia.org/resource/Priyanka_Kothari|http://dbpedia.org/resource/R._Madhavan"}, "Published": {"type": "literal", "value": "2003-11-14"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "132"}, "Description": {"type": "literal", "value": "Jay Jay (Tamil: \u0b9c\u0bc7 \u0b9c\u0bc7) is a 2003 Tamil romance film written and directed by Saran. The film features R. Madhavan, Amogha and Pooja in the leading roles while Kalabhavan Mani, Charle, Dhamu and Malavika Avinash also play key supporting roles. Produced by V. Ravichandran of Oscar Films, the film had music scored by Bharathwaj. It released in November 2003 to average reviews and box office collections. This movie is unofficial remake of Hollywood movie Serendipity."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Romantics_(film)"}, "Title": {"type": "literal", "value": "The Romantics"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Galt_Niederhoffer"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Brody|http://dbpedia.org/resource/Anna_Paquin|http://dbpedia.org/resource/Dianna_Agron|http://dbpedia.org/resource/Elijah_Wood|http://dbpedia.org/resource/Josh_Duhamel|http://dbpedia.org/resource/Katie_Holmes|http://dbpedia.org/resource/Malin_\u00c5kerman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "The Romantics is a 2010 romantic comedy film based on the novel of the same name by Galt Niederhoffer, who also wrote the screenplay and directed the film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Famous_Productions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dogma_(film)"}, "Title": {"type": "literal", "value": "Dogma"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Smith"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alan_Rickman|http://dbpedia.org/resource/Ben_Affleck|http://dbpedia.org/resource/Chris_Rock|http://dbpedia.org/resource/Jason_Lee_(actor)|http://dbpedia.org/resource/Linda_Fiorentino|http://dbpedia.org/resource/Matt_Damon|http://dbpedia.org/resource/Salma_Hayek"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films|http://dbpedia.org/resource/Category:American_fantasy-comedy_films|http://dbpedia.org/resource/Category:Religious_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "128"}, "Description": {"type": "literal", "value": "Dogma is a 1999 American comedy film, written and directed by Kevin Smith, who also stars along with Ben Affleck, Matt Damon, Linda Fiorentino, Alan Rickman, Bud Cort, Salma Hayek, Chris Rock, Jason Lee, George Carlin, Janeane Garofalo, Alanis Morissette, and Jason Mewes. It is the fourth film in Smith's View Askewniverse series. Brian O'Halloran and Jeff Anderson, stars of the first Askewniverse film Clerks, have cameo roles, as do Smith regulars Scott Mosier, Dwight Ewell, Walt Flanagan, and Bryan Johnson. The film's irreverent treatment of Catholicism and the Roman Catholic Church triggered considerable controversy, even before its opening. The Catholic League denounced it as \"blasphemy\". Organized protests delayed its release in many countries and led to at least two death threats against Smith. The plot revolves around two fallen angels who plan to employ an alleged loophole in Catholic dogma to return to Heaven, after being cast out by God; but as existence is founded on the principle that God is infallible, their success would prove God wrong and thus undo all creation. The last scion and two prophets are sent by the Voice of God to stop them."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lionsgate_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dum_Laga_Ke_Haisha"}, "Title": {"type": "literal", "value": "Dum Laga Ke Haisha"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sharat_Katariya"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ayushmann_Khurana|http://dbpedia.org/resource/Bhumi_Pednekar"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "Dum Laga Ke Haisha is a 2015 Indian Hindi romantic comedy film directed by Sharat Katariya starring Ayushmann Khurana and Bhumi Pednekar in the lead roles. The film's background score is composed by Italian composer Andrea Guerra. The film was released on 27 February 2015 to good critical reception. Box Office India stated that the film collected \u20b930.19 crore (US$4.5 million) after a five-week run. The film celebrated 50 days of its theatrical run on 16 April 2015. The film got five nominations at the 61st Filmfare Awards, winning two, Best Female Debut for Pednekar and Best Cinematography. The song \"Moh Moh Ke Dhaage\" got three nominations for its lyrics by Varun Grover and vocals by Papon and Monali Thakur. The film also won the National Film Award for Best Feature Film in Hindi."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jatra_(film)"}, "Title": {"type": "literal", "value": "Jatra"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kedar_Shinde"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bharat_Jadhav|http://dbpedia.org/resource/Kranti_Redkar|http://dbpedia.org/resource/Siddarth_Jadhav"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "133"}, "Description": {"type": "literal", "value": "Jatra (Marathi: \u091c\u0924\u094d\u0930\u093e) is a Marathi comedy movie that was released in 2006. It is considered one of the more popular films starring actors Bharat Jadhav and Siddarth Jadhav. The music was composed by the duo Ajay and Atul Gogavale. Jatra features the song Kombadi Palali, which at the time became a 'superhit'. Ajay and Atul later used same tune from the song \"Kombdi Palali\" when composing the item song \"Chikni Chameli\" for the Hindi film Agneepath in 2012."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bear_(2011_film)"}, "Title": {"type": "literal", "value": "Bear"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nash_Edgerton"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Nash_Edgerton|http://dbpedia.org/resource/Teresa_Palmer|http://dbpedia.org/resource/Warwick_Thornton"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "11"}, "Description": {"type": "literal", "value": "Bear is a 2011 Australian short black comedy drama film directed by Nash Edgerton and written by David Michod and Nash Edgerton. The film had its world premiere in competition at the Cannes Film Festival on 21 May 2011."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Missing_Gun"}, "Title": {"type": "literal", "value": "The Missing Gun"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lu_Chuan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jiang_Wen|http://dbpedia.org/resource/Ning_Jing|http://dbpedia.org/resource/Wu_Yujuan"}, "Published": {"type": "literal", "value": "2002-05-08"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Black_comedy_films|http://dbpedia.org/resource/Category:Chinese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "The Missing Gun (Chinese: \u5bfb\u67aa; pinyin: X\u00fan Qi\u0101ng) is a 2002 Chinese black comedy film directed by Lu Chuan and starring Jiang Wen, Ning Jing and Wu Yujuan. A directorial debut of Lu, the film premiered during the 9th Beijing College Student Film Festival on 21 April 2002. A pioneer digital screening was subsequently held in Shanghai on 28 April, making The Missing Gun the first film screened in China with digital cinema technology. The film was officially released on 8 May in Beijing. Adapted from a novelette by Fan Yiping, the film revolves around a small-town policeman who embarks on a search for his missing gun. The film also explores the themes of self-identity and self-respect, as well as addresses a number of pertinent social issues, such as counterfeits, in China."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Grean_Fictions"}, "Title": {"type": "literal", "value": "Grean Fictions"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chookiat_Sakveerakul"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Pongsatorn_Sripinta"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Thai_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Grean Fictions (Thai: \u0e40\u0e01\u0e23\u0e35\u0e22\u0e19\u0e1f\u0e34\u0e04\u0e0a\u0e31\u0e48\u0e19, rtgs: krian~) is a Thai comedy-drama film directed by Chookiat Sakveerakul and produced and distributed by Sahamongkol Film International. The film is a coming-of-age story about Tee, an upper-secondary-school boy from Chiang Mai, his friends, their school lives, and family. The film was released on 18 April 2013. A sequel series, Grean House The Series, was broadcast on October 4, 2014. It was aired on Modern Nine Channel and published on the official YouTube channel of Studio Commuan with both Chinese and English subtitles."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sahamongkol_Film_International"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Easter_Bunny,_Kill!_Kill!"}, "Title": {"type": "literal", "value": "Easter Bunny, Kill! Kill!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chad_Ferrin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Easter Bunny, Kill! Kill! is a 2006 horror film written and directed by Chad Ferrin."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Max_Rules"}, "Title": {"type": "literal", "value": "Max Rules"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Robert_Burke_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/William_B._Davis"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "Max Rules is a 2004 kids' action-adventure feature film written and directed by Robert Burke."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Oru_Oorla_Rendu_Raja"}, "Title": {"type": "literal", "value": "Oru Oorla Rendu Raja"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/R._Kannan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Priya_Anand|http://dbpedia.org/resource/Soori_(actor)|http://dbpedia.org/resource/Vimal"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "132"}, "Description": {"type": "literal", "value": "Oru Oorla Rendu Raja (English: Two kings in a town) is a 2014 Indian Tamil comedy film written and directed by R. Kannan and produced by S. Michael Rayappan. The film features Vimal, Priya Anand and Soori in the leading roles, while Nassar, Anupama Kumar and Thambi Ramaiah form the supporting cast and D. Imman composes the film's music. The film was released on 7 November 2014."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/My_Girlfriend's_Boyfriend_(2010_film)"}, "Title": {"type": "literal", "value": "My Girlfriend's Boyfriend"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Daryn_Tufts"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alyssa_Milano|http://dbpedia.org/resource/Beau_Bridges|http://dbpedia.org/resource/Carol_Kane|http://dbpedia.org/resource/Christopher_Gorham|http://dbpedia.org/resource/Heather_Stephens|http://dbpedia.org/resource/Kelly_Packard|http://dbpedia.org/resource/Michael_Landes|http://dbpedia.org/resource/Tom_Lenk"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "My Girlfriend's Boyfriend is a 2010 American romantic comedy film written and directed by Daryn Tufts, and stars Alyssa Milano, Christopher Gorham, Michael Landes, Beau Bridges, Tom Lenk and Carol Kane."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Gaiam"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Muppets_from_Space"}, "Title": {"type": "literal", "value": "Muppets from Space"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tim_Hill_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andie_MacDowell|http://dbpedia.org/resource/Bill_Barretta|http://dbpedia.org/resource/Dave_Goelz|http://dbpedia.org/resource/David_Arquette|http://dbpedia.org/resource/F._Murray_Abraham|http://dbpedia.org/resource/Frank_Oz|http://dbpedia.org/resource/Hulk_Hogan|http://dbpedia.org/resource/Jeffrey_Tambor|http://dbpedia.org/resource/Josh_Charles|http://dbpedia.org/resource/Ray_Liotta|http://dbpedia.org/resource/Steve_Whitmire"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "Muppets from Space is a 1999 American science fiction comedy film and the sixth feature film to star The Muppets, and the first since the death of Muppets creator Jim Henson to have an original Muppet-focused plot. The film was directed by Tim Hill, produced by Jim Henson Pictures, and released to theaters on July 14, 1999 by Columbia Pictures. The film is a deviation of other Muppet films as it is the only non-musical film, as well as the first film in the series with a plot to focus predominantly on a character other than Kermit the Frog. It is also the last Muppet feature film to involve Frank Oz; he would retire from performing the following year. The film was shot in Wilmington, North Carolina at EUE/Screen Gems in 1998."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Taxidermia"}, "Title": {"type": "literal", "value": "Taxidermia"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Gy\u00f6rgy_P\u00e1lfi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Piroska_Moln\u00e1r"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:Austrian_comedy_films|http://dbpedia.org/resource/Category:Black_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films|http://dbpedia.org/resource/Category:Hungarian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Taxidermia is a 2006 Hungarian/Austrian comedy-drama horror film directed by Gy\u00f6rgy P\u00e1lfi. The film is a metaphorical socio-political retelling of Hungary's history from the Second World War to the present day. The story is told by means of three generations of men from Hungary, beginning with a military orderly during the Second World War, moving on to an aspiring speed-eater during the Cold War, and concluding with a taxidermist during modern times. The film has elements of dark comedy and body horror."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Regent_Releasing"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/YMCA_Baseball_Team"}, "Title": {"type": "literal", "value": "YMCA Baseball Team"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kim_Hyun-seok_(filmmaker)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hwang_Jung-min|http://dbpedia.org/resource/Kim_Hye-soo|http://dbpedia.org/resource/Kim_Joo-hyuk|http://dbpedia.org/resource/Song_Kang-ho"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:South_Korean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "YMCA Baseball Team (Hangul: YMCA \uc57c\uad6c\ub2e8; RR: YMCA Yagudan) is a semi-historical 2002 South Korean comedy film. In 1905, there was a confluence of international events leading to the loss of Chos\u014fn Korean sovereignty, and by 1910, Japan formally annexed Korea outright. The Japanese, having already defeated Qing China (1895) and signed an alliance with the United Kingdom (1902), defeated Imperial Russia (1905), and signed a secret agreement with the United States (1905) to respect each other\u2019s \"sphere of influence\" in the Pacific. In these chaotic times, an eclectic group of Koreans find refuge in the quintessentially American pastime."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Myung_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Saving_Christmas"}, "Title": {"type": "literal", "value": "Saving Christmas"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Darren_Doane"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kirk_Cameron"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "Saving Christmas (sometimes referred to as Kirk Cameron's Saving Christmas) is a 2014 American faith-based Christmas comedy film directed by Darren Doane and written by Doane and Cheston Hervey. Starring Kirk Cameron, Doane, Bridgette Ridenour, David Shannon, Raphi Henly, and Ben Kientz, the film was theatrically released by Samuel Goldwyn Films on November 14, 2014. The film combines a comedic narrative with educational elements, in order to \"put Christ back in Christmas\". The film received a 0% rating on Rotten Tomatoes. It was nominated in six categories for the 35th Golden Raspberry Awards and won four, including Worst Picture."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Samuel_Goldwyn_Films"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Liberty_University|http://dbpedia.org/resource/Provident_Films"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Neighbors_2:_Sorority_Rising"}, "Title": {"type": "literal", "value": "Neighbors 2: Sorority Rising"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nicholas_Stoller"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chlo\u00eb_Grace_Moretz|http://dbpedia.org/resource/Dave_Franco|http://dbpedia.org/resource/Ike_Barinholtz|http://dbpedia.org/resource/Rose_Byrne|http://dbpedia.org/resource/Zac_Efron"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Neighbors 2: Sorority Rising (Bad Neighbours 2 in the UK) is a 2016 American comedy film directed by Nicholas Stoller and written by Stoller, Andrew J. Cohen, Brendan O'Brien, Seth Rogen and Evan Goldberg. The film is a sequel to Neighbors, and follows the Radners (Rogen and Rose Byrne) having to outwit a new sorority (led by Chlo\u00eb Grace Moretz) living next door in order to sell their house currently in escrow. Zac Efron, Dave Franco, Ike Barinholtz, Carla Gallo and Lisa Kudrow reprise their roles from the first film. The film premiered on April 26, 2016 in Berlin and was released on May 20, 2016 in the United States. The film received generally positive reviews from critics and grossed over $107 million worldwide."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Daddy_Day_Camp"}, "Title": {"type": "literal", "value": "Daddy Day Camp"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Fred_Savage"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Brian_Doyle-Murray|http://dbpedia.org/resource/Cuba_Gooding,_Jr.|http://dbpedia.org/resource/Lochlyn_Munro|http://dbpedia.org/resource/Paul_Rae|http://dbpedia.org/resource/Richard_Gant|http://dbpedia.org/resource/Tamala_Jones"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Daddy Day Camp is a 2007 American comedy film starring Academy Award Winner Cuba Gooding, Jr., and directed by Fred Savage in his directorial debut. It is the sequel to the 2003's Daddy Day Care; however, all the lead characters were recast. The film was produced by Revolution Studios and released by TriStar Pictures. The film was released in the United States on August 8, 2007. The film grossed $18.2 million, but received staggeringly scathing reviews from film critics, and has a 1% rating on Rotten Tomatoes, and is considered to be one of the worst sequels ever produced."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/TriStar_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tamaar_Padaar"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dileesh_Nair"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Baburaj_(actor)|http://dbpedia.org/resource/Prithviraj_Sukumaran"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Tamaar Padaar is a 2014 Malayalam satirical comedy film, scripted and directed by Dileesh Nair, starring Prithviraj Sukumaran  Baburaj, Chemban Vinod and Srinda Ashab in pivotal roles. The movie was produced by Renjith in the banner of Rejaputhra Visual Media. The film's soundtrack was composed by Bijibal."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sightseers"}, "Title": {"type": "literal", "value": "Sightseers"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Wheatley"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alice_Lowe|http://dbpedia.org/resource/Steve_Oram"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:2010s_criminal_comedy_films|http://dbpedia.org/resource/Category:British_black_comedy_films|http://dbpedia.org/resource/Category:British_comedy_horror_films|http://dbpedia.org/resource/Category:British_criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Sightseers is a 2012 British horror comedy directed by Ben Wheatley and written by and starring Alice Lowe and Steve Oram, with additional material written by co-editor Amy Jump. It is produced by Edgar Wright and Nira Park, among others. The film was selected to be screened in the Directors' Fortnight section at the 2012 Cannes Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/StudioCanal_UK"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Yoga_Hosers"}, "Title": {"type": "literal", "value": "Yoga Hosers"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Smith"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Austin_Butler|http://dbpedia.org/resource/Harley_Quinn_Smith|http://dbpedia.org/resource/Johnny_Depp|http://dbpedia.org/resource/Lily-Rose_Depp|http://dbpedia.org/resource/Tyler_Posey|http://dbpedia.org/resource/Vanessa_Paradis"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Yoga Hosers is a 2016 American horror comedy film written and directed by Kevin Smith. The film is a spin-off of Smith's 2014 horror film Tusk. The film stars Johnny Depp alongside his daughter Lily-Rose Depp and Smith's daughter Harley Quinn Smith. The film is the second in Smith's True North trilogy and had its world premiere on January 24, 2016, at the 2016 Sundance Film Festival. The film was released on September 2, 2016 by Invincible Pictures."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Detective_Chinatown"}, "Title": {"type": "literal", "value": "Detective Chinatown"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chen_Sicheng"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chen_He|http://dbpedia.org/resource/Tong_Liya|http://dbpedia.org/resource/Wang_Baoqiang"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Chinese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "136"}, "Description": {"type": "literal", "value": "Detective Chinatown (Chinese: \u5510\u4eba\u8857\u63a2\u6848) is a 2015 Chinese comedy mystery film directed by Chen Sicheng. It was released in China on 31 December 2015."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Wuzhou_Film_Distribution"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Wanda_Media|http://dbpedia.org/resource/Wuzhou_Film_Distribution"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Drinking_Buddies"}, "Title": {"type": "literal", "value": "Drinking Buddies"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Joe_Swanberg"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Drinking Buddies is a 2013 American film written and directed by Joe Swanberg, and starring Olivia Wilde, Jake Johnson, Anna Kendrick and Ron Livingston. The film is about two co-workers at a craft brewery in Chicago. The film premiered at the 2013 South by Southwest Film Festival, and also screened within Maryland Film Festival 2013."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Magnolia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Virgil_(film)"}, "Title": {"type": "literal", "value": "Virgil"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mabrouk_El_Mechri"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jalil_Lespert|http://dbpedia.org/resource/Jean-Pierre_Cassel|http://dbpedia.org/resource/L\u00e9a_Drucker|http://dbpedia.org/resource/Philippe_Nahon|http://dbpedia.org/resource/Tomer_Sisley"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Virgil is a 2005 comedy drama film written and directed by French-Tunisian director Mabrouk El Mechri, his first feature film. It had its first public screening in movie theaters starting September 2005. The film is about the life of a French boxer in the French suburbs."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Grump"}, "Title": {"type": "literal", "value": "The Grump"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dome_Karukoski"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Finnish_comedy"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "The Grump (Finnish: Mielens\u00e4pahoittaja) is a 2014 Finnish comedy film directed by Dome Karukoski, in which the main character is The Grump, a cranky old man, created by the Finnish author Tuomas Kyr\u00f6. The Grump has been selected to compete for the Contemporary World Cinema section at the 2014 Toronto International Film Festival. The Grump is based on a 2014 novel by Kyr\u00f6, the third volume by the author, in which this character appears. The film stars Antti Litja as Mielens\u00e4pahoittaja aka the Grump, Petra Frey, Mari Perankoski, and Iikka Forss. The film tells the story about a stubbornly traditional eighty-year-old farmer \u2014 whose social attitudes verge on the prehistoric \u2014 raises hell when he is forced to move in with his sadsack, city-dwelling son and successful daughter-in-law."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lady_Bird_(film)"}, "Title": {"type": "literal", "value": "Lady Bird"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Greta_Gerwig"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Beanie_Feldstein|http://dbpedia.org/resource/John_Karna|http://dbpedia.org/resource/Jordan_Rodrigues|http://dbpedia.org/resource/Laura_Marano|http://dbpedia.org/resource/Laurie_Metcalf|http://dbpedia.org/resource/Lucas_Hedges|http://dbpedia.org/resource/Odeya_Rush|http://dbpedia.org/resource/Saoirse_Ronan|http://dbpedia.org/resource/Timoth\u00e9e_Chalamet|http://dbpedia.org/resource/Tracy_Letts"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:Comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Lady Bird is an upcoming American comedy drama film written and directed by Greta Gerwig. It stars Saoirse Ronan, Laurie Metcalf, Lucas Hedges, Tracy Letts, Laura Marano, Beanie Feldstein,Daniel Zovatto, Timoth\u00e9e Chalamet, Jordan Rodrigues, John Karna and Odeya Rush."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Win_a_Date_with_Tad_Hamilton!"}, "Title": {"type": "literal", "value": "Win a Date with Tad Hamilton!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Robert_Luketic"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gary_Cole|http://dbpedia.org/resource/Ginnifer_Goodwin|http://dbpedia.org/resource/Josh_Duhamel|http://dbpedia.org/resource/Kate_Bosworth|http://dbpedia.org/resource/Nathan_Lane|http://dbpedia.org/resource/Sean_Hayes_(actor)|http://dbpedia.org/resource/Topher_Grace"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Win a Date with Tad Hamilton! is a 2004 romantic comedy film directed by Robert Luketic and starring Josh Duhamel, Topher Grace and Kate Bosworth. The movie was heavily inspired by Ram Gopal Varma's 1995 Indian film Rangeela."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/DreamWorks"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Undercover_Brother"}, "Title": {"type": "literal", "value": "Undercover Brother"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Malcolm_D._Lee"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aunjanue_Ellis|http://dbpedia.org/resource/Chris_Kattan|http://dbpedia.org/resource/Dave_Chappelle|http://dbpedia.org/resource/Denise_Richards|http://dbpedia.org/resource/Eddie_Griffin|http://dbpedia.org/resource/Neil_Patrick_Harris"}, "Published": {"type": "literal", "value": "2002-05-31"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Undercover Brother is a 2002 American/Canadian action comedy film starring Eddie Griffin and directed by Malcolm D. Lee. The screenplay is by Michael McCullers and co-executive producer John Ridley, who created the original Internet animation characters. It spoofs blaxploitation films of the 1970s as well as a number of other films, most notably the James Bond franchise. It also stars former Saturday Night Live cast member Chris Kattan and comedian Dave Chappelle as well as Aunjanue Ellis, Neil Patrick Harris, Denise Richards, and Billy Dee Williams, and features a cameo by James Brown."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lost_in_Thailand"}, "Title": {"type": "literal", "value": "Lost in Thailand"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Xu_Zheng_(actor)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Huang_Bo|http://dbpedia.org/resource/Tao_Hong_(actress,_born_1972)|http://dbpedia.org/resource/Wang_Baoqiang|http://dbpedia.org/resource/Xu_Zheng_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Chinese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Lost in Thailand is a 2012 Chinese comedy film directed and co-written by Xu Zheng and starring Xu Zheng, Wang Baoqiang, and Huang Bo. The film is about three Chinese men traveling in Thailand: two competing scientists searching for their boss, and a tourist eager to explore the country. The film is Xu's directorial debut. The film grossed more than US$200 million at the Chinese box-office, becoming the highest grossing movie of all time in China when it was released. It was the first movie in China to earn over a Billion Yuan, overtaking Titanic which earned around 975 million yuans in a decade."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Whip_It_(film)"}, "Title": {"type": "literal", "value": "Whip It"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Drew_Barrymore"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "Whip It is a 2009 American sports comedy-drama film written by Shauna Cross, based on her novel Derby Girl. The film is directed and co-produced (with Barry Mendel) by Drew Barrymore in her directorial debut. It stars Ellen Page as a teenager from the fictional town of Bodeen, Texas, who joins a roller derby team. It also stars Barrymore, Alia Shawkat, Marcia Gay Harden, Daniel Stern, Carlo Alban, Landon Pigg in his feature-film debut, Jimmy Fallon, Kristen Wiig, Zo\u00eb Bell, Eve, Andrew Wilson, Juliette Lewis and Ari Graynor. The film premiered at the Toronto International Film Festival on September 13, 2009 and was theatrically released on October 2, 2009 in the United States by Fox Searchlight Pictures. The film received generally positive reviews from critics but did not perform well financially, having made $16.6 million worldwide against its $15 million budget. It also received two WIN Award nominations for Outstanding Actress Feature Film for Ellen Page and Drew Barrymore. Whip It was released on DVD and Blu-ray in January 26, 2010 by 20th Century Fox Home Entertainment."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox_Home_Entertainment|http://dbpedia.org/resource/Fox_Searchlight_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kutteem_Kolum"}, "Title": {"type": "literal", "value": "Kutteem Kolum"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Guinness_Pakru"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Guinness_Pakru|http://dbpedia.org/resource/Munna_(actor)|http://dbpedia.org/resource/Sanusha|http://dbpedia.org/resource/Vijayaraghavan_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Kutteem Kolum (also written as Kuttiyum Kolum) is a 2013 Malayalam comedy film directed by Guinness Pakru, who made his directorial debut with this film. Starring Guinness Pakru, Munna, Adithya and Sanusha in the lead roles, the film was produced by Ansar Vasco under the banner United Films. The script was written by Suresh Satheesh, while the story was written by Pakru himself which revolves around the bonding between friends living in an imaginary village named Kumarapuram bordering Tamil Nadu. Cinematography was handled by Vinod Bharathi, and the stills by Vibin Velayudhan. The film released on 30 March 2013."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/033"}, "Title": {"type": "literal", "value": "033|Zero Three Three"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Birsa_Dasgupta"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Parambrato_Chattopadhyay|http://dbpedia.org/resource/Rudranil_Ghosh"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "033 or Zero Three Three is a 2010 Bengali film directed by Birsa Dasgupta in a directorial debut and produced by Moxie Entertainments. 033 is the STD code for Kolkata city, and the story is based on the theme of increasing youth migration outside Kolkata for career opportunities."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tip_Top_(film)"}, "Title": {"type": "literal", "value": "Tip Top"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Serge_Bozon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Fran\u00e7ois_Damiens|http://dbpedia.org/resource/Isabelle_Huppert|http://dbpedia.org/resource/Sandrine_Kiberlain"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "Tip Top is a 2013 Franco-Belgian detective comedy film directed by Serge Bozon and starring Isabelle Huppert. The story was adapted from Bill James' novel of the same name (published under the pseudonym David Craig). It was screened in the Directors' Fortnight section of the 2013 Cannes Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/R\u00e9zo_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Guns_&_Talks"}, "Title": {"type": "literal", "value": "Guns & Talks"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jang_Jin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jung_Jae-young|http://dbpedia.org/resource/Jung_Jin-young|http://dbpedia.org/resource/Shin_Ha-kyun|http://dbpedia.org/resource/Shin_Hyun-joon_(actor)|http://dbpedia.org/resource/Won_Bin"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Action_comedy_films|http://dbpedia.org/resource/Category:South_Korean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "Guns & Talks is a 2001 South Korean film written and directed by Jang Jin. Starring Shin Hyun-joon, Won Bin, Shin Ha-kyun, Jung Jae-young and Jung Jin-young, the black comedy is about a group of four assassins-for-hire, with a dogged prosecutor on their trail."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Cinema_Service"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dark_Horse_(2005_film)"}, "Title": {"type": "literal", "value": "Dark Horse"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dagur_K\u00e1ri"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jakob_Cedergren|http://dbpedia.org/resource/Morten_Suurballe|http://dbpedia.org/resource/Nicolas_Bro|http://dbpedia.org/resource/Tilly_Scott_Pedersen"}, "Published": {"type": "literal", "value": "2005-05-13"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:Danish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "Dark Horse (Danish: Voksne mennesker) is a 2005 Danish film directed by Dagur K\u00e1ri about a young man, his best friend, and a girl. It was screened in the Un Certain Regard section at the 2005 Cannes Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Nordisk_Film"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Just_Sex"}, "Title": {"type": "literal", "value": "Just Sex"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Krisztina_Goda"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Judit_Schell|http://dbpedia.org/resource/Kata_Dob\u00f3|http://dbpedia.org/resource/S\u00e1ndor_Cs\u00e1nyi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Just Sex (Hungarian: Csak szex \u00e9s m\u00e1s semmi) is a 2005 Hungarian comedy film Directed by Krisztina Goda."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Boy_(2010_film)"}, "Title": {"type": "literal", "value": "Boy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Taika_Waititi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Boy_(2010_film)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:New_Zealand_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Boy is a 2010 New Zealand coming-of-age comedy-drama film written and directed by Taika Waititi. The film stars James Rolleston, Waititi, Te Aho Aho Eketone-Whitu, Moerangi Tihore, and Cherilee Martin. It is produced by Cliff Curtis, Ainsley Gardiner and Emanuel Michael and financed by the New Zealand Film Commission. In New Zealand, the film eclipsed previous records for a first week's box office takings for a local production. Boy went on to become the highest grossing New Zealand film at the local box office. The soundtrack to Boy features New Zealand artists such as The Phoenix Foundation, who previously provided music for Waititi's film Eagle vs Shark."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/See-Saw_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Lobster"}, "Title": {"type": "literal", "value": "The Lobster"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Yorgos_Lanthimos"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Angeliki_Papoulia|http://dbpedia.org/resource/Ariane_Labed|http://dbpedia.org/resource/Ashley_Jensen|http://dbpedia.org/resource/Ben_Whishaw|http://dbpedia.org/resource/Colin_Farrell|http://dbpedia.org/resource/Jessica_Barden|http://dbpedia.org/resource/John_C._Reilly|http://dbpedia.org/resource/L\u00e9a_Seydoux|http://dbpedia.org/resource/Michael_Smiley|http://dbpedia.org/resource/Olivia_Colman|http://dbpedia.org/resource/Rachel_Weisz"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Black_comedy_films|http://dbpedia.org/resource/Category:British_romantic_comedy_films|http://dbpedia.org/resource/Category:Comedy_thriller_films|http://dbpedia.org/resource/Category:Dutch_comedy_films|http://dbpedia.org/resource/Category:French_romantic_comedy_films|http://dbpedia.org/resource/Category:Greek_comedy_films|http://dbpedia.org/resource/Category:Irish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "118"}, "Description": {"type": "literal", "value": "The Lobster is a 2015 absurdist dystopian comedy-drama film directed, co-written, and co-produced by Yorgos Lanthimos, co-produced by Ceci Dempsy, Ed Guiney, and Lee Magiday, and co-written by Efthymis Philippou. In the film's setting, singles are given 45 days to find a romantic partner or otherwise be turned into animals. It stars Colin Farrell as a newly-single man trying to find someone so he can remain human, and Rachel Weisz as a woman with whom he attempts to form a relationship. The film is co-produced by Ireland, United Kingdom, Greece, France and the Netherlands. It was selected to compete for the Palme d'Or at the 2015 Cannes Film Festival and won the Jury Prize. It was shown in the Special Presentations section of the 2015 Toronto International Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Picturehouse_(company)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Two_of_a_Kind_(1983_film)"}, "Title": {"type": "literal", "value": "Two of a Kind"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/John_Herzfeld"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Beatrice_Straight|http://dbpedia.org/resource/Charles_Durning|http://dbpedia.org/resource/John_Travolta|http://dbpedia.org/resource/Oliver_Reed|http://dbpedia.org/resource/Olivia_Newton-John|http://dbpedia.org/resource/Scatman_Crothers"}, "Published": {"type": "literal", "value": "1983-12-16"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1980s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:Fantasy-comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Two of a Kind is a 1983 American romantic fantasy comedy film directed by John Herzfeld starring John Travolta and Olivia Newton-John. The original musical score was composed by Patrick Williams. Travolta plays a cash strapped inventor while Newton-John plays the bank teller whom he attempts to rob. These two unlikely individuals must come to show compassion for one another in order to delay God's judgment upon the Earth. This is Travolta and Newton-John's second film together after 1978's Grease, which was a success. Two of a Kind was unsuccessful both critically and commercially, but did yield three popular singles for Newton-John and a platinum rating for the soundtrack."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Pancharangi"}, "Title": {"type": "literal", "value": "Pancharangi"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Yogaraj_Bhat"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "123"}, "Description": {"type": "literal", "value": "Pancharangi (Kannada: \u0caa\u0c82\u0c9a\u0cb0\u0c82\u0c97\u0cbf) is a 2010 Indian Kannada language romantic comedy film with philosophical overtones directed and produced by Yogaraj Bhat starring Diganth and Nidhi Subbaiah in the lead roles. The music has been composed by Mano Murthy, story and screenplay is written by Pawan Kumar. The film was predominantly shot in the coastal locales of Karnataka state. It is a story that unfolds in a span of two days and tackles issues like education, love, profession, marriage, family, life and relationships in a \"fun and non-preachy way.\" As a film with minimal budget under Bhat's maiden home production, it fared well at the box-office. The popular song Lifeu Ishtene was a runaway success and it was used as the title of Pawan Kumar's debut film."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Cosmopolitan_(film)"}, "Title": {"type": "literal", "value": "Cosmopolitan"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nisha_Ganatra"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Carol_Kane|http://dbpedia.org/resource/Madhur_Jaffrey|http://dbpedia.org/resource/Purva_Bedi|http://dbpedia.org/resource/Roshan_Seth"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "53"}, "Description": {"type": "literal", "value": "Cosmopolitan is a 2003 American independent film starring Roshan Seth and Carol Kane, and directed by Nisha Ganatra. The film, based on an acclaimed short story by Akhil Sharma and written by screenwriter Sabrina Dhawan (Monsoon Wedding), is a cross-cultural romance between a confused and lonely middle-aged Indian, who has lived in America for 20 years, and his exasperating, free-spirited blonde neighbour. The film was released theatrically in 2003. It was televised nationally in 2004 on the PBS series Independent Lens."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/ITVS|http://dbpedia.org/resource/Public_Broadcasting_Service"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Aap_Ki_Khatir_(2006_film)"}, "Title": {"type": "literal", "value": "Aap Ki Khatir"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dharmesh_Darshan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Akshaye_Khanna|http://dbpedia.org/resource/Ameesha_Patel|http://dbpedia.org/resource/Dino_Morea|http://dbpedia.org/resource/Priyanka_Chopra|http://dbpedia.org/resource/Suniel_Shetty"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "127"}, "Description": {"type": "literal", "value": "Aap Ki Khatir (Hindi: \u0906\u092a \u0915\u0940 \u0916\u093c\u093e\u0924\u093f\u0930, Urdu:, \u0622\u067e \u06a9\u06cc \u062e\u0627\u0637\u0631, English: For Your Sake) is a Bollywood romantic comedy filmdirected by Dharmesh Darshan, starring Akshaye Khanna and Priyanka Chopra in lead roles. It also stars Ameesha Patel, Dino Morea, Sunil Shetty and Anupam Kher. It is based on the hustler 2005 Hollywood movie The Wedding Date. It was released throughout India and internationally in late August 2006."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Finding_Sofia"}, "Title": {"type": "literal", "value": "Finding Sof\u00eda"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nico_Casavecchia"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andrea_Carballo|http://dbpedia.org/resource/Rafael_Spregelburd|http://dbpedia.org/resource/Sam_Huntington"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Argentine_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "Finding Sof\u00eda is a 2016 Argentine and American comedy film written and directed by Nico Casavecchia. The film is Casavecchia's first feature film and was produced by 1stAveMachine. It premiered in 2016 on the Buenos Aires International Festival of Independent Cinema and was included in the festival's Argentine official competition. The picture features Sam Huntington, Andrea Carballo, Rafael Spregelburd, Sof\u00eda Brihet, among others."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Aloha_Santa"}, "Title": {"type": "literal", "value": "Aloha Santa"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jonathan_Yudis"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/George_Lopez"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Aloha Santa is an upcoming American Christmas comedy film directed by Jonathan Yudis and written by Yudis, Adam 'Tex' Davis, and Mike Davis. The film stars George Lopez and Ryan Ursua."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Beauty_Shop"}, "Title": {"type": "literal", "value": "Beauty Shop"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bille_Woodruff"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adele_Givens|http://dbpedia.org/resource/Alfre_Woodard|http://dbpedia.org/resource/Alicia_Silverstone|http://dbpedia.org/resource/Andie_MacDowell|http://dbpedia.org/resource/Djimon_Hounsou|http://dbpedia.org/resource/Kevin_Bacon|http://dbpedia.org/resource/Lil'_JJ|http://dbpedia.org/resource/Mena_Suvari"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Beauty Shop is a 2005 American comedy film directed by Bille Woodruff. The film serves as a spin-off of the Barbershop film franchise, and stars Queen Latifah as Gina, a character first introduced in the 2004 film Barbershop 2: Back in Business. This film also stars Alicia Silverstone, Andie MacDowell, Mena Suvari, Kevin Bacon and Djimon Hounsou."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Metro-Goldwyn-Mayer"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Cottage_(film)"}, "Title": {"type": "literal", "value": "The Cottage"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Paul_Andrew_Williams"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Serkis|http://dbpedia.org/resource/Jennifer_Ellison|http://dbpedia.org/resource/Reece_Shearsmith|http://dbpedia.org/resource/Steve_O'Donnell_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:British_black_comedy_films|http://dbpedia.org/resource/Category:British_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "The Cottage is a 2008 British darkly comic horror film, written and directed by Paul Andrew Williams."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Path\u00e9"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Foxy_Festival"}, "Title": {"type": "literal", "value": "Foxy Festival"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lee_Hae-young"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Baek_Jin-hee|http://dbpedia.org/resource/Oh_Dal-su|http://dbpedia.org/resource/Ryoo_Seung-bum|http://dbpedia.org/resource/Shim_Hye-jin|http://dbpedia.org/resource/Shin_Ha-kyun|http://dbpedia.org/resource/Sung_Dong-il|http://dbpedia.org/resource/Uhm_Ji-won"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films|http://dbpedia.org/resource/Category:South_Korean_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "Foxy Festival (Hangul: \ud398\uc2a4\ud2f0\ubc1c; RR: Peseutibal; \"Festival\") is a 2010 South Korean film with an all-star ensemble cast. It is a character-driven comedy of manners about the secret (and not so secret) sexual lives of a group of interconnected people in an upper-middle class district of Seoul."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Remote_(film)"}, "Title": {"type": "literal", "value": "Remote!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ted_Nicolaou"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Carrara|http://dbpedia.org/resource/Jessica_Bowman|http://dbpedia.org/resource/John_Diehl_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "Remote (Moonbeam Entertainment, 1993) is a comedy film that was released on September 22, 1993, starring Chris Carrara, Jessica Bowman, and John Diehl. Ted Nicolaou directed the film and it was written by Mike Farrow, best known for his hard-boiled detective persona Tommy Sledge. The movie's premise is similar to that of Home Alone. It is the second film to be released by Moonbeam Entertainment."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Crystal_Fairy_&_the_Magical_Cactus"}, "Title": {"type": "literal", "value": "Crystal Fairy & The Magical Cactus"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sebasti\u00e1n_Silva_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gaby_Hoffmann|http://dbpedia.org/resource/Michael_Cera"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Chilean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "Crystal Fairy & The Magical Cactus (Crystal Fairy & The Magical Cactus and 2012 as presented onscreen) is a 2013 Chilean adventure comedy film written and directed by Sebasti\u00e1n Silva. The film stars Michael Cera and Gaby Hoffmann. At the film's Sundance premiere, Silva said that his film, which is based on a real-life encounter, is \"about the birth of compassion in someone's life.\" The film received positive reviews from critics."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bring_It_On:_Fight_to_the_Finish"}, "Title": {"type": "literal", "value": "Bring It On: Fight to the Finish"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bille_Woodruff"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Christina_Milian|http://dbpedia.org/resource/Gabrielle_Dennis|http://dbpedia.org/resource/Holland_Roden|http://dbpedia.org/resource/Rachele_Brooke_Smith"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Direct-to-video_comedy_films|http://dbpedia.org/resource/Category:Teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Bring It On: Fight to the Finish is a 2009 teen comedy film starring Christina Milian, Rachele Brooke Smith, Cody Longo, Vanessa Born, Gabrielle Dennis and Holland Roden. Directed by Bille Woodruff and the fifth and most recent installment in a series of stand-alone films starting with the 2000 film Bring It On. The film was released direct-to-video on DVD and Blu-ray on September 1, 2009."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios_Home_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Thoda_Pyaar_Thoda_Magic"}, "Title": {"type": "literal", "value": "Thoda Pyaar Thoda Magic"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kunal_Kohli"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ameesha_Patel|http://dbpedia.org/resource/Rani_Mukerji|http://dbpedia.org/resource/Rishi_Kapoor|http://dbpedia.org/resource/Saif_Ali_Khan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "137"}, "Description": {"type": "literal", "value": "Thoda Pyaar Thoda Magic (English: A Little Love, A Little Magic) is a 2008 Hindi film with Saif Ali Khan and Rani Mukerji in lead roles, and Rishi Kapoor and Ameesha Patel in special appearances. The child artists include Akshat Chopra, Shriya Sharma, Rachit Sidana and Ayushi Burman. Directed, written and co-produced by Kunal Kohli, the film is produced and distributed by Yash Chopra and Aditya Chopra under their banner Yash Raj Films."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Yash_Raj_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Steps_(film)"}, "Title": {"type": "literal", "value": "The Steps"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Currie_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Emmanuelle_Chriqui"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "The Steps is a 2015 Canadian comedy film directed by Andrew Currie. It was screened in the Contemporary World Cinema section of the 2015 Toronto International Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Begin_Again_(film)"}, "Title": {"type": "literal", "value": "Begin Again"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/John_Carney_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Levine|http://dbpedia.org/resource/Catherine_Keener|http://dbpedia.org/resource/CeeLo_Green|http://dbpedia.org/resource/Hailee_Steinfeld|http://dbpedia.org/resource/James_Corden|http://dbpedia.org/resource/Keira_Knightley|http://dbpedia.org/resource/Mark_Ruffalo|http://dbpedia.org/resource/Mos_Def"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_musical_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "Begin Again is a 2013 American musical comedy-drama film written and directed by John Carney and starring Keira Knightley and Mark Ruffalo. Knightley plays a singer-songwriter who is discovered by a struggling record label executive (Ruffalo) and collaborates with him to produce an album recorded in public locations all over New York City. After the success of his 2007 musical film Once, Carney wrote the script for Begin Again in 2010 and employed Gregg Alexander to compose most of the film's music. With an US$8 million budget, production began in July 2012 with filming taking place in various locations around New York City. The film premiered in September 2013 at the Toronto International Film Festival and was released theatrically on June 27, 2014, in conjunction with the release of the film's soundtrack. It has grossed over $63 million worldwide and received mostly positive reviews from critics. It was nominated for an Academy Award for Best Original Song for \"Lost Stars\"."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/The_Weinstein_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Brass_Teapot"}, "Title": {"type": "literal", "value": "The Brass Teapot"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ramaa_Mosley"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alexis_Bledel|http://dbpedia.org/resource/Alia_Shawkat|http://dbpedia.org/resource/Bobby_Moynihan|http://dbpedia.org/resource/Juno_Temple|http://dbpedia.org/resource/Michael_Angarano"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_fantasy-comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "The Brass Teapot is a 2013 American film directed by Ramaa Mosley. The movie's script was written by Tim Macy, who also wrote the short story on which the movie is based. The movie premiered at the Toronto International Film Festival on September 8, 2012, and was released into theaters and video on demand on April 5, 2013. Critical reception for the film was mixed. Film.com review said \"Despite the sometimes patchy moments The Brass Teapot by and large squeaks by as an enjoyable entertainment.\" The Playlist commented that \"With the help of a talented cast, The Brass Teapot is able to coast on charm.\" Hitflix writes \"It is apparent that Ramaa Mosley has a voice, and that The Brass Teapot is a focused, controlled piece of storytelling that displays real control\". Wall Street Journal reviews says \"Alice and John are good company \u2014 especially Alice, thanks to Ms. Temple's buoyant humor and lovely poignancy. The problem comes when the couple gets greedy, the gods grow angry and the tone turns dark. It doesn't stay dark, but getting back to the brightness is a painful process.\" The Brass Teapot holds 5 stars on Netflix and was nominated for International Critics' Award (2013) for The Brass Teapot and nominated, Discovery Award for The Brass Teapot (2013)."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Magnolia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Worst_Christmas_of_My_Life_(film)"}, "Title": {"type": "literal", "value": "The Worst Christmas of My Life"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alessandro_Genovesi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cristiana_Capotondi|http://dbpedia.org/resource/Fabio_De_Luigi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Italian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "The Worst Christmas of My Life (Italian: Il peggior Natale della mia vita) is a 2012 Italian comedy film directed by Alessandro Genovesi and starring Fabio De Luigi and Cristiana Capotondi. It is the sequel of The Worst Week of My Life. It was a commercial success, grossing $10,275,097 at the Italian box office."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Art_of_Negative_Thinking"}, "Title": {"type": "literal", "value": "The Art of Negative Thinking"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/B\u00e5rd_Breien"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006-11-11"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "The Art of Negative Thinking (Norwegian: Kunsten \u00e5 tenke negativt) is a 2006 Norwegian black comedy film directed and written by B\u00e5rd Breien. The storyline revolves around a man (played by Fridtjov S\u00e5heim) who is adjusting to life in a wheelchair, and the socializing group he is made to join. The film was Breien's directorial debut. It was produced by Dag Alveberg for the production company Maipo film- og TV-produksjon. The Art of Negative Thinking was successful both domestically and internationally, with sales of 35,000 tickets in its Norwegian theater run and the highest-gross in Germany for any Nordic film during 2008. Reviews were mostly positive and the film won multiple international awards."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Cromartie_High_\u2013_The_Movie"}, "Title": {"type": "literal", "value": "Cromartie High - The Movie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Y\u016bdai_Yamaguchi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hiroyuki_Watanabe|http://dbpedia.org/resource/Kai_At\u014d|http://dbpedia.org/resource/Kenichi_Endou|http://dbpedia.org/resource/Mitsuki_Koga|http://dbpedia.org/resource/Tak_Sakaguchi|http://dbpedia.org/resource/Takamasa_Suga"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Japanese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Cromartie High - The Movie (\u9b41!! \u30af\u30ed\u30de\u30c6\u30a3\u9ad8\u6821 THE\u2605MOVIE Sakigake!! Kuromati K\u014dk\u014d The Movie) is a 2005 Japanese live-action film directed by Y\u016bdai Yamaguchi (who had previously made Battlefield Baseball) and starring Takamasa Suga. The film is based on the manga Cromartie High School by Eiji Nonaka which had also been previously adapted as an anime series."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Pervert!"}, "Title": {"type": "literal", "value": "Pervert!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jonathan_Yudis"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Darrell_Sandeen|http://dbpedia.org/resource/Mary_Carey_(actress)|http://dbpedia.org/resource/Sean_Andrews"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "81"}, "Description": {"type": "literal", "value": "Pervert! is a 2005 comedy horror film directed by Jonathan Yudis. It is mainly a tribute to the films of Russ Meyer."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/TLA_Releasing"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Noah's_Arc:_Jumping_the_Broom"}, "Title": {"type": "literal", "value": "Noah's Arc: Jumping the Broom"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Patrik-Ian_Polk"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Christian_Vincent|http://dbpedia.org/resource/Darryl_Stephens|http://dbpedia.org/resource/Doug_Spearman|http://dbpedia.org/resource/Jensen_Atwood|http://dbpedia.org/resource/Rodney_Chester"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Noah's Arc: Jumping the Broom is a 2008 Canadian-American romantic comedy-drama film based on the LOGO television series Noah's Arc. It was released on October 24, 2008 in select theaters and video on demand. The film is MPAA rated R in the U.S. for \"sexual content and language.\""}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/LOGO_(TV_channel)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Singh_Is_Bliing"}, "Title": {"type": "literal", "value": "Singh Is Bliing"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Prabhu_Deva"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_action_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "139"}, "Description": {"type": "literal", "value": "Singh Is Bliing is a 2015 Bollywood action comedy film directed by Prabhu Deva and produced by Ashvini Yardi and Jayantilal Gada under the banners Grazing Goat Pictures and Pen India Pvt. Ltd. The film features Akshay Kumar, Amy Jackson, Lara Dutta and Kay Kay Menon in lead roles. It is not related to the 2008 film Singh is Kinng directed by Anees Bazmee."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Eros_International|http://dbpedia.org/resource/Pen_India_Limited"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Irreplaceable_(film)"}, "Title": {"type": "literal", "value": "Irreplaceable"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Thomas_Lilti"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Fran\u00e7ois_Cluzet|http://dbpedia.org/resource/Marianne_Denicourt"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Irreplaceable (original title: M\u00e9decin de campagne) is a 2016 French dramedy film directed and co-written by Thomas Lilti. It stars Fran\u00e7ois Cluzet and Marianne Denicourt."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Delete_My_Love"}, "Title": {"type": "literal", "value": "Delete My Love"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Patrick_Kong"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ivana_Wong|http://dbpedia.org/resource/Michael_Hui|http://dbpedia.org/resource/Wong_Cho-lam"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Hong_Kong_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Delete My Love (Chinese: Delete\u611b\u4eba) is a 2014 Hong Kong romantic comedy film directed and written by Patrick Kong and starring Wong Cho-lam, Ivana Wong and Michael Hui."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Diary_of_a_Wimpy_Kid:_Dog_Days_(film)"}, "Title": {"type": "literal", "value": "Diary of a Wimpy Kid: Dog Days"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_Bowers_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Devon_Bostick|http://dbpedia.org/resource/Rachael_Harris|http://dbpedia.org/resource/Robert_Capron|http://dbpedia.org/resource/Steve_Zahn|http://dbpedia.org/resource/Zachary_Gordon"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "Diary of a Wimpy Kid: Dog Days is a 2012 American comedy film directed by David Bowers from a screenplay by Wallace Wolodarsky and Maya Forbes. It stars Zachary Gordon and Steve Zahn. Robert Capron, Devon Bostick, Rachael Harris, Peyton List, Grayson Russell, and Karan Brar also have prominent roles. It is the third installment in the Diary of a Wimpy Kid film series, and is based on the third and fourth books in the series, The Last Straw and Dog Days. The film was released on August 3, 2012. It is also Bowers' second live-action film. Although the film is based on the third and fourth Diary of a Wimpy Kid books, there is a scene based on a part of the first book, where Greg's dad, Frank, is trying to unplug Greg's video game system, but does not know how to."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sakalakala_Vallavan_(2015_film)"}, "Title": {"type": "literal", "value": "Sakalakala Vallavan"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Suraj_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anjali_(actress_born_1986)|http://dbpedia.org/resource/Jayam_Ravi|http://dbpedia.org/resource/Prabhu_(actor)|http://dbpedia.org/resource/Trisha_(actress)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Sakalakala Vallavan is a 2015 Tamil language comedy film written and directed by Suraj. The film features Jayam Ravi, Trisha and Anjali in the lead, while Prabhu appears in a supporting role. S. Thaman composed the film's music."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Matsugane_Potshot_Affair"}, "Title": {"type": "literal", "value": "The Matsugane Potshot Affair"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nobuhiro_Yamashita"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hirofumi_Arai"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "122"}, "Description": {"type": "literal", "value": "The Matsugane Potshot Affair (\u677e\u30f6\u6839\u4e71\u5c04\u4e8b\u4ef6 Matsugane Ransha Jiken) is a 2006 Japanese drama film directed by Nobuhiro Yamashita, starring Hirofumi Arai."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bento_Monogatari"}, "Title": {"type": "literal", "value": "Bento Monogatari"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pieter_Dirkx"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "27"}, "Description": {"type": "literal", "value": "Bento Monogatari (often translated as 'Lunchbox Story') is a 2010 short film by Pieter Dirkx. It was selected for the 2011 Cannes Film Festival in the Cin\u00e9fondation section. The film was the director's graduation project at the Hogeschool Sint-Lukas Brussels film school."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Cold_Souls"}, "Title": {"type": "literal", "value": "Cold Souls"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sophie_Barthes"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/David_Strathairn|http://dbpedia.org/resource/Emily_Watson|http://dbpedia.org/resource/Paul_Giamatti"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Cold Souls is a 2009 comedy-drama film written and directed by Sophie Barthes. The film features Paul Giamatti, Dina Korzun, Emily Watson, and David Strathairn. Giamatti stars as a fictionalised version of himself, an anxious, overwhelmed actor who decides to enlist the service of a company to deep freeze his soul. Complications ensue when his soul gets lost in a soul trafficking scheme which has taken his soul to St. Petersburg. The film then follows Giamatti desperately trying to recover his soul."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Samuel_Goldwyn_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Fruit_Fly_(film)"}, "Title": {"type": "literal", "value": "Fruit Fly"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/H.P._Mendoza"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/H.P._Mendoza"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_musical_comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Fruit Fly is a 2009 musical film with gay and Asian-American themes, directed by H.P. Mendoza, who wrote the screenplay for Colma The Musical (2007). The film, made entirely in San Francisco, premiered on March 15, 2009 at the San Francisco International Asian American Film Festival at the Castro Theatre in San Francisco. It had a limited one-week run in New York on September 24, 2010."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Forgetting_Sarah_Marshall"}, "Title": {"type": "literal", "value": "Forgetting Sarah Marshall"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nicholas_Stoller"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kristen_Bell|http://dbpedia.org/resource/Mila_Kunis|http://dbpedia.org/resource/Russell_Brand"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "Forgetting Sarah Marshall is a 2008 American romantic comedy-drama film directed by Nicholas Stoller and starring Jason Segel, Kristen Bell, Mila Kunis and Russell Brand. The film, which was written by Segel and co-produced by Judd Apatow, was released by Universal Studios. Filming began in April 2007 at the Turtle Bay Resort on the North Shore of Oahu Island in Hawaii. The film was released for North American theaters on April 18, 2008 and in the UK a week later on April 25, 2008. The story revolves around Peter Bretter, who is a music composer for a TV show that happens to feature his girlfriend, Sarah Marshall, in the lead role. After a five-year relationship, Sarah abruptly breaks up with Peter. Devastated by this event, he chooses to go on a vacation in Hawaii, in order to try to move forward with his life. Trouble ensues when he runs into his ex on the island as she is vacationing with her new boyfriend."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Vaastu_Prakaara"}, "Title": {"type": "literal", "value": "Vaastu Prakaara"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Yogaraj_Bhat"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jaggesh|http://dbpedia.org/resource/Parul_Yadav|http://dbpedia.org/resource/Rakshit_Shetty"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "145"}, "Description": {"type": "literal", "value": "Vaastu Prakaara (Kannada: \u0cb5\u0cbe\u0cb8\u0ccd\u0ca4\u0cc1 \u0caa\u0ccd\u0cb0\u0c95\u0cbe\u0cb0) is a 2015 Indian Kannada language satirical comedy film directed by Yogaraj Bhat starring Rakshit Shetty, Jaggesh, Aishani Shetty and Parul Yadav in lead roles. The supporting cast features Anant Nag, Sudha Rani, T. N. Seetharam and Sudha Belawadi. The film deals in the belief of Indians in astrology and superstition and how it is being blindly followed and overlooked over science. Upon theatrical release on 2 April 2015, the film received mixed reviews from critics. They felt, carrying expectations along as a 'Yogaraj Bhat film', the film failed to deliver as it lacked a \"strong foundation\" and \"a sound structure\". However, the performances of Jaggesh and Nag received unanimous praise."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Down_Under_(2016_film)"}, "Title": {"type": "literal", "value": "Down Under"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Abe_Forsythe"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alexander_England|http://dbpedia.org/resource/Damon_Herriman|http://dbpedia.org/resource/Lincoln_Younes"}, "Published": {"type": "literal", "value": "2016-08-11"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Australian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Down Under is an Australian black comedy drama film set in the aftermath of the 2005 Cronulla riots. It follows the story of two carloads of vengeful, testosterone-charged young hotheads from both sides of the fight, who are destined to collide. It is written and directed by Abe Forsythe Southern Cross-tattooed Jason (Damon Herriman) is rounding up the troops in the Shire. He recruits Shit-Stick (Alexander England), who works in a DVD store, who has been very unsuccessfully teaching out-of-town cousin Evan (Chris Bunton) to drive, and Ned Kelly obsessive Ditch (Justin Rosniak), whose head is swathed in bandages because of a new tattoo. Shit-Stick's dad, Graham (Marshall Napier), gives him an old rifle brought back from World War I and a left-over grenade, hoping his son will finally make the family proud. Across town at Lakemba, Nick (Rahel Romahn) drags Hassim (Lincoln Younes) away from his studies to join a car heading for the Shire along with devout Muslim Ibrahim (Michael Denkha) and freewheeling rapper D-Mac (Fayssal Bazzi) to join the raid."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Revenge_of_the_Bridesmaids"}, "Title": {"type": "literal", "value": "Revenge of the Bridesmaids"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Hayman"}, "Author": {"type": "literal", "value": "http://dbpedia.org/resource/Bob_Young_(TV_producer)|http://dbpedia.org/resource/David_Kendall_(director)"}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Beth_Broderick|http://dbpedia.org/resource/Chryssie_Whitehead|http://dbpedia.org/resource/David_Clayton_Rogers|http://dbpedia.org/resource/Joanna_Garc\u00eda|http://dbpedia.org/resource/Raven-Symon\u00e9|http://dbpedia.org/resource/Virginia_Williams"}, "Published": {"type": "literal", "value": "2010-07-18"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Revenge of the Bridesmaids is a 2010 ABC Family Original Movie that premiered on July 18, 2010. It stars Raven-Symon\u00e9 and Joanna Garc\u00eda as undercover bridesmaids with a mission to break up a wedding. In addition, the film's cast also features Virginia Williams, Beth Broderick, Chryssie Whitehead, David Clayton Rogers, Lyle Brocato and Brittany Ishibashi."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Beautiful_Wonderful_Perfect"}, "Title": {"type": "literal", "value": "Beautiful Wonderful Perfect"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Poj_Arnon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Choosak_Iamsook|http://dbpedia.org/resource/Nawarat_Techarathanaprasert|http://dbpedia.org/resource/Weerapak_Kaensuwan"}, "Published": {"type": "literal", "value": "2005-01-06"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Beautiful Wonderful Perfect or Er rer (Thai: \u0e40\u0e2d\u0e4b\u0e2d\u0e40\u0e2b\u0e23\u0e2d) is a 2005 Thai family comedy film directed by Poj Arnon."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sahamongkol_Film_International"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Supertwink"}, "Title": {"type": "literal", "value": "Supertwink"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Richard_Christy|http://dbpedia.org/resource/Sal_Governale"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Artie_Lange|http://dbpedia.org/resource/Richard_Christy|http://dbpedia.org/resource/Sal_Governale|http://dbpedia.org/resource/The_Wack_Pack"}, "Published": {"type": "literal", "value": "2006-01-04"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "30"}, "Description": {"type": "literal", "value": "Supertwink is a 2006 comedy film directed, written, and filmed by Richard Christy and Sal Governale. Produced and made for subscribers of Howard TV, an In Demand digital cable service operated by Howard Stern, the film stars members of Stern's radio show staff and \"Wack Packers\". The film premi\u00e8red at the Pioneer Theater, in New York City, on January 4, 2006. Despite claims that the film had a $4,000 budget, Christy stated on Stern's radio show that he spent no more than $700. When Stern asked Roger Ebert and Richard Roeper to review the film, Ebert refused to watch it, while Roeper's review was run over the film's ending credits."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Howard_Stern_television_shows"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Somewhere_(film)"}, "Title": {"type": "literal", "value": "Somewhere"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sofia_Coppola"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Elle_Fanning|http://dbpedia.org/resource/Michelle_Monaghan|http://dbpedia.org/resource/Stephen_Dorff"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Somewhere is a 2010 American drama film written and directed by Sofia Coppola. The film follows Johnny Marco (played by Stephen Dorff), a newly famous actor, as he recuperates from a minor injury at the Chateau Marmont, a well-known Hollywood retreat. Despite money, fame and professional success, Marco is trapped in an existential crisis and feels little emotion during his daily life. When his ex-wife suffers an unexplained breakdown and goes away, she leaves Cleo (Elle Fanning), their 11-year-old daughter, in his care. They spend time together and her presence helps Marco mature and accept adult responsibility. The film explores ennui among Hollywood stars, the father\u2013daughter relationship and offers an oblique comedy of show business, particularly Hollywood film-making and the life of a \"star\". Somewhere premiered at the 67th Venice International Film Festival where it received the Golden Lion award for best picture. Critical opinion was mildly positive. Reviewers praised the patience of the film's visual style and its empathy for a handful of characters, but some found Somewhere to be too repetitive of themes in Coppola's previous work, or did not sympathize with the protagonist because of his relative success. It was released to theaters in the United Kingdom and Ireland on December 10, 2010, and in the United States on December 22, 2010."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Focus_Features"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Inherent_Vice_(film)"}, "Title": {"type": "literal", "value": "Inherent Vice"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Paul_Thomas_Anderson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Benicio_del_Toro|http://dbpedia.org/resource/Jena_Malone|http://dbpedia.org/resource/Joaquin_Phoenix|http://dbpedia.org/resource/Josh_Brolin|http://dbpedia.org/resource/Katherine_Waterston|http://dbpedia.org/resource/Martin_Short|http://dbpedia.org/resource/Maya_Rudolph|http://dbpedia.org/resource/Owen_Wilson|http://dbpedia.org/resource/Reese_Witherspoon"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "149"}, "Description": {"type": "literal", "value": "Inherent Vice is a 2014 American crime comedy-drama film. The seventh feature film directed by Paul Thomas Anderson, Inherent Vice was adapted by Anderson from the novel of the same name by Thomas Pynchon; the cast includes Joaquin Phoenix, Josh Brolin, Owen Wilson, Katherine Waterston, Eric Roberts, Reese Witherspoon, Benicio del Toro, Jena Malone, Joanna Newsom, Jeannie Berlin, Maya Rudolph, Michael K. Williams and Martin Short. As with its source material, the storyline revolves around Larry \"Doc\" Sportello, a stoner hippie and PI in 1970, as he becomes embroiled in the Los Angeles criminal underworld while investigating three cases interrelated by the disappearance of his ex-girlfriend and her wealthy boyfriend. Anderson's adaptation of Inherent Vice had been in development since 2010; it is the first time one of Pynchon's novels has been adapted for the screen. The film marks Anderson's second consecutive collaboration with Joaquin Phoenix following The Master and involves a number of his other recurring collaborators, including producers Daniel Lupi and JoAnne Sellar, cinematographer Robert Elswit and editor Leslie Jones. It is also the third consecutive Anderson film to be scored by Radiohead guitarist and keyboardist Jonny Greenwood, following There Will Be Blood and The Master. The film premiered at the New York Film Festival on October 4, 2014, and began a limited theatrical release in the United States on December 12, 2014. Critical reception was polarized, but generally leaned towards acclaim; reviewers praised the cast, particularly Brolin, Phoenix and Waterston, while criticism tended to focus on its convoluted plot and lack of coherence. It went on to receive a number of award nominations, including two Oscar nominations and a Best Actor Golden Globe Award nomination for Phoenix. The National Board of Review named it one of the ten best films of the year. Some reviews have said that Inherent Vice has the makings of a cult film. In 2016, it was voted the 75th best film of the 21st century as picked by 177 film critics from around the world."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros._Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Digging_for_Fire"}, "Title": {"type": "literal", "value": "Digging for Fire"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Joe_Swanberg"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anna_Kendrick|http://dbpedia.org/resource/Brie_Larson|http://dbpedia.org/resource/Mike_Birbiglia|http://dbpedia.org/resource/Orlando_Bloom|http://dbpedia.org/resource/Rosemarie_DeWitt|http://dbpedia.org/resource/Sam_Rockwell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "(For the Pixies song, see Dig for Fire.) Digging for Fire is a 2015 American comedy-drama film directed by Joe Swanberg and co-written by Swanberg and Jake Johnson. It stars an ensemble cast led by Johnson, Rosemarie DeWitt, Brie Larson, Sam Rockwell, Anna Kendrick, Orlando Bloom and Mike Birbiglia. Johnson and DeWitt play a married couple who find a gun and a bone in the backyard of a house they are staying in. The film's plot was inspired by a similar incident in which Johnson discovered a gun and a bone in his backyard. Instead of a traditional script, he and Swanberg wrote an outline that summarized the plot but included no dialogue. They cast the film mainly by contacting their friends and other actors who they knew had enjoyed their previous work. It was filmed over 15 days in Los Angeles County, California. Swanberg dedicated the film to filmmaker Paul Mazursky. Digging for Fire premiered at the 2015 Sundance Film Festival on January 26, 2015. It was released in theaters on August 21, 2015 by The Orchard and on video on demand on August 25, 2015. The film was generally well received by critics."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sony_Pictures_Worldwide_Acquisitions|http://dbpedia.org/resource/The_Orchard_(company)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Tourist_(2010_film)"}, "Title": {"type": "literal", "value": "The Tourist"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Florian_Henckel_von_Donnersmarck"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Angelina_Jolie|http://dbpedia.org/resource/Christian_De_Sica|http://dbpedia.org/resource/Johnny_Depp|http://dbpedia.org/resource/Paul_Bettany|http://dbpedia.org/resource/Raoul_Bova|http://dbpedia.org/resource/Rufus_Sewell|http://dbpedia.org/resource/Steven_Berkoff|http://dbpedia.org/resource/Timothy_Dalton"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "The Tourist is a 2010 romantic comedy thriller co-written and directed by Florian Henckel von Donnersmarck, starring Angelina Jolie, Johnny Depp, Paul Bettany, and Timothy Dalton. It is based on the screenplay for Anthony Zimmer. GK Films financed and produced the film, with Sony Pictures Worldwide Acquisitions releasing it in most countries through Columbia Pictures. The US$100 million-budgeted film went on to gross US$278 million at the worldwide box office. Despite the negative reception from the critics, the film was nominated for three Golden Globes, with a debate arising over the question as to whether it was a comedy or a drama. Henckel von Donnersmarck repeatedly stated it was neither genre, calling it \"a travel romance with thriller elements,\" but that if he had to choose between the two, he would choose comedy."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Vasool_Raja_MBBS"}, "Title": {"type": "literal", "value": "Vasool Raja MBBS"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Saran_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jayasurya|http://dbpedia.org/resource/Kamal_Haasan|http://dbpedia.org/resource/Karunas|http://dbpedia.org/resource/Malavika_(Tamil_actress)|http://dbpedia.org/resource/Nagesh|http://dbpedia.org/resource/Nithin_Sathya|http://dbpedia.org/resource/Prabhu_Ganesan|http://dbpedia.org/resource/Prakash_Raj|http://dbpedia.org/resource/Rohini_Hattangadi|http://dbpedia.org/resource/Sneha_(actress)"}, "Published": {"type": "literal", "value": "2004-08-12"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:Indian_comedy-drama_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "160"}, "Description": {"type": "literal", "value": "Vasool Raja MBBS (English: Collection King) is a 2004 Tamil comedy film starring Kamal Haasan and directed by Saran. This film is a remake of Hindi film Munnabhai MBBS, which was inspired by the English movie Patch Adams released back in 1998. It was the first Kamal film to beat the record set by Indian eight years earlier. The rest of the cast includes Prakash Raj, Prabhu, Sneha, Jayasurya, Nagesh, Malavika and Karunas. The film's music was composed by Bharadwaj."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Raaj_Kamal_Films_International"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Battle_of_Shaker_Heights"}, "Title": {"type": "literal", "value": "The Battle of Shaker Heights"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Efram_Potelle|http://dbpedia.org/resource/Kyle_Rankin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amy_Smart|http://dbpedia.org/resource/Elden_Henson|http://dbpedia.org/resource/Kathleen_Quinlan|http://dbpedia.org/resource/Shia_LaBeouf|http://dbpedia.org/resource/Shiri_Appleby|http://dbpedia.org/resource/William_Sadler_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "77"}, "Description": {"type": "literal", "value": "The Battle of Shaker Heights is a 2003 American comedy-drama film co-directed by Efram Potelle and Kyle Rankin. It starred Shia La Beouf, Elden Henson, Kathleen Quinlan, Amy Smart, and Shiri Appleby. The film was the winning script for the second season of Project Greenlight."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Miramax_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Temporada_de_patos"}, "Title": {"type": "literal", "value": "Temporada de patos"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Fernando_Eimbcke"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Carolina_Politi|http://dbpedia.org/resource/Daniel_Miranda|http://dbpedia.org/resource/Danny_Perea|http://dbpedia.org/resource/Diego_Cata\u00f1o|http://dbpedia.org/resource/Enrique_Arreola"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Temporada de patos (released as Duck Season in the United States) is a 2004 Mexican film. It is the first feature film by writer/director, Fernando Eimbcke, a former MTV Awards videoclip director. After being successfully featured in national and international film festivals such as the Cannes Film Festival it was sold to distributors in six European countries. The movie has been praised in all of these festivals as well as by directors such as Alfonso Cuar\u00f3n (Gravity) and Guillermo del Toro (Pacific Rim). The movie is filmed in black and white and mostly takes place in one location, an old apartment in Tlatelolco."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Independent_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/La_suerte_en_tus_manos"}, "Title": {"type": "literal", "value": "La suerte en tus manos"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Daniel_Burman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jorge_Drexler|http://dbpedia.org/resource/Norma_Aleandro|http://dbpedia.org/resource/Valeria_Bertuccelli"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "La suerte en tus manos is a film co-produced by Argentina, Brazil and Spain directed by Daniel Burman based on his own script written in collaboration with Sergio Dubcovsky which premiered on March 29, 2012, starring Norma Aleandro, Jorge Drexler, Valeria Bertuccelli and Gabriel Schultz."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Moscow_Square_(film)"}, "Title": {"type": "literal", "value": "Moscow Square"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ferenc_T\u00f6r\u00f6k_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Moscow Square (Hungarian: Moszkva t\u00e9r) is a Hungarian film released in 2001. It is named after Moscow Square in Budapest and is about a group of high school students who would rather party than take notice of the history taking place all round them in 1989."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Cemetery_Junction_(film)"}, "Title": {"type": "literal", "value": "Cemetery Junction"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ricky_Gervais|http://dbpedia.org/resource/Stephen_Merchant"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Christian_Cooke|http://dbpedia.org/resource/Emily_Watson|http://dbpedia.org/resource/Felicity_Jones|http://dbpedia.org/resource/Jack_Doolan_(actor)|http://dbpedia.org/resource/Matthew_Goode|http://dbpedia.org/resource/Ralph_Fiennes|http://dbpedia.org/resource/Ricky_Gervais|http://dbpedia.org/resource/Tom_Hughes_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:British_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Cemetery Junction is a 2010 British coming-of-age comedy-drama film written and directed by Ricky Gervais and Stephen Merchant. The film was released in the United Kingdom on 14 April 2010."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Madly_Madagascar"}, "Title": {"type": "literal", "value": "Madly Madagascar"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_Soren_(animator)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Richter|http://dbpedia.org/resource/Ben_Stiller|http://dbpedia.org/resource/Cedric_the_Entertainer|http://dbpedia.org/resource/Chris_Miller_(animator)|http://dbpedia.org/resource/Chris_Rock|http://dbpedia.org/resource/Christopher_Knights|http://dbpedia.org/resource/Danny_Jacobs_(actor)|http://dbpedia.org/resource/David_Schwimmer|http://dbpedia.org/resource/Jada_Pinkett_Smith|http://dbpedia.org/resource/Taraji_P._Henson|http://dbpedia.org/resource/Tom_McGrath_(animator)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films|http://dbpedia.org/resource/Category:Direct-to-video_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "22"}, "Description": {"type": "literal", "value": "Madly Madagascar is a direct-to-DVD Valentine's Day short film starring the characters from the Madagascar film series, and taking place during the second film. Produced by DreamWorks Animation, it was written and directed by David Soren. The special was released on DVD on January 29, 2013. Ben Stiller, Chris Rock, David Schwimmer and Jada Pinkett Smith returned to voice the main characters, except for Sacha Baron Cohen, who was replaced by Danny Jacobs. It was the first DreamWorks Animation DVD release to be distributed by 20th Century Fox Home Entertainment. Special features on the DVD include the Over the Hedge short film Hammy's Boomerang Adventure and the short film First Flight."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox_Home_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Le_Fear"}, "Title": {"type": "literal", "value": "Le Fear"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jason_Croot"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Lucinda_Rhodes-Flaherty"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "62"}, "Description": {"type": "literal", "value": "Le Fear is a 2010 British comedy film, and the directorial debut of actor Jason Croot who also features in a supporting role. Shot on an ultra-low budget of less than \u00a32,000, and filmed over the course of just three days, the film stars Kyri Saphiris, Spencer Austin and Lucinda Rhodes-Flaherty, among others. The story follows the experiences of a bunch of actors as they attempt to make an ultimately inept and poor quality film. A sequel, Le Fear II: Le Sequel, is due to be released in 2016."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ali_G,_Aiii"}, "Title": {"type": "literal", "value": "Ali G, Aiii"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Bobin|http://dbpedia.org/resource/Steve_Smith_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Sacha_Baron_Cohen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "Ali G, Aiii is a straight-to-video release of clips from Da Ali G Show (original, UK series) plus unaired segments from the show, hosted by Ali G himself. The word \"Aiii\" refers to Ali G's slang/slur loosely pronounced \"Ah-eye\" and meaning \"all right\"."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/2_Entertain"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Too_Young_to_Die!_Wakakushite_Shinu"}, "Title": {"type": "literal", "value": "Too Young to Die! Wakakushite Shinu"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kankur\u014d_Kud\u014d"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aoi_Morikawa|http://dbpedia.org/resource/Kenta_Kiritani|http://dbpedia.org/resource/Machiko_Ono|http://dbpedia.org/resource/Ryunosuke_Kamiki|http://dbpedia.org/resource/Tomoya_Nagase"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Japanese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "125"}, "Description": {"type": "literal", "value": "Too Young to Die! Wakakushite Shinu (Too Young to Die! \u82e5\u304f\u3057\u3066\u6b7b\u306c) is a 2016 Japanese comedy film directed by Kankur\u014d Kud\u014d. Tomoya Nagase played the lead role for the first time in 7 years. It was expected to be released on February 6, 2016, but was postponed because of a car accident scene that reminded people of a bus crash in Karuizawa. This film premiered at the 40th Hong Kong International Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Toho"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Guardians_of_the_Galaxy_Vol._2"}, "Title": {"type": "literal", "value": "Guardians of the Galaxy Vol. 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Gunn"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bradley_Cooper|http://dbpedia.org/resource/Chris_Pratt|http://dbpedia.org/resource/Chris_Sullivan_(actor)|http://dbpedia.org/resource/Dave_Bautista|http://dbpedia.org/resource/Elizabeth_Debicki|http://dbpedia.org/resource/Glenn_Close|http://dbpedia.org/resource/Karen_Gillan|http://dbpedia.org/resource/Kurt_Russell|http://dbpedia.org/resource/Michael_Rooker|http://dbpedia.org/resource/Pom_Klementieff|http://dbpedia.org/resource/Sean_Gunn|http://dbpedia.org/resource/Vin_Diesel|http://dbpedia.org/resource/Zoe_Saldana"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Guardians of the Galaxy Vol. 2 is an upcoming American superhero film based on the Marvel Comics superhero team Guardians of the Galaxy, produced by Marvel Studios and distributed by Walt Disney Studios Motion Pictures. It is intended to be the sequel to 2014's Guardians of the Galaxy and the fifteenth film in the Marvel Cinematic Universe. The film is written and directed by James Gunn and stars an ensemble cast featuring Chris Pratt, Zoe Saldana, Dave Bautista, Vin Diesel, Bradley Cooper, Michael Rooker, Karen Gillan, Sean Gunn, Glenn Close, Pom Klementieff, Elizabeth Debicki, Chris Sullivan, and Kurt Russell. In Guardians of the Galaxy Vol. 2, the Guardians travel throughout the cosmos as they help Peter Quill learn more about his true parentage. Guardians of the Galaxy Vol. 2 was officially announced at San Diego Comic-Con International 2014 before the theatrical release of the first film, along with Gunn's involvement once again, with the title of the film revealed a year later in June 2015. The film began principal photography in February 2016 at Pinewood Atlanta Studios in Fayette County, Georgia, and concluded in June 2016. Guardians of the Galaxy Vol. 2 is scheduled to be released on May 5, 2017, in 3D and IMAX. A teaser was posted onto Marvel Entertainment's Youtube channel on October 19, 2016."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Brothers_Bloom"}, "Title": {"type": "literal", "value": "The Brothers Bloom"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rian_Johnson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adrien_Brody|http://dbpedia.org/resource/Mark_Ruffalo|http://dbpedia.org/resource/Maximilian_Schell|http://dbpedia.org/resource/Rachel_Weisz|http://dbpedia.org/resource/Rinko_Kikuchi|http://dbpedia.org/resource/Robbie_Coltrane"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_criminal_comedy_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "The Brothers Bloom is a 2008 American caper comedy film written and directed by Rian Johnson. The film stars Rachel Weisz, Adrien Brody, Mark Ruffalo, Rinko Kikuchi, Maximillian Schell, and Robbie Coltrane. Originally released in only four theaters on May 15, 2009, the film moved into wide release two weeks later on May 29."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Summit_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Open_Season_3"}, "Title": {"type": "literal", "value": "Open Season 3"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Cody_Cameron"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andr\u00e9_Sogliuzzo|http://dbpedia.org/resource/Ciara_Bravo|http://dbpedia.org/resource/Dana_Snyder|http://dbpedia.org/resource/Karley_Scott_Collins|http://dbpedia.org/resource/Maddie_Taylor|http://dbpedia.org/resource/Matthew_J._Munn"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "75"}, "Description": {"type": "literal", "value": "Open Season 3 is a 2010 American computer-animated comedy film. It is the third installment in the Open Season film series, following Open Season (2006) and Open Season 2 (2008). The film was directed by Cody Cameron and produced by Sony Pictures Animation and Reel FX Creative Studios. It theatrically premiered in Russia on October 21, 2010 and was released as a direct-to-video in the United States on January 25, 2011. Many of the previous actors reprised their roles, with the exception of Mike Epps, Joel McHale, Jane Krakowski, Billy Connolly, and Jon Favreau. They are joined by new characters that are voiced by Matthew J. Munn, Melissa Sturm, Dana Snyder, Karley Scott Collins, Ciara Bravo, Harrison Fahn, and Cody Cameron."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sony_Pictures_Home_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/In_Bruges"}, "Title": {"type": "literal", "value": "In Bruges"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Martin_McDonagh"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:British_black_comedy_films|http://dbpedia.org/resource/Category:British_comedy-drama_films|http://dbpedia.org/resource/Category:Films_featuring_a_Best_Musical_or_Comedy_Actor_Golden_Globe_winning_performance"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "In Bruges is a 2008 Anglo-American neo-noir black comedy crime drama film written and directed by Martin McDonagh. The film stars Colin Farrell and Brendan Gleeson as two Irish hitmen in hiding, with Ralph Fiennes as their boss. The film takes place and was filmed in the Belgian city of Bruges. In Bruges was the opening night film of the 2008 Sundance Film Festival and opened on limited release in the United States on 8 February 2008. The film garnered a cult status for its dark humour and dialogues. The film earned Farrell the Golden Globe Award for Best Actor \u2013 Motion Picture Musical or Comedy, while Gleeson was nominated for the same. McDonagh won the BAFTA Award for Best Original Screenplay and was nominated for the Academy Award for Best Original Screenplay."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Whatever_You_Say_(film)"}, "Title": {"type": "literal", "value": "Whatever You Say"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Guillaume_Canet"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Clotilde_Courau|http://dbpedia.org/resource/Daniel_Pr\u00e9vost|http://dbpedia.org/resource/Diane_Kruger|http://dbpedia.org/resource/Fran\u00e7ois_Berl\u00e9and"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:French_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "Whatever You Say (original title: Mon idole) is a 2002 French comedy-drama film directed by Guillaume Canet and starring Fran\u00e7ois Berl\u00e9and, Guillaume Canet, Diane Kruger, Daniel Pr\u00e9vost, and Clotilde Courau."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Touch_of_Pink"}, "Title": {"type": "literal", "value": "Touch of Pink"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ian_Iqbal_Rashid"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jimi_Mistry|http://dbpedia.org/resource/Kristen_Holden-Ried|http://dbpedia.org/resource/Kyle_MacLachlan|http://dbpedia.org/resource/Suleka_Mathew"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:British_romantic_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Touch of Pink is a 2004 Canadian-British gay-themed romantic comedy film written and directed by Ian Iqbal Rashid. The film takes its title from the Cary Grant film That Touch of Mink."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Mongrel_Media|http://dbpedia.org/resource/Redbus_Film_Distribution|http://dbpedia.org/resource/Sony_Pictures_Classics"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Prince_Avalanche"}, "Title": {"type": "literal", "value": "Prince Avalanche"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_Gordon_Green"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Prince Avalanche is a 2013 American comedy-drama film starring Paul Rudd and Emile Hirsch. It was directed by David Gordon Green, who also wrote the screenplay based on the 2011 Icelandic film Either Way (\u00c1 annan veg). The film was shot in Bastrop, Texas, after the Bastrop County Complex fire."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Magnolia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Barbershop:_The_Next_Cut"}, "Title": {"type": "literal", "value": "Barbershop: The Next Cut"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Malcolm_D._Lee"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anthony_Anderson|http://dbpedia.org/resource/Cedric_the_Entertainer|http://dbpedia.org/resource/Common_(rapper)|http://dbpedia.org/resource/Deon_Cole|http://dbpedia.org/resource/Eve_(rapper)|http://dbpedia.org/resource/J._B._Smoove|http://dbpedia.org/resource/Lamorne_Morris|http://dbpedia.org/resource/Maryum_Ali|http://dbpedia.org/resource/Nicki_Minaj|http://dbpedia.org/resource/Regina_Hall|http://dbpedia.org/resource/Sean_Patrick_Thomas|http://dbpedia.org/resource/Tyga"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "Barbershop: The Next Cut is a 2016 American comedy film directed by Malcolm D. Lee and written by Kenya Barris and Tracy Oliver. It is the sequel to 2004's Barbershop 2: Back in Business and the fourth film in the Barbershop film series and stars an ensemble cast, including returning actors Ice Cube, Cedric the Entertainer, Anthony Anderson, Eve, Sean Patrick Thomas, Deon Cole and Troy Garity, and new cast members Regina Hall, Nicki Minaj, Common, Maryum Ali, J. B. Smoove, Tyga and Lamorne Morris. The film was released on April 15, 2016."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Metro-Goldwyn-Mayer|http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Cube_Vision|http://dbpedia.org/resource/New_Line_Cinema"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tenacious_D_in_The_Pick_of_Destiny"}, "Title": {"type": "literal", "value": "Tenacious D in The Pick of Destiny"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Liam_Lynch_(musician)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jack_Black|http://dbpedia.org/resource/Kyle_Gass"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Tenacious D in The Pick of Destiny is a 2006 American rock musical black comedy film about comedy rock duo Tenacious D. Written, produced by and starring Tenacious D members Jack Black and Kyle Gass, it is directed and co-written by musician and puppeteer Liam Lynch. Despite being about an actual band, the film is a fictitious story set in the 1990s about the band's origins, and their journey to find a pick belonging to Satan that allows its users to become rock legends. The film was released on November 22, 2006 and was a box office bomb. The soundtrack, The Pick of Destiny, was also released in 2006 as the band's second studio album."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/New_Line_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sabdhan_Pancha_Aashche"}, "Title": {"type": "literal", "value": "Sabdhan Pancha Aashche"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Arin_Paul"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/June_Maliah|http://dbpedia.org/resource/Rii_Sen|http://dbpedia.org/resource/Rudranil_Ghosh|http://dbpedia.org/resource/Subrat_Dutt"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Sabdhan Pancha Aashche is an unreleased Bengali film by Arin Paul."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Cuci_(film)"}, "Title": {"type": "literal", "value": "Cuci"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Hans_Isaac"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/AC_Mizal|http://dbpedia.org/resource/Afdlin_Shauki|http://dbpedia.org/resource/Awie|http://dbpedia.org/resource/Erra_Fazira|http://dbpedia.org/resource/Hans_Isaac|http://dbpedia.org/resource/Rahim_Razali|http://dbpedia.org/resource/Umie_Aida|http://dbpedia.org/resource/Yusni_Jaafar"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Cuci (Malay for \"Wash\") is a Malaysian comedy film released on 28 January 2008."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Doll_&_Em"}, "Title": {"type": "literal", "value": "Doll & Em"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Azazel_Jacobs"}, "Author": {"type": "literal", "value": "http://dbpedia.org/resource/Azazel_Jacobs"}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dolly_Wells|http://dbpedia.org/resource/Emily_Mortimer"}, "Published": {"type": "literal", "value": "2014-02-18"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:British_comedy_television_programmes"}, "Genre": {"type": "literal", "value": "http://dbpedia.org/resource/Comedy"}, "Duration": {"type": "literal", "value": "22"}, "Description": {"type": "literal", "value": "Doll & Em is a British episodic television comedy created by and starring Emily Mortimer and Dolly Wells. A six-episode order was commissioned by Sky Living in 2013. The series was directed and co-written by Azazel Jacobs. A 124-minute theatrical cut of the series was shown at the London Film Festival, premiering 10 October 2013. Sky Living premiered Doll & Em on 18 February 2014. American cable network HBO acquired the series in September 2013, and premiered it on 19 March 2014. On 16 October 2014, Sky Living renewed the show for a second series. The second series started broadcasting on 3 June 2015 on Sky Atlantic in the UK."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Straight_A's"}, "Title": {"type": "literal", "value": "Straight A's"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Cox_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anna_Paquin|http://dbpedia.org/resource/Luke_Wilson|http://dbpedia.org/resource/Ryan_Phillippe"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Straight A's is a 2013 American romantic comedy film directed by James Cox and produced by Jamie Adamic. It stars Anna Paquin, Ryan Phillippe and Luke Wilson in the lead role. The film was released on January 13, 2013, in Brazil, on March 19, 2013, in the USA and on June 5, 2013, in the Netherlands. The film was distributed by Millennium Entertainment."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Alchemy_(company)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Free_Fall_(2014_film)"}, "Title": {"type": "literal", "value": "Free Fall"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Gy\u00f6rgy_P\u00e1lfi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Mikl\u00f3s_Benedek|http://dbpedia.org/resource/Piroska_Moln\u00e1r"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "Free Fall (Hungarian: Szabades\u00e9s) is a 2014 Hungarian comedy film directed by Gy\u00f6rgy P\u00e1lfi."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Good_Dinosaur"}, "Title": {"type": "literal", "value": "The Good Dinosaur"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Peter_Sohn"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/A._J._Buckley|http://dbpedia.org/resource/Anna_Paquin|http://dbpedia.org/resource/Frances_McDormand|http://dbpedia.org/resource/Jeffrey_Wright_(actor)|http://dbpedia.org/resource/Raymond_Ochoa|http://dbpedia.org/resource/Sam_Elliott|http://dbpedia.org/resource/Steve_Zahn"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_fantasy-comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "The Good Dinosaur is a 2015 American 3D computer-animated comedy adventure film produced by Pixar Animation Studios and released by Walt Disney Pictures. The film is directed by Peter Sohn in his directorial debut from a screenplay by Meg LeFauve from an original idea by Bob Peterson. Set on a fictional Earth in which dinosaurs never became extinct, the film follows a young Apatosaurus named Arlo, who meets an unlikely human friend while traveling through a harsh and mysterious landscape. The film features the voices of Raymond Ochoa, Jack Bright, Sam Elliott, Anna Paquin, A.J. Buckley, Steve Zahn, Jeffrey Wright, and Frances McDormand. Peterson, who came up with the idea for the story, directed the film until August 2013. In October 2014, Sohn was announced as the new director. The film, along with Inside Out, marks the first time that Pixar has released two feature films in the same year. The Good Dinosaur premiered on November 10, 2015 in Paris. It was released in the United States on November 25, 2015, and received positive reviews from critics. The film grossed $332.2 million worldwide, making it Pixar's lowest-grossing film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Pixar|http://dbpedia.org/resource/Walt_Disney_Pictures"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Yuvakudu"}, "Title": {"type": "literal", "value": "Yuvakudu"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/A._Karunakaran"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bhumika_Chawla|http://dbpedia.org/resource/Jayasudha|http://dbpedia.org/resource/Sumanth"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Yuvakudu (English: Youngman)is a Telugu film released in August 2000, which was produced by Akkineni Nagarjuna and N.Sudhakar Reddy, directed by A. Karunakaran. It stars Sumanth and Bhumika Chawla. The film was the second venture for both Karunakaran and Sumanth."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Angry_Video_Game_Nerd:_The_Movie"}, "Title": {"type": "literal", "value": "Angry Video Game Nerd: The Movie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Rolfe"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Eddie_Pepitone|http://dbpedia.org/resource/James_Rolfe|http://dbpedia.org/resource/Jeremy_Suarez|http://dbpedia.org/resource/Sarah_Glendening"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "Angry Video Game Nerd: The Movie is a 2014 American independent science fiction adventure comedy film written and directed by James Rolfe and Kevin Finn. It is based on the web series of the same name, also created by Rolfe, with himself as the title role. The story centers around the then urban legend of the mass burial of millions copies of the 1982 Atari 2600 video game E.T. the Extra-Terrestrial, proclaimed as the \"worst video game of all time\". After a longstanding refusal to address the game in his web series, the Nerd succumbs to pressure by fans to review the video game, embarking on a quest to prove that there is nothing buried there. However, the crew is pursued by federal authorities, led by the villainous General Dark Onward, who believes he is investigating Area 51 and the crash of an unidentified flying object. The film premiered July 21, 2014 at Grauman's Egyptian Theatre in Hollywood, and was released online via video-on-demand on September 2, 2014. The Blu-ray version of the film was released on December 14, 2014 through Amazon.com, with the DVD version released on May 13, 2015. The film's budget of over US$325,000 came entirely from Internet crowdfunding."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/What_Love_Is"}, "Title": {"type": "literal", "value": "What Love Is"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mars_Callahan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anne_Heche|http://dbpedia.org/resource/Cuba_Gooding,_Jr.|http://dbpedia.org/resource/Gina_Gershon|http://dbpedia.org/resource/Matthew_Lillard|http://dbpedia.org/resource/Sean_Astin"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "What Love Is is a 2007 romantic comedy film, written and directed by Mars Callahan, starring Cuba Gooding, Jr., Matthew Lillard, Sean Astin, Anne Heche, and Gina Gershon."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Big_Sky_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Barbershop_(film)"}, "Title": {"type": "literal", "value": "Barbershop"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tim_Story"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anthony_Anderson|http://dbpedia.org/resource/Cedric_the_Entertainer|http://dbpedia.org/resource/DeRay_Davis|http://dbpedia.org/resource/Eve_(rapper)|http://dbpedia.org/resource/Ice_Cube|http://dbpedia.org/resource/Keith_David|http://dbpedia.org/resource/Michael_Ealy|http://dbpedia.org/resource/Sean_Patrick_Thomas|http://dbpedia.org/resource/Troy_Garity"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Barbershop is a 2002 American comedy film directed by Tim Story, produced by State Street Pictures and released by Metro-Goldwyn-Mayer on September 13, 2002. Starring Ice Cube, Cedric the Entertainer, and Anthony Anderson, the movie revolves around social life in a barbershop on the South Side of Chicago. Barbershop also proved to be a star-making vehicle for acting newcomers Eve and Michael Ealy. It is a first film in the Barbershop film series."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Metro-Goldwyn-Mayer"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sadda_Adda"}, "Title": {"type": "literal", "value": "Sadda Adda"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Muazzam_Beg"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dr._Kadambari_Jethwani|http://dbpedia.org/resource/Karanvir_Sharma_(actor)|http://dbpedia.org/resource/Maryam_Zakaria|http://dbpedia.org/resource/Shaurya_Chauhan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "Sadda Adda is a 2012 Indian comedy film directed by Muazzam Beg. The film was Muazzam Beg's directorial debut. Sadda Adda was produced by Rajeev Agarwal, Ramesh Agarwal and Tarun Agarwal, under the banner of Rajtaru Studios Limited."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Toh_Baat_Pakki!"}, "Title": {"type": "literal", "value": "Toh Baat Pakki"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kedar_Shinde"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ayub_Khan_(actor)|http://dbpedia.org/resource/Sharman_Joshi|http://dbpedia.org/resource/Tabu_(actress)|http://dbpedia.org/resource/Vatsal_Seth|http://dbpedia.org/resource/Yuvika_Chaudhary"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "122"}, "Description": {"type": "literal", "value": "Toh Baat Pakki! (Hindi: \u0924\u094b \u092c\u093e\u0924 \u092a\u0915\u094d\u0915\u0940, English: Then it's Final! ) is a 2010 Hindi romantic comedy film directed by Kedar Shinde. The film, produced by Ramesh S Taurani under Tips Music Films, stars Tabu, Sharman Joshi, Vatsal Seth, Yuvika Chaudhary and Ayub Khan in the lead roles. The movie marked the directorial debut of a Marathi filmmaker, Kedar Shinde. The film tells the story of a middle class woman in search for a match for her sister. She happens to meet two matches and lands up in a dilemma to choose one. The woman and her sister have different choices. The rest of the film reveals the hilarious chaos created. The film was released on 19 February 2010, and received mostly negative reviews from critics."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Tips_Industries"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kadhalil_Sodhappuvadhu_Yeppadi"}, "Title": {"type": "literal", "value": "Kadhalil Sodhappuvadhu Yeppadi/|Love Failure"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Balaji_Mohan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amala_Paul|http://dbpedia.org/resource/Siddharth_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Kadhalil Sodhappuvadhu Yeppadi (How to Mess Up in Love) is a 2012 Indian romantic comedy film based on the same-titled short film directed by debutant Balaji Mohan. It was simultaneously shot in Tamil and Telugu (titled Love Failure) languages. The film stars Siddharth and Amala Paul in the lead roles. It was released worldwide on 17 February 2012 to critical acclaim and was declared a hit."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Dil_Raju"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/I_Love_You,_Man"}, "Title": {"type": "literal", "value": "I Love You, Man"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/John_Hamburg"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Samberg|http://dbpedia.org/resource/J._K._Simmons|http://dbpedia.org/resource/Jaime_Pressly|http://dbpedia.org/resource/Jane_Curtin|http://dbpedia.org/resource/Jason_Segel|http://dbpedia.org/resource/Jon_Favreau|http://dbpedia.org/resource/Paul_Rudd|http://dbpedia.org/resource/Rashida_Jones"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "I Love You, Man is a 2009 American romantic comedy film originally titled Let's Be Friends and written by Larry Levin before John Hamburg rewrote and directed the film. It stars Paul Rudd and Jason Segel. Rudd stars as a friendless man looking for a best man for his upcoming wedding. However, his new friend is straining his relationship with his bride. The film was released theatrically in North America on March 20, 2009, to mostly positive reviews and took second spot in the box office during its opening week (to Knowing). The film was released on home video on August 11, 2009."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/DreamWorks"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/2_Days_in_the_Valley"}, "Title": {"type": "literal", "value": "2 Days in the Valley"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/John_Herzfeld"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Charlize_Theron|http://dbpedia.org/resource/Danny_Aiello|http://dbpedia.org/resource/Eric_Stoltz|http://dbpedia.org/resource/Glenne_Headly|http://dbpedia.org/resource/James_Spader|http://dbpedia.org/resource/Jeff_Daniels|http://dbpedia.org/resource/Marsha_Mason|http://dbpedia.org/resource/Paul_Mazursky|http://dbpedia.org/resource/Teri_Hatcher"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_criminal_comedy_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2 Days in the Valley is a 1996 American black comedy crime film directed by John Herzfeld, that revolves around the events over 48 hours in the lives of a group of people who are drawn together by a murder"}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Metro-Goldwyn-Mayer"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Chance_(film)"}, "Title": {"type": "literal", "value": "Chance"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Amber_Benson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amber_Benson|http://dbpedia.org/resource/Andy_Hallett|http://dbpedia.org/resource/Christine_Estabrook|http://dbpedia.org/resource/James_Marsters"}, "Published": {"type": "literal", "value": "2002-09-22"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "75"}, "Description": {"type": "literal", "value": "Chance is a 2002 film, the directing debut of actress Amber Benson (best known from her role as Tara Maclay on Buffy the Vampire Slayer). Benson directed, wrote, produced and starred in this film. Many of Benson's co-stars from Buffy, including co-star James Marsters (Spike), appeared in the film. It was estimated to cost $25,000. As documented on Chance's official site, the cost of making the film ended up being more than triple the estimate. Though Benson originally thought that she would foot the bill herself, she decided to ask fans for support. Signed photos of Benson on the set of the film, as well as scripts and props, were sold to raise money. Benson's production company, Benson Entertainment, distributes the movie on DVD and video. \n*  Running time: 75 Mins \n*  Filming Dates: March\u2013April 2001"}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/We're_the_Millers"}, "Title": {"type": "literal", "value": "We're the Millers"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rawson_Marshall_Thurber"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_criminal_comedy_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "We're the Millers is a 2013 American comedy film directed by Rawson Marshall Thurber. The film's screenplay was written by Bob Fisher, Steve Faber, Sean Anders, and John Morris, based on a story by Fisher and Faber. It stars Jennifer Aniston, Jason Sudeikis, Emma Roberts, Will Poulter, Nick Offerman, Kathryn Hahn, and Ed Helms. The plot follows a small-time pot dealer (Sudeikis) who convinces his neighbors to create a fake family, in order to smuggle in drugs from Mexico onto US soil. The film was released on August 7, 2013 by New Line Cinema through Warner Bros. Pictures. It received mixed reviews from film critics, but was a box-office success, grossing $270 million worldwide during its theatrical run, against a $37 million budget. The film was nominated for four People's Choice Awards, and six MTV Movie Awards, winning two. A sequel is currently in development, with Adam Sztykiel set to write the script."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros._Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Meet_the_Blacks"}, "Title": {"type": "literal", "value": "Meet the Blacks"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Deon_Taylor"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bresha_Webb|http://dbpedia.org/resource/Gary_Owen_(comedian)|http://dbpedia.org/resource/George_Lopez|http://dbpedia.org/resource/Lil_Duval|http://dbpedia.org/resource/Mike_Epps|http://dbpedia.org/resource/Mike_Tyson|http://dbpedia.org/resource/Zulay_Henao"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Meet the Blacks is a 2016 American comedy film directed by Deon Taylor, written by Taylor and Nicole DeMasi, and is a parody of the 2013 film The Purge. It stars Mike Epps, Gary Owen, Zulay Henao, Lil Duval, Bresha Webb, George Lopez and Mike Tyson, and was released on April 1, 2016, by Freestyle Releasing."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Freestyle_Releasing"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Benki_Birugali"}, "Title": {"type": "literal", "value": "Benki Birugali"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/SK_Basheed"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Monica_(actress)|http://dbpedia.org/resource/Namitha|http://dbpedia.org/resource/Rekha_Vedavyas|http://dbpedia.org/resource/Richard_Rishi|http://dbpedia.org/resource/Rishika_Singh|http://dbpedia.org/resource/SK_Basheed|http://dbpedia.org/resource/Sandhya_(actress)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "135"}, "Description": {"type": "literal", "value": "Benki Birugali is a 2013 Indian Kannada action comedy film directed and produced by S. K. Basheed who is making his debut in Sandalwood as a lead actor. The film also has Rishi, Kadhal Sandhya, Rekha, Monica, Banu Mehra, \u2018Bullet\u2019 Prakash, Layendra and Janardhan. While KS Cheluvaraj is the cinematographer of the film, MM Srilekha has composed the music. The film was launched in January 2011. It was shot at various locations in Karnataka and Andhra Pradesh. Benki Birugali released on 26 April. The film was supposed to be originally a bilingual \u2013 Telugu and Kannada - however, the Telugu version Fire, will not be released."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Smell_of_Success"}, "Title": {"type": "literal", "value": "The Smell of Success"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Polish_brothers"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Billy_Bob_Thornton|http://dbpedia.org/resource/Ed_Helms|http://dbpedia.org/resource/Kyle_MacLachlan|http://dbpedia.org/resource/T\u00e9a_Leoni"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "The Smell of Success is an Initiate Productions film directed by Michael Polish, starring Billy Bob Thornton, T\u00e9a Leoni, Kyle MacLachlan, and Ed Helms. The film\u2019s original title was Manure."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Cinedigm"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Our_Family_Wedding"}, "Title": {"type": "literal", "value": "Our Family Wedding"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rick_Famuyiwa"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/America_Ferrera|http://dbpedia.org/resource/Carlos_Mencia|http://dbpedia.org/resource/Forest_Whitaker|http://dbpedia.org/resource/Lance_Gross|http://dbpedia.org/resource/Regina_King|http://dbpedia.org/resource/Shannyn_Sossamon"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Our Family Wedding is a romantic comedy film starring Forest Whitaker, America Ferrera, Carlos Mencia, Lance Gross, Shannyn Sossamon, Charlie Murphy and Regina King. It received its wide release on March 12, 2010."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Searchlight_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Zoom_(2016_film)"}, "Title": {"type": "literal", "value": "Zoom"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Prashant_Raj"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ganesh_(actor)|http://dbpedia.org/resource/Radhika_Pandit"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "159"}, "Description": {"type": "literal", "value": "Zoom is a 2016 Indian Kannada romantic comedy film directed by Prashant Raj starring Ganesh and Radhika Pandit in the lead roles. The supporting cast features Dev Gill, Sadhu Kokila and Kashinath. The music is scored by S. Thaman and cinematography is by Santhosh Rai Pathaje. The film released on 1 July 2016 across Karnataka and other countries. Upon release, the film faced criticism for its adulterated comedy and also for its plot copying from decades old Hollywood classic Lover Come Back (1961)."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Best_Plan_Is_No_Plan"}, "Title": {"type": "literal", "value": "The Best Plan Is No Plan"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Patrick_Kong"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Hong_Kong_comedy-drama_films|http://dbpedia.org/resource/Category:Hong_Kong_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "The Best Plan Is No Plan is a 2013 Hong Kong romantic comedy drama film directed by Patrick Kong. It was released on October 17."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Going_Down_in_LA-LA_Land"}, "Title": {"type": "literal", "value": "Going Down in LA-LA Land"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Casper_Andreas"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Allison_Lane|http://dbpedia.org/resource/Matthew_Ludwinski|http://dbpedia.org/resource/Michael_Medico"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Going Down in LA-LA Land is a 2011 comedy-drama film written and directed by Swedish filmmaker Casper Andreas and based on the novel by Andy Zeffer. It was released in New York City on April 20, 2012 and in Los Angeles on May 18, 2012."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Samba_(2014_film)"}, "Title": {"type": "literal", "value": "Samba"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Olivier_Nakache_&_\u00c9ric_Toledano"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Charlotte_Gainsbourg|http://dbpedia.org/resource/Iz\u00efa|http://dbpedia.org/resource/Omar_Sy|http://dbpedia.org/resource/Tahar_Rahim"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "119"}, "Description": {"type": "literal", "value": "Samba is a 2014 French comedy-drama film co-written and directed by Olivier Nakache and \u00c9ric Toledano. It is the second collaboration between Sy and directors Nakache and Toledano after 2012's The Intouchables. The film premiered at the 2014 Toronto International Film Festival on 7 September 2014. It had a theatrical release on 15 October 2014 in France. The U.S. theatrical release is set for July 24, 2015."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Gaumont_Film_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ljubav_i_drugi_zlo\u010dini"}, "Title": {"type": "literal", "value": "Ljubav i drugi zlo\u010dini|Love and Other Crimes"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Stefan_Arsenijevi\u0107"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anica_Dobra|http://dbpedia.org/resource/Hanna_Schwamborn|http://dbpedia.org/resource/Vuk_Kosti\u0107"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:Serbian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "Ljubav i drugi zlo\u010dini, or Love and Other Crimes in English, is a 2008 Serbian romantic comedy directed by Stefan Arsenijevi\u0107, and written by Arsenijevi\u0107 and Sr\u0111an Koljevi\u0107, and stars Anica Dobra and Vuk Kosti\u0107. The film won Arsenijevi\u0107 an award for Best Director at the 2008 Sofia International Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Human_Traffic"}, "Title": {"type": "literal", "value": "Human Traffic"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Justin_Kerrigan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Danny_Dyer|http://dbpedia.org/resource/John_Simm|http://dbpedia.org/resource/Lorraine_Pilkington|http://dbpedia.org/resource/Nicola_Reynolds|http://dbpedia.org/resource/Shaun_Parkes"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films|http://dbpedia.org/resource/Category:Irish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99.5"}, "Description": {"type": "literal", "value": "Human Traffic is a 1999 British-Irish independent film written and directed by Welsh filmmaker Justin Kerrigan. The film explores themes of coming of age, drug and club cultures, as well as relationships. It includes scenes provoking social commentary and the use of archive footage to provide political commentary. The plot of the film revolves around five twenty-something friends and their wider work and social circle, the latter devotees of the club scene, taking place over the course of a drug-fuelled weekend in Cardiff, Wales. A central feature is the avoidance of moralising about the impact of 1990s dance lifestyle; instead the film concentrates on recreating the \"vibe, the venues and the mood\" of the dance movement from the 1988-89 \"second summer of love\" to the film's release in 1999. In the first 25 minutes of the film Lee, the 17-year-old brother of central character Nina, enthuses \"I am about to be part of the chemical generation\" and lists, using the slang of the period, a series of drugs that he might experiment with later that night. The film is narrated by one of the stars, John Simm, featuring numerous cameo appearances. It is also the film debut of Danny Dyer as well as referencing another drug culture film of the era, Trainspotting. With an original budget of \u00a3340,000, the production eventually came in for \u00a32,200,000; the film was a financial success, taking in \u00a32,500,000 at the UK box office alone, also enjoying good VHS and DVD sales. Human Traffic was critically well-received with largely positive reviews, and has achieved cult status, especially amongst subcultures such as the rave culture."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Weekend_Getaway"}, "Title": {"type": "literal", "value": "Weekend Getaway"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Desmond_Elliot"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alexx_Ekubo|http://dbpedia.org/resource/Beverly_Naya|http://dbpedia.org/resource/Bryan_Okwara|http://dbpedia.org/resource/Genevieve_Nnaji|http://dbpedia.org/resource/Ini_Edo|http://dbpedia.org/resource/Monalisa_Chinda|http://dbpedia.org/resource/Ramsey_Nouah|http://dbpedia.org/resource/Uru_Eke|http://dbpedia.org/resource/Uti_Nwachukwu"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Weekend Getaway is a 2012 Nigerian romantic drama film directed by Desmond Elliot, starring Genevieve Nnaji, Uti Nwachukwu, Ini Edo and Ramsey Nouah. It received 11 nominations and eventually won 4 awards at the 2013 Nollywood & African Film Critics Awards (NAFCA). It also received 2 nominations at the 2013 Best of Nollywood Awards with Alex Ekubo eventually winning the award for Best Actor in a supporting role. The film was a box-office success in Nigerian cinemas generally because of its star-studded cast."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Digger_(1993_film)"}, "Title": {"type": "literal", "value": "Digger"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rob_Turner"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Hann-Byrd|http://dbpedia.org/resource/Barbara_Williams_(actress)|http://dbpedia.org/resource/Joshua_Jackson|http://dbpedia.org/resource/Leslie_Nielsen|http://dbpedia.org/resource/Olympia_Dukakis|http://dbpedia.org/resource/Timothy_Bottoms"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Digger is a 1993 Canadian comedy-drama film starring Leslie Nielsen, Adam Hann-Byrd, Joshua Jackson, Timothy Bottoms, Barbara Williams, Olympia Dukakis and Leslie Nielsen. The film premiered on September 30, 1993 at the Vancouver International Film Festival. The Film was released in Canada on April 22, 1994."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Skouras_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/One_Man_Up"}, "Title": {"type": "literal", "value": "One Man Up"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Paolo_Sorrentino"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Toni_Servillo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "One Man Up (Italian: L'uomo in pi\u00f9) is a 2001 Italian comedy-drama film. It entered the \"Cinema del presente\" section at the 58th Venice International Film Festival. It marked the directorial debut of Paolo Sorrentino, who was awarded Nastro d'Argento for Best New Director. The film also won the Ciak d'oro for the script and the Grolla d'oro to actor Toni Servillo."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Baywatch_(film)"}, "Title": {"type": "literal", "value": "Baywatch"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Seth_Gordon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alexandra_Daddario|http://dbpedia.org/resource/David_Hasselhoff|http://dbpedia.org/resource/Dwayne_Johnson|http://dbpedia.org/resource/Ilfenesh_Hadera|http://dbpedia.org/resource/Jon_Bass|http://dbpedia.org/resource/Kelly_Rohrbach|http://dbpedia.org/resource/Pamela_Anderson|http://dbpedia.org/resource/Priyanka_Chopra|http://dbpedia.org/resource/Zac_Efron"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Baywatch is an upcoming American action comedy film directed by Seth Gordon, based on the 1989 series of the same name. The film stars Dwayne Johnson, Zac Efron, Alexandra Daddario, Kelly Rohrbach, Jon Bass, Yahya Abdul-Mateen II, David Hasselhoff,Priyanka Chopra and Pamela Anderson, Ilfenesh Hadera. Principal photography began on February 22, 2016 in Miami, Florida and Savannah, Georgia. The film will be released by Paramount Pictures on May 19, 2017. It is the second film to feature Johnson and Daddario, the first being San Andreas."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Only_One_(film)"}, "Title": {"type": "literal", "value": "The Only One"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Geoffrey_Enthoven"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Belgian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "The Only One (French: Vidange perdue) is a 2006 Belgian comedy-drama film. The film was directed by Geoffrey Enthoven and written by Jaak Boon and Enthoven. It was named best Belgian film of 2006 by the Belgian Film Critics Association winning the Andr\u00e9 Cavens Award, and received two awards at the International Filmfestival Mannheim-Heidelberg."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Soccer_Dog:_The_Movie"}, "Title": {"type": "literal", "value": "Soccer Dog: The Movie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tony_Giglio"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Burton_Gilliam|http://dbpedia.org/resource/James_Marshall_(actor)|http://dbpedia.org/resource/Jeremy_Foley_(actor)|http://dbpedia.org/resource/Olivia_d'Abo|http://dbpedia.org/resource/Sam_McMurray"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy-drama_films|http://dbpedia.org/resource/Category:Sports_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Soccer Dog: The Movie is a 1999 film that follows a dog who has an uncanny ability to play soccer."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_TriStar_Home_Video"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Death_of_a_Dynasty"}, "Title": {"type": "literal", "value": "Death of a Dynasty"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Damon_Dash"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Capone_(rapper)|http://dbpedia.org/resource/Charlie_Murphy|http://dbpedia.org/resource/Damon_Dash|http://dbpedia.org/resource/Devon_Aoki|http://dbpedia.org/resource/Ebon_Moss-Bachrach|http://dbpedia.org/resource/Kevin_Hart_(actor)|http://dbpedia.org/resource/Rashida_Jones"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Death of a Dynasty is a comedy film first screened in 2003. It is a satire of the hip hop music industry centered on Roc-A-Fella Records, and stars Ebon Moss-Bachrach, Capone and Damon Dash. It also features cameo appearances by musicians, actors and celebrities such as Jay-Z, Mariah Carey, Chlo\u00eb Sevigny, Carson Daly, and Aaliyah."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/TLA_Releasing"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Very_Ordinary_Couple"}, "Title": {"type": "literal", "value": "Very Ordinary Couple"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Roh_Deok"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kim_Min-hee_(actress,_born_1982)|http://dbpedia.org/resource/Lee_Min-ki"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "Very Ordinary Couple (Hangul: \uc5f0\uc560\uc758 \uc628\ub3c4; RR: Yeon-ae-ui Ondo; lit. \"Temperature of Love\" or \"Degree of Love\") is a 2013 South Korean romantic comedy film written and directed by Roh Deok (alternatively spelled Noh Deok), starring Kim Min-hee and Lee Min-ki as a recently separated couple who, being employees at the same bank, must deal with the prospect of continually seeing each other on a daily basis. This inevitably leads to tension and flareups, but over time their feelings towards each other begin to change. This is Roh Deok's feature directorial debut. She based the screenplay on her own love life and those of her circle of friends."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lotte_(conglomerate)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Five-Year_Engagement"}, "Title": {"type": "literal", "value": "The Five-Year Engagement"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nicholas_Stoller"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alison_Brie|http://dbpedia.org/resource/Chris_Pratt|http://dbpedia.org/resource/Emily_Blunt|http://dbpedia.org/resource/Rhys_Ifans"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "124"}, "Description": {"type": "literal", "value": "The Five-Year Engagement is a 2012 American comedy film co-written, directed, and produced by Nicholas Stoller. Produced with Judd Apatow and Rodney Rothman, it is co-written by Jason Segel, who also stars in the lead roles with Emily Blunt as a couple whose relationship becomes strained when their engagement is continually extended. The film was released in North America on April 27, 2012 and in the United Kingdom on June 22, 2012."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Minghags:_The_Movie"}, "Title": {"type": "literal", "value": "Minghags"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bam_Margera"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bam_Margera|http://dbpedia.org/resource/Brandon_Dicamillo|http://dbpedia.org/resource/Brandon_Novak|http://dbpedia.org/resource/Don_Vito|http://dbpedia.org/resource/Ryan_Dunn"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Minghags, previously known as Kiss a Good Man's Ass, is a 2008 film by director/skater Bam Margera."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Chalet_Girl"}, "Title": {"type": "literal", "value": "Chalet Girl"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Phil_Traill"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Austrian_comedy_films|http://dbpedia.org/resource/Category:British_romantic_comedy_films|http://dbpedia.org/resource/Category:German_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "Chalet Girl is a 2011 British-German-Austrian romantic comedy and sports film directed by Phil Traill. The film stars Felicity Jones, Ed Westwick, Tamsin Egerton, Ken Duken, Sophia Bush, Bill Bailey, Brooke Shields and Bill Nighy. The film was produced by Pippa Cross, Harriet Rees, Dietmar Guentsche and Wolfgang Behr, and written by Tom Williams. It was filmed on location in Sankt Anton am Arlberg, Austria and in Garmisch-Partenkirchen, Germany. Critical reaction to the film was mixed, but overall praised Felicity Jones in the leading role. The film earned $4,811,510 on a \u00a38,000,000 budget."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Mother_of_Invention"}, "Title": {"type": "literal", "value": "The Mother of Invention"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Bowser|http://dbpedia.org/resource/Joseph_M._Petrick"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Bowser|http://dbpedia.org/resource/Craig_Anton|http://dbpedia.org/resource/Dee_Wallace|http://dbpedia.org/resource/Jimmi_Simpson|http://dbpedia.org/resource/Kevin_Corrigan|http://dbpedia.org/resource/Mark_Boone_Junior|http://dbpedia.org/resource/Ruby_Wendell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "The Mother of Invention is a 2009 American \"mockumentary\"-style comedy film directed by Joseph M. Petrick and Andrew Bowser, with screenplay by Petrick. The film stars Jimmi Simpson, Kevin Corrigan, Mark Boone Junior, Dee Wallace, Craig Anton, Ruby Wendell, F. Jason Whitaker and Chris Hardwick. It features cameos by Dave Allen, Chris Franjola, Keir O'Donnell, Martha Madison and Ron Lynch. The film premiered at the 2009 Sci-Fi-London film festival internationally and the Hollywood Film Festival domestically. The original score was composed and performed by Jim Hanft and the credits feature an original song by the band Copeland. The film was released on DVD and digitally on June 14, 2011 and can be purchased at the iTunes Store and Amazon.com. It became available on Netflix for instant streaming on August 2, 2011."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Old_School_(film)"}, "Title": {"type": "literal", "value": "Old School"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Todd_Phillips"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ellen_Pompeo|http://dbpedia.org/resource/Jeremy_Piven|http://dbpedia.org/resource/Luke_Wilson|http://dbpedia.org/resource/Vince_Vaughn|http://dbpedia.org/resource/Will_Ferrell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91|92"}, "Description": {"type": "literal", "value": "Old School is a 2003 American comedy film released by DreamWorks Pictures and The Montecito Picture Company and directed by Todd Phillips. The story was written by Court Crandall, and the film was written by Phillips and Scot Armstrong. The film stars Luke Wilson, Vince Vaughn, and Will Ferrell as three depressed thirty-somethings who seek to re-live their college days by starting a fraternity, and the tribulations they encounter in doing so."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/DreamWorks_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bikini_Bloodbath"}, "Title": {"type": "literal", "value": "Bikini Bloodbath"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Thomas_Edward_Seymour"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Debbie_Rochon|http://dbpedia.org/resource/Robert_Cosgrove|http://dbpedia.org/resource/Russ_Russo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "72"}, "Description": {"type": "literal", "value": "Bikini Bloodbath is a 2006 comedy film that parodies the horror-slasher movies of the 1980s. Written and directed by Thomas Edward Seymour and Jonathan Gorman, the film focuses on a high school girls\u2019 volleyball team that plans to host an end-of-semester party. Two members of the boys\u2019 football team crash the party, but problems begin when the maniacal Chef Death, a serial killer portrayed by Rob Coz, who wields meat cleavers and culinary one-liners, interrupts the proceedings by slaying the partygoers. Shot on locations across Connecticut in 2005, Bikini Bloodbath was planned as the first in an ongoing horror/comedy series. The film was released on DVD in December 2007, and its sequels \u2013 Bikini Bloodbath Car Wash (named the \"#1 Ridiculous(ly Awesome) Horror Movie Titles of all time in 2010 by Mark H. Harris, About.com Guide). and Bikini Bloodbath Christmas are also out on DVD. Co-director Seymour cited the Peter Jackson Lord of the Rings trilogy for the inspiration of creating back-to-back films. Additional films in the Bikini Bloodbath series are being planned. Debbie Rochon stars in all three films as a lesbian volleyball coach. Other actors in the series include Lloyd Kaufman, Rachael Robbins, Monique GATA Dupree and Sheri Lynn."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Five_Hours_from_Paris"}, "Title": {"type": "literal", "value": "Five Hours from Paris"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Leonid_Prudovsky"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Israeli_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Five Hours from Paris (Hebrew: Hamesh Shaot me'Pariz\u200e\u200e) is a 2009 Israeli comedy film by Leonid Prudovsky. It premiered as an official selection at the Toronto International Film Festival on 12 September 2009. A French cinema chain caused controversy when they cancelled its release following the Gaza flotilla raid and instead screened a French documentary about Rachel Corrie, an American protestor killed by an Israeli bulldozer in 2004."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Family_Law_(film)"}, "Title": {"type": "literal", "value": "Family Law"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Daniel_Burman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adriana_Aizemberg|http://dbpedia.org/resource/Arturo_Goetz|http://dbpedia.org/resource/Daniel_Hendler|http://dbpedia.org/resource/Julieta_D\u00edaz"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Family Law (Spanish: Derecho de familia) is a 2006 Argentine, French, Italian, and Spanish, comedy-drama film, written and directed by Daniel Burman. The picture was produced by Diego Dubcovsky, Jos\u00e9 Mar\u00eda Morales, and Marc Sillam, and co-produced by Amedeo Pagani.Family Law was Argentina official submission for the 2004 Academy Award for Best Foreign Language Film"}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/BD_Cine|http://dbpedia.org/resource/IFC_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dysfunctional_Friends"}, "Title": {"type": "literal", "value": "Dysfunctional Friends"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Corey_Grant"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Christian_Keyes|http://dbpedia.org/resource/Datari_Turner|http://dbpedia.org/resource/Hosea_Chanchez|http://dbpedia.org/resource/Jason_Weaver|http://dbpedia.org/resource/Meagan_Good|http://dbpedia.org/resource/Meghan_Markle|http://dbpedia.org/resource/Persia_White|http://dbpedia.org/resource/Reagan_Gomez-Preston|http://dbpedia.org/resource/Stacey_Dash|http://dbpedia.org/resource/Stacy_Keibler|http://dbpedia.org/resource/Tatyana_Ali|http://dbpedia.org/resource/Terrell_Owens|http://dbpedia.org/resource/Wesley_Jonathan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "Dysfunctional Friends  is a 2012 American drama comedy film starring Stacey Dash, Reagan Gomez-Preston, Wesley Jonathan, Datari Turner, Tatyana Ali, Meagan Good, Jason Weaver, Persia White, Terrell Owens, Stacy Keibler, Hosea Chanchez, Meghan Markle and Christian Keyes. The film was released in theaters February 3, 2012."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sawako_Decides"}, "Title": {"type": "literal", "value": "Sawako Decides"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Yuya_Ishii_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hikari_Mitsushima|http://dbpedia.org/resource/Masashi_End\u014d"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:Japanese_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "Sawako Decides (\u5ddd\u306e\u5e95\u304b\u3089\u3053\u3093\u306b\u3061\u306f Kawa no Soko kara Konnichiwa, \"Hello from the bottom of the river\") is a 2009 Japanese comedy-drama film directed by Yuya Ishii. The film stars Hikari Mitsushima as Sawako. Sawako Decides premiered at Tokyo at the PIA Film Festival in 2009. At the Fantasia Film Festival, the film won the award for Best Feature Film and Best Actress for Hikari Mitsushima."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_World's_End_(film)"}, "Title": {"type": "literal", "value": "The World's End"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Edgar_Wright"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films|http://dbpedia.org/resource/Category:Comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "The World's End is a 2013 British comic science fiction film directed by Edgar Wright, written by Wright and Simon Pegg, and starring Pegg, Nick Frost, Paddy Considine, Martin Freeman, Rosamund Pike and Eddie Marsan. The film follows a group of friends who discover an alien invasion during an epic pub crawl in their home town. Wright has described the film as \"social science fiction\" in the tradition of John Wyndham and Samuel Youd (John Christopher). It is the third and final film in the Three Flavours Cornetto trilogy, following Shaun of the Dead (2004) and Hot Fuzz (2007). The film was produced by Relativity Media, StudioCanal, Big Talk Productions, and Working Title Films."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Paranthe_Wali_Gali"}, "Title": {"type": "literal", "value": "Paranthe Wali Gali"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sachin_Gupta"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anuj_Saxena"}, "Published": {"type": "literal", "value": "2014-01-17"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "(For the food street, see Gali Paranthe Wali.) Paranthe Wali Gali is a 2014 Indian romance comedy film directed and produced by the award winning playwright and theatre director Sachin Gupta under Chilsag-Civitech Motion Pictures. It is produced by Sachin Gupta and Sushma Gupta and co-produced by Subodh Goel and Alka Goel. The film stars Anuj Saxena and Neha Pawar in the lead roles."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Reliance_BIG_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Full_Strike"}, "Title": {"type": "literal", "value": "Full Strike"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Derek_Kwok"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Edmond_Leung|http://dbpedia.org/resource/Ekin_Cheng|http://dbpedia.org/resource/Josie_Ho|http://dbpedia.org/resource/Ronald_Cheng|http://dbpedia.org/resource/Siu_Yam-yam|http://dbpedia.org/resource/Tse_Kwan-ho|http://dbpedia.org/resource/Wilfred_Lau"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Hong_Kong_action_comedy_films|http://dbpedia.org/resource/Category:Hong_Kong_comedy-drama_films|http://dbpedia.org/resource/Category:Sports_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "Full Strike (Chinese: \u5168\u529b\u6263\u6bba) is a 2015 Hong Kong sports-comedy-drama film directed by Derek Kwok and Henri Wong. The film was released on 7 May 2015."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Teenage_Textbook_Movie"}, "Title": {"type": "literal", "value": "The Teenage Textbook Movie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Phillip_Lim"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Caleb_Goh|http://dbpedia.org/resource/Chong_Chee_Kin|http://dbpedia.org/resource/Lim_Hwee_Sze|http://dbpedia.org/resource/Melody_Chen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "The Teenage Textbook Movie is a film adaptation of Adrian Tan's bestselling 1988 novel The Teenage Textbook. It is a lighthearted look at the lives of four students in Singapore as they start junior college. The film was well-received critically and topped the Singapore box office for four weeks, beating Hollywood offerings. Its stars, who were unknowns, eventually became household names on television. Its soundtrack was all-Singaporean, a first for English-language Singapore films."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Cathay"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/FUBAR_(film)"}, "Title": {"type": "literal", "value": "FUBAR"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Dowse"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Paul_Spence"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "76"}, "Description": {"type": "literal", "value": "FUBAR is a 2002 mockumentary film, directed by Michael Dowse, based on the lives of two lifelong friends and head-bangers living out their lives, constantly drinking beer. FUBAR debuted at the Sundance Film Festival in the 'Park City at Midnight' category, which previously launched such films as The Blair Witch Project. Since its release, it has gained critical acclaim and a cult status in North America, but especially within Western Canada. It was both filmed and set in Alberta, particularly in and around Calgary. It was filmed entirely with digital cinematography, on a shoestring budget that required many involved with the project to max out their credit cards in order to complete the movie (according to an interview on their official website). Many of the people featured in the movie (including the fist-fighters) were bystanders who thought that the filmmakers were shooting a documentary on the common man. FUBAR features characters partly based on a comedy routine performed by David Lawrence and Paul Spence that they developed based on the head-banger subculture. David Lawrence, Paul Spence, and S.C. Lim also appear in Michael Dowse's movie, It's All Gone Pete Tong. (Dr. S.C. Lim plays himself in FUBAR as Dean's doctor. Lim actually is Michael Dowse's doctor.) The characters of Terry and Dean were later seen again, featured in the Michael Dowse-directed music video \"The Slow Descent Into Alcoholism\" by The New Pornographers."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Odeon_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Citizen_Mavzik"}, "Title": {"type": "literal", "value": "Citizen Mavzik"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alan_Melikdjanian"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Citizen Mavzik is a 2006 direct-to-video film from Vilalan Productions, and directed by independent filmmaker Alan Melikdjanian. The film was shot in South Florida"}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Un_Natale_Stupefacente"}, "Title": {"type": "literal", "value": "Un Natale Stupefacente"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Volfango_De_Biasi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Lillo_&_Greg"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Italian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Un Natale Stupefacente is a 2014 Italian comedy film written and directed by Volfango De Biasi. It grossed $7,015,989 at the Italian box office."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Interview"}, "Title": {"type": "literal", "value": "The Interview"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Evan_Goldberg|http://dbpedia.org/resource/Seth_Rogen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/James_Franco"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:Political_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "The Interview is a 2014 American political satire comedy film directed by Seth Rogen and Evan Goldberg. It is their second directorial work, following This Is the End (2013). The screenplay is by Dan Sterling, based upon a story he co-authored with Rogen and Goldberg. The film stars Rogen and James Franco as journalists who set up an interview with North Korean leader Kim Jong-un (Randall Park), and are recruited by the CIA to assassinate him. The film is also heavily inspired by a Vice documentary which was shot in 2012. Rogen and Goldberg developed the idea for The Interview in the late 2000s, with Kim Jong-il as the original assassination target. In 2011, after Jong-il's death, Jong-un replaced him as the North Korean leader. Rogen and Goldberg re-developed the script with the focus on Jong-un's character. The announcement for the film was made in March 2013, along with the beginning of pre-production. Principal photography took place in Vancouver from October to December 2013. In June 2014, the North Korean government threatened action against the United States if Columbia Pictures released the film. Columbia delayed the release from October to December, and reportedly re-edited the film to make it more acceptable to North Korea. In November, the computer systems of parent company Sony Pictures Entertainment were hacked by the \"Guardians of Peace\", a group the FBI claims has ties to North Korea. The group also threatened terrorist attacks against cinemas that showed the film. Major cinema chains opted not to release the film, leading Sony to release it for online rental and purchase on December 24, 2014, followed by a limited release at select cinemas the next day. The Interview grossed $40 million in digital rentals, making it Sony's most successful digital release, and earned an additional $11.2 million worldwide at the box office on a $44 million budget. It received mixed reviews for its humor and subject matter, although critics praised the performances of Rogen, Franco, Park and Diana Bang."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Point_Grey_Pictures"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Waiting..._(film)"}, "Title": {"type": "literal", "value": "Waiting..."}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rob_McKittrick"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alanna_Ubach|http://dbpedia.org/resource/Anna_Faris|http://dbpedia.org/resource/Chi_McBride|http://dbpedia.org/resource/David_Koechner|http://dbpedia.org/resource/John_Francis_Daley|http://dbpedia.org/resource/Justin_Long|http://dbpedia.org/resource/Kaitlin_Doubleday|http://dbpedia.org/resource/Luis_Guzm\u00e1n|http://dbpedia.org/resource/Ryan_Reynolds"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Waiting... is a 2005 American workplace comedy film starring Ryan Reynolds, Anna Faris, and Justin Long. It was written and directed by Rob McKittrick. McKittrick wrote the screenplay while working as a waiter. The film is the first effort by McKittrick as a writer-director. The script was initially sold in a film deal to Artisan Entertainment, but was released by Lions Gate Entertainment (which purchased Artisan in 2003). Producers Chris Moore and Jeff Balis of Live Planet's Project Greenlight fame also took notice of the project and assisted. The film made over US$6,000,000, more than twice the budget of the film, in its opening weekend."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lionsgate_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Double_(2013_film)"}, "Title": {"type": "literal", "value": "The Double"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Richard_Ayoade"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jesse_Eisenberg|http://dbpedia.org/resource/Mia_Wasikowska"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_black_comedy_films|http://dbpedia.org/resource/Category:Comedy_thriller_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "The Double is a 2013 British black comedy thriller film written and directed by Richard Ayoade and starring Jesse Eisenberg and Mia Wasikowska. The film is based on the novella The Double by Fyodor Dostoyevsky. It is about a man driven to breakdown when he is usurped by a doppelg\u00e4nger. The film was produced by Alcove Entertainment, with Michael Caine, Graeme Cox (Attercop), Tessa Ross (Film4) and Nigel Williams as executive producers."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/StudioCanal"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Alcove_Entertainment|http://dbpedia.org/resource/British_Film_Institute|http://dbpedia.org/resource/Film4_Productions"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Vive_la_France"}, "Title": {"type": "literal", "value": "Vive la France"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Micha\u00ebl_Youn"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jos\u00e9_Garcia_(actor)|http://dbpedia.org/resource/Micha\u00ebl_Youn"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Vive la France is a 2013 French comedy film directed by Micha\u00ebl Youn."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/God_of_Love_(film)"}, "Title": {"type": "literal", "value": "God of Love"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Luke_Matheny"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Elizabeth_Olin|http://dbpedia.org/resource/Luke_Matheny"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "18"}, "Description": {"type": "literal", "value": "God of Love is a 2010 American live action short film. The film's run time is approximately 18 minutes. It was written and directed by Luke Matheny, and produced by Gigi Dement, Ryan Silbert, and Stefanie Walmsley. The film was shot in black and white on the Red One camera by director of photography Bobby Webster. In the film, a lounge singer and championship dart player named Raymond Goodfellow is desperately in love with a fellow band-mate, but she only has love for his best friend. The crooner prays daily to God for a way for his beloved to fall in love with him. One evening, his prayers are answered when he's given a box of magical darts with Cupid-like powers. Raymond decides to use the darts to make his own love connection. The film is included as a special feature in the Blu-ray release of 127 Hours."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Who_Killed_Johnny"}, "Title": {"type": "literal", "value": "Who Killed Johnny"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Yangzom_Brauen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Carlos_Leal|http://dbpedia.org/resource/Max_Loong|http://dbpedia.org/resource/Melanie_Winiger"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_criminal_comedy_films|http://dbpedia.org/resource/Category:Screwball_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "Who Killed Johnny is a Swiss\u2013US screwball-comedy film by Yangzom Brauen, filmed and produced in Los Angeles in 2013."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Free_Fire"}, "Title": {"type": "literal", "value": "Free Fire"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Wheatley"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Armie_Hammer|http://dbpedia.org/resource/Brie_Larson|http://dbpedia.org/resource/Cillian_Murphy|http://dbpedia.org/resource/Jack_Reynor|http://dbpedia.org/resource/Sharlto_Copley"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Free Fire is a 2016 British action comedy thriller film directed by Ben Wheatley, from a screenplay by Wheatley and Amy Jump. It stars Brie Larson, Sharlto Copley, Armie Hammer, Cillian Murphy and Jack Reynor. The film had its world premiere at the Toronto International Film Festival on September 8, 2016. The film will serve as the closer of the 2016 BFI London Film Festival on 16 October 2016. The film is scheduled to be released in the United Kingdom on 31 March 2017 by StudioCanal UK."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/StudioCanal_UK"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Paddington_2"}, "Title": {"type": "literal", "value": "Paddington 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Paul_King_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Whishaw|http://dbpedia.org/resource/Brendan_Gleeson|http://dbpedia.org/resource/Hugh_Bonneville|http://dbpedia.org/resource/Hugh_Grant|http://dbpedia.org/resource/Imelda_Staunton|http://dbpedia.org/resource/Jim_Broadbent|http://dbpedia.org/resource/Julie_Walters|http://dbpedia.org/resource/Madeleine_Harris|http://dbpedia.org/resource/Peter_Capaldi|http://dbpedia.org/resource/Sally_Hawkins|http://dbpedia.org/resource/Samuel_Joslin"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Paddington 2 is an upcoming British family-comedy film directed by Paul King, co-written by him and Simon Farnaby, and produced by David Heyman. A sequel to Paddington (2014), the film stars Hugh Grant, Brendan Gleeson, Hugh Bonneville, Sally Hawkins, Julie Walters, Jim Broadbent, Peter Capaldi, Madeleine Harris, Samuel Joslin, and the voices of Ben Whishaw and Imelda Staunton. Production began in October 2016 for a 10 November 2017 release."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Unmade_Beds"}, "Title": {"type": "literal", "value": "Unmade beds"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alexis_Dos_Santos"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/D\u00e9borah_Fran\u00e7ois|http://dbpedia.org/resource/Iddo_Goldberg|http://dbpedia.org/resource/Katia_Winter|http://dbpedia.org/resource/Michiel_Huisman|http://dbpedia.org/resource/Richard_Lintern"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:British_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Unmade Beds is a 2009 British comedy-drama film directed by Argentine film director Alexis Dos Santos. The film was featured at the 2009 Sundance Film Festival and at Febiofest 2010."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Soda_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Trailer_Town"}, "Title": {"type": "literal", "value": "Trailer Town"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Giuseppe_Andrews"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bill_Nowlin|http://dbpedia.org/resource/Bill_Tyree|http://dbpedia.org/resource/Stan_Patrick|http://dbpedia.org/resource/Walt_Dongo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "Trailer Town is a 2003 low-budget film shot on digital video, written and directed by Giuseppe Andrews and distributed by Troma Entertainment. The film is set in the trailer park where Andrews lives and stars many of the people who were his neighbors at the time. The film has drawn comparisons to the cult films of John Waters, Larry Clark, and Harmony Korine for its semi-realistic yet off-the-wall portrayal of lower-class individuals."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Troma_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lucky_Di_Unlucky_Story"}, "Title": {"type": "literal", "value": "Lucky Di Unluky Story"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Smeep_Kang"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Binnu_Dhillon|http://dbpedia.org/resource/Gippy_Grewal|http://dbpedia.org/resource/Gurpreet_Ghuggi|http://dbpedia.org/resource/Jaswinder_Bhalla|http://dbpedia.org/resource/Karamjit_Anmol|http://dbpedia.org/resource/Sameksha|http://dbpedia.org/resource/Surveen_Chawla"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Lucky Di Unlucky Story is a 2013 Punjabi comedy film directed by Smeep Kang, and featuring Gippy Grewal, Jaswinder Bhalla, Gurpreet Ghuggi and Binnu Dhillon in lead roles; the group earlier came together for 2012 Punjabi comedy Carry On Jatta. The story is based on the lives of ladiesman Lucky; and his three married friends and how they enchance minor trouble. The film released on 26 April 2013 and became an instant blockbuster at the Indian box office apparently. Smeep Kang copied the script of this film from Tamil blockbuster Panchathanthiram starring Kamal Haasan & Simran. Panchathanthiram's story was written by Kamal Haasan & Crazy Mohan."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Maid_for_Each_Other_(1992_film)"}, "Title": {"type": "literal", "value": "Maid for Each Other"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Paul_Schneider_(director)"}, "Author": {"type": "literal", "value": "http://dbpedia.org/resource/Dinah_Manoff|http://dbpedia.org/resource/Don_Enright|http://dbpedia.org/resource/Les_Alexander|http://dbpedia.org/resource/Rob_Gilmer"}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dinah_Manoff|http://dbpedia.org/resource/Garrett_Morris|http://dbpedia.org/resource/Joyce_Van_Patten|http://dbpedia.org/resource/Nell_Carter|http://dbpedia.org/resource/Robert_Costanzo"}, "Published": {"type": "literal", "value": "1992-01-13"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Maid for Each Other is a 1992 television film starring Nell Carter and Dinah Manoff. It was written by Manoff, Robb Gilmer, Les Alexander, Don Enright and Andrew Smith, produced by Enright and Alexander, and directed by Paul Schneider."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Metalheads_(film)"}, "Title": {"type": "literal", "value": "Metalheads"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Gregory_Cahill"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Mercedes_Arn-Horn"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Metalheads is a 90\u2019s based comedy film written by Gregory Cahill. It stars Mercedes Arn-Horn from Courage My Love as Amanda Rozek. The film is thought to be like an Airheads meets Superbad cross."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Amazon_Women_on_the_Moon"}, "Title": {"type": "literal", "value": "Amazon Women on the Moon"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Carl_Gottlieb|http://dbpedia.org/resource/Joe_Dante|http://dbpedia.org/resource/John_Landis|http://dbpedia.org/resource/Peter_Horton|http://dbpedia.org/resource/Robert_K._Weiss"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Arsenio_Hall|http://dbpedia.org/resource/B.B._King|http://dbpedia.org/resource/Carrie_Fisher|http://dbpedia.org/resource/Ed_Begley,_Jr.|http://dbpedia.org/resource/Griffin_Dunne|http://dbpedia.org/resource/Henny_Youngman|http://dbpedia.org/resource/Howard_Hesseman|http://dbpedia.org/resource/Kelly_Preston|http://dbpedia.org/resource/Lou_Jacobi|http://dbpedia.org/resource/Monique_Gabrielle|http://dbpedia.org/resource/Paul_Bartel|http://dbpedia.org/resource/Ralph_Bellamy|http://dbpedia.org/resource/Rosanna_Arquette|http://dbpedia.org/resource/Russ_Meyer|http://dbpedia.org/resource/Steve_Allen|http://dbpedia.org/resource/Steve_Forrest_(actor)|http://dbpedia.org/resource/Steve_Guttenberg|http://dbpedia.org/resource/Sybil_Danning"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1980s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Amazon Women on the Moon is a 1987 American satirical comedy film that parodies the experience of watching low-budget movies on late-night television. The film, featuring a large ensemble cast, was written by Michael Barrie and Jim Mulholland, and takes the form of a compilation of 21 comedy skits directed by five different directors: Joe Dante, Carl Gottlieb, Peter Horton, John Landis, and Robert K. Weiss. The title Amazon Women on the Moon refers to the central film-within-a-film, a spoof of science-fiction movies from the 1950s that borrows heavily from Queen of Outer Space (1958) starring Zsa Zsa Gabor, itself a movie that recycles elements of earlier science-fiction works such as Cat-Women of the Moon (1953), Fire Maidens from Outer Space (1955), and Forbidden Planet (1956). Film actors making cameo appearances in various sketches included Rosanna Arquette, Ralph Bellamy, Griffin Dunne, Carrie Fisher, Steve Forrest, Steve Guttenberg, Michelle Pfeiffer, Kelly Preston, and Henry Silva, alongside television actors such as Ed Begley, Jr., Bryan Cranston, David Alan Grier, Howard Hesseman, Peter Horton, William Marshall, Joe Pantoliano, Robert Picardo, and Roxie Roker. Other notable people in the cast included voice actors Corey Burton and Phil Hartman, talk show host Arsenio Hall, adult film actress Monique Gabrielle, science-fiction writer Forrest J. Ackerman, B-movie stars Lana Clarkson and Sybil Danning, musician B. B. King, radio personalities Roger Barkley and Al Lohman, composer Ira Newborn, director Russ Meyer, model Corinne Wahl, comedian Andrew Dice Clay, Firesign Theater member Phil Proctor, and independent film actor Paul Bartel. John Landis had previously directed The Kentucky Fried Movie (1977), which employed a similar sketch anthology format."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Yamla_Pagla_Deewana"}, "Title": {"type": "literal", "value": "Yamla Pagla Deewana"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Samir_Karnik"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anupam_Kher|http://dbpedia.org/resource/Bobby_Deol|http://dbpedia.org/resource/Dharmendra|http://dbpedia.org/resource/Kulraj_Randhawa|http://dbpedia.org/resource/Sunny_Deol"}, "Published": {"type": "literal", "value": "2011-01-14"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Yamla Pagla Deewana is a 2011 Hindi action comedy drama film directed by Samir Karnik, featuring Dharmendra, Sunny Deol, and Bobby Deol in the lead roles. The film marks the second pair-up between the Deol family, after their last sports hit, Apne (2007). The film's title is inspired from the song \"Main Jat Yamla Pagla Deewana\" from the 1975 film, Pratigya also starring Dharmendra. The theatrical trailer of the film unveiled on 5 November 2010, whilst the film released on 14 January 2011, and received good response upon release. It turned out to be an box office hit."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dachimawa_Lee"}, "Title": {"type": "literal", "value": "Dachimawa Lee"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ryoo_Seung-wan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gong_Hyo-jin|http://dbpedia.org/resource/Im_Won-hee|http://dbpedia.org/resource/Park_Si-yeon"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:South_Korean_comedy_films|http://dbpedia.org/resource/Category:Spy_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "Dachimawa Lee (Hangul: \ub2e4\ucc0c\ub9c8\uc640 \ub9ac: \uc545\uc778\uc774\uc5ec \uc9c0\uc625\ud589 \uae09\ud589\uc5f4\ucc28\ub97c \ud0c0\ub77c!; RR: Dajjimawa Ri: Aginiyeo Jiokhaeng Geuphaengyeolchareul Tara; lit. \"Dajjimawa Lee: Bye, Villain! Take the Express Train to Hell\") is a 2008 South Korean film. It has been released via online streaming in the United States under the title \"Dachimawa Lee: Gangnam Spy\"."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Showbox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kontroll"}, "Title": {"type": "literal", "value": "Kontroll (control)"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nimr\u00f3d_Antal"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/S\u00e1ndor_Cs\u00e1nyi|http://dbpedia.org/resource/Zolt\u00e1n_Mucsi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Hungarian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Kontroll is a 2003 Hungarian comedy\u2013thriller film. Shown internationally, mainly in art house theatres, the film is set on a fictionalized version of the Budapest Metro system. \"Kontroll\" in Hungarian refers to the act of ticket inspectors checking to ensure a rider has paid their fare. The story revolves around the ticket inspectors, riders, and a possible killer. The film was written and directed by Nimr\u00f3d Antal and stars S\u00e1ndor Cs\u00e1nyi, Zolt\u00e1n Mucsi, and Csaba Pindroch. The film was entered in a number of film festivals in Europe and North America. It won the Gold Hugo Award at the Chicago International Film Festival and was screened in the Un Certain Regard section at the 2004 Cannes Film Festival. It was also Hungary's submission for Best Foreign Language Film for the 2004 Academy Awards."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Adventures_of_Elmo_in_Grouchland"}, "Title": {"type": "literal", "value": "The Adventures of Elmo in Grouchland"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Gary_Halvorson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Clash|http://dbpedia.org/resource/Mandy_Patinkin|http://dbpedia.org/resource/Vanessa_L._Williams"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "77"}, "Description": {"type": "literal", "value": "The Adventures of Elmo in Grouchland is a 1999 American-German musical fantasy-comedy film directed by Gary Halvorson. It is the second theatrical feature-length film based on the popular U.S. children's series Sesame Street. Produced by Jim Henson Pictures in association with the Children's Television Workshop (now Sesame Workshop) and released by Columbia Pictures on October 1, 1999, the film co-stars Mandy Patinkin and Vanessa L. Williams. The film was shot in Wilmington, North Carolina at EUE/Screen Gems in 1998. This is one of the few Sesame Street productions directly produced by The Jim Henson Company."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Moshidora_(film)"}, "Title": {"type": "literal", "value": "Moshidora"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Makoto_Tanaka"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Japanese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Moshi K\u014dk\u014d Yaky\u016b no Joshi Manager ga Drucker no \"Management\" o Yondara (\u3082\u3057\u9ad8\u6821\u91ce\u7403\u306e\u5973\u5b50\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u304c\u30c9\u30e9\u30c3\u30ab\u30fc\u306e\u300e\u30de\u30cd\u30b8\u30e1\u30f3\u30c8\u300f\u3092\u8aad\u3093\u3060\u3089 What if the Manager of a High School Baseball Team Read Drucker's \"Management\"?) (or Moshidora for short) is a 2011 Japanese live-action film directed by Makoto Tanaka which was released in Japanese cinemas on 4 June 2011. It is based on the bestselling book of the same name and followed a preceding anime series also of the same name."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Toho"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Harry_Hill_Movie"}, "Title": {"type": "literal", "value": "The Harry Hill Movie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Steve_Bendelack"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Harry_Hill|http://dbpedia.org/resource/Johnny_Vegas|http://dbpedia.org/resource/Julie_Walters|http://dbpedia.org/resource/Matt_Lucas|http://dbpedia.org/resource/Simon_Bird"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "The Harry Hill Movie is a 2013 British musical comedy film directed by Steve Bendelack and starring Harry Hill. It was written by Hill along with Jon Foster and James Lamont. It revolves around a fictional version of Harry Hill's adventures with his diesel-drinking nan and misdiagnosed hamster. The film was released on 20 December 2013 in the United Kingdom and Ireland."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Entertainment_Film_Distributors"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Spring_Break_'83"}, "Title": {"type": "literal", "value": "Spring Break '83"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mars_Callahan|http://dbpedia.org/resource/Scott_Spiegel"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Caldwell_(actor)|http://dbpedia.org/resource/Jamie_Kennedy|http://dbpedia.org/resource/Joe_Pantoliano|http://dbpedia.org/resource/Joe_Piscopo|http://dbpedia.org/resource/John_Goodman|http://dbpedia.org/resource/Lee_Majors|http://dbpedia.org/resource/Mars_Callahan|http://dbpedia.org/resource/Martin_Spanjers|http://dbpedia.org/resource/Morgan_Fairchild|http://dbpedia.org/resource/Raviv_Ullman|http://dbpedia.org/resource/Sophie_Monk|http://dbpedia.org/resource/Terrance_Morgan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Spring Break '83 is a Mars Callahan and Scott Spiegel\u2013directed comedy. To date, it has still not been released."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Big_Sky_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Before_I_Disappear"}, "Title": {"type": "literal", "value": "Before I Disappear"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Shawn_Christensen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Emmy_Rossum|http://dbpedia.org/resource/F\u00e1tima_Ptacek|http://dbpedia.org/resource/Ron_Perlman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Before I Disappear is a 2014 American drama film directed by Shawn Christensen. The film is a feature-length adaptation of his 2012 Oscar-winning short film, Curfew. The film had its world premiere at South by Southwest Film on March 10, 2014. The film was acquired for distribution by IFC Films on August 5, 2014 and released on November 28, 2014."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Animal_Kingdom:_Let's_Go_Ape"}, "Title": {"type": "literal", "value": "Animal Kingdom: Let's Go Ape"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jamel_Debbouze"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jamel_Debbouze|http://dbpedia.org/resource/M\u00e9lissa_Theuriau"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Animal Kingdom: Let's Go Ape (French: Pourquoi j'ai pas mang\u00e9 mon p\u00e8re), also titled Evolution Man and Why I Did (Not) Eat My Father, is a 2015 French 3D computer-animated comedy film directed by Jamel Debbouze. The film is based on the novel The Evolution Man by Roy Lewis."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Path\u00e9"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Woods_(2011_film)"}, "Title": {"type": "literal", "value": "The Woods"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Matthew_Lessner"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "The Woods is a 2011 film written and directed by Matthew Lessner. The script was written by Matthew Lessner with contributing writer Adam Mortemore, and additional dialogue by Toby David and Justin Phillips. The film was co-produced by Matthew Lessner, Jett Steiger and Max Knies, and made history as the first film to premiere at the Sundance Film Festival that used Kickstarter for production financing. The film premiered at the 2011 Sundance Film Festival. The Woods premiered in New York at the BAMcinemaFest held at the Brooklyn Academy of Music . The Woods premiered internationally at the Cologne Conference in Cologne, Germany."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sexy_Evil_Genius"}, "Title": {"type": "literal", "value": "Sexy Evil Genius"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Shawn_Piller"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Harold_Perrineau|http://dbpedia.org/resource/Katee_Sackhoff|http://dbpedia.org/resource/Michelle_Trachtenberg|http://dbpedia.org/resource/Seth_Green|http://dbpedia.org/resource/William_Baldwin"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:Direct-to-video_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Sexy Evil Genius is a 2013 American dark comedy film written by Scott Lew and directed by Shawn Piller. Several people in a bar realize that they have all dated the same woman and that she has manipulated them into appearing there for mysterious purposes."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tai_Chi_0"}, "Title": {"type": "literal", "value": "Tai Chi 0 / Tai Chi Zero"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Stephen_Fung"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Angelababy|http://dbpedia.org/resource/Jayden_Yuan|http://dbpedia.org/resource/Tony_Leung_Ka-fai"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Martial_arts_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "Tai Chi 0 or Tai Chi Zero (\u592a\u6975\u4e4b\u96f6\u958b\u59cb) or (\u592a\u6975\uff1a\u5f9e\u96f6\u958b\u59cb) is a 2012 Chinese 3D martial arts film directed by Stephen Fung. It is a fictitious retelling of how the Chen style of the martial art t'ai chi ch'uan, that for generations was kept within the Chen family of Chenjiagou, was taught to the first outsider, Yang Luchan, by Chen Changxing. This is the first film to be produced by Stephen Fung's and Daniel Wu's new production company, Diversion Pictures and also marks the acting debut of Jayden Yuan, who plays the lead role. This film was shot back-to-back with its sequel, Tai Chi Hero. They are to be followed by a third as-of-yet undeveloped movie named Tai Chi Summit."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Baby_on_Board_(film)"}, "Title": {"type": "literal", "value": "Baby on Board"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Brian_Herzlinger"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Heather_Graham_(actress)|http://dbpedia.org/resource/Jerry_O'Connell|http://dbpedia.org/resource/John_Corbett_(actor)|http://dbpedia.org/resource/Lara_Flynn_Boyle"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Baby on Board is a 2009 comedy film starring Heather Graham, John Corbett, Jerry O'Connell, Anthony Starke and Lara Flynn Boyle."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lucky_Monkey_Pictures|http://dbpedia.org/resource/National_Entertainment_Media"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Maid_(2009_film)"}, "Title": {"type": "literal", "value": "The Maid"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sebasti\u00e1n_Silva_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Catalina_Saavedra"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Chilean_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "The Maid (Spanish: La Nana) is a 2009 comedy-drama film, directed by Sebasti\u00e1n Silva and co-written by Silva and Pedro Peirano. It has won numerous awards since its premiere at the 25th Annual Sundance Film Festival. The film has had much critical acclaim, particularly for Catalina Saavedra's award-winning performance as the lead character."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Cloudy_with_a_Chance_of_Meatballs_2"}, "Title": {"type": "literal", "value": "Cloudy with a Chance of Meatballs 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Cody_Cameron"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Samberg|http://dbpedia.org/resource/Anna_Faris|http://dbpedia.org/resource/Benjamin_Bratt|http://dbpedia.org/resource/Bill_Hader|http://dbpedia.org/resource/James_Caan|http://dbpedia.org/resource/Kristen_Schaal|http://dbpedia.org/resource/Neil_Patrick_Harris|http://dbpedia.org/resource/Terry_Crews|http://dbpedia.org/resource/Will_Forte"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Cloudy with a Chance of Meatballs 2 is a 2013 American computer-animated comic science fiction comedy film produced by Sony Pictures Animation and distributed by Columbia Pictures. The film is the sequel to the 2009 film Cloudy with a Chance of Meatballs, which was loosely based on Judi and Ron Barrett's book of the same name. It was directed by Cody Cameron and Kris Pearn, produced by Kirk Bodyfelt, and executive produced by the directors of the first film, Phil Lord and Chris Miller. The film was released on September 27, 2013. The film grossed over $274 million worldwide against its budget of $78 million. The screenplay was written by John Francis Daley, Jonathan Goldstein, and Erica Rivinoja, and it is based on an original story idea, not on that of Pickles to Pittsburgh, the Barretts' follow up book. It continues right after the first film, in which Flint's food-making machine gets out of control, but Flint manages to stop it with the help of his friends. In the sequel, Flint and his friends are forced to leave their home town, but when the food machine reawakens\u2014this time producing sentient food beasts\u2014they must return to save the world. Most of the main cast reprised their roles: Bill Hader as Flint Lockwood, Anna Faris as Sam Sparks, James Caan as Tim Lockwood, Andy Samberg as Brent McHale, Neil Patrick Harris as Steve, and Benjamin Bratt as Manny. Will Forte, who voiced Joseph Towne in the first film, voices Chester V in this one. New cast includes Kristen Schaal as orangutan Barb and Terry Crews as Officer Earl, replacing Mr. T in the role."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Revolution_of_Pigs"}, "Title": {"type": "literal", "value": "Revolution of Pigs"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jaak_Kilmi|http://dbpedia.org/resource/Ren\u00e9_Reinum\u00e4gi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Arvo_Kukum\u00e4gi|http://dbpedia.org/resource/Jass_Seljamaa|http://dbpedia.org/resource/Lilian_Alto|http://dbpedia.org/resource/Uku_Uusberg"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "The Revolution of Pigs (Estonian: Sigade revolutsioon) is an 2004 Estonian comedy film that was a feature film debut for 2 young Estonian directors Ren\u00e9 Reinum\u00e4gi and Jaak Kilmi. Fueled by a great soundtrack of classic \u201880s pop, the revolution is brewing. Set in the summer of 1986, hundreds of teenagers have gathered in the woods for Estonian student summer camp\u2014three days full of adventures, falling in love and partying. But, when the teens are forced to comply with rules of proper behavior, camp in a totalitarian system isn\u2019t all it\u2019s cracked up to be. The political metaphor of the counselors\u2019 control leads to an uprising of the students. The main character is 16-year-old Tanel, who initially is as focused on losing his virginity and getting drunk as overthrowing the system. But taking part in the revolt, he discovers himself."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/AS_MPDE_Eesti:_cinemas_in_Estonia|http://dbpedia.org/resource/Internetcinema|http://dbpedia.org/resource/Sigade_revolutsioon_o\u00fc"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Two_Friends_(2015_film)"}, "Title": {"type": "literal", "value": "Two Friends"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Louis_Garrel"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Golshifteh_Farahani|http://dbpedia.org/resource/Vincent_Macaigne"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Two Friends (French: Les Deux Amis) is a 2015 French romantic dramedy film directed by Louis Garrel and co-written by Garrel and Christophe Honor\u00e9. The film is loosely based on the play The Moods of Marianne by Alfred de Musset. It was selected to screen in the International Critics' Week section at the 2015 Cannes Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Keep_Smiling_(2012_film)"}, "Title": {"type": "literal", "value": "Keep Smiling"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rusudan_Chkonia"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Eka_Kartvelishvili|http://dbpedia.org/resource/Gia_Roinishvili|http://dbpedia.org/resource/Ia_Sukhitashvili|http://dbpedia.org/resource/Maka_Chichua|http://dbpedia.org/resource/Nana_Shonia|http://dbpedia.org/resource/Olga_Babluani|http://dbpedia.org/resource/Shorena_Begashvili|http://dbpedia.org/resource/Tamuna_Bukhnikashvili"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Keep Smiling (Georgian: \u10d2\u10d0\u10d8\u10e6\u10d8\u10db\u10d4\u10d7, translit. Gaigimet) is a 2012 Georgian-French-Luxemburg produced black comedy-drama written and directed by Rusudan Chkonia. The film was selected as the Georgian entry for the Best Foreign Language Oscar at the 85th Academy Awards, but it did not make the final list. The script was the winner of 2010 GNFC competition of debut full length feature films and went on to be the most successful release in Georgia of 2012 also enjoying a theatrical run in French cinemas."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hysteria_(2011_film)"}, "Title": {"type": "literal", "value": "Hysteria"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tanya_Wexler"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Felicity_Jones|http://dbpedia.org/resource/Hugh_Dancy|http://dbpedia.org/resource/Maggie_Gyllenhaal"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:British_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Hysteria is a 2011 British period romantic comedy film directed by Tanya Wexler. It stars Hugh Dancy and Maggie Gyllenhaal, with Felicity Jones, Jonathan Pryce, and Rupert Everett appearing in key supporting roles. The film, set in the Victorian era, shows how the medical management of hysteria led to the invention of the vibrator. The film's title refers to the once-common medical diagnosis of female hysteria."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Go_for_Broke_(2002_film)"}, "Title": {"type": "literal", "value": "Go for Broke"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jean-Claude_La_Marre"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bobby_Brown|http://dbpedia.org/resource/Kira_Madallo_Sesay|http://dbpedia.org/resource/LisaRaye|http://dbpedia.org/resource/Michael_A._Goorjian|http://dbpedia.org/resource/Pras"}, "Published": {"type": "literal", "value": "2002-06-27"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "Go for Broke is a 2002 urban comedy film, written by Jean-Claude La Marre, who also directed and co-produced the film, which stars Pras, Michael A. Goorjian, LisaRaye, Kira Madallo Sesay, and Bobby Brown."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Artisan_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Go_Lala_Go!"}, "Title": {"type": "literal", "value": "Go Lala Go!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Xu_Jinglei"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Karen_Mok|http://dbpedia.org/resource/Li_Ai|http://dbpedia.org/resource/Pace_Wu|http://dbpedia.org/resource/Stanley_Huang|http://dbpedia.org/resource/Xu_Jinglei"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Chinese_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Go Lala Go! (simplified Chinese: \u675c\u62c9\u62c9\u5347\u804c\u8bb0; traditional Chinese: \u675c\u62c9\u62c9\u5347\u8077\u8a18; pinyin: D\u00f9 L\u0101l\u0101 sh\u0113ngzh\u00ed j\u00ec; literally: \"Du Lala's promotion\") is a 2010 Chinese romantic comedy film about a Chinese woman who learns how to balance a relationship and professional work in a work place. It is directed by Xu Jinglei, who also plays the title character, and is based on a novel, Du Lala's Promotion, by Li Ke. The film also stars Stanley Huang and Karen Mok. Go Lala Go! was released to Mainland Chinese audiences on April 15, 2010, where it competed for ticket sales with the American remake, Clash of the Titans. After the success of \"Go Lala Go!\", Xu Jinglei directed another film Dear Enemy and co-starred with Stanley Huang again. The film is said to be like an updated and improved version of \"Go Lala Go!\""}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/China_Film_Group_Corporation"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Eight_Legged_Freaks"}, "Title": {"type": "literal", "value": "Eight Legged Freaks"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ellory_Elkayem"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/David_Arquette|http://dbpedia.org/resource/Doug_E._Doug|http://dbpedia.org/resource/Kari_W\u00fchrer|http://dbpedia.org/resource/Scarlett_Johansson|http://dbpedia.org/resource/Scott_Terra"}, "Published": {"type": "literal", "value": "2002-07-17"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Eight Legged Freaks is a 2002 German-Australian-American horror-comedy film directed by Ellory Elkayem and stars David Arquette, Kari W\u00fchrer, Scott Terra, and Scarlett Johansson. The plot concerns a collection of spiders that are exposed to toxic waste, causing them to grow to gigantic proportions and begin killing and harvesting. The film was dedicated to the memory of several people: One was Lewis Arquette, father of the star of the film David Arquette, who had died in 2001 from heart failure, and the other two were Don Devlin and Pilar Seurat, the parents of producer Dean Devlin, who both died of lung cancer in 2000 and 2001, respectively."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros._Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Desire_Street_(film)"}, "Title": {"type": "literal", "value": "Desire Street"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Roberto_F._Canuto|http://dbpedia.org/resource/Xu_Xiaoxi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "Desire Street, also known as La Calle Del Deseo or Calle Deseo, is a 2011 Spanish, Chinese, and U.S. co-production drama film, written and directed by Roberto F. Canuto and Xu Xiaoxi. Headed by actress Alexandra Smothers, the film features an ensemble cast also starring Alejandra Walker, Ellen Clifford, Javier Lopez, Kjord Davis, and Jesus Guevara. Revolving around an eccentric and dysfunctional Mexican immigrant family living in Los Angeles, California, the film is divided into three parts, each one with a story reflecting a family member (mother Carmen, daughter Bess and son Andrea) and the relationship that they establish with a new neighbor, a prostitute (Lucy Bell)."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Anniversary_(2009_film)"}, "Title": {"type": "literal", "value": "The Anniversary"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/John_Campea"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Erin_Cummings|http://dbpedia.org/resource/Gavin_Grazer|http://dbpedia.org/resource/Jana_Thompson|http://dbpedia.org/resource/Julia_Voth|http://dbpedia.org/resource/Manolis_Zontanos"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "The Anniversary is a 2009 romantic comedy written and directed by Canadian film-maker and film journalist John Campea. The film explores the stresses, stereotypes, and stigmas associated with thirty-something dating and relationships."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Cop_Out_(2010_film)"}, "Title": {"type": "literal", "value": "Cop Out"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Smith"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bruce_Willis|http://dbpedia.org/resource/Kevin_Pollak|http://dbpedia.org/resource/Seann_William_Scott|http://dbpedia.org/resource/Tracy_Morgan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:Police_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "Cop Out is a 2010 American buddy cop comedy film directed and edited by Kevin Smith, written by Mark and Robb Cullen, and starring Bruce Willis, Tracy Morgan, Kevin Pollak and Seann William Scott. The plot revolves around two veteran NYPD partners (portrayed by Willis and Morgan) on the trail of a stolen, rare, mint-condition baseball card who find themselves up against a relentless, memorabilia-obsessed bloodthirsty gangster. This is the first film that Smith directed that he did not also write. Upon its release, the film was met with negative reviews by critics and underperformed at the box office."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Eli_(2015_film)"}, "Title": {"type": "literal", "value": "Eli"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Yuvaraj_Dhayalan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Sadha|http://dbpedia.org/resource/Vadivelu"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_criminal_comedy_films|http://dbpedia.org/resource/Category:Criminal_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "154"}, "Description": {"type": "literal", "value": "Eli (English: Rat) is a 2015 Indian Tamil-language spy comedy film written and directed by Yuvaraj Dhayalan. The film features Vadivelu and Sadha in the lead roles. Vidyasagar composed the film's music. Eli was released on 19 June 2015 to negative reviews."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Recep_\u0130vedik"}, "Title": {"type": "literal", "value": "Recep Ivedik"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Togan_G\u00f6kbakar"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/\u015eahan_G\u00f6kbakar"}, "Published": {"type": "literal", "value": "2008-02-22"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Turkish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Recep \u0130vedik is a 2008 Turkish comedy film, directed by Togan G\u00f6kbakar, and the name of the main character (also in the sequels Recep \u0130vedik 2, Recep \u0130vedik 3 and Recep \u0130vedik 4), an oafish man played by \u015eahan G\u00f6kbakar. Recep \u0130vedik takes up residence in an expensive Antalya hotel to win back his childhood love. The film, which went on nationwide general release across Turkey on February 22, 2008, was the highest grossing Turkish film of 2008. The film's titular comic character was created by \u015eahan G\u00f6kbakar for his Turkish comedy television show Dikkat \u015eahan \u00c7\u0131kabilir, which ran from 2005 to 2006, and has subsequently gone on to feature in a series of sequel films. The film was shot on location in Istanbul and Antalya, Turkey."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tai_Chi_Hero"}, "Title": {"type": "literal", "value": "Tai Chi Hero"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Stephen_Fung"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Angelababy|http://dbpedia.org/resource/Eddie_Peng|http://dbpedia.org/resource/Jayden_Yuan|http://dbpedia.org/resource/Tony_Leung_Ka-fai|http://dbpedia.org/resource/William_Feng"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Martial_arts_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Tai Chi Hero (\u592a\u6975\uff12 \u82f1\u96c4\u5d1b\u8d77) is a 2012 Hong Kong-Chinese 3D martial arts film directed by Stephen Fung, written and produced by Kuo-fu Chen. It is the sequel to Fung's 2012 film Tai Chi Zero. It was released in Hong Kong on 25 October 2012. It is to be followed by a third undeveloped movie named Tai Chi Summit."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Larrikins_(film)"}, "Title": {"type": "literal", "value": "Larrikins"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Miller_(animator)|http://dbpedia.org/resource/Tim_Minchin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Mendelsohn|http://dbpedia.org/resource/Hugh_Jackman|http://dbpedia.org/resource/Margot_Robbie|http://dbpedia.org/resource/Naomi_Watts|http://dbpedia.org/resource/Rose_Byrne"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_musical_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Larrikins is an upcoming 2018 American computer animated musical comedy film directed by Tim Minchin and Chris Miller and starring Margot Robbie and Hugh Jackman, from a script by Harry Cripps. Produced by DreamWorks Animation and distributed by Universal Pictures, it follows the story of an uptight bilby who escapes his sheltered life from his family burrow, he ventures out and finds himself launched on a musical adventure across the mystical Australian outback. It is currently scheduled for a February 16, 2018 release."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dream_for_an_Insomniac"}, "Title": {"type": "literal", "value": "Dream for an Insomniac"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tiffanie_DeBartolo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ione_Skye|http://dbpedia.org/resource/Jennifer_Aniston"}, "Published": {"type": "literal", "value": "1998-06-19"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Dream for an Insomniac is a 1996 romantic comedy movie written and directed by Tiffanie DeBartolo. It stars Ione Skye, Jennifer Aniston, Mackenzie Astin and Michael Landes."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Safety_Not_Guaranteed"}, "Title": {"type": "literal", "value": "Safety Not Guaranteed"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Colin_Trevorrow"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aubrey_Plaza|http://dbpedia.org/resource/Jake_Johnson|http://dbpedia.org/resource/Jeff_Garlin|http://dbpedia.org/resource/Karan_Soni|http://dbpedia.org/resource/Kristen_Bell|http://dbpedia.org/resource/Mark_Duplass|http://dbpedia.org/resource/Mary_Lynn_Rajskub"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Safety Not Guaranteed is a 2012 American science-fiction romantic comedy film directed by Colin Trevorrow. The film was inspired by a 1997 Backwoods Home Magazine classified ad, itself written as a joke filler by Backwoods employee John Silveira, by a person asking for someone to accompany him in a time-travelling excursion. It was screened at the 2012 Sundance Film Festival, where it won the Waldo Salt Screenwriting Award."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/FilmDistrict"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Make_It_Big_(film)"}, "Title": {"type": "literal", "value": "Make It Big"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Cho_Ui-seok"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kwon_Sang-woo|http://dbpedia.org/resource/Lee_Beom-soo|http://dbpedia.org/resource/Song_Seung-heon"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:South_Korean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "Make It Big (Hangul: \uc77c\ub2e8 \ub6f0\uc5b4; RR: Ildan Dwieo) is a 2002 South Korean comedy film. Song Seung-heon, Kim Young-jun and Kwon Sang-woo play three high school students who are startled when a bagful of money and a dead man fall on top of their car. Once they realize just how much money is in the bag, they give up any thought of calling the police."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kamara's_Tree"}, "Title": {"type": "literal", "value": "Kamara's Tree"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Desmond_Elliot"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Nigerian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Kamara's Tree is a 2013 Nigerian comedy drama film, directed by Desmond Elliot, and starring Desmond Elliot, Lydia Forson, Ivie Okujaye, Tessy Abubakar, Bobby Obodo, Ginnefine Kanu, Morris K Sesay and Dabota Lawson. The film which is set and was shot in Freetown, Sierra Leone, tells the story of a family who gather in Freetown to attend the wedding of their sister, after long years of separation; each of the family members has to deal with the diverse behaviours of the others as a result."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tick_Tock_Lullaby"}, "Title": {"type": "literal", "value": "Tick Tock Lullaby"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lisa_Gornick"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Lisa_Gornick|http://dbpedia.org/resource/Raquel_Cassidy|http://dbpedia.org/resource/Sarah_Patterson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:British_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "73"}, "Description": {"type": "literal", "value": "Tick Tock Lullaby is a British indie comedy-drama film of 2007 written and directed by Lisa Gornick."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dil_Chahta_Hai"}, "Title": {"type": "literal", "value": "Dil Chahta Hai"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Farhan_Akhtar"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aamir_Khan|http://dbpedia.org/resource/Akshaye_Khanna|http://dbpedia.org/resource/Dimple_Kapadia|http://dbpedia.org/resource/Preity_Zinta|http://dbpedia.org/resource/Saif_Ali_Khan|http://dbpedia.org/resource/Sonali_Kulkarni"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "184"}, "Description": {"type": "literal", "value": "Dil Chahta Hai (English: The Heart Desires) is a 2001 Indian comedy-drama film starring Aamir Khan, Saif Ali Khan, Akshaye Khanna, Preity Zinta, Sonali Kulkarni, and Dimple Kapadia. The first film written and directed by Farhan Akhtar, it is set in modern-day urban Mumbai and Sydney, and focuses on a major period of transition in the lives of three young friends. In 2001, the film won National Film Award for Best Feature Film in Hindi. It performed better in the urban areas of the country compared to the rural areas, which was attributed by critics to the city-oriented lifestyle depicted in which all the characters are from rich or upper-middle-class families. Over the years, it has attained a cult status."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Excel_Entertainment_Pvt._Ltd."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Southland_Tales"}, "Title": {"type": "literal", "value": "Southland Tales"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Richard_Kelly_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bai_Ling|http://dbpedia.org/resource/Dwayne_Johnson|http://dbpedia.org/resource/Justin_Timberlake|http://dbpedia.org/resource/Mandy_Moore|http://dbpedia.org/resource/Miranda_Richardson|http://dbpedia.org/resource/Sarah_Michelle_Gellar|http://dbpedia.org/resource/Seann_William_Scott|http://dbpedia.org/resource/Wallace_Shawn"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "144|160"}, "Description": {"type": "literal", "value": "Southland Tales is a 2006 science fiction comedy-drama thriller film and the second film written and directed by Richard Kelly. The title refers to the Southland, a name used by locals to refer to Southern California and Greater Los Angeles. Set in the then-near future of 2008, as part of an alternate history, the film is a portrait of Los Angeles, and a satiric commentary on the military\u2013industrial complex and the infotainment industry. The film features an ensemble cast including Dwayne Johnson, Seann William Scott, Sarah Michelle Gellar, Mandy Moore, and Justin Timberlake. Original music for the film was provided by Moby. The film is an international co-production of the United States, Germany and France. The film premiered May 21, 2006 at the 2006 Cannes Film Festival, where it was poorly received. After significant edits, the final version premiered at Fantastic Fest on September 22, 2007. It opened in limited release in California on November 14, 2007 and in Canada as well as nationwide in United States, in just 63 theaters, on November 16, 2007. The film opened in the United Kingdom on December 7, 2007."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Destination_Films|http://dbpedia.org/resource/Samuel_Goldwyn_Films|http://dbpedia.org/resource/Universal_Studios|http://dbpedia.org/resource/Wild_Bunch_(company)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Temptation_of_St._Tony"}, "Title": {"type": "literal", "value": "The Temptation of St. Tony"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Veiko_\u00d5unpuu"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "The Temptation of St. Tony (Estonian: P\u00fcha T\u00f5nu kiusamine) is a 2009 Estonian film written and directed by Veiko \u00d5unpuu, starring Taavi Eelmaa. The plot has been described as a black comedy and centers around a successful, middle aged man who becomes interested in questions about morality. The film was a co-production between companies from Estonia, Sweden and Finland."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Everybody's_Fine_(2016_film)"}, "Title": {"type": "literal", "value": "Everybody's Fine"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Zhang_Meng_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Chinese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Everybody's Fine is a 2016 Chinese family comedy film directed by Zhang Meng. It was released in China on January 1, 2016."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sumolah"}, "Title": {"type": "literal", "value": "Sumolah"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Afdlin_Shauki"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Afdlin_Shauki|http://dbpedia.org/resource/Awie|http://dbpedia.org/resource/Gurmit_Singh|http://dbpedia.org/resource/Inthira_Charoenpura|http://dbpedia.org/resource/Patrick_Teoh"}, "Published": {"type": "literal", "value": "2007-05-10"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Sumolah (Let's Sumo!) is a 2007 Malaysian action-comedy film starring Afdlin Shauki and featuring the Japanese sport of sumo wrestling. The film was shot in Malaysia and Japan. The film has a multi-national cast including Thai actress Inthira Charoenpura who was previously known for her performance in Nang Nak, and Singaporean actor Gurmit Singh known for his performance in the sitcom Phua Chu Kang. The plot of the film revolves about what would happen if an unambitious Malay mat rempit is forced to enter the challenging world of sumo. This film is rated PG13 for intense sumo violence, some drug content, sexual references and brief strong language. This film is financial failure despite critical success."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Going_in_Style_(2017_film)"}, "Title": {"type": "literal", "value": "Going in Style"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Zach_Braff"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alan_Arkin|http://dbpedia.org/resource/Ann-Margret|http://dbpedia.org/resource/Joey_King|http://dbpedia.org/resource/Matt_Dillon|http://dbpedia.org/resource/Michael_Caine|http://dbpedia.org/resource/Morgan_Freeman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:2010s_criminal_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Going in Style is an upcoming American heist comedy film based on the 1979 film of the same name, directed by Zach Braff, written by Theodore Melfi, and stars Morgan Freeman, Michael Caine, Alan Arkin, Joey King, Matt Dillon and Ann-Margret. The film is scheduled to be released on April 7, 2017."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros._Pictures"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/De_Line_Pictures|http://dbpedia.org/resource/New_Line_Cinema|http://dbpedia.org/resource/RatPac-Dune_Entertainment"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Freetime_Machos"}, "Title": {"type": "literal", "value": "Freetime Machos"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mika_Ronkainen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Freetime Machos is a Finnish documentary film about the world's most northerly rugby club called OYUS Rugby based in Oulu, Finland. The film is directed by Mika Ronkainen and it was premiered at IDFA in November 2009. The film got its North American premiere at Tribeca Film Festival in April 2010. It was also part of the Edinburgh International Film Festival in June 2010."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Wild_West_Comedy_Show:_30_Days_and_30_Nights_\u2013_Hollywood_to_the_Heartland"}, "Title": {"type": "literal", "value": "Wild West Comedy Show: 30 Days and 30 Nights - Hollywood to the Heartland"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ari_Sandel"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ahmed_Ahmed|http://dbpedia.org/resource/Bret_Ernst|http://dbpedia.org/resource/John_Caparulo|http://dbpedia.org/resource/Justin_Long|http://dbpedia.org/resource/Keir_O'Donnell|http://dbpedia.org/resource/Peter_Billingsley|http://dbpedia.org/resource/Sean_Fitzgerald|http://dbpedia.org/resource/Sebastian_Maniscalco|http://dbpedia.org/resource/Vince_Vaughn"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Documentary_films_about_comedy_and_comedians"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Wild West Comedy Show: 30 Days and 30 Nights \u2013 Hollywood to the Heartland is a comedy documentary film directed by Ari Sandel and follows the 30 day comedy of tour of several stand up comedians. It premiered September 8, 2006 at the Toronto International Film Festival. It opened in wide release in the United States on February 8, 2008."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Picturehouse_(company)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dead_Snow"}, "Title": {"type": "literal", "value": "Dead Snow"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tommy_Wirkola"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ane_Dahl_Torp|http://dbpedia.org/resource/Bj\u00f8rn_Sundquist|http://dbpedia.org/resource/Charlotte_Frogner|http://dbpedia.org/resource/Jenny_Skavlan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Dead Snow (Norwegian: D\u00f8d sn\u00f8) is a 2009 Norwegian zombie splatter film directed by Tommy Wirkola, starring Charlotte Frogner, Stig Frode Henriksen, Vegar Hoel, Jeppe Laursen, Evy Kasseth R\u00f8sten, Jenny Skavlan, and Lasse Valdal. The film centers on a group of students surviving a Nazi zombie attack in the mountains of Norway. The premise of the film is similar to that of the draugr - a Scandinavian folkloric undead greedily protecting its (often stolen) treasures. NYAV Post has produced an English dub of this film for the home media release."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Euforia_Film"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Buongiorno_pap\u00e0"}, "Title": {"type": "literal", "value": "Buongiorno pap\u00e0"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Edoardo_Leo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Edoardo_Leo|http://dbpedia.org/resource/Marco_Giallini|http://dbpedia.org/resource/Raoul_Bova"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Italian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "Buongiorno pap\u00e0 (Italian for Good Morning Dad) is a 2013 Italian comedy film written, directed and starred by Edoardo Leo. It was nominated for two David di Donatello, for best supporting actor (Marco Giallini) and best original song, and for two Nastri d'argento, for best comedy film and for best actor (a nominee tied between Raoul Bova and Marco Giallini)."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fulvio_Lucisano"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Infestation_(film)"}, "Title": {"type": "literal", "value": "Infestation"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kyle_Rankin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Brooke_Nevin|http://dbpedia.org/resource/Chris_Marquette|http://dbpedia.org/resource/Deborah_Geffner|http://dbpedia.org/resource/Ray_Wise"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Infestation is a 2009 Horror-Comedy feature film by American writer/director Kyle Rankin. It was produced by Mel Gibson's Icon Entertainment and starring Chris Marquette, E. Quincy Sloan, Brooke Nevin, Kinsey Packard, Deborah Geffner and Ray Wise. It was filmed in Bulgaria."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Icon_Productions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/What_a_Man_(2011_film)"}, "Title": {"type": "literal", "value": "What a Man"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Matthias_Schweigh\u00f6fer"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Matthias_Schweigh\u00f6fer|http://dbpedia.org/resource/Sibel_Kekilli"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:German_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "What a Man is a 2011 German comedy film directed by Matthias Schweigh\u00f6fer. It was well received by German critics and also a success at the box office."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Twentieth_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hasee_Toh_Phasee"}, "Title": {"type": "literal", "value": "Hasee Toh Phasee"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Vinil_Mathew"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adah_Sharma|http://dbpedia.org/resource/Manoj_Joshi_(actor)|http://dbpedia.org/resource/Parineeti_Chopra|http://dbpedia.org/resource/Sharat_Saxena|http://dbpedia.org/resource/Sidharth_Malhotra"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "141"}, "Description": {"type": "literal", "value": "Hasee Toh Phasee (English: She Smiles, She's Snared!) is a 2014 Indian romantic comedy-drama film directed by Vinil Mathew and produced by Karan Johar and Anurag Kashyap. The film features Parineeti Chopra, Sidharth Malhotra and Adah Sharma in the lead roles. The film was released on 7 February 2014 and received positive reviews. The movie collected around \u20b9620 million (US$9.2 million) worldwide."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Chaar_Din_Ki_Chandni"}, "Title": {"type": "literal", "value": "Chaar Din Ki Chandni"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Samir_Karnik"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kulraj_Randhawa|http://dbpedia.org/resource/Tusshar_Kapoor"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Chaar Din Ki Chandni (English: 4 nights of moonlight) is a 2012 Hindi romantic comedy film directed and produced by Samir Karnik. The film stars Tusshar Kapoor and Kulraj Randhawa in the lead roles while Anupam Kher, Om Puri and Anita Raj appear in supporting roles. It released on 9 March 2012, received generally negative reviews, and also failed to do well at the box office."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hell_Baby"}, "Title": {"type": "literal", "value": "Hell Baby"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Robert_Ben_Garant|http://dbpedia.org/resource/Thomas_Lennon_(actor)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dave_Holmes_(actor)|http://dbpedia.org/resource/Keegan_Michael_Key|http://dbpedia.org/resource/Kumail_Nanjiani|http://dbpedia.org/resource/Leslie_Bibb|http://dbpedia.org/resource/Michael_Ian_Black|http://dbpedia.org/resource/Paul_Scheer|http://dbpedia.org/resource/Riki_Lindhome|http://dbpedia.org/resource/Rob_Corddry|http://dbpedia.org/resource/Rob_Huebel|http://dbpedia.org/resource/Robert_Ben_Garant|http://dbpedia.org/resource/Thomas_Lennon_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Hell Baby is an American horror-comedy film written and directed by Robert Ben Garant and Thomas Lennon. The film stars Rob Corddry, Leslie Bibb, Keegan Michael Key, Riki Lindhome, Rob Huebel, and Paul Scheer. Writer-directors Garant and Lennon also co-star as a pair of priests. The film premiered at the Sundance Film Festival on January 20, 2013. The film is available on VOD beginning on July 25, 2013 before its theatrical release on September 6, 2013."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Gravitas_Ventures|http://dbpedia.org/resource/Millennium_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Along_Came_Polly"}, "Title": {"type": "literal", "value": "Along Came Polly"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/John_Hamburg"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alec_Baldwin|http://dbpedia.org/resource/Ben_Stiller|http://dbpedia.org/resource/Bryan_Brown|http://dbpedia.org/resource/Debra_Messing|http://dbpedia.org/resource/Hank_Azaria|http://dbpedia.org/resource/Jennifer_Aniston|http://dbpedia.org/resource/Philip_Seymour_Hoffman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Along Came Polly is a 2004 American romantic comedy film written and directed by John Hamburg, starring Ben Stiller and Jennifer Aniston in the lead roles."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mongolian_Ping_Pong"}, "Title": {"type": "literal", "value": "Mongolian Ping Pong"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ning_Hao"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hurichabilike"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Mongolian Ping Pong (simplified Chinese: \u7eff\u8349\u5730; traditional Chinese: \u7da0\u8349\u5730; pinyin: L\u00fc cao di) is a 2005 Mongolian language Chinese film written and directed by Chinese director Ning Hao. The story is a gentle art film about a Mongolian boy who discovers a ping pong ball and his journey of discovery about its origins."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Bavaria_Film_International"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Babu_Bangaram"}, "Title": {"type": "literal", "value": "Babu Bangaaram"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Maruthi_Dasari"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Daggubati_Venkatesh|http://dbpedia.org/resource/Nayanthara"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "150"}, "Description": {"type": "literal", "value": "Babu Bangaram (English: Golden Boy) is a 2016 Telugu action romantic comedy film, produced by S. Naga Vamshi, P. D. V. Prasad on Sitara Entertainments banner, written and directed by Maruthi. Starring Venkatesh, Nayanthara in the lead roles and music composed by Ghibran. The film was launched on 16 December 2015 in Hyderabad and principle photography began the following day. The first look poster of the film was released on 7 April 2016 on the eve of Ugadi. Babu Bangaram obtained a U/A from the censor board. The film had a worldwide release on 12 August 2016 amid much fanfare. The film was simultaneously released with a Tamil dubbed version titled Selvi."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/S._Radha_Krishna"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Center_of_my_World"}, "Title": {"type": "literal", "value": "Center of my World"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jakob_M._Erwa"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Clemens_Rehbein|http://dbpedia.org/resource/Inka_Friedrich|http://dbpedia.org/resource/Jannik_Sch\u00fcmann|http://dbpedia.org/resource/Louis_Hofmann|http://dbpedia.org/resource/Nina_Proll|http://dbpedia.org/resource/Sabine_Timoteo|http://dbpedia.org/resource/Svenja_Jung"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:German_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "Center of my World (German: Die Mitte der Welt) is a 2016 German coming-of-age romantic drama film directed by Jakob M. Erwa, based on the 1998 bestselling novel The Center of the World by Andreas Steinh\u00f6fel."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bring_Me_the_Head_of_the_Machine_Gun_Woman"}, "Title": {"type": "literal", "value": "Bring Me the Head of the Machine Gun Woman"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ernesto_D\u00edaz_Espinoza"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Fernanda_Urrejola"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "73"}, "Description": {"type": "literal", "value": "Bring Me the Head of the Machine Gun Woman, also known under its original release title of Tr\u00e1iganme la cabeza de la mujer metralleta, is a 2012 Chilean action comedy that was directed by Ernesto D\u00edaz Espinoza. The film had its world premiere on 23 September 2012 at the Austin Fantastic Fest and was released in Chile on 23 May 2013."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jatra:_Hyalagaad_Re_Tyalagaad"}, "Title": {"type": "literal", "value": "Jatra"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kedar_Shinde"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bharat_Jadhav|http://dbpedia.org/resource/Kranti_Redkar|http://dbpedia.org/resource/Siddarth_Jadhav"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "133"}, "Description": {"type": "literal", "value": "Jatra is a 2006 Indian Marathi-language comedy film. The music was composed by the duo Ajay and Atul Gogavale. Jatra features the song Kombadi Palali Ajay and Atul later used same tune from the song \"Kombdi Palali\" when composing the item song \"Chikni Chameli\" for the Hindi film Agneepath in 2012."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Phone_Swap"}, "Title": {"type": "literal", "value": "Phone Swap"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kunle_Afolayan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Nigerian_comedy_films|http://dbpedia.org/resource/Category:Nigerian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110|117"}, "Description": {"type": "literal", "value": "Phone Swap is a 2012 Nigerian romance comedy drama film written by Kemi Adesoye, directed and produced by Kunle Afolayan. It stars Nse Ikpe Etim, Wale Ojo, Joke Silva, Chika Okpala, Lydia Forson and Hafeez Oyetoro. The film was conceived after a brief from an advertising agency to create a movie that would cut across ages 15 to 45. It narrates the story of Mary, a warm-hearted fashion designer who works under a very stringent boss, and Akin, an arrogant, withdrawn and bossy business executive. They accidentally swap their mobile phones at a busy airport, which leads to an exchange in their destinations and the need to help carryout each other's assignments. Phone Swap was shot in Lagos and made in partnership with Globacom and BlackBerry. It also got financial support from Meelk Properties, IRS Airlines, Seven-up Bottling Company, Honeywell Flour Mill and several others. The scripting stage for the film took two years, while the production and post production stages took six weeks and three months respectively. The film received critical acclaim and was highly successful at the box office. It received 4 nominations at the 8th Africa Movie Academy Awards which includes the category Best Nigerian Film and won the award Achievement in Production Design."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/It's_a_Disaster"}, "Title": {"type": "literal", "value": "It's a Disaster"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Todd_Berger"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/America_Ferrera|http://dbpedia.org/resource/Blaise_Miller|http://dbpedia.org/resource/David_Cross|http://dbpedia.org/resource/Erinn_Hayes|http://dbpedia.org/resource/Jeff_Grace|http://dbpedia.org/resource/Julia_Stiles|http://dbpedia.org/resource/Kevin_M._Brennan|http://dbpedia.org/resource/Rachel_Boston"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "It's a Disaster is a 2012 American art-house black comedy film written and directed by Todd Berger. The film was made by Los Angeles-based comedy group The Vacationeers and stars Rachel Boston, David Cross, America Ferrera, Jeff Grace, Erinn Hayes, Kevin M. Brennan, Blaise Miller, Julia Stiles, and Todd Berger. The film premiered on June 20, 2012, at the Los Angeles Film Festival. It's a Disaster was commercially released in US theaters by Oscilloscope Laboratories, which acquired the US distribution rights to the film, on April 12, 2013."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Oscilloscope_Laboratories"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mary_and_Max"}, "Title": {"type": "literal", "value": "Mary and Max"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Elliot"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bethany_Whitmore|http://dbpedia.org/resource/Eric_Bana|http://dbpedia.org/resource/Philip_Seymour_Hoffman|http://dbpedia.org/resource/Toni_Collette"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:Australian_comedy_films|http://dbpedia.org/resource/Category:Black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Mary and Max is a 2009 Australian stop motion animated comedy-drama film written and directed by Adam Elliot as his first animated feature film with music by Dale Cornelius and produced by Melanie Coombs and Melodrama Pictures. The voice cast included Philip Seymour Hoffman, Toni Collette, Eric Bana, Bethany Whitmore with narration by Barry Humphries. The film premiered on the opening night of the 2009 Sundance Film Festival on January 15, 2009. The film won the Annecy Cristal in June 2009 from the Annecy International Animated Film Festival, and Best Animated Feature Film at the Asia Pacific Screen Awards in November 2009. The film was theatrically released on April 9, 2009 by Icon Entertainment International. Mary and Max received very positive reviews from critics and it earned $1.7 million USD on a $8.2 million AUD budget."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Icon_Productions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Spellbound_(2011_film)"}, "Title": {"type": "literal", "value": "Spellbound"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Hwang_In-ho"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Lee_Min-ki|http://dbpedia.org/resource/Son_Ye-jin"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "Spellbound (Hangul: \uc624\uc2f9\ud55c \uc5f0\uc560; hanja: \uc624\uc2f9\ud55c \u6200\u611b; RR: Ossakhan Yeonae; lit. \"Chilling Romance\") is a 2011 South Korean horror romantic comedy film, starring Son Ye-jin and Lee Min-ki. It is about a magician who falls in love with a woman who can see ghosts. It was written and directed by Hwang In-ho which also marks his directorial debut."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/CJ_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Rab_Ne_Bana_Di_Jodi"}, "Title": {"type": "literal", "value": "Rab Ne Bana Di Jodi"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Aditya_Chopra"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anushka_Sharma|http://dbpedia.org/resource/Shah_Rukh_Khan|http://dbpedia.org/resource/Vinay_Pathak"}, "Published": {"type": "literal", "value": "2008-12-12"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "164"}, "Description": {"type": "literal", "value": "Rab Ne Bana Di Jodi (English: A Match Made By God) is a 2008 Indian romantic comedy film written and directed by Aditya Chopra and produced by Yash Chopra and Aditya Chopra under the banner Yash Raj Films. The film stars Shah Rukh Khan and Anushka Sharma. Khan plays a mild-mannered office worker named Surinder Sahni, whose love for the beautiful and vivacious Taani (Anushka Sharma) causes him to transform himself into the loud and fun-loving \"Raj\" to win her love. It was released worldwide on 12 December 2008 and marked Aditya Chopra's return to directing after an eight-year break, following his previous film, Mohabbatein. The film was not heavily promoted pre-release, contrary to previous Khan or Yash Raj films, mainly because of the filmmakers' decision to keep it low-profile because of the terror attacks in Mumbai. Upon release, the film received positive reviews and broke many box office records. It was declared a blockbuster despite the fact that it was released only two weeks after the 2008 Mumbai attacks, amidst uncertainty and apprehensions from the trade regarding market conditions at the time. At the end of its theatrical run, it grossed over \u20b91.58 billion (US$23 million) worldwide and was also the highest-grossing film of the year in the overseas market, thus becoming Yash Raj Films and Shahrukh Khan's highest-grossing film at the time of its release. The film's soundtrack was composed by Salim-Sulaiman, and it became the first Bollywood soundtrack to reach the top ten albums sales for the iTunes Store. The film's script was recognised by a number of critics and was invited to be included in the Margaret Herrick Library of the Academy of Motion Picture Arts and Sciences, just a day after its release. The script is accessible for research purposes only; students, filmmakers, writers and actors are among the regular patrons."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Macadam_Stories"}, "Title": {"type": "literal", "value": "Macadam Stories"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Samuel_Benchetrit"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gustave_Kervern|http://dbpedia.org/resource/Isabelle_Huppert|http://dbpedia.org/resource/Michael_Pitt|http://dbpedia.org/resource/Valeria_Bruni_Tedeschi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Macadam Stories (French: Asphalte) is a 2015 French comedy-drama film written and directed by Samuel Benchetrit, and based on the first volume of Benchetrit's autobiography Les Chroniques de l'Asphalte. The film was selected to be screened in the Special Screenings section at the 2015 Cannes Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/It_Takes_a_Man_and_a_Woman"}, "Title": {"type": "literal", "value": "It Takes a Man and a Woman"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Cathy_Garcia-Molina"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Isabelle_Daza|http://dbpedia.org/resource/John_Lloyd_Cruz|http://dbpedia.org/resource/Sarah_Geronimo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "127"}, "Description": {"type": "literal", "value": "It Takes a Man and a Woman is a 2013 Filipino romantic comedy film directed by Cathy Garcia-Molina and written by Carmi Raymundo. It is a sequel to two earlier films A Very Special Love (2008) and You Changed My Life (2009). John Lloyd Cruz and Sarah Geronimo reprise their roles as Miggy Montenegro and Laida Magtalas respectively. The film is set two years after their break-up which occurred in a depicted flashback scene following events (not shown) in the preceding film. Released in the Philippines on 30 March 2013, It Takes a Man and a Woman was a major commercial success. The film grossed PHP 405 million (est. $9.1 million; nominal values) after seven weeks in domestic theaters. It is the 2nd highest-grossing film and the highest-grossing Filipino film released in the Philippines in 2013. During the FAMAS Award in 2014, it received three nominations including Best Actor, Best Actress and Best Editing."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Star_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/72_Tenants_of_Prosperity"}, "Title": {"type": "literal", "value": "72 Tenants of Prosperity"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Eric_Tsang|http://dbpedia.org/resource/Patrick_Kong"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anita_Yuen|http://dbpedia.org/resource/Bernice_Liu|http://dbpedia.org/resource/Bosco_Wong|http://dbpedia.org/resource/Charmaine_Sheh|http://dbpedia.org/resource/Dicky_Cheung|http://dbpedia.org/resource/Eric_Tsang|http://dbpedia.org/resource/Jacky_Cheung|http://dbpedia.org/resource/Kate_Tsui|http://dbpedia.org/resource/Linda_Chung|http://dbpedia.org/resource/Michael_Tse|http://dbpedia.org/resource/Raymond_Lam|http://dbpedia.org/resource/Stephy_Tang|http://dbpedia.org/resource/Wayne_Lai|http://dbpedia.org/resource/Wong_Cho_Lam"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "72 Tenants of Prosperity (72\u5bb6\u79df\u5ba2) is a 2010 Hong Kong comedy film produced by the Shaw Brothers Studio, Television Broadcasts Limited, United Filmmakers Organization, Sil-Metropole Organisation and Sun Wah Media Group. It was directed by Eric Tsang and starred Tsang himself and various other actors. It was released in Hong Kong, Malaysia, Australia, and New Zealand on 11 February 2010. This film used the 1973 film The House of 72 Tenants as a blueprint. However, this story is a new creation, of which only some roles identical. This is the first film to introduce the new 2010 Shaw opening theme with a shortened version of the original fanfare. The film spoofs other movies such as Ip Man and Murderer, and makes references to Hong Kong culture and events that were figured in the media that year, such as the death of Michael Jackson and the Mong Kok acid attacks."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Intercontinental_Film_Distributors"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Killing_Winston_Jones"}, "Title": {"type": "literal", "value": "Killing Winston Jones"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Joel_David_Moore"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aly_Michalka|http://dbpedia.org/resource/Danny_Glover|http://dbpedia.org/resource/Danny_Masterson|http://dbpedia.org/resource/Joely_Fisher|http://dbpedia.org/resource/Jon_Heder|http://dbpedia.org/resource/Lesley-Ann_Brandt|http://dbpedia.org/resource/Lin_Shaye|http://dbpedia.org/resource/Richard_Dreyfuss|http://dbpedia.org/resource/Tyler_Labine"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "Killing Winston Jones is an upcoming American dark comedy film produced and distributed by RadioactiveGiant."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/RadioactiveGiant"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/A_Day_with_the_Meatball"}, "Title": {"type": "literal", "value": "A Day with the Meatball"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nicholaus_Goossen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Erinn_Bartlett|http://dbpedia.org/resource/J.D._Donaruma"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "2"}, "Description": {"type": "literal", "value": "A Day with the Meatball is a 2002 short comedy film directed by Nicholaus Goossen. It features Meatball, a bulldog owned by comedian Adam Sandler, who also starred in the short. It was released with Eight Crazy Nights during theatrical releases."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Family_United"}, "Title": {"type": "literal", "value": "Family United"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Daniel_S\u00e1nchez_Ar\u00e9valo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Antonio_de_la_Torre_(actor)|http://dbpedia.org/resource/Roberto_\u00c1lamo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Family United (Spanish: La gran familia espa\u00f1ola) is a 2013 Spanish comedy film directed by Daniel S\u00e1nchez Ar\u00e9valo."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mau_Mau_Maria"}, "Title": {"type": "literal", "value": "Mau Mau Maria"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jos\u00e9_Alberto_Pinheiro"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Portuguese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Mau Mau Maria is a 2014 Portuguese comedy film directed by Jos\u00e9 Alberto Pinheiro. It was released on 30 October 2014."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lammbock"}, "Title": {"type": "literal", "value": "Lammbock"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Christian_Z\u00fcbert"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alexandra_Neldel|http://dbpedia.org/resource/Elmar_Wepper|http://dbpedia.org/resource/Marie_Zielcke|http://dbpedia.org/resource/Moritz_Bleibtreu"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:German_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Lammbock is a 2001 German stoner film. The protagonists of the movie are two pizza delivery men who decide to up their income by adding marijuana to the menu and get into trouble after attracting the attention of an undercover cop. There are numerous subplots, and the movie is essentially split up into various chapters, each dealing with different episodes. It is filmed in and around the Franconian city of W\u00fcrzburg."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Angry_Babies_in_Love"}, "Title": {"type": "literal", "value": "Angry Babies in Love"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Saji_Surendran"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anoop_Menon|http://dbpedia.org/resource/Bhavana_(Malayalam_actress)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Angry Babies in Love is a 2014 Malayalam romantic comedy film directed by Saji Surendran and scripted by Krishna Poojappura. It stars Anoop Menon and Bhavana. The film, produced by Darshan Ravi under the banner of Demac Creations, has music composed by Bijibal and cinematography by Anil Nair. The film was released on 14 June 2014 and received mixed reviews from critics. The music label for the movie is Muzik247"}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/That_Thing_Called_Tadhana"}, "Title": {"type": "literal", "value": "That Thing Called Tadhana"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Antoinette_Jadaone"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Angelica_Panganiban|http://dbpedia.org/resource/JM_de_Guzman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Philippine_romantic_comedy_films|http://dbpedia.org/resource/Category:Star_Cinema_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "That Thing Called Tadhana (Official English: That Thing Called Meant-To-Be and Literal English: That Thing Called Fate) is a Filipino romantic comedy film starring Angelica Panganiban and JM de Guzman. Prior to its commercial release in 2015, it was an entry to the 2014 Cinema One Originals Film Festival where it earned top honors notably the Best Actress award for Panganiban. It is directed by critically acclaimed rookie director, Antoinette Jadaone who had worked with Panganiban in the 2014 comedy flick, Beauty in a Bottle. In upcoming parody in Regal Films named That Thing Called Tanga Na. The film met both commercial and critical success and is penned as the highest grossing Filipino independent film of all time yet breaching \u20b1134 million gross revenue in under 3 weeks, despite facing piracy issues online during its run. It has received an average rating of 8.8/10 in IMDB and a perfect five stars in local film review site ClickTheCity.com. Furthermore, it was graded \"A\" by the Cinema Evaluation Board and given a Rated PG by the MTRCB."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Star_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Scenes_from_a_Gay_Marriage"}, "Title": {"type": "literal", "value": "Scenes from a Gay Marriage"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Matt_Riddlehoover"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Domiziano_Arcangeli|http://dbpedia.org/resource/Jared_Allman|http://dbpedia.org/resource/Matt_Riddlehoover"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Scenes from a Gay Marriage (2012) is a romantic comedy film written and directed by Matt Riddlehoover, which was shot in Nashville, Tennessee. The film was successful enough to spawn a sequel, More Scenes from a Gay Marriage (2014)."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Clash_of_Egos"}, "Title": {"type": "literal", "value": "Clash of Egos"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tomas_Villum_Jensen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Nikolaj_Lie_Kaas|http://dbpedia.org/resource/Ulrich_Thomsen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Clash of Egos (Danish: Spr\u00e6ngfarlig bombe) is a 2006 Danish comedy film directed by Tomas Villum Jensen."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Island_Dreams_(film)"}, "Title": {"type": "literal", "value": "Island Dreams"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Aloy_Adlawan|http://dbpedia.org/resource/Gino_M._Santos"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Irma_Adlawan|http://dbpedia.org/resource/Louise_delos_Reyes"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Philippine_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Island Dreams is a 2013 Filipino romantic comedy film directed by Gino M. Santos and Aloy Adlawan, written by Adlawan, and starring Louise delos Reyes and Alexis Petitprez. It was an official selection in the 39th Metro Manila Film Festival under the New Wave Category and won the Most Gender-Sensitive Film Award."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Well_Wishes"}, "Title": {"type": "literal", "value": "Well Wishes"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Anderson_Boyd"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Shane_Callahan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Well Wishes is a 2015 American independent comedy film written and directed by Anderson Boyd, starring Shane Callahan, Anna Stromberg, Cullen Moss and Don Henderson Baker. The film was released digitally on May 10, 2016 and began streaming on Netflix in the United States, Canada, France, United Kingdom, Italy, and Japan on July 1, 2016."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sorority_Wars"}, "Title": {"type": "literal", "value": "Sorority Wars"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Hayman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amanda_Schull|http://dbpedia.org/resource/Courtney_Thorne-Smith|http://dbpedia.org/resource/Faith_Ford|http://dbpedia.org/resource/Lucy_Hale|http://dbpedia.org/resource/Phoebe_Strole|http://dbpedia.org/resource/Rob_Mayes"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Sorority Wars, is a 2009 American made-for-television film that aired on Lifetime, starring Lucy Hale, Phoebe Strole, Amanda Schull, Chelan Simmons, and Faith Ford. It was directed by James Hayman and filmed in Vancouver."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Nepal_Forever"}, "Title": {"type": "literal", "value": "Nepal Forever"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alyona_Polunina"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Russian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Nepal Forever (Russian: \u041d\u0435\u043f\u0430\u043b \u0444\u043e\u0440\u0435\u0432\u0430) is a 2013 documentary comedy by Russian filmmaker Alyona Polunina."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Take_This_Waltz_(film)"}, "Title": {"type": "literal", "value": "Take This Waltz"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sarah_Polley"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Luke_Kirby|http://dbpedia.org/resource/Michelle_Williams_(actress)|http://dbpedia.org/resource/Sarah_Silverman|http://dbpedia.org/resource/Seth_Rogen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Canadian_comedy-drama_films|http://dbpedia.org/resource/Category:Japanese_comedy_films|http://dbpedia.org/resource/Category:Spanish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "Take This Waltz is a 2011 drama film. The film centers on Margot, a 28-year-old freelance writer who lives in a charming house on a leafy street in Toronto's Little Portugal neighbourhood, as she struggles with and examines her feelings for Lou, her husband of five years, while exploring a new relationship with Daniel, an artist and rickshaw driver who lives across the street. This is the second full-length film directed by Sarah Polley. The cast includes Michelle Williams, Seth Rogen, Sarah Silverman, and Luke Kirby."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Magnolia_Pictures|http://dbpedia.org/resource/Mongrel_Media"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Krampus_(film)"}, "Title": {"type": "literal", "value": "Krampus"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Dougherty"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Scott_(actor)|http://dbpedia.org/resource/Allison_Tolman|http://dbpedia.org/resource/Conchata_Ferrell|http://dbpedia.org/resource/David_Koechner|http://dbpedia.org/resource/Emjay_Anthony|http://dbpedia.org/resource/Stefania_LaVie_Owen|http://dbpedia.org/resource/Toni_Collette"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:Comedy_thriller_films|http://dbpedia.org/resource/Category:Horror_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Krampus is a 2015 American Christmas comedy horror film based upon the eponymous character from Germanic folklore, directed by Michael Dougherty and written by Dougherty, Todd Casey and Zach Shields. The film stars Adam Scott, Toni Collette, David Koechner, Allison Tolman, Conchata Ferrell, Emjay Anthony, Stefania LaVie Owen and Krista Stadler. It was released in the United States on December 4, 2015, by Universal Pictures."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Legendary_Pictures"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Art_of_Love_(2011_film)"}, "Title": {"type": "literal", "value": "The Art of Love"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Emmanuel_Mouret"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Emmanuel_Mouret|http://dbpedia.org/resource/Fran\u00e7ois_Cluzet|http://dbpedia.org/resource/Pascale_Arbillot"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "The Art of Love (French: L'Art d'aimer) is a 2011 French comedy film directed and written by Emmanuel Mouret. The film stars Mouret himself, Pascale Arbillot, Ariane Ascaride, Fr\u00e9d\u00e9rique Bel, Fran\u00e7ois Cluzet, Julie Depardieu, Judith Godr\u00e8che, Stanislas Merhar, Elodie Navarre, Laurent Stocker and Gaspard Ulliel, and is narrated by Philippe Torreton. The Art of Love premiered at the Locarno International Film Festival on 7 August 2011. Although it garnered rather mixed reviews by film critics, it won the Best Screenplay Award at the Montr\u00e9al World Film Festival, and the Foreign Press Award at Filmfest Hamburg."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Premium_(film)"}, "Title": {"type": "literal", "value": "Premium"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pete_Chatmon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dorian_Missick|http://dbpedia.org/resource/Eva_Pigford|http://dbpedia.org/resource/Frankie_Faison|http://dbpedia.org/resource/Hill_Harper|http://dbpedia.org/resource/William_Sadler_(actor)|http://dbpedia.org/resource/Zoe_Saldana"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Premium is a 2006 romantic comedy-drama film written and directed by Pete Chatmon."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/CodeBlack_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mother/Daughter"}, "Title": {"type": "literal", "value": "Mother/Daughter"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jonathan_Levine"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amy_Schumer|http://dbpedia.org/resource/Christopher_Meloni|http://dbpedia.org/resource/Goldie_Hawn|http://dbpedia.org/resource/Ike_Barinholtz|http://dbpedia.org/resource/Oscar_Jaenada|http://dbpedia.org/resource/Wanda_Sykes"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Mother/Daughter is an upcoming American comedy film directed by Jonathan Levine and written by Amy Schumer, Katie Dippold, and Kim Caramele. The film stars Schumer and Goldie Hawn along with an ensemble cast that includes Christopher Meloni, Ike Barinholtz, Oscar Jaenada, and Wanda Sykes."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/That_Girl_in_Pinafore"}, "Title": {"type": "literal", "value": "That Girl in Pinafore"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chai_Yee_Wei"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Daren_Tan|http://dbpedia.org/resource/Hayley_Woo|http://dbpedia.org/resource/Jayley_Woo|http://dbpedia.org/resource/Julie_Tan|http://dbpedia.org/resource/Kelvin_Mun|http://dbpedia.org/resource/Kenny_Khoo|http://dbpedia.org/resource/Seah_Jiaqing|http://dbpedia.org/resource/Xavier_Ong"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Singaporean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "That Girl in Pinafore (Chinese: \u6211\u7684\u670b\u53cb, \u6211\u7684\u540c\u5b66, \u6211\u7231\u8fc7\u7684\u4e00\u5207; literally: \"My friend, my classmate, all that I've ever loved\") is a 2013 Singaporean comedy-musical film directed by Chai Yee Wei and starring Daren Tan, Julie Tan, Hayley Woo, Jayley Woo, Kenny Khoo, Seah Jiaqing and Kelvin Mun ."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Inkwell"}, "Title": {"type": "literal", "value": "The Inkwell"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Matty_Rich"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Glynn_Turman|http://dbpedia.org/resource/Joe_Morton|http://dbpedia.org/resource/Larenz_Tate|http://dbpedia.org/resource/Suzzanne_Douglas"}, "Published": {"type": "literal", "value": "1994-04-22"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "The Inkwell is a 1994 romantic comedy/drama film, directed by Matty Rich. The film stars Larenz Tate, Joe Morton, Suzzanne Douglass, Glynn Turman, Jada Pinkett Smith and Vanessa Bell Calloway."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Grow_Up,_Tony_Phillips"}, "Title": {"type": "literal", "value": "Grow Up, Tony Phillips"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Emily_Hagins"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Grow Up, Tony Phillips is a 2013 comedy film by American director Emily Hagins and her fourth feature film. It was first released on October 31, 2013 at the South by Southwest film festival and stars Tony Vespe as Tony Phillips, a young teenager's love for Halloween. Unlike her prior feature-length films, Grow Up, Tony Phillips does not feature any supernatural elements seen in past films such as Pathogen or My Sucky Teen Romance."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Secret_Life_of_Happy_People"}, "Title": {"type": "literal", "value": "The Secret Life of Happy People"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/St\u00e9phane_Lapointe"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Catherine_de_L\u00e9an|http://dbpedia.org/resource/Gilbert_Sicotte|http://dbpedia.org/resource/Marc_Paquet"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "The Secret Life of Happy People (French: La vie secr\u00e8te des gens heureux) is a 2006 Canadian comedy-drama film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Christal_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Shaukeens"}, "Title": {"type": "literal", "value": "The Shaukeens"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Abhishek_Sharma"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Akshay_Kumar|http://dbpedia.org/resource/Annu_Kapoor|http://dbpedia.org/resource/Anupam_Kher|http://dbpedia.org/resource/Lisa_Haydon|http://dbpedia.org/resource/Piyush_Mishra"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films|http://dbpedia.org/resource/Category:Indian_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "125"}, "Description": {"type": "literal", "value": "The Shaukeens is a 2014 Indian comedy film directed by Abhishek Sharma. The film features Anupam Kher, Annu Kapoor, Piyush Mishra and Lisa Haydon in the lead roles and Akshay Kumar in a supporting role. The project is a remake of the 1982 film Shaukeen directed by Basu Chatterjee, starring Ashok Kumar, Utpal Dutt, A. K. Hangal, Rati Agnihotri and Mithun Chakraborty. Partly shot in Mauritius, The Shaukeens was released on 7 November 2014."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sleeping_Princess_(film)"}, "Title": {"type": "literal", "value": "Sleeping Princess"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/\u00c7a\u011fan_Irmak"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "Sleeping Princess (Turkish: Prensesin Uykusu) is a 2010 Turkish comedy-drama film written and directed by \u00c7a\u011fan Irmak about a librarian whose quiet life is changed by a new neighbour and her 10-year-old daughter. The film, which went on nationwide general release across Turkey on October 19, 2010, had its world premiere on the opening night of the 16th London Turkish Film Festival (November 4\u201318, 2010)."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/A_Very_Harold_&_Kumar_3D_Christmas"}, "Title": {"type": "literal", "value": "A Very Harold & Kumar 3D Christmas"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Todd_Strauss-Schulson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amir_Blumenfeld|http://dbpedia.org/resource/Danneel_Harris|http://dbpedia.org/resource/Danny_Trejo|http://dbpedia.org/resource/John_Cho|http://dbpedia.org/resource/Kal_Penn|http://dbpedia.org/resource/Neil_Patrick_Harris|http://dbpedia.org/resource/Paula_Garc\u00e9s"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "A Very Harold & Kumar 3D Christmas is a 2011 3D stoner comedy Christmas film directed by Todd Strauss-Schulson, written by Jon Hurwitz and Hayden Schlossberg, and starring John Cho, Kal Penn, and Neil Patrick Harris. It is a sequel to the 2008 film Harold & Kumar Escape from Guantanamo Bay and the third installment of the Harold & Kumar series. The plot follows Harold (Cho) and Kumar (Penn), two estranged friends who embark on an adventure to find a new Christmas tree after Kumar destroys the original. The film was released on November 4, 2011, and is the first installment of the series to be shown in 3D."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros._Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Brother's_Justice"}, "Title": {"type": "literal", "value": "Brother's Justice"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_Palmer_(film_maker)|http://dbpedia.org/resource/Dax_Shepard"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dax_Shepard"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "Brother's Justice is a 2010 comedy film written by Dax Shepard. Brother's Justice is a satirical mockumentary about Dax Shepard's transformation from comedian to a silver screen martial arts star. Shepard exploits any and all Hollywood connections on his quest to become the next Chuck Norris. The film represents the unglorified Hollywood film producing process; Dax's constant failure warranted a unique enough plot to win an Austin Film Festival award. Despite its low budget, Brother's Justice was made available on demand. It also stars Ashton Kutcher, Tom Arnold, Bradley Cooper, David Koechner, Jon Favreau, and Nate Tuck."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/All_About_My_Wife"}, "Title": {"type": "literal", "value": "All About My Wife"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Min_Kyu-dong"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Im_Soo-jung_(actress)|http://dbpedia.org/resource/Lee_Sun-kyun|http://dbpedia.org/resource/Ryu_Seung-ryong"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "121"}, "Description": {"type": "literal", "value": "All About My Wife (Hangul: \ub0b4 \uc544\ub0b4\uc758 \ubaa8\ub4e0 \uac83; RR: Nae anaeui modeun geot; MR: Nae anae \u016di mod\u016dn k\u014ft) is a 2012 South Korean romantic comedy directed by Min Kyu-dong, about a timid husband who hires a professional Casanova to seduce his seemingly perfect but fearsome wife, hoping this will make her divorce him. Starring Im Soo-jung, Lee Sun-kyun and Ryu Seung-ryong, the movie was released in theaters on May 17, 2012. It is a remake of the Argentinean film Un novio para mi mujer (\"A Boyfriend for My Wife\")."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Haggard:_The_Movie"}, "Title": {"type": "literal", "value": "Haggard: The Movie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bam_Margera"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bam_Margera|http://dbpedia.org/resource/Brandon_DiCamillo|http://dbpedia.org/resource/Raab_Himself|http://dbpedia.org/resource/Rake_Yohn|http://dbpedia.org/resource/Ryan_Dunn"}, "Published": {"type": "literal", "value": "2003-06-24"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "Haggard: The Movie is a 2003 American independent comedy film based on the true story of how reality television personality Ryan Dunn's promiscuous girlfriend cheated on him. The film was financed, directed and produced by Bam Margera."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Big_Hero_6_(film)"}, "Title": {"type": "literal", "value": "Big Hero 6"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Williams_(director)|http://dbpedia.org/resource/Don_Hall_(filmmaker)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alan_Tudyk|http://dbpedia.org/resource/Damon_Wayans,_Jr.|http://dbpedia.org/resource/Daniel_Henney|http://dbpedia.org/resource/G\u00e9nesis_Rodr\u00edguez|http://dbpedia.org/resource/James_Cromwell|http://dbpedia.org/resource/Jamie_Chung|http://dbpedia.org/resource/Maya_Rudolph|http://dbpedia.org/resource/Ryan_Potter|http://dbpedia.org/resource/Scott_Adsit|http://dbpedia.org/resource/T._J._Miller"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films|http://dbpedia.org/resource/Category:Animated_comedy_films|http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Big Hero 6 is a 2014 American 3D computer-animated superhero-comedy film produced by Walt Disney Animation Studios and released by Walt Disney Pictures. It is the 54th Disney animated feature film. The film is based on the Marvel Comics superhero team of the same name. Directed by Don Hall and Chris Williams, the film tells the story of a young robotics prodigy named Hiro Hamada who forms a superhero team to combat a masked villain. The film features the voices of Scott Adsit, Ryan Potter, Daniel Henney, T. J. Miller, Jamie Chung, Damon Wayans, Jr., G\u00e9nesis Rodr\u00edguez, Alan Tudyk, James Cromwell, and Maya Rudolph. Big Hero 6 is the first Disney animated film to feature Marvel Comics characters, whose parent company was acquired by The Walt Disney Company in 2009. Walt Disney Animation Studios created new software technology to produce the film's animated visuals. Big Hero 6 premiered at the 27th Tokyo International Film Festival on October 23, 2014, and at the Abu Dhabi Film Festival on October 31; it was theatrically released in the Disney Digital 3-D and RealD 3D formats in the United States on November 7, 2014. The film was met with both critical and commercial success, grossing over $657 million worldwide and becoming the highest-grossing animated film of 2014. It won the Academy Award for Best Animated Feature and the Kids' Choice Award for Favorite Animated Movie. It also received nominations for the Annie Award for Best Animated Feature, the Golden Globe Award for Best Animated Feature Film, and the BAFTA Award for Best Animated Film. Big Hero 6 was released on DVD and Blu-ray Disc on February 24, 2015."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Size_Zero_(film)"}, "Title": {"type": "literal", "value": "Inji Iduppazhagi / Size Zero"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Prakash_Kovelamudi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Akhil_(actor)|http://dbpedia.org/resource/Anushka_Shetty|http://dbpedia.org/resource/Pavani_Gangireddy|http://dbpedia.org/resource/Prakash_Raj|http://dbpedia.org/resource/Sonal_Chauhan|http://dbpedia.org/resource/Urvashi_(actress)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_romantic_comedy_films|http://dbpedia.org/resource/Category:Romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "125"}, "Description": {"type": "literal", "value": "Size Zero, titled Inji Iduppazhagi in Tamil (English: One Inch Waist Beauty), is an 2015 Indian Tamil and Telugu bilingual romantic comedy film directed by Prakash Kovelamudi. The film was simultaneously made in Telugu and Tamil. Produced by Prasad V Potluri, the film features Anushka Shetty in the lead role while Arya, Urvashi, Prakash Raj and Sonal Chauhan play supporting roles."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/PVP_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Maheshinte_Prathikaaram"}, "Title": {"type": "literal", "value": "Maheshinte Prathikaaram"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dileesh_Pothan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alencier_Ley_Lopez|http://dbpedia.org/resource/Anusree|http://dbpedia.org/resource/Aparna_Balamurali|http://dbpedia.org/resource/Fahadh_Faasil|http://dbpedia.org/resource/Soubin_Shahir"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Comedy_films_based_on_actual_events|http://dbpedia.org/resource/Category:Indian_comedy-drama_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "Maheshinte Prathikaaram (English: The Revenge of Mahesh) is a 2016 Indian Malayalam-language comedy-drama film directed by Dileesh Pothan (in his directorial debut) and produced by Aashiq Abu. The film stars Fahadh Faasil, Anusree, Alencier Ley Lopez, Aparna Balamurali, and Soubin Shahir. Written by Syam Pushkaran, its story is based on an incident in the life of Thampan Purushan from Thuravoor, Cherthala. Shyju Khalid was the film's cinematographer, and its soundtrack and score were composed by Bijibal. The film tells the story of Mahesh Bhavana (Faasil), a photographer, who attempts to defuse a conflict between his friend Crispin (Shahir) and a group of youngsters passing through their village, and is knocked to the ground. Defeated in the tussle and unable to fight back, he is embarrassed in front of his neighbours. Mahesh publicly vows that he will not wear his slippers again until he has avenged the humiliation. Maheshinte Prathikaaram's development began in 2013, when Pothan was working as an associate director for Abu (who was directing Idukki Gold, co-written by Pushkaran). Pushkaran suggested a story idea to Pothan which was based on an incident in his native village. At Pothan's insistence, Pushkaran wrote the first draft of a screenplay that year and Abu later became interested in producing the film. Production was scheduled to commence from December 2014 after completing the casting process. Due to scheduling conflicts with Faasil's other projects, it was postponed to August 2015. Principal photography began in early August in Idukki and nearby locations, where it was predominantly filmed. Shooting was completed in late October. The film was released in Kerala on 5 February 2016, in the rest of India on 12 February and globally on 26 February. Maheshinte Prathikaaram was a commercial success, grossing \u20b917.35 crore (\u20b9173.5 million) at the Kerala box office. The performances of its cast, humour, music, cinematography, editing, and screenplay were praised by critics. The film was released on Blu-ray and DVD on 10 May 2016."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/National_Lampoon's_Vacation_(film_series)"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Amy_Heckerling|http://dbpedia.org/resource/Harold_Ramis|http://dbpedia.org/resource/Jeremiah_Chechik|http://dbpedia.org/resource/John_Francis_Daley|http://dbpedia.org/resource/Jonathan_Goldstein_(screenwriter)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Beverly_D'Angelo|http://dbpedia.org/resource/Chevy_Chase"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Comedy_films_by_series"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The National Lampoon's Vacation film series is a comedy film series initially based on John Hughes' short story \"Vacation '58\" that was originally published by National Lampoon magazine. The series is distributed by Warner Bros. and consists of seven films, two of which are not sponsored by National Lampoon. In recent years, the series has been the inspiration for various advertising campaigns featuring some of the original cast members. The series portrays the misadventures of the Griswold family, whose attempts to enjoy vacations and holidays are plagued with continual disasters and strangely embarrassing predicaments."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Wild_Child_(film)"}, "Title": {"type": "literal", "value": "Wild Child"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nick_Moore_(film_director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aidan_Quinn|http://dbpedia.org/resource/Alex_Pettyfer|http://dbpedia.org/resource/Emma_Roberts|http://dbpedia.org/resource/Juno_Temple|http://dbpedia.org/resource/Kimberley_Nixon|http://dbpedia.org/resource/Linzey_Cocker|http://dbpedia.org/resource/Natasha_Richardson|http://dbpedia.org/resource/Sophie_Wu"}, "Published": {"type": "literal", "value": "2008-08-15"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:British_comedy-drama_films|http://dbpedia.org/resource/Category:British_comedy_films|http://dbpedia.org/resource/Category:French_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy_films|http://dbpedia.org/resource/Category:Teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Wild Child is a 2008 British-French-American teen romantic comedy film starring Emma Roberts, Georgia King, Alex Pettyfer and Natasha Richardson. Wild Child is Richardson's last on-screen film appearance."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/May_(film)"}, "Title": {"type": "literal", "value": "May"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lucky_McKee"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Angela_Bettis|http://dbpedia.org/resource/Anna_Faris|http://dbpedia.org/resource/James_Duval|http://dbpedia.org/resource/Jeremy_Sisto"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "May is a 2002 American psychological horror film written and directed by Lucky McKee in his directorial debut. Starring Angela Bettis, Jeremy Sisto, Anna Faris, and James Duval, the film follows a lonely young woman (Bettis) traumatized by a difficult childhood, and her increasingly desperate attempts to connect with the people around her."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lions_Gate_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Shaandaar"}, "Title": {"type": "literal", "value": "Shaandaar"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Vikas_Bahl"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alia_Bhatt|http://dbpedia.org/resource/Shahid_Kapoor"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "144"}, "Description": {"type": "literal", "value": "Shaandaar (tr. Magnificent) is an Indian romantic-comedy film, directed by Vikas Bahl and produced by Anurag Kashyap and Vikramaditya Motwane. It stars Alia Bhatt and Shahid Kapoor in lead roles, with Pankaj Kapur and Sanjay Kapoor in supporting roles. The Times of India described Shaandar as \"India's first destination wedding film\". Principal photography began in August 2014 in Leeds, and the film released on 22 October 2015."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Star_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ultra_Reinforcement"}, "Title": {"type": "literal", "value": "Ultra Reinforcement"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lam_Chi-chung"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cheung_Tat-ming|http://dbpedia.org/resource/Dylan_Kuo|http://dbpedia.org/resource/Jing_Tian|http://dbpedia.org/resource/Wallace_Huo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Chinese_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Ultra Reinforcement is a 2012 Chinese historical romantic comedy film directed and written by Lam Chi-chung, starring Wallace Huo, Jing Tian, Dylan Kuo, and Cheung Tat-ming. The film was released in China on 24 January 2012."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bran_Nue_Dae_(film)"}, "Title": {"type": "literal", "value": "Bran Nue Dae"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rachel_Perkins"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ernie_Dingo|http://dbpedia.org/resource/Geoffrey_Rush|http://dbpedia.org/resource/Jessica_Mauboy|http://dbpedia.org/resource/Missy_Higgins|http://dbpedia.org/resource/Rocky_McKenzie"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_musical_comedy_films|http://dbpedia.org/resource/Category:Australian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Bran Nue Dae is a 2009 Australian musical comedy-drama film directed by Rachel Perkins and written by Perkins and Reg Cribb. A feature film adaptation of the 1990 stage musical Bran Nue Dae by Jimmy Chi, the film tells the story of the coming of age of an Aboriginal Australian teenager on a road trip in the late 1960s."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Freestyle_Releasing|http://dbpedia.org/resource/Roadshow_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Film_Victoria|http://dbpedia.org/resource/Robyn_Kershaw|http://dbpedia.org/resource/Screen_Australia"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Where_Do_We_Go_Now%3F"}, "Title": {"type": "literal", "value": "Where Do We Go Now?"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nadine_Labaki"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "Where Do We Go Now? (Arabic: \u0648\u0647\u0644\u0651\u0623 \u0644\u0648\u064a\u0646\u061f w halla' la wayn\u200e\u200e, French: Et maintenant, on va o\u00f9) is a 2011 film by Lebanese director Nadine Labaki. The film premiered during the 2011 Cannes Film Festival as part of Un Certain Regard . The film was selected to represent Lebanon for the 84th Academy Awards, but it did not make the final shortlist. The film won the People's Choice Award at the 2011 Toronto International Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/American_High_School_(film)"}, "Title": {"type": "literal", "value": "American High School"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sean_Patrick_Cannon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alex_Murrel|http://dbpedia.org/resource/Aubrey_O'Day|http://dbpedia.org/resource/Brian_Drolet|http://dbpedia.org/resource/Davida_Williams|http://dbpedia.org/resource/Jillian_Murray|http://dbpedia.org/resource/Martin_Klebba|http://dbpedia.org/resource/Talan_Torriero"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "American High School is a 2009 direct-to-DVD coming-of-age romantic comedy film written and directed by Sean Patrick Cannon and starring Jillian Murray, Aubrey O'Day, Talan Torriero and Martin Klebba. It was released on April 7, 2009 in the US. Trini Lopez makes a guest appearance as the performer at the Prom."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Anchor_Bay_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/George_in_Civvy_Street"}, "Title": {"type": "literal", "value": "George in Civvy Street"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Henry|http://dbpedia.org/resource/Marcel_Varnel"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/George_Formby|http://dbpedia.org/resource/Ian_Fleming_(actor)|http://dbpedia.org/resource/Ronald_Shiner|http://dbpedia.org/resource/Rosalyn_Boulter"}, "Published": {"type": "literal", "value": "1946-07-08"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1940s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "George in Civvy Street is a 1946 British comedy film directed and produced by Marcel Varnel and stars George Formby, Ronald Shiner, and Ian Fleming. It was made by the British subsidiary of Columbia Pictures. This was Formby's last big screen appearance. After the film flopped at the box office, he resumed his career in the music hall. The working title for the film was \"Remember the Unicorn\"."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures_Corporation"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Can_of_Worms_(film)"}, "Title": {"type": "literal", "value": "Can of Worms"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Paul_Schneider_(director)"}, "Author": {"type": "literal", "value": "http://dbpedia.org/resource/Kathy_Mackel"}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Wylie|http://dbpedia.org/resource/Erika_Christensen|http://dbpedia.org/resource/Michael_Shulman_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Can of Worms is a science fiction comedy film and is part of the Disney Channel Original Movie lineup. It premiered on Disney Channel on April 10, 1999, and is based on the novel of the same name by Kathy Mackel, which was a Young Reader's Choice Nominee in 2002 and a nominee for the 2001 Rhode Island Children's Book Award."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Disney-ABC_Domestic_Television"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Park_(2007_film)"}, "Title": {"type": "literal", "value": "The Park"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Yin_Lichuan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Li_Kezhu|http://dbpedia.org/resource/Wang_Deshun|http://dbpedia.org/resource/Wang_Xuebing|http://dbpedia.org/resource/Xu_Tao"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "The Park is the 2007 directorial debut of Chinese writer-director Yin Lichuan. Produced by Filmblog Media (which also handled international distribution) and Beijing Wide Angle Lens, the comedy-drama film is part of producer Lola Zhang's Yunnan New Film Project, ten proposed films by female Chinese directors. The Park is the second of the ten to be released, after Wang Fen's The Case (2007). Each of the films was required to take place in the southern province of Yunnan. The Park tells the story of a father's reconnection with his daughter after he moves in with her in the provincial capital of Kunming. Upset over her relationship with a younger man with no job prospects, he begins to tout her name in a local park to other elderly parents looking to marry off their children."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Filmblog_Media"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Live_Feed"}, "Title": {"type": "literal", "value": "Live Feed"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ryan_Nicholson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "81"}, "Description": {"type": "literal", "value": "Live Feed is a 2006 horror film directed by Ryan Nicholson and starring Kevan Ohtsji, Taayla Markell and Stephen Chang."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Swinging_with_the_Finkels"}, "Title": {"type": "literal", "value": "Swinging with the Finkels"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jonathan_Newman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Mandy_Moore|http://dbpedia.org/resource/Martin_Freeman|http://dbpedia.org/resource/Melissa_George"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Swinging with the Finkels is a 2011 British comedy film directed by Jonathan Newman, starring Mandy Moore, Martin Freeman and Melissa George. A wealthy London couple decide to take up \"swinging\" (as in \"partner swapping\") in an attempt to save their struggling marriage. It was picked up by Freestyle Releasing and had a limited release date in the United States on 26 August 2011."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Freestyle_Releasing"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Our_Futures"}, "Title": {"type": "literal", "value": "Our Futures"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/R\u00e9mi_Bezan\u00e7on"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/M\u00e9lanie_Bernier|http://dbpedia.org/resource/Pierre_Rochefort|http://dbpedia.org/resource/Pio_Marma\u00ef"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Our Futures (French: Nos futurs) is a 2015 French comedy-drama film directed by R\u00e9mi Bezan\u00e7on. The film stars Pio Marma\u00ef, Pierre Rochefort and M\u00e9lanie Bernier."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Gaumont_Film_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Brief_Interviews_with_Hideous_Men_(film)"}, "Title": {"type": "literal", "value": "Brief Interviews with Hideous Men"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/John_Krasinski"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Julianne_Nicholson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "Brief Interviews with Hideous Men is a 2009 American comedy-drama film written, produced, and directed by John Krasinski, based on a short story collection of the same name by David Foster Wallace."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/For_a_Good_Time,_Call..."}, "Title": {"type": "literal", "value": "For a Good Time, Call..."}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jamie_Travis"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ari_Graynor|http://dbpedia.org/resource/James_Wolk|http://dbpedia.org/resource/Justin_Long|http://dbpedia.org/resource/Lauren_Miller|http://dbpedia.org/resource/Mark_Webber_(actor)|http://dbpedia.org/resource/Mimi_Rogers|http://dbpedia.org/resource/Nia_Vardalos|http://dbpedia.org/resource/Stephanie_Beard"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85|87"}, "Description": {"type": "literal", "value": "For a Good Time, Call... is a 2012 American comedy film directed by Jamie Travis. It stars Ari Graynor, Lauren Miller, Justin Long, Sugar Lyn Beard, Mimi Rogers, Nia Vardalos, Mark Webber, and James Wolk. The film premiered at the Sundance Film Festival in January, 2012 where it secured a worldwide distribution deal with Focus Features. It was released theatrically in the United States on August 31, 2012."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Focus_Features"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Love_Is_in_the_Air_(2005_film)"}, "Title": {"type": "literal", "value": "Love Is in the Air"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/R\u00e9mi_Bezan\u00e7on"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gilles_Lellouche|http://dbpedia.org/resource/Marion_Cotillard|http://dbpedia.org/resource/Vincent_Elbaz"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "Love Is in the Air (French: Ma vie en l'air) is a 2006 French comedy film directed by R\u00e9mi Bezan\u00e7on."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Viva_l'Italia"}, "Title": {"type": "literal", "value": "Viva l'Italia"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Massimiliano_Bruno"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ambra_Angiolini|http://dbpedia.org/resource/Raoul_Bova"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Viva l'Italia is a 2012 Italian comedy film written and directed by Massimiliano Bruno."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Fubar_2"}, "Title": {"type": "literal", "value": "FUBAR 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Dowse"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "FUBAR 2 (also known as FUBAR: Balls to the Wall or FUBAR: Gods of Blunder) is a 2010 comedy film and the sequel to the 2002 cult film FUBAR. It was released on October 1, 2010 in Canada. It made its world premiere by opening the Midnight Madness program at the 2010 Toronto International Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Alliance_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Extreme_Adventures_of_Super_Dave"}, "Title": {"type": "literal", "value": "The Extreme Adventures of Super Dave"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Peter_MacDonald_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bob_Einstein"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "The Extreme Adventures of Super Dave is a 2000 comedy film starring the comedian Bob Einstein as Super Dave Osborne. The movie went direct to DVD."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Vampires_of_Bloody_Island"}, "Title": {"type": "literal", "value": "The Vampires of Bloody Island"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Allin_Kempthorne"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "The Vampires of Bloody Island is a 2009 British comedy horror film directed by Allin Kempthorne and starring his wife Pamela Kempthorne who had previously appeared in Harry Potter and the Chamber of Secrets and Shaun of the Dead. The film also starred Oliver Gray, John Snelling and Leon Hamilton. The film was released in the UK at the cinema in August 2009. It was released on DVD in January 2010 several weeks ahead of its planned February release date due to an email campaign organised by fans of the film. It was released on DVD in the US in June 2010. The Vampires of Bloody Island features music from the bands Inkubus Sukkubus, Vampire Division, Fever, Theatres des Vampires, The Suburban Vamps and Corpse Nocturna. The title song is Place of the Dead by Vampire Division, which reached number one in the Goth Soundclick charts."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/My_Little_Pony:_Equestria_Girls_\u2013_Rainbow_Rocks"}, "Title": {"type": "literal", "value": "My Little Pony: Equestria Girls \u2013 Rainbow Rocks"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jayson_Thiessen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andrea_Libman|http://dbpedia.org/resource/Ashleigh_Ball|http://dbpedia.org/resource/Cathy_Weseluck|http://dbpedia.org/resource/Diana_Kaarina|http://dbpedia.org/resource/Kazumi_Evans|http://dbpedia.org/resource/Maryke_Hendrikse|http://dbpedia.org/resource/Rebecca_Shoichet|http://dbpedia.org/resource/Tabitha_St._Germain|http://dbpedia.org/resource/Tara_Strong"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "71"}, "Description": {"type": "literal", "value": "My Little Pony: Equestria Girls \u2013 Rainbow Rocks is a 2014 American-Canadian animated fantasy musical film produced by DHX Media's 2D animation studio in Vancouver, Canada for Hasbro Studios in the United States, as a sequel to 2013's My Little Pony: Equestria Girls. The film is a part of music-themed Rainbow Rocks lineup, launched in the same year by Hasbro as a second installment in the Equestria Girls toy line and media franchise which is a spin-off of My Little Pony. Written by Meghan McCarthy and directed by Jayson Thiessen, the film premiered in select theaters across the United States and Canada on September 27, 2014, which was followed by broadcast on Discovery Family, a joint venture between Discovery Communications and Hasbro, on October 17, 2014, and then a home media release on October 28, 2014. Like the first film, Rainbow Rocks re-envisions the main characters of parent franchise, normally ponies, as teenage human characters in a high school setting. Set between the television series' fourth and fifth seasons, the film's plot involves Twilight Sparkle returning to Canterlot High School to compete in a Battle of the Bands alongside her human friends \u2013 including Sunset Shimmer, reformed from her previous state \u2013 to save the school from a band of sirens from Equestria. Critical reviews have usually been positive, with the film being described as \"far superior\" to the first installment. Within the franchise, a third installment, entitled Friendship Games, received a television network premiere on Discovery Family on September 26, 2015. A fourth film, subtitled Legend of Everfree, was released on Netflix on October 1, 2016."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Screenvision"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Hasbro_Studios|http://dbpedia.org/resource/Studio_B_Productions"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Igor_(film)"}, "Title": {"type": "literal", "value": "Igor"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tony_Leondis"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Arsenio_Hall|http://dbpedia.org/resource/Christian_Slater|http://dbpedia.org/resource/Eddie_Izzard|http://dbpedia.org/resource/Jay_Leno|http://dbpedia.org/resource/Jennifer_Coolidge|http://dbpedia.org/resource/John_Cleese|http://dbpedia.org/resource/John_Cusack|http://dbpedia.org/resource/Molly_Shannon|http://dbpedia.org/resource/Sean_Hayes_(actor)|http://dbpedia.org/resource/Steve_Buscemi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Fantasy-comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Igor is a 2008 French-American computer-animated fantasy comedy family film about the stock character Igor who dreams of winning first place at the Evil Science Fair. It was produced by Exodus Film Group and animated by Sparx Animation Studios. Metro-Goldwyn-Mayer released it on September 19, 2008, and it grossed $30.7 million on a $25 million budget. It is MGM's first fully computer-animated film. It was directed by Tony Leondis and written by Chris McKenna, John Hoffman and Dimitri Toscas. The film features the voices of John Cusack, Molly Shannon, Steve Buscemi, Sean Hayes, Jennifer Coolidge, Arsenio Hall, Eddie Izzard, Jay Leno, Christian Slater and John Cleese. The film received an Annie Award nomination for Character Design in an Animated Feature Production."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Metro-Goldwyn-Mayer"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tiny_Times_4"}, "Title": {"type": "literal", "value": "Tiny Times 4"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Guo_Jingming"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amber_Kuo|http://dbpedia.org/resource/Bea_Hayden|http://dbpedia.org/resource/Chen_Xuedong|http://dbpedia.org/resource/Xie_Yilin|http://dbpedia.org/resource/Yang_Mi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Chinese_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "Tiny Times 4 (Chinese: \u5c0f\u65f6\u4ee34\uff1a\u7075\u9b42\u5c3d\u5934) is a 2015 Chinese comedy romance film directed by Guo Jingming. Originally scheduled for release in February 2015; it was delayed to July 2015. Ko Chen-tung's scenes were edited out from the film due to his drug use in September 2014."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Me,_Myself_and_Her"}, "Title": {"type": "literal", "value": "Me, Myself and Her"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Maria_Sole_Tognazzi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Fabrizio_Bentivoglio|http://dbpedia.org/resource/Margherita_Buy"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Italian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Me, Myself and Her (Italian: Io e lei Italian pronunciation: [\u02c8i\u02d0o e l\u025bi]) is a 2015 comedy-drama film written and directed by Maria Sole Tognazzi and starring Margherita Buy and Sabrina Ferilli."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Waiting_for_the_Messiah"}, "Title": {"type": "literal", "value": "Waiting for the Messiah"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Daniel_Burman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Daniel_Hendler|http://dbpedia.org/resource/Enrique_Pi\u00f1eyro_(actor)|http://dbpedia.org/resource/H\u00e9ctor_Alterio"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Waiting for the Messiah (Spanish: Esperando al mes\u00edas) is a 2000 Argentine, Spanish, and Italian comedy drama film directed by Daniel Burman. The film features Daniel Hendler, Enrique Pi\u00f1eyro, H\u00e9ctor Alterio, Melina Petriella, Stefania Sandrelli, Imanol Arias and Dolores Fonzi, among others. The film won many awards including Best Film at the Lleida Latin-American Film Festival in Spain. The film takes place in a Jewish community of Buenos Aires."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Aqua_Films|http://dbpedia.org/resource/BD_Cine|http://dbpedia.org/resource/TLA_Releasing"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/3_Hari_Untuk_Selamanya"}, "Title": {"type": "literal", "value": "3 Hari Untuk Selamanya"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Riri_Riza"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:Indonesian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "3 Hari Untuk Selamanya (Three Days to Forever) is a 2007 Indonesian comedy-drama film directed by Riri Riza. The story is about a young man and a woman who drive from Jakarta to Jogjakarta. During the trip they discover many things and discuss sex, marriage and religion. The film had a successful run at several international film festivals, winning best direction (Riri Riza) at the Brussels International Independent Film Festival 2008 and best Indonesian film at the Jakarta International Film Festival 2007."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Zombie_Night_(2003_film)"}, "Title": {"type": "literal", "value": "Zombie Night"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_J._Francis"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:Zombie_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Zombie Night is a 2003 Canadian horror film directed by David J. Francis, written by Francis and Amber Lynn Francis, and starring Danny Ticknovich and Sandra Segovic."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/My_Little_Pony:_Equestria_Girls_(film)"}, "Title": {"type": "literal", "value": "My Little Pony: Equestria Girls"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jayson_Thiessen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andrea_Libman|http://dbpedia.org/resource/Ashleigh_Ball|http://dbpedia.org/resource/Cathy_Weseluck|http://dbpedia.org/resource/Rebecca_Shoichet|http://dbpedia.org/resource/Tabitha_St._Germain|http://dbpedia.org/resource/Tara_Strong"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "70"}, "Description": {"type": "literal", "value": "My Little Pony: Equestria Girls is a 2013 American-Canadian animated fantasy musical film produced by DHX Media's 2D animation studio in Vancouver, Canada for Hasbro Studios in the United States. The film is a part of Hasbro's toy line and media franchise of the same name that launched in the same year, which is itself an anthropomorphized spin-off of the 2010 relaunch of the main My Little Pony franchise, and also commemorates the thirtieth anniversary of the launch of the original My Little Pony toy line. Written by Meghan McCarthy and directed by Jayson Thiessen, the film premiered at the Los Angeles Film Festival on June 15, 2013, followed by limited release in the United States and Canada on June 16, 2013, with a home media release on August 6, 2013. The film re-envisions the main characters of parent franchise, normally ponies, as teenage human characters in a high school setting. Set between the third and fourth seasons of My Little Pony: Friendship Is Magic, the film's plot involves the pony Twilight Sparkle pursuing her stolen crown into an alternate world where she transforms into a human, teenage girl. While learning how to behave as a human, Twilight encounters human counterparts of her pony friends, who help her in her search for her crown. Other films in the franchise include a sequel, Rainbow Rocks, which was released on September 27, 2014, at various theaters across the United States and Canada, a third film, Friendship Games, which premiered on American and Canadian television a year later on September 26, 2015, and a fourth installment, Legend of Everfree, which was released on Netflix on October 1, 2016."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Screenvision"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Hasbro_Studios|http://dbpedia.org/resource/Studio_B_Productions"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Death_and_Return_of_Superman_(film)"}, "Title": {"type": "literal", "value": "The Death and Return of Superman"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Max_Landis"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Elden_Henson|http://dbpedia.org/resource/Elijah_Wood|http://dbpedia.org/resource/Mandy_Moore|http://dbpedia.org/resource/Max_Landis"}, "Published": {"type": "literal", "value": "2012-02-03"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Death and Return of Superman is a short film released in 2012 on YouTube, by Chronicle writer Max Landis. The film, as its title implies, is a monologue about \"The Death and Return of Superman\" storyline from DC Comics over parody-like sketches. The film was produced by Bryan Basham, creator of COPS: Skyrim."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Think_Like_a_Man_Too"}, "Title": {"type": "literal", "value": "Think Like a Man Too"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tim_Story"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "Think Like a Man Too is a 2014 romantic comedy film directed by Tim Story and the sequel to Story's 2012 film Think Like a Man based on Steve Harvey's book Act Like a Lady, Think Like a Man. The script is written by David A. Newman and Keith Merryman. The film was released on June 20, 2014. The cast from the first film returned to reprise their roles."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Screen_Gems"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Pitch_Perfect_2"}, "Title": {"type": "literal", "value": "Pitch Perfect 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Elizabeth_Banks"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_DeVine|http://dbpedia.org/resource/Anna_Camp|http://dbpedia.org/resource/Anna_Kendrick|http://dbpedia.org/resource/Ben_Platt_(actor)|http://dbpedia.org/resource/Brittany_Snow|http://dbpedia.org/resource/Hailee_Steinfeld|http://dbpedia.org/resource/John_Michael_Higgins|http://dbpedia.org/resource/Katey_Sagal|http://dbpedia.org/resource/Rebel_Wilson|http://dbpedia.org/resource/Skylar_Astin"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_musical_comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "Pitch Perfect 2 is a 2015 American comedy film directed and co-produced by Elizabeth Banks and written by Kay Cannon. It is a sequel to the 2012 film Pitch Perfect. The film centers on the fictional Barden University and The Bellas, an all-female a cappella singing group. The film features an ensemble cast, including Anna Kendrick, Rebel Wilson, Hailee Steinfeld, Brittany Snow, Alexis Knapp, Hana Mae Lee, Ester Dean, Chrissie Fit, Kelley Jakle and Shelley Regner as The Bellas. It was released on May 15, 2015 by Universal Pictures. The film grossed over $287 million and surpassed the total gross of the original film ($115.4 million) in five days, and also became the highest-grossing music comedy film of all-time, overtaking School of Rock ($131.3 million). A sequel, Pitch Perfect 3, is set to be released on December 22, 2017."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Eating_Out_5:_The_Open_Weekend"}, "Title": {"type": "literal", "value": "Eating Out: The Open Weekend"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Q._Allan_Brocka"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aaron_Milo|http://dbpedia.org/resource/Chris_Puckett|http://dbpedia.org/resource/Chris_Salvatore"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "Eating Out 5: The Open Weekend (2012) is the fifth film in the Eating Out franchise. The film is co-written (with Phillip J. Bartell) and directed by Q. Allan Brocka. Only Rebekah Kochan has appeared in all five films."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Action_Jackson_(2014_film)"}, "Title": {"type": "literal", "value": "Action Jackson"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Prabhu_Deva"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ajay_Devgn|http://dbpedia.org/resource/Anandaraj|http://dbpedia.org/resource/Kunaal_Roy_Kapur|http://dbpedia.org/resource/Manasvi_Mamgai|http://dbpedia.org/resource/Sonakshi_Sinha|http://dbpedia.org/resource/Yami_Gautam"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "144"}, "Description": {"type": "literal", "value": "Action Jackson is a 2014 Indian action comedy film directed by Prabhu Deva and produced by Gordhan Tanwani and Sunil Lulla. It features Ajay Devgn in dual roles, alongside Sonakshi Sinha, Yami Gautam and Manasvi Mamgai as the female leads. Kunaal Roy Kapur appears in a supporting role with Anandaraj portraying the main antagonist. Prabhu Deva and Ajay Devgn have paired for the first time with this film. Action Jackson released on 5 December 2014."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Eros_International"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dilwale_(2015_film)"}, "Title": {"type": "literal", "value": "Dilwale"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rohit_Shetty"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kajol|http://dbpedia.org/resource/Kriti_Sanon|http://dbpedia.org/resource/Shah_Rukh_Khan|http://dbpedia.org/resource/Varun_Dhawan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_action_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "154"}, "Description": {"type": "literal", "value": "Dilwale (translation: The Big Hearted) is a 2015 Indian romantic action comedy film directed by Rohit Shetty, and produced by Gauri Khan and Rohit Shetty under the banner of Red Chillies Entertainment and Rohit Shetty Productions respectively. The film stars Shah Rukh Khan, Kajol, Varun Dhawan, and Kriti Sanon in lead roles, with Johnny Lever and Varun Sharma in supporting roles. Dilwale has grossed over \u20b9372 crore (US$55 million) worldwide, becoming the second highest-grossing film starring Shah Rukh Khan after Chennai Express, also directed by Shetty. The song \"Gerua\" performed well in the charts. However, Khan expressed disappointment with the box office collections and the film's performance, especially in India, as did Kajol, who stated that she regretted doing the film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Red_Chillies_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Red_Chillies_Entertainment"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Yes,_My_Love"}, "Title": {"type": "literal", "value": "Yes, My Love"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Fernando_M\u00e9ndez"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Lilia_Michel|http://dbpedia.org/resource/Pedro_Infante|http://dbpedia.org/resource/Rafael_Baled\u00f3n"}, "Published": {"type": "literal", "value": "1953-05-14"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1950s_comedy_films|http://dbpedia.org/resource/Category:Mexican_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Yes, My Love (Spanish: S\u00ed, mi vida) is a 1953 Mexican musical comedy film directed by Fernando M\u00e9ndez and starring Lilia Michel, Rafael Baled\u00f3n and Pedro Infante."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Comet_(film)"}, "Title": {"type": "literal", "value": "Comet"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sam_Esmail"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Emmy_Rossum|http://dbpedia.org/resource/Justin_Long"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Comet is a 2014 American romance comedy drama film directed and written by Sam Esmail. The film stars Emmy Rossum and Justin Long. The movie had its world premiere at Los Angeles Film Festival on June 13, 2014. The film was released on December 5, 2014 by IFC Films."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/21_&_Over_(film)"}, "Title": {"type": "literal", "value": "21 & Over"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jon_Lucas|http://dbpedia.org/resource/Scott_Moore_(screenwriter)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Justin_Chon|http://dbpedia.org/resource/Miles_Teller|http://dbpedia.org/resource/Sarah_Wright|http://dbpedia.org/resource/Skylar_Astin"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "21 & Over is a 2013 American comedy film written and directed by Jon Lucas and Scott Moore in their directorial debut. The film stars Justin Chon, Miles Teller, and Skylar Astin."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Relativity_Media"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lake_Placid_(film_series)"}, "Title": {"type": "literal", "value": "Lake Placid"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Don_Michael_Paul|http://dbpedia.org/resource/Griff_Furst|http://dbpedia.org/resource/Steve_Miner"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Comedy_films_by_series"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "355"}, "Description": {"type": "literal", "value": "Lake Placid is an American series of monster horror/comedy films which started with Lake Placid in 1999 and was followed by three made for television sequels, Lake Placid 2 (2007), Lake Placid 3 (2010) and Lake Placid: The Final Chapter (2012), as well as a made for television crossover film with the Anaconda series, titled Lake Placid vs. Anaconda (2015). Each installment revolves around the presence of giant, 30-foot-long man-eating crocodiles in the fictional location of Black Lake, Maine, and the efforts of various groups to capture or destroy the creatures. All of the films reference members of the fictitious \"Bickerman\" family."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox|http://dbpedia.org/resource/Stage_6_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Watch_Out_(film)"}, "Title": {"type": "literal", "value": "Watch Out"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Steve_Balderson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Matt_Riddlehoover"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Watch Out is a 2008 film directed by Steve Balderson (Firecracker) based on the novel by Joseph Suglia and starring Matt Riddlehoover. Though the story is set in Benton Harbor, Michigan, the film was shot guerrilla-style, without permits, in March and April on location in Wamego, Kansas. Watch Out premiered at the Raindance Film Festival in London, where it was nominated for Best International Feature. It was released theatrically in the \"Stop Turning Me On\" world tour in New York (Coney Island Film Festival), Nashville, Chicago, Washington D.C (Reel Affirmations Festival), Seattle (Lesbian & Gay Film Festival), San Francisco, Asheville, Charlottesville (Virginia Film Festival), Kansas City, Lawrence KS, Austin (Alamo Drafthouse), and Los Angeles."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Inseparable_(film)"}, "Title": {"type": "literal", "value": "Inseparable"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dayyan_Eng"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Daniel_Wu|http://dbpedia.org/resource/Gong_Beibi|http://dbpedia.org/resource/Kenneth_Tsang_Kong|http://dbpedia.org/resource/Kevin_Spacey|http://dbpedia.org/resource/Peter_Stormare|http://dbpedia.org/resource/Yan_Ni"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Inseparable (Chinese: \u5f62\u5f71\u4e0d\u79bb) is a 2011 Chinese psychological comedy-drama film written and directed by Dayyan Eng, and stars Kevin Spacey (whose involvement made him the first Hollywood star to headline a 100% Chinese-funded film), Gong Beibi and Daniel Wu."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Oy_Vey!_My_Son_Is_Gay!!"}, "Title": {"type": "literal", "value": "Oy Vey! My Son Is Gay!!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Evgeny_Afineevsky"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bruce_Vilanch|http://dbpedia.org/resource/Carmen_Electra|http://dbpedia.org/resource/Jai_Rodriguez|http://dbpedia.org/resource/John_Lloyd_Young|http://dbpedia.org/resource/Lainie_Kazan|http://dbpedia.org/resource/Saul_Rubinek|http://dbpedia.org/resource/Vincent_Pastore"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Oy Vey! My Son Is Gay!! is a 2009 comedy film directed, written, and produced by Evgeny Afineevsky which stars Lainie Kazan, Saul Rubinek, Vincent Pastore, John Lloyd Young, Jai Rodriguez, Bruce Vilanch, and Carmen Electra. The theme song, \"The Word Is Love\" is written by Desmond Child and performed by Lulu. \"The Word is Love\" was contending for nominations in the Original Song category for the 82nd Academy Awards."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Saugatuck_Cures"}, "Title": {"type": "literal", "value": "Saugatuck Cures"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Matthew_Ladensack"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Judith_Chapman|http://dbpedia.org/resource/Max_Adler_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Saugatuck Cures is an American LGBT comedy-drama film. It was directed and produced by Matthew Ladensack, written by Jay Paul Deratany, and stars Max Adler, Danny Mooney, and Judith Chapman. The film premiered at the 2014 Palm Springs International LGBT Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Fido_(film)"}, "Title": {"type": "literal", "value": "Fido"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Currie_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Billy_Connolly|http://dbpedia.org/resource/Carrie-Anne_Moss|http://dbpedia.org/resource/Dylan_Baker|http://dbpedia.org/resource/Henry_Czerny|http://dbpedia.org/resource/K'Sun_Ray|http://dbpedia.org/resource/Tim_Blake_Nelson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:Canadian_comedy_films|http://dbpedia.org/resource/Category:Zombie_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Fido is a 2006 Canadian zombie comedy film directed by Andrew Currie and written by Robert Chomiak, Currie, and Dennis Heaton from an original story by Heaton. It was produced by Blake Corbet, Mary Anne Waterhouse, Trent Carlson and Kevin Eastwood of Anagram Pictures, and released in the United States by Lions Gate Entertainment."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lions_Gate_Entertainment|http://dbpedia.org/resource/Roadside_Attractions|http://dbpedia.org/resource/TVA_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Salt_N'_Pepper"}, "Title": {"type": "literal", "value": "Salt N' Pepper"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Aashiq_Abu"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Asif_Ali_(actor)|http://dbpedia.org/resource/Baburaj_(actor)|http://dbpedia.org/resource/Lal_(actor)|http://dbpedia.org/resource/Mythili|http://dbpedia.org/resource/Shweta_Menon"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "118"}, "Description": {"type": "literal", "value": "Salt N' Pepper is a 2011 Indian Malayalam romantic comedy film directed by Aashiq Abu and produced for Lucsam Creations by Sadanandan Rangorath. The film stars Lal, Asif Ali, Shweta Menon and Mythili in the lead roles while Baburaj and Vijayaraghavan play supporting roles. Cinematography is by Shyju Kahild, whose debut was Traffic (2011). The screenplay was written by Syam Pushkaran and Dileesh Nair. The film follows the love stories of two couples. The main characters are: Kalidasan (Lal), an archaeologist; Maya (Shwetha Menon), a dubbing artiste; Meenakshi (Mythili), an IELTS student; Manu (Asif Ali), a happy-go-lucky management graduate; and Babu (Baburaj), Kalidasan's chef. Food plays an important role in the story and the tagline of the film is  \u0d12\u0d30\u0d41 \u0d26\u0d4b\u0d38 \u0d09\u0d28\u0d4d\u0d26\u0d3e\u0d15\u0d4d\u0d15\u0d3f\u0d2f \u0d15\u0d25 oruDosa und\u0101kkiya katha (\"The story of making a Dosa\"). The film has an original score by Bijibal, with three songs composed by Bijibal and the song \"Aanakkallan\" written and sung by Malayalam rock band Avial. The film was produced by Lucsam Cinema and released by Lal. Principal production for the film started on 3 January 2011 and it was released in theatres on 8 July 2011 to positive reviews and good initial viewing figures. Salt N' Pepper's Kannada, Tamil, Telugu and Hindi remake rights have been bought by actor-director Prakash Raj. It was remade in Tamil as Un Samayal Arayil and was shot simultaneously in Telugu and Kannada as Ulavacharu Biriyani and Oggarane. Prakash Raj directed the remakes and appeared in the lead role playing Lal's character while Sneha did the role of Shweta Menon's character. Prakash is directing Hindi remake titled Tadka."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Spivs_(film)"}, "Title": {"type": "literal", "value": "Spivs"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Colin_Teague"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dominic_Monaghan|http://dbpedia.org/resource/Jack_Dee|http://dbpedia.org/resource/Kate_Ashfield|http://dbpedia.org/resource/Ken_Stott|http://dbpedia.org/resource/Nick_Moran"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:British_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Spivs is a 2004 British crime film directed by Colin Teague, who also co-wrote the screenplay along with screenwriters Gary Young, and Mike Loveday. It is the second of three undertakings by Teague and Young, the others being Shooters and The Last Drop, respectively. Incidentally, director Glenn Durfort, who worked with Teague on Shooters, appears briefly in all three of these films."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Image_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/G.B.F._(film)"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Darren_Stein"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andrea_Bowen|http://dbpedia.org/resource/Evanna_Lynch|http://dbpedia.org/resource/JoJo|http://dbpedia.org/resource/Michael_J._Willett|http://dbpedia.org/resource/Molly_Tarlov|http://dbpedia.org/resource/Paul_Iacono|http://dbpedia.org/resource/Sasha_Pieterse|http://dbpedia.org/resource/Xosha_Roquemore"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "G.B.F. (Gay Best Friend) is a 2013 American teen comedy film directed by Darren Stein and produced by School Pictures, Parting Shots Media, and Logolite Entertainment. The film made its first official screening at the 2013 Tribeca Film Festival in April 2013 and got its theatrical release on January 17, 2014 by Vertical Entertainment. G.B.F. focuses on closeted gay high school students Tanner and Brent. When Tanner is outed, he is picked up by the cool girls and he begins to surpass still-closeted Brent in popularity. The film stars Michael J. Willett, Paul Iacono, Sasha Pieterse, Andrea Bowen, Xosha Roquemore, Molly Tarlov, Evanna Lynch, Joanna \"JoJo\" Levesque, and Megan Mullally. G.B.F's soundtrack includes new compositions by \"Hi Fashion\" & \"Veva\"."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Vertical_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Recep_\u0130vedik_2"}, "Title": {"type": "literal", "value": "Recep \u0130vedik 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Togan_G\u00f6kbakar"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Sahan_Gokbakar"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Turkish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "Recep \u0130vedik 2 is a 2009 Turkish comedy film, directed by Togan G\u00f6kbakar, which stars \u015eahan G\u00f6kbakar as an oafish character who tries to find a job and a wife to please his ailing grandmother. The film, which went on nationwide general release across Turkey on Feb. 13, 2009, was the highest grossing Turkish film of 2009. The film's titular comic character was created by \u015eahan G\u00f6kbakar for his Turkish comedy television show Dikkat \u015eahan \u00c7\u0131kabilir, which ran from 2005 to 2006, and has subsequently gone on to feature in a series of sequel films starting with Recep \u0130vedik (2008), to which this is the sequel."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Get_Married_3"}, "Title": {"type": "literal", "value": "Get Married 3"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Monty_Tiwa"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Fedi_Nuril|http://dbpedia.org/resource/Nirina_Zubir"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Get Married 3 is an Indonesian romantic comedy directed by Monty Tiwa and released in 2011. A sequel to Hanung Bramantyo's Get Married and Get Married 2, it stars Nirina Zubir and Fedi Nuril as a married couple attempting to raise their triplets while under intense pressure from their family and friends. The film was a commercial success and received favourable reviews in The Jakarta Post and Suara Karya."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Starvision_Plus"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Computer_Chess_(film)"}, "Title": {"type": "literal", "value": "Computer Chess"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Bujalski"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gerald_Peary|http://dbpedia.org/resource/Patrick_Riester|http://dbpedia.org/resource/Robin_Schwartz|http://dbpedia.org/resource/Wiley_Wiggins"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Computer Chess is a 2013 independent comedy-drama film written and directed by Andrew Bujalski. The film premiered at the 2013 Sundance Film Festival, where it won the Alfred P. Sloan Feature Film Prize, and subsequently screened at such festivals as South by Southwest and the Maryland Film Festival. It is Bujalski's second black-and-white film, and was shot with analog videocameras. It is more improvisatory than his previous films, with only an eight-page treatment for a script. Bujalski also cast nonprofessional actors who were knowledgeable in computer technology."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Kino_International_(company)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Submarine_(2010_film)"}, "Title": {"type": "literal", "value": "Submarine"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Richard_Ayoade"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Craig_Roberts|http://dbpedia.org/resource/Noah_Taylor|http://dbpedia.org/resource/Paddy_Considine|http://dbpedia.org/resource/Sally_Hawkins|http://dbpedia.org/resource/Yasmin_Paige"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:British_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Submarine is a 2010 coming-of-age comedy-drama film adapted from the 2008 novel of the same name by Joe Dunthorne. The film was written and directed by Richard Ayoade, and starred Craig Roberts, Yasmin Paige, Noah Taylor, Paddy Considine, and Sally Hawkins. Submarine is Ayoade's directorial debut."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Optimum_Releasing|http://dbpedia.org/resource/The_Weinstein_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Little_White_Lies_(2010_film)"}, "Title": {"type": "literal", "value": "Little White Lies"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Guillaume_Canet"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Beno\u00eet_Magimel|http://dbpedia.org/resource/Fran\u00e7ois_Cluzet|http://dbpedia.org/resource/Gilles_Lellouche|http://dbpedia.org/resource/Jean_Dujardin|http://dbpedia.org/resource/Laurent_Lafitte|http://dbpedia.org/resource/Marion_Cotillard|http://dbpedia.org/resource/Pascale_Arbillot|http://dbpedia.org/resource/Val\u00e9rie_Bonneton"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy-drama_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "154"}, "Description": {"type": "literal", "value": "Little White Lies is a 2010 French comedy-drama film written and directed by Guillaume Canet, starring an ensemble cast of Fran\u00e7ois Cluzet, Marion Cotillard, Beno\u00eet Magimel, Gilles Lellouche, Jean Dujardin, Laurent Lafitte, Val\u00e9rie Bonneton and Pascale Arbillot. The original French title is Les petits mouchoirs, which means \"the small handkerchiefs\" (see explanation below). The film was released in France on 20 October 2010."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/She's_the_Man"}, "Title": {"type": "literal", "value": "She's the Man"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Fickman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alex_Breckenridge|http://dbpedia.org/resource/Amanda_Bynes|http://dbpedia.org/resource/Channing_Tatum|http://dbpedia.org/resource/David_Cross|http://dbpedia.org/resource/Emily_Perkins|http://dbpedia.org/resource/Jonathan_Sadowski|http://dbpedia.org/resource/Laura_Ramsey|http://dbpedia.org/resource/Robert_Hoffman_(actor)|http://dbpedia.org/resource/Vinnie_Jones"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "She's the Man is a 2006 American romantic sport-comedy film directed by Andy Fickman, inspired by William Shakespeare's play Twelfth Night. The film stars Amanda Bynes, Channing Tatum, Laura Ramsey, and Vinnie Jones. The film centers on teenager Viola Hastings who enters her brother's school in his place, pretending to be male, in order to play with the boys' soccer team."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/DreamWorks_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Fired_Up!"}, "Title": {"type": "literal", "value": "Fired Up!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Will_Gluck"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/AnnaLynne_McCord|http://dbpedia.org/resource/David_Walton_(actor)|http://dbpedia.org/resource/Eric_Christian_Olsen|http://dbpedia.org/resource/Molly_Sims|http://dbpedia.org/resource/Nicholas_D'Agosto|http://dbpedia.org/resource/Sarah_Roemer"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films|http://dbpedia.org/resource/Category:Teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Fired Up! is a 2009 American teen comedy film directed by Will Gluck and written by Freedom Jones. The main plot revolves around two popular high school student football players (portrayed by Eric Christian Olsen and Nicholas D'Agosto) who attend a cheerleading camp for the summer to get close to its 300 female cheerleaders."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Screen_Gems"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Boss_(2016_film)"}, "Title": {"type": "literal", "value": "The Boss"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Falcone"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kathy_Bates|http://dbpedia.org/resource/Kristen_Bell|http://dbpedia.org/resource/Peter_Dinklage|http://dbpedia.org/resource/Tyler_Labine"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "The Boss is a 2016 American comedy film directed by Ben Falcone and written by Falcone, Melissa McCarthy and Steve Mallory. The film stars McCarthy, Kristen Bell, Ella Anderson, Tyler Labine, Kathy Bates, Annie Mumolo, Timothy Simons and Peter Dinklage. The film was released on April 8, 2016, by Universal Pictures and was a moderate box office success, despite receiving largely negative reviews."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Falcone|http://dbpedia.org/resource/Gary_Sanchez_Productions"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/10_Years_(2011_film)"}, "Title": {"type": "literal", "value": "10 Years"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jamie_Linden_(writer)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aaron_Yoo|http://dbpedia.org/resource/Anthony_Mackie|http://dbpedia.org/resource/Ari_Graynor|http://dbpedia.org/resource/Aubrey_Plaza|http://dbpedia.org/resource/Brian_Geraghty|http://dbpedia.org/resource/Channing_Tatum|http://dbpedia.org/resource/Chris_Pratt|http://dbpedia.org/resource/Jenna_Dewan|http://dbpedia.org/resource/Justin_Long|http://dbpedia.org/resource/Kate_Mara|http://dbpedia.org/resource/Lynn_Collins|http://dbpedia.org/resource/Max_Minghella|http://dbpedia.org/resource/Oscar_Isaac|http://dbpedia.org/resource/Ron_Livingston|http://dbpedia.org/resource/Rosario_Dawson|http://dbpedia.org/resource/Scott_Porter"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "10 Years is a 2011 American romantic comedy directed by Jamie Linden in his directorial debut. The film stars with an ensemble cast including Channing Tatum, Justin Long, Kate Mara, Chris Pratt, Scott Porter, Brian Geraghty, Anthony Mackie, Rosario Dawson, Oscar Isaac, Lynn Collins, Max Minghella, Kelly Noonan, Juliet Lopez and Jenna Dewan. The film was released on September 14, 2012, in select theaters."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Anchor_Bay_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Beauty_in_a_Bottle"}, "Title": {"type": "literal", "value": "Beauty in a Bottle"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Antoinette_Jadaone"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Angelica_Panganiban|http://dbpedia.org/resource/Angeline_Quinto|http://dbpedia.org/resource/Assunta_de_Rossi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Philippine_romantic_comedy_films|http://dbpedia.org/resource/Category:Star_Cinema_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Beauty in a Bottle is a 2014 Filipino satirical comedy drama film by Antoinette Jadaone. The film stars Angelica Panganiban, Angeline Quinto, and Assunta de Rossi and tells the story of three women and their struggles with their insecurities about how they look as they get caught up in the building craze for a new beauty product. It was produced by Quantum Films, Skylight Films and Star Cinema for its 20th Anniversary. The film had its commercial release on 29 October 2014"}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Regal_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Balls_of_Fury"}, "Title": {"type": "literal", "value": "Balls of Fury"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Robert_Ben_Garant"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Christopher_Walken|http://dbpedia.org/resource/Dan_Fogler|http://dbpedia.org/resource/George_Lopez|http://dbpedia.org/resource/Jason_Scott_Lee|http://dbpedia.org/resource/Maggie_Q|http://dbpedia.org/resource/Robert_Patrick|http://dbpedia.org/resource/Thomas_Lennon_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_sports_comedy_films|http://dbpedia.org/resource/Category:Martial_arts_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Balls of Fury is a 2007 American sports comedy film directed by Ben Garant. It stars Dan Fogler, George Lopez, Christopher Walken, and Maggie Q. The film was released in the United States on August 29, 2007."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Rogue_(company)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/A_Fuchsia_Elephant"}, "Title": {"type": "literal", "value": "A Fuchsia Elephant"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dianna_Agron"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dave_Franco|http://dbpedia.org/resource/Dianna_Agron|http://dbpedia.org/resource/Eddie_Hargitay|http://dbpedia.org/resource/Max_Crumm"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "10"}, "Description": {"type": "literal", "value": "A Fuchsia Elephant is a 2009 American short comedy film screenplay and directed by Dianna Agron, starring Dianna Agron and Dave Franco. The film was never released."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Big_Dreams_Little_Tokyo"}, "Title": {"type": "literal", "value": "Big Dreams Little Tokyo"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dave_Boyle"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Big Dreams Little Tokyo (2006) is a feature-length motion picture written and directed by Dave Boyle. The film premiered November 2, 2006 at the AFI Festival in Hollywood, California and is released on DVD through Echo Bridge on July 22, 2008."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Salami_Aleikum"}, "Title": {"type": "literal", "value": "Salami Aleikum"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ali_Samadi_Ahadi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anna_B\u00f6ger|http://dbpedia.org/resource/Eva-Maria_Radoy|http://dbpedia.org/resource/Michael_Niavarani|http://dbpedia.org/resource/Nav\u00edd_Akhavan|http://dbpedia.org/resource/Proschat_Madani|http://dbpedia.org/resource/Wolfgang_Stumph"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "Salami Aleikum is a 2009 Comedy film by Ali Samadi Ahadi about an Iranian migrant family in Germany who try to cope with life in exile. There are animation parts and some musical videoclips (Iranian music and dance) are included. Salami Aleikum was a successful film in Germany."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Trust_the_Man"}, "Title": {"type": "literal", "value": "Trust The Man"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bart_Freundlich"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Billy_Crudup|http://dbpedia.org/resource/David_Duchovny|http://dbpedia.org/resource/Eva_Mendes|http://dbpedia.org/resource/James_LeGros|http://dbpedia.org/resource/Julianne_Moore|http://dbpedia.org/resource/Maggie_Gyllenhaal"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "Trust the Man is a 2005 romantic comedy film starring David Duchovny, Billy Crudup, Julianne Moore, and Maggie Gyllenhaal. It was directed and written by Bart Freundlich. The film primarily deals with three relationships, and a realization of just how important those relationships are. It had a limited release on August 18, 2006."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Searchlight_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/All_You_Need_Is_Pag-Ibig"}, "Title": {"type": "literal", "value": "All You Need Is Pag-Ibig"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Antoinette_Jadaone"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bimby_Aquino_Yap|http://dbpedia.org/resource/Derek_Ramsay|http://dbpedia.org/resource/Ian_Veneracion|http://dbpedia.org/resource/Jodi_Sta._Maria|http://dbpedia.org/resource/Kim_Chiu|http://dbpedia.org/resource/Kris_Aquino|http://dbpedia.org/resource/Nova_Villa|http://dbpedia.org/resource/Ronaldo_Valdez|http://dbpedia.org/resource/Xian_Lim"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Philippine_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "All You Need Is Pag-Ibig (lit. \"All You Need is Love\") is a 2015 Filipino romantic-comedy film released by Star Cinema as their official entry to 2015 Metro Manila Film Festival. It stars an ensemble cast including Kris Aquino, Bimby Aquino Yap, Derek Ramsay, Kim Chiu, Xian Lim, Jodi Sta. Maria and Ian Veneracion. It also marks the film debut of Julia Concio and Talia Concio. This marks as Aquino-Yap's third film fest entry."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Star_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Take_Me_Home_Tonight_(film)"}, "Title": {"type": "literal", "value": "Take Me Home Tonight"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Dowse"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anna_Faris|http://dbpedia.org/resource/Dan_Fogler|http://dbpedia.org/resource/Teresa_Palmer|http://dbpedia.org/resource/Topher_Grace"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Take Me Home Tonight is a 2011 American retro comedy film directed by Michael Dowse and starring an ensemble cast led by Topher Grace and Anna Faris; prior to release the film was titled Young Americans and Kids in America. The screenplay was written by Jackie and Jeff Filgo, former writers of the television sitcom That '70s Show, of which Grace was a cast member. Shooting began on the week starting February 19, 2007, in Phoenix, Arizona. The film received its wide theatrical release on March 4, 2011. The title comes from the 1986 Eddie Money song of the same name, also played in the theatrical trailer. Despite having the same name, this 1986 song is never played in the film, though the song is included in the first trailer as well as the menu screen of the Blu-ray and DVD versions of the movie."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Relativity_Media|http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Lovers_(2017_film)"}, "Title": {"type": "literal", "value": "The Lovers"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Azazel_Jacobs"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Debra_Winger|http://dbpedia.org/resource/Tracy_Letts"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Lovers is an upcoming film directed by Azazel Jacobs."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/A24_(company)"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/A24_(company)"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lifeu_Ishtene"}, "Title": {"type": "literal", "value": "Lifeu Ishtene"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pawan_Kumar_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Diganth|http://dbpedia.org/resource/Samyukta_Hornad|http://dbpedia.org/resource/Sathish_Ninasam|http://dbpedia.org/resource/Sindhu_Lokanath"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "130"}, "Description": {"type": "literal", "value": "Lifeu Ishtene (Kannada: \u0cb2\u0cc8\u0cab\u0cc1 \u0c87\u0cb7\u0ccd\u0c9f\u0cc7\u0ca8\u0cc6) is a 2011 Indian dark comedy-drama Kannada written and directed by Pawan Kumar. It stars Diganth, Sindhu Lokanath and Samyukta Hornad in the lead roles. Sathish Ninasam, Achyuth Kumar and Veena Sundar feature in supporting roles. The plot revolves around the adult life of a carefree youngster, who falls in love easily with multiple women, and observes the consequences, \"realizing the meaning of life\" and that it comes a \"full circle\". The title of the film which translates to \"this is all life is\", was taken from a track of the 2010 Kannada film Pancharangi. The film score and soundtrack was composed by Mano Murthy, with lyrics for the tracks penned by Yogaraj Bhat, Jayant Kaikini and Pawan Kumar. The cinematography was done by Sugnaan, and was edited by Sanath and Suresh. The film was released on 9 September 2011 to critical acclaim. Following a 9-week run at theatres, it emerged as a commercial success, and was declared one of the best Kannada films of 2011. Having been nominated in three categories, Chethan Sosca won the award for Best Male Playback Singer at the Filmfare Awards."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Linda_Linda_Linda"}, "Title": {"type": "literal", "value": "Linda Linda Linda"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nobuhiro_Yamashita"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aki_Maeda|http://dbpedia.org/resource/Bae_Doona|http://dbpedia.org/resource/Shiori_Sekine|http://dbpedia.org/resource/Yu_Kashii"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_musical_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "Linda Linda Linda (\u30ea\u30f3\u30c0 \u30ea\u30f3\u30c0 \u30ea\u30f3\u30c0) is a 2005 Japanese film directed by Nobuhiro Yamashita. It stars Bae Doona, Aki Maeda, Yu Kashii, and Shiori Sekine (of the band Base Ball Bear) as teenagers who form a band to cover songs by the Japanese punk rock band the Blue Hearts; the film's title comes from the hit Blue Hearts song \"Linda Linda\". A subtitled DVD was released on May 8, 2007. The band, Paranmaum (Korean for \"the Blue Hearts\"), released a CD single in Japan and Korea titled We Are Paranmaum. The film is licensed for the US market by VIZ Media."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Covers&Co"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Alpha_and_Omega_(film_series)"}, "Title": {"type": "literal", "value": "Alpha and Omega"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Anthony_Bell_(director)|http://dbpedia.org/resource/Richard_Rich_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Diskin|http://dbpedia.org/resource/Hayden_Panettiere|http://dbpedia.org/resource/Justin_Long|http://dbpedia.org/resource/Kate_Higgins"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Alpha and Omega is a series of five animated films released by Crest Animation Productions and distributed by Lionsgate Films. The first film was released in 2010 and featured the voices of Justin Long and Hayden Panettiere, though subsequent movies were direct-to-video and therefore featured a smaller cast, primarily Ben Diskin and Kate Higgins."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lionsgate_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Zeroville_(film)"}, "Title": {"type": "literal", "value": "Zeroville"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Franco"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Danny_McBride|http://dbpedia.org/resource/Dave_Franco|http://dbpedia.org/resource/Jacki_Weaver|http://dbpedia.org/resource/James_Franco|http://dbpedia.org/resource/Megan_Fox|http://dbpedia.org/resource/Seth_Rogen|http://dbpedia.org/resource/Will_Ferrell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "Zeroville is an upcoming American comedy-drama film directed by James Franco, based on the 2007 novel of the same name by Steve Erickson. The film stars Franco, Seth Rogen, Jacki Weaver, Megan Fox, Will Ferrell and Danny McBride. Filming began on October 24, 2014, in Los Angeles."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Alchemy_(company)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/They're_Watching"}, "Title": {"type": "literal", "value": "They're Watching"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jay_Lender|http://dbpedia.org/resource/Micah_Wright"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Brigid_Brannagh|http://dbpedia.org/resource/David_Alpay|http://dbpedia.org/resource/Dimitri_Diatchenko|http://dbpedia.org/resource/Kris_Lemche"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "They're Watching is a 2016 American found footage horror comedy film directed and written by Jay Lender and Micah Wright. The film stars Brigid Brannagh, David Alpay, Kris Lemche and Dimitri Diatchenko and was released in theaters and On Demand on March 25, 2016."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Amplify_(distributor)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Anomalisa"}, "Title": {"type": "literal", "value": "Anomalisa"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Charlie_Kaufman|http://dbpedia.org/resource/Duke_Johnson_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/David_Thewlis|http://dbpedia.org/resource/Jennifer_Jason_Leigh|http://dbpedia.org/resource/Tom_Noonan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Anomalisa is a 2015 American stop-motion comedy-drama film directed and produced by Charlie Kaufman and Duke Johnson, and written by Kaufman based on his 2005 play of the same name. It was released on 30 December 2015, by Paramount Pictures after what Variety called \"strong reviews\" during its festival run. The film follows a lonely customer service expert (voiced by David Thewlis) who perceives everyone (Tom Noonan) as identical until he meets a unique woman (Jennifer Jason Leigh) in a Cincinnati hotel. Anomalisa was nominated for an Academy Award for Best Animated Feature (the first R-rated film to be nominated), a Golden Globe Award for Best Animated Feature Film, and five Annie Awards. It became the first animated film to win the Grand Jury Prize at the 72nd Venice International Film Festival, after premiering at the Telluride Film Festival on 4 September 2015."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Easy_A"}, "Title": {"type": "literal", "value": "Easy A"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Will_Gluck"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aly_Michalka|http://dbpedia.org/resource/Amanda_Bynes|http://dbpedia.org/resource/Cam_Gigandet|http://dbpedia.org/resource/Dan_Byrd|http://dbpedia.org/resource/Emma_Stone|http://dbpedia.org/resource/Lisa_Kudrow|http://dbpedia.org/resource/Malcolm_McDowell|http://dbpedia.org/resource/Patricia_Clarkson|http://dbpedia.org/resource/Penn_Badgley|http://dbpedia.org/resource/Stanley_Tucci|http://dbpedia.org/resource/Thomas_Haden_Church"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Easy A (stylized as easy A) is a 2010 American teen comedy film written by Bert V. Royal, directed by Will Gluck, and starring Emma Stone, with Stanley Tucci, Patricia Clarkson, Thomas Haden Church, Dan Byrd, Amanda Bynes, Penn Badgley, Cam Gigandet, Lisa Kudrow and Aly Michalka playing key supporting roles. The screenplay was partially inspired by the novel The Scarlet Letter by Nathaniel Hawthorne. Shot at Screen Gems studios and in Ojai, California, the film was released on September 17, 2010 to positive reviews."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Screen_Gems"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Night_Before_(2015_film)"}, "Title": {"type": "literal", "value": "The Night Before"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jonathan_Levine"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anthony_Mackie|http://dbpedia.org/resource/Jillian_Bell|http://dbpedia.org/resource/Joseph_Gordon-Levitt|http://dbpedia.org/resource/Lizzy_Caplan|http://dbpedia.org/resource/Michael_Shannon|http://dbpedia.org/resource/Mindy_Kaling"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "The Night Before is a 2015 American Christmas comedy film directed by Jonathan Levine, written by Levine, Evan Goldberg, Kyle Hunter and Ariel Shaffir. The film stars Joseph Gordon-Levitt, Seth Rogen and Anthony Mackie as three childhood friends who annually reunite on Christmas Eve. Principal photography began on August 11, 2014, in New York City. Good Universe and Point Grey Pictures produced the film, which Columbia Pictures released on November 20, 2015."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Point_Grey_Pictures"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Demain_tout_commence"}, "Title": {"type": "literal", "value": "Demain tout commence"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Hugo_G\u00e9lin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Omar_Sy"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Demain tout commence is a 2016 French comedy-drama film directed by Hugo G\u00e9lin and starring Omar Sy."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hardcover_(film)"}, "Title": {"type": "literal", "value": "Hardcover"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Christian_Z\u00fcbert"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Lucas_Gregorowicz|http://dbpedia.org/resource/Wotan_Wilke_M\u00f6hring"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:German_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Hardcover is a 2008 German comedy film directed by Christian Z\u00fcbert."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Me_You_Them"}, "Title": {"type": "literal", "value": "Me You Them"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andrucha_Waddington"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Lima_Duarte|http://dbpedia.org/resource/Regina_Cas\u00e9"}, "Published": {"type": "literal", "value": "2000-05-16"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:Brazilian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "Me You Them (Portuguese: Eu Tu Eles) is a 2000 Brazilian drama film directed by Andrucha Waddington."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/How_to_Eat_Fried_Worms_(film)"}, "Title": {"type": "literal", "value": "How to Eat Fried Worms"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bob_Dolman|http://dbpedia.org/resource/Genndy_Tartakovsky"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Hicks|http://dbpedia.org/resource/Hallie_Eisenberg|http://dbpedia.org/resource/Kimberly_Williams-Paisley|http://dbpedia.org/resource/Luke_Benward|http://dbpedia.org/resource/Tom_Cavanagh"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "How to Eat Fried Worms is a 2006 American children's comedy film directed and written by Bob Dolman and produced by Mark Johnson and Philip Steuer with music by Mark Mothersbaugh and Robert Mothersbaugh. It is loosely based on Thomas Rockwell's 1973 children's book of the same name. It was also produced by Walden Media and distributed by New Line Cinema. Development began in 1998 and theatrical release for the U.S. and Canada was August 25, 2006. The film stars Luke Benward, Adam Hicks, Hallie Eisenberg, Austin Rogers, Andrew Gillingham, Alexander Gould, Blake Garrett, and Philip Daniel Bolden. The film received mixed reviews from critics."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/New_Line_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jay_and_Silent_Bob_Strike_Back"}, "Title": {"type": "literal", "value": "Jay and Silent Bob Strike Back"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Smith"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ali_Larter|http://dbpedia.org/resource/Ben_Affleck|http://dbpedia.org/resource/Chris_Rock|http://dbpedia.org/resource/Eliza_Dushku|http://dbpedia.org/resource/Jason_Lee_(actor)|http://dbpedia.org/resource/Jason_Mewes|http://dbpedia.org/resource/Jennifer_Schwalbach_Smith|http://dbpedia.org/resource/Shannon_Elizabeth|http://dbpedia.org/resource/Will_Ferrell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "Jay and Silent Bob Strike Back is a 2001 American comedy film directed, written by, and starring Kevin Smith as Silent Bob, the fifth to be set in his View Askewniverse, a growing collection of characters and settings that developed out of his cult favorite Clerks. It focuses on the two eponymous characters, played respectively by Jason Mewes and Smith. The film features a large number of cameo appearances by famous actors and directors. The title and logo for Jay and Silent Bob Strike Back are direct references to The Empire Strikes Back. Originally intended to be the last film set in the Askewniverse, or to feature Jay and Silent Bob, Strike Back features many characters from the previous Askew films, some in dual roles and reprising roles from the previous entries. The film was a minor commercial success, grossing $33.8 million worldwide from a $22 million budget, and received mixed reviews from critics. Five years later and following the commercial failure of Jersey Girl, Smith reconsidered and decided to continue the series with Clerks II, resurrecting Jay and Silent Bob in supporting roles. Smith has additionally decided to make a second sequel to Clerks, titled Clerks III, and, as of 2016, is in development."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Miramax"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Dimension_Films|http://dbpedia.org/resource/View_Askew_Productions"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Gigantic_(2018_film)"}, "Title": {"type": "literal", "value": "Gigantic"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Meg_LeFauve|http://dbpedia.org/resource/Nathan_Greno"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_musical_comedy_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Gigantic is an upcoming American 3D computer-animated musical fantasy-comedy film produced by Walt Disney Animation Studios and released by Walt Disney Pictures. It is loosely based on the English fairy tale Jack and the Beanstalk, which was previously adapted in the 1947 Disney film Fun and Fancy Free as the segment \"Mickey and the Beanstalk\". The film is scheduled to be released on November 21, 2018."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Going_Greek"}, "Title": {"type": "literal", "value": "Going Greek"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Justin_Zackham"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Owen_(actor)|http://dbpedia.org/resource/Dublin_James|http://dbpedia.org/resource/Dylan_Bruno|http://dbpedia.org/resource/Laura_Harris|http://dbpedia.org/resource/Simon_Rex"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Going Greek is a 2001 American comedy film written and directed by Justin Zackham."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Hart_Sharp_Video"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Deb_and_Sisi"}, "Title": {"type": "literal", "value": "Deb and Sisi"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mark_Kenneth_Woods"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Mark_Kenneth_Woods|http://dbpedia.org/resource/Michael_Venus_(entertainer)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Black_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "81"}, "Description": {"type": "literal", "value": "Deb and Sisi is a blue comedy/dark comedy feature film, written, produced and directed by Mark Kenneth Woods, which had its debut at the Out On Screen Vancouver Queer Film Festival in August, 2008. The DVD was released May 25, 2010 through MKW Productions and the film aired on television for the first time on October 30, 2011 on OUTtv in Canada."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Josie_and_the_Pussycats_(film)"}, "Title": {"type": "literal", "value": "Josie and the Pussycats"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Deborah_Kaplan|http://dbpedia.org/resource/Harry_Elfont"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alan_Cumming|http://dbpedia.org/resource/Gabriel_Mann|http://dbpedia.org/resource/Parker_Posey|http://dbpedia.org/resource/Rachael_Leigh_Cook|http://dbpedia.org/resource/Rosario_Dawson|http://dbpedia.org/resource/Tara_Reid"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Josie and the Pussycats is a 2001 American musical comedy film released by Columbia Pictures, Universal Pictures, and Metro-Goldwyn-Mayer. Directed and co-written by Harry Elfont and Deborah Kaplan, the film is loosely based upon the Archie comic of the same name, as well as the Hanna-Barbera cartoon. The film is about a young all-female band which signs a record contract with a New York City record label, only to discover that the company does not have the musicians' best interests at heart. The film stars Rachael Leigh Cook, Tara Reid, and Rosario Dawson as the Pussycats, with Alan Cumming, Parker Posey, and Gabriel Mann in supporting roles. The film received mixed reviews and was a box office bomb, earning about $15 million against a $39 million budget."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures|http://dbpedia.org/resource/Metro-Goldwyn-Mayer|http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jacky_in_Women's_Kingdom"}, "Title": {"type": "literal", "value": "Jacky in the Kingdom of Women"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Riad_Sattouf"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/An\u00e9mone|http://dbpedia.org/resource/Charlotte_Gainsbourg|http://dbpedia.org/resource/Didier_Bourdon|http://dbpedia.org/resource/No\u00e9mie_Lvovsky|http://dbpedia.org/resource/Vincent_Lacoste"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Jacky in the Kingdom of Women (French: Jacky au royaume des filles; also known as Jacky in the Kingdom of Women) is a 2014 French comedy film directed by Riad Sattouf and starring Vincent Lacoste, Charlotte Gainsbourg and Didier Bourdon."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Path\u00e9"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Attahasam"}, "Title": {"type": "literal", "value": "Attahasam"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Saran_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ajith_Kumar|http://dbpedia.org/resource/Pooja_(actress)|http://dbpedia.org/resource/Sujatha_(actress)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "157"}, "Description": {"type": "literal", "value": "Attahasam (English: Defiance) is a 2004 Tamil action masala film written and directed by Saran featuring Ajith Kumar in dual lead roles with Pooja playing the female lead. Sujatha, Karunas and Ramesh Khanna play pivotal roles in the film, while the score and soundtrack are composed by Bharathwaj the film became a hit on his career"}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Ayngaran_International"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sex_Tape_(film)"}, "Title": {"type": "literal", "value": "Sex Tape"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jake_Kasdan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cameron_Diaz|http://dbpedia.org/resource/Ellie_Kemper|http://dbpedia.org/resource/Jason_Segel|http://dbpedia.org/resource/Rob_Corddry|http://dbpedia.org/resource/Rob_Lowe"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Sex Tape is a 2014 American comedy film directed by Jake Kasdan and written by Kate Angelo, Jason Segel, and Nicholas Stoller. Starring Segel, Cameron Diaz, Rob Corddry, Ellie Kemper, and Rob Lowe, the film was released on July 18, 2014, by Columbia Pictures. The film received generally negative reviews from critics."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Singham"}, "Title": {"type": "literal", "value": "Singham"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rohit_Shetty"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ajay_Devgn|http://dbpedia.org/resource/Kajal_Aggarwal|http://dbpedia.org/resource/Prakash_Raj"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "142"}, "Description": {"type": "literal", "value": "Singham (Hindustani pronunciation: [s\u026an\u0261\u02b1\u0259m] \"Lion\") is a 2011 Indian action film directed by Rohit Shetty, starring Ajay Devgn in the title role alongside Kajal Aggarwal and Prakash Raj as the antagonist. It is a remake of the 2010 Tamil film Singam featuring Suriya and Anushka Shetty. The film is produced under Reliance Entertainment, which co-produced the original Tamil movie. The theatrical trailer was released with Ready in June 2011. A sequel titled Singham Returns was released in August 2014."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Reliance_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Superstar_(2012_film)"}, "Title": {"type": "literal", "value": "Superstar"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Xavier_Giannoli"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kad_Merad"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "Superstar is a 2012 French comedy film directed by Xavier Giannoli. The film was selected to compete for the Golden Lion at the 69th Venice International Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Wild_Bunch_Distribution"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Funny_Ha_Ha"}, "Title": {"type": "literal", "value": "Funny Ha Ha"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Bujalski"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Christian_Rudder|http://dbpedia.org/resource/Kate_Dollenmayer"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Funny Ha Ha is a 2002 American film written and directed by Andrew Bujalski. It has been described as the first mumblecore film. The film was shot on 16 mm film on a very low budget. It deals with the lives of people in their twenties as they try to come to terms with life after college and confront the responsibilities of adulthood, if only to put them off for as long as possible."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sundance_Channel_(United_States)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Intervention_(film)"}, "Title": {"type": "literal", "value": "The Intervention"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Clea_DuVall"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alia_Shawkat|http://dbpedia.org/resource/Ben_Schwartz|http://dbpedia.org/resource/Clea_DuVall|http://dbpedia.org/resource/Cobie_Smulders|http://dbpedia.org/resource/Jason_Ritter|http://dbpedia.org/resource/Melanie_Lynskey|http://dbpedia.org/resource/Natasha_Lyonne|http://dbpedia.org/resource/Vincent_Piazza"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "The Intervention is a 2016 American comedy-drama film written and directed by Clea DuVall in her directorial debut. The film stars DuVall, Melanie Lynskey, Natasha Lyonne, Vincent Piazza, Jason Ritter, Ben Schwartz, Alia Shawkat and Cobie Smulders. The Intervention had its world premiere at the 2016 Sundance Film Festival on January 26, 2016. It was released in a limited release and through video on demand on August 26, 2016, by Samuel Goldwyn Films and Paramount Pictures."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures|http://dbpedia.org/resource/Samuel_Goldwyn_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Todas_las_azafatas_van_al_cielo"}, "Title": {"type": "literal", "value": "Todas las azafatas van al cielo"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Daniel_Burman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alfredo_Casero|http://dbpedia.org/resource/Emilio_Disi|http://dbpedia.org/resource/Ingrid_Rubio|http://dbpedia.org/resource/Norma_Aleandro|http://dbpedia.org/resource/Valentina_Bassi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Todas las azafatas van al cielo (English: Every Stewardess Goes to Heaven) is a 2002 Argentine and Spanish comedy drama film directed by Daniel Burman and written by Burman and Emiliano Torres. The picture was produced by Pablo Bossi, Pedro D'Angelo, Diego Dubcovsky and Jos\u00e9 Mar\u00eda Morales. It features Alfredo Casero as Juli\u00e1n and Ingrid Rubio as the air hostess Teresa. The metaphorical romantic comedy-drama is about a widowed ophthalmologist and a free-spirited airline flight-attendant (who the director believes seems to hold a certain fascination in western culture)."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/BD_Cine"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mengejar_Mas-Mas"}, "Title": {"type": "literal", "value": "Mengejar Mas-Mas"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rudy_Soedjarwo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dina_Olivia|http://dbpedia.org/resource/Dwi_Sasono|http://dbpedia.org/resource/Elmayana_Sabrenia|http://dbpedia.org/resource/Ira_Wibowo|http://dbpedia.org/resource/Poppy_Sovia|http://dbpedia.org/resource/Roy_Marten"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Mengejar Mas-Mas is an Indonesia drama comedy movie. Shanaz (Poppy Sovia) felt guilty for her father's death. Her relationship with her mother disharmonize, and things get worse when her mother decides to marry her boyfriend within 8 months since her father died. Disappointed, Shanaz runs away to Jogjakarta to follow her boyfriend Mika, but she lost contact with him. With no money, she\u2019s been strayed to Pasar Kembang (Sarkem), the worst localization in Jogjakarta. She meets Ningsih (Dina Olivia), a prostitute who saves her from a bad guy. Ningsih lets Shanaz stays with her, and they get close. Then Shanaz meet Parno (Dwi Sasono), Ningsih\u2019s former boyfriend. They often spend their time together during Ningsih absence for \u201cwork\u201d. Even he\u2019s 20 years older than Shanaz, Parno\u2019s crushed to Shanaz\u2019s heart. Shanaz secretly falls in love with him, but Ningsih and Parno still care for each other."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Movie_43"}, "Title": {"type": "literal", "value": "Movie 43"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bob_Odenkirk|http://dbpedia.org/resource/Brett_Ratner|http://dbpedia.org/resource/Elizabeth_Banks|http://dbpedia.org/resource/Griffin_Dunne|http://dbpedia.org/resource/James_Gunn_(filmmaker)|http://dbpedia.org/resource/Peter_Farrelly|http://dbpedia.org/resource/Rusty_Cundieff|http://dbpedia.org/resource/Steve_Carr|http://dbpedia.org/resource/Steven_Brill_(scriptwriter)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anna_Faris|http://dbpedia.org/resource/Chlo\u00eb_Grace_Moretz|http://dbpedia.org/resource/Christopher_Mintz-Plasse|http://dbpedia.org/resource/Elizabeth_Banks|http://dbpedia.org/resource/Emma_Stone|http://dbpedia.org/resource/Gerard_Butler|http://dbpedia.org/resource/Halle_Berry|http://dbpedia.org/resource/Hugh_Jackman|http://dbpedia.org/resource/Jason_Sudeikis|http://dbpedia.org/resource/Jeremy_Allen_White|http://dbpedia.org/resource/Johnny_Knoxville|http://dbpedia.org/resource/Josh_Duhamel|http://dbpedia.org/resource/Justin_Long|http://dbpedia.org/resource/Kate_Bosworth|http://dbpedia.org/resource/Kate_Winslet|http://dbpedia.org/resource/Kristen_Bell|http://dbpedia.org/resource/Leslie_Bibb|http://dbpedia.org/resource/Liev_Schreiber|http://dbpedia.org/resource/Naomi_Watts|http://dbpedia.org/resource/Richard_Gere|http://dbpedia.org/resource/Seann_William_Scott|http://dbpedia.org/resource/Terrence_Howard|http://dbpedia.org/resource/Uma_Thurman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94|98"}, "Description": {"type": "literal", "value": "Movie 43 is a 2013 American anthology comedy film co-directed and produced by Peter Farrelly, and written by Rocky Russo and Jeremy Sosenko among others. The film features fourteen different storylines, each one by a different director, including Elizabeth Banks, Steven Brill, Steve Carr, Rusty Cundieff, James Duffy, Griffin Dunne, Patrik Forsberg, James Gunn, Bob Odenkirk, Brett Ratner, Will Graham, and Jonathan van Tulleken. It stars an ensemble cast that is led by Elizabeth Banks, Kristen Bell, Halle Berry, Gerard Butler, Leslie Bibb, Kate Bosworth, Josh Duhamel, Anna Faris, Richard Gere, Terrence Howard, Hugh Jackman, Johnny Knoxville, Justin Long, Christopher Mintz-Plasse, Chlo\u00eb Grace Moretz, Liev Schreiber, Seann William Scott, Emma Stone, Jason Sudeikis, Uma Thurman, Naomi Watts, and Kate Winslet. The film took almost a decade to get into production as most studios rejected the script, which was eventually picked up by Relativity Media for $6 million. The film was shot over a period of several years, as casting also proved to be a challenge for the producers. Some actors, including George Clooney, declined to take part, while others, such as Richard Gere, attempted to get out of the project. Released on January 25, 2013, Movie 43 has been widely panned by critics, with Richard Roeper calling it \"the Citizen Kane of awful\", joining others who labeled it as one of the worst films of all time. The film won three awards at the 34th Golden Raspberry Awards, including Worst Picture."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Relativity_Media"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Les_Mis\u00e9rables_(2012_film)"}, "Title": {"type": "literal", "value": "Les Mis\u00e9rables"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tom_Hooper"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amanda_Seyfried|http://dbpedia.org/resource/Anne_Hathaway|http://dbpedia.org/resource/Eddie_Redmayne|http://dbpedia.org/resource/Helena_Bonham_Carter|http://dbpedia.org/resource/Hugh_Jackman|http://dbpedia.org/resource/Russell_Crowe|http://dbpedia.org/resource/Sacha_Baron_Cohen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Best_Musical_or_Comedy_Picture_Golden_Globe_winners|http://dbpedia.org/resource/Category:Films_featuring_a_Best_Musical_or_Comedy_Actor_Golden_Globe_winning_performance"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "158"}, "Description": {"type": "literal", "value": "Les Mis\u00e9rables is a 2012 British-American musical drama film directed by Tom Hooper and scripted by William Nicholson, Boublil, Sch\u00f6nberg, and Herbert Kretzmer, based on the musical of the same name by Alain Boublil and Claude-Michel Sch\u00f6nberg which is in turn based on the 1862 French novel by Victor Hugo. The film is a British and American venture produced by Relativity Media, Working Title Films and Cameron Mackintosh Ltd. and distributed by Universal Pictures. The film stars an ensemble cast led by Hugh Jackman, Russell Crowe, Anne Hathaway, and Amanda Seyfried. Set in France during the early 19th century, the film tells the story of Jean Valjean, an ex-convict who, inspired by a kindly bishop, decides to turn his life around. He eventually becomes mayor of a local town and owner of its factory. He is always alert to the risk of being captured again by police inspector Javert, who is ruthless in hunting down law-breakers, believing they cannot change for the better. One of Valjean's factory workers, Fantine, blames him for her being cast into a life of prostitution. When she dies, he feels responsible and agrees to take care of her illegitimate daughter Cosette \u2014 though he must first escape Javert. Later, when Cosette is grown, they are swept up in the political turmoil in Paris, which culminates in the Paris Uprising of 1832. Attempts to adapt a Les Mis\u00e9rables film from the stage musical had taken place since the late 1980s. In June 2011, from a screenplay by Nicholson, production of the film officially began with Hooper and Mackintosh serving as director and producer, and the main characters were cast later that year. Principal photography commenced in March 2012, and took place in various English locations, including Greenwich, London, Chatham, Winchester, Bath and Portsmouth; as well as in Gourdon, France. Les Mis\u00e9rables premiered in London 5 December 2012, and was released 25 December 2012 in the United States and 11 January 2013 in the United Kingdom. The film received generally favourable reviews, with many critics praising the cast, and Jackman, Hathaway, Eddie Redmayne and Samantha Barks being the most often singled out for praise. The film won the Golden Globe Award for Best Motion Picture \u2013 Musical or Comedy, the Golden Globe Award for Best Actor \u2013 Motion Picture Musical or Comedy for Jackman and the Golden Globe Award for Best Supporting Actress \u2013 Motion Picture for Hathaway. It also won four British Academy Film Awards (BAFTA), including the Best Actress in a Supporting Role (Hathaway). It received eight Academy Award nominations including Best Picture (the first musical nominated since 2002's winner Chicago) and Best Actor for Jackman, and won three, for Best Sound Mixing, Best Makeup and Hairstyling and Best Supporting Actress for Hathaway."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Prenup"}, "Title": {"type": "literal", "value": "The Prenup"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jun_Lana"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jennylyn_Mercado|http://dbpedia.org/resource/Sam_Milby"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Philippine_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "118"}, "Description": {"type": "literal", "value": "The Prenup is a 2015 Filipino romantic comedy film starring Jennylyn Mercado and Sam Milby. It is written and directed by Jun Lana. It was released on October 14, 2015 by Regal Entertainment. The film is about two people meet on a plane and fall in love in New York. They're all set to get married back in the Philippines, but the guy's rich parents are suspicious of the girl's intentions and insist on a prenuptial agreement."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Regal_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bridge_and_Tunnel_(film)"}, "Title": {"type": "literal", "value": "Bridge and Tunnel"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jason_Michael_Brescia"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Annet_Mahendru|http://dbpedia.org/resource/Mary_Kate_Wiles"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Bridge and Tunnel is a 2014 American comedy-drama film written and directed by Jason Michael Brescia and released by Glacier Road Productions. The film stars Ryan Metcalf, Mary Kate Wiles and Annet Mahendru and tells the story of a group of twentysomething millennials coming of age in Long Island, New York. The film highlights the psychological impact of 9/11 on the generation that grew up in the early part of the twenty-first century, the effects of the great recession on America's youth, and the destruction caused by Hurricane Sandy."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Gravitas_Ventures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/London_Betty"}, "Title": {"type": "literal", "value": "London Betty"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Thomas_Edward_Seymour"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Clint_Howard|http://dbpedia.org/resource/Daniel_von_Bargen|http://dbpedia.org/resource/Nicole_Lewis|http://dbpedia.org/resource/Russ_Russo|http://dbpedia.org/resource/Thomas_Edward_Seymour"}, "Published": {"type": "literal", "value": "2009-01-20"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_adventure_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "London Betty is a 2009 American comedy/adventure film directed and written by Thomas Edward Seymour. The film includes performances by Nicole Lewis, Daniel von Bargen (in his final performance), Russ Russo, and director Seymour, as well as narration by Clint Howard. London Betty made the list of \"Top Films of the Year\" on Moviesmademe.com in 2009. Originally having a theatrical release in 2009, the film was released on DVD in 2010 through Maverick Entertainment on their Platinum Label. In May 2011 London Betty hit the #3 spot for British comedy on Amazon on Demand."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Maverick_Entertainment_Group"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Other_People_(film)"}, "Title": {"type": "literal", "value": "Other People"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Kelly_(writer)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bradley_Whitford|http://dbpedia.org/resource/J._J._Totah|http://dbpedia.org/resource/Jesse_Plemons|http://dbpedia.org/resource/John_Early_(comedian)|http://dbpedia.org/resource/June_Squibb|http://dbpedia.org/resource/Madisen_Beaty|http://dbpedia.org/resource/Maude_Apatow|http://dbpedia.org/resource/Molly_Shannon|http://dbpedia.org/resource/Zach_Woods"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "Other People is a 2016 American comedy-drama film written and directed by Chris Kelly and stars Jesse Plemons, Molly Shannon, Bradley Whitford, Maude Apatow, Madisen Beaty, John Early, Zach Woods, J.J. Totah and June Squibb. The film had its world premiere at the 2016 Sundance Film Festival on January 21, 2016. The film was released on September 9, 2016, by Vertical Entertainment."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Vertical_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Uncle_Boonmee_Who_Can_Recall_His_Past_Lives"}, "Title": {"type": "literal", "value": "Uncle Boonmee Who Can Recall His Past Lives"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Apichatpong_Weerasethakul"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "Uncle Boonmee Who Can Recall His Past Lives (Thai: \u0e25\u0e38\u0e07\u0e1a\u0e38\u0e0d\u0e21\u0e35\u0e23\u0e30\u0e25\u0e36\u0e01\u0e0a\u0e32\u0e15\u0e34; rtgs: Lung Bunmi Raluek Chat) is a 2010 art drama Thai film written, produced and directed by Apichatpong Weerasethakul. The film, which explores the theme of reincarnation, won the Palme d'Or at the 2010 Cannes Film Festival, becoming the first Thai film to do so."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Being_Mrs_Elliot"}, "Title": {"type": "literal", "value": "Being Mrs. Elliot"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Omoni_Oboli"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ayo_Makun|http://dbpedia.org/resource/Majid_Michel|http://dbpedia.org/resource/Omoni_Oboli|http://dbpedia.org/resource/Sylvia_Oluchy|http://dbpedia.org/resource/Uru_Eke"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Nigerian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Being Mrs Elliot is a 2014 Nigerian romantic comedy film, co-produced and directed by Omoni Oboli. It stars Majid Michel, Omoni Oboli, Ayo Makun, Sylvia Oluchy and Seun Akindele. It premiered at Nollywood Film Festival in Paris on 5 June 2014. It received 6 nominations at the 2014 Best of Nollywood Awards and was also nominated in 9 categories at the 2014 Golden Icons Academy Movie Awards taking place in October."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/D.E.B.S._(2003_film)"}, "Title": {"type": "literal", "value": "D.E.B.S."}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Angela_Robinson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alex_Breckenridge|http://dbpedia.org/resource/Clare_Kramer|http://dbpedia.org/resource/Jill_Ritchie|http://dbpedia.org/resource/Shanti_Lowry|http://dbpedia.org/resource/Tammy_Lynn_Michaels"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films|http://dbpedia.org/resource/Category:Teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "11"}, "Description": {"type": "literal", "value": "D.E.B.S. is a 2003 action/comedy independent short film written and directed by Angela Robinson. D.E.B.S. made the film festival circuit including the Sundance Film Festival, L.A. Outfest and New York Lesbian and Gay Film Festival, receiving a total of seven film festival awards. D.E.B.S. is both a parody and an emulation of the Charlie's Angels format. It features a lesbian love story between one of the heroes and the villain."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/POWER_UP"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ride_Along_(film)"}, "Title": {"type": "literal", "value": "Ride Along"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tim_Story"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Police_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Ride Along is a 2014 American buddy cop action comedy film directed by Tim Story and starring Ice Cube, Kevin Hart, John Leguizamo, Bryan Callen, Tika Sumpter and Laurence Fishburne. Greg Coolidge, Jason Mantzoukas, Phil Hay, and Matt Manfredi wrote the screenplay based on a story originally from Coolidge. The film follows Ben Barber (Hart), a high school security guard who must prove to his girlfriend's brother, James Payton (Ice Cube), that he is worthy of marrying her. James, a police officer out to catch Serbian smugglers' boss Omar (Fishburne), takes Ben on a ride along to prove himself. Principal photography began on October 31, 2012 in Atlanta and ended on December 19, 2012. The film was produced by Relativity Media, Cube Vision Productions and Rainforest Films, and distributed by Universal Pictures. Following two premieres in Atlanta and Los Angeles, the film was released worldwide on January 17, 2014, with generally negative reviews. It earned a worldwide total of more than $153 million against a budget of $25 million. The film broke the record for highest domestic opening weekend gross in the month of January, taking in $41.5 million, a record broken again a year later when American Sniper had its wide release. A sequel, Ride Along 2, was released on January 15, 2016."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_F_Word_(2013_film)"}, "Title": {"type": "literal", "value": "The F Word"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Dowse"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Driver|http://dbpedia.org/resource/Daniel_Radcliffe|http://dbpedia.org/resource/Mackenzie_Davis|http://dbpedia.org/resource/Megan_Park|http://dbpedia.org/resource/Rafe_Spall|http://dbpedia.org/resource/Zoe_Kazan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films|http://dbpedia.org/resource/Category:Irish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "The F Word (released in some countries as What If) is a 2013 Irish-Canadian romantic comedy film directed by Michael Dowse and written by Elan Mastai, based on TJ Dawe and Michael Rinaldi's play Toothpaste and Cigars. The film stars Daniel Radcliffe, Zoe Kazan, Megan Park, Adam Driver, Mackenzie Davis and Rafe Spall. It premiered at the 2013 Toronto International Film Festival and was a nominee for Best Picture at the 2nd Canadian Screen Awards, and won for Adapted Screenplay."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Entertainment_One"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Remember_the_Daze"}, "Title": {"type": "literal", "value": "Remember the Daze"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jess_Manafort"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alexa_Vega|http://dbpedia.org/resource/Katrina_Begin|http://dbpedia.org/resource/Leighton_Meester|http://dbpedia.org/resource/Marnette_Patterson|http://dbpedia.org/resource/Melonie_Diaz"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Remember the Daze (originally titled The Beautiful Ordinary) is a 2007 drama film released in theaters in April 2008. The film was directed by Jess Manafort. The plot of the movie has been described as \"a glimpse into the teenage wasteland of suburbia 1999 that takes place over 24-hours, and the teenagers who make their way through the last day of high school in the last year of the past millennium.\" The film has been selected as one of the eight films competing in the Narrative Competition at the 2007 Los Angeles Film Festival which took place June 21-July 1. This was the world premiere of the film. In February 2008, the movie's title was changed from The Beautiful Ordinary. It was released in two theaters in LA, one in New York and one in Washington, D.C. on April 11, 2008 and was released on DVD on June 3, 2008. The movie was filmed primarily in Wilmington, North Carolina during May 2006."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/First_Look_International|http://dbpedia.org/resource/Freestyle_Releasing"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Quiet_Night_In"}, "Title": {"type": "literal", "value": "Quiet Night In"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Christopher_Banks"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Brian_McKay|http://dbpedia.org/resource/Brian_Moore_(actor)|http://dbpedia.org/resource/Kittichon_Helviphat|http://dbpedia.org/resource/Lucy_Gay|http://dbpedia.org/resource/Nicolette_Kenny|http://dbpedia.org/resource/Richard_Lambeth"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:New_Zealand_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "Quiet Night In is a 2005 New Zealand film written, produced and directed by Christopher Banks. It premiered at the Stratford-upon-Avon International Digital Film Festival in the United Kingdom."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Arkles_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Losers'_Club"}, "Title": {"type": "literal", "value": "Losers' Club"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tolga_\u00d6rnek"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "Losers' Club (Turkish: Kaybedenler Kul\u00fcb\u00fc) is a 2011 Turkish comedy-drama film, co-written and directed by Tolga \u00d6rnek based on a true story, starring Nejat \u0130\u015fler and Yi\u011fit \u00d6z\u015fener as the co-hosts of a contorversial mid-90s Istanbul radio show. The film, which opened on March 25, 2011 at number 2 in the Turkish box office, is one of the highest grossing Turkish films of 2011."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Tiglon_Film"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hello_Ghost"}, "Title": {"type": "literal", "value": "Hello Ghost"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kim_Young-tak"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cha_Tae-hyun|http://dbpedia.org/resource/Kang_Ye-won"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:South_Korean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "Hello Ghost (Hangul: \ud5ec\ub85c\uc6b0 \uace0\uc2a4\ud2b8; RR: Hello-u Goseuteu) is a 2010 South Korean comedy film about a man's multiple failed suicide attempts. After the most recent one, he discovers he can see a family of ghosts. The ghosts agree to leave him alone under the condition that he fulfill their requests. The film was the 9th highest grossing Korean film in 2010, with a total of 3,042,021 admissions nationwide. The Chosun Ilbo commented that the film was good for families. Cha Tae-hyun found his role challenging, especially because it required him to smoke cigarettes, which he does not do in real life."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Next_Entertainment_World"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Garden_State_(film)"}, "Title": {"type": "literal", "value": "Garden State"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Zach_Braff"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ian_Holm|http://dbpedia.org/resource/Natalie_Portman|http://dbpedia.org/resource/Peter_Sarsgaard|http://dbpedia.org/resource/Zach_Braff"}, "Published": {"type": "literal", "value": "2004-01-16|2004-07-28"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Garden State is a 2004 American romantic comedy-drama film, written and directed by Zach Braff and starring Braff, Natalie Portman, Peter Sarsgaard, and Ian Holm. The film centers on Andrew Largeman (Braff), a 26-year-old actor/waiter who returns to his hometown in New Jersey after his mother dies. Braff based the film on his real life experiences. It was filmed in April and May 2003 and released on July 28, 2004. New Jersey was the main setting and primary shooting location. Garden State received positive reviews upon its release and has garnered a cult following. It was an official selection of the Sundance Film Festival. The film also spawned a soundtrack for which Braff, who picked the music himself, won a Grammy Award."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Searchlight_Pictures|http://dbpedia.org/resource/Miramax_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Actors"}, "Title": {"type": "literal", "value": "The Actors"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Conor_McPherson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aisling_O'Sullivan|http://dbpedia.org/resource/Ben_Miller|http://dbpedia.org/resource/Dylan_Moran|http://dbpedia.org/resource/Lena_Headey|http://dbpedia.org/resource/Michael_Caine|http://dbpedia.org/resource/Michael_Gambon|http://dbpedia.org/resource/Michael_McElhatton|http://dbpedia.org/resource/Miranda_Richardson|http://dbpedia.org/resource/Simon_Delaney"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Irish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "The Actors is a 2003 film written and directed by Conor McPherson and starring Dylan Moran and Michael Caine. In supporting roles are Michael Gambon, Miranda Richardson and Lena Headey . The Actors is a contemporary comedy set in Dublin. It follows the exploits of two mediocre stage actors as they devise a plan to con a retired gangster out of \u00a350,000. The gangster owes the money to a third party, whom he has never met. The actors take advantage of this fact by impersonating this 'unidentified' third party, and claiming the debt as their own. To pull it off they enlist Moran's eerily intelligent nine-year-old niece, who restructures the plan each time something goes wrong. The two protagonists are acting in a version of Shakespeare's Richard III in which everyone dresses in Nazi uniform, a sly nod to Ian McKellen's production. The film is centred on the Olympia Theatre, and it is noteworthy for featuring the famous glass awning over the entrance which has since been destroyed in a traffic accident. The glass awning has since been rebuilt to its full former glory."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Miramax_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Let_the_Game_Begin"}, "Title": {"type": "literal", "value": "Let the Game Begin"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Amit_Gupta"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Rodriguez|http://dbpedia.org/resource/Diora_Baird|http://dbpedia.org/resource/James_Avery_(actor)|http://dbpedia.org/resource/Ken_Davitian|http://dbpedia.org/resource/Lisa_Ray|http://dbpedia.org/resource/Lochlyn_Munro|http://dbpedia.org/resource/Michael_Madsen|http://dbpedia.org/resource/Natasha_Henstridge|http://dbpedia.org/resource/Stephen_Baldwin|http://dbpedia.org/resource/Thomas_Ian_Nicholas"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_screwball_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Let the Game Begin is a 2010 American romantic comedy from Twisted Light Productions, directed by Amit Gupta. The film stars CSI: Miami actor Adam Rodriguez and Stephen Baldwin. The film was released in Australia on May 5, 2010, and was released in other countries in 2010 and 2011."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Signal_(2007_film)"}, "Title": {"type": "literal", "value": "The Signal"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dan_Bush|http://dbpedia.org/resource/David_Bruckner|http://dbpedia.org/resource/Jacob_Gentry"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/A._J._Bowen|http://dbpedia.org/resource/Anessa_Ramsey|http://dbpedia.org/resource/Justin_Welborn"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "The Signal is an American horror film written and directed by independent filmmakers David Bruckner, Dan Bush and Jacob Gentry. It is told in three parts, in which all telecommunication and audiovisual devices transmit only a mysterious signal turning people mad and activating murderous behaviour in many of those affected. The film's three interconnected chapters (\"transmissions\") are presented in a nonlinear narrative. Each of them manifests elements of (besides the overall genre of psychological horror), respectively, splatter film, black comedy, and a post-apocalyptic love story. The Signal was met with a mixed but largely positive critical reception."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Magnolia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/25_Watts"}, "Title": {"type": "literal", "value": "25 watts"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Juan_Pablo_Rebella|http://dbpedia.org/resource/Pablo_Stoll"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Daniel_Hendler"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "-94"}, "Description": {"type": "literal", "value": ""}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Cinema_Tropical"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Italiano_medio"}, "Title": {"type": "literal", "value": "Italiano medio"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Maccio_Capatonda"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Maccio_Capatonda"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Italiano medio (lit. \"Average Italian Man\") is a 2015 Italian comedy film written, directed and starred by Maccio Capatonda."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Medusa_Film"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/El_Amor_\u2013_primera_parte"}, "Title": {"type": "literal", "value": "El Amor - primera parte"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alejandro_Fadel|http://dbpedia.org/resource/Juan_Schnitman|http://dbpedia.org/resource/Santiago_Mitre"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Leonora_Balcarce|http://dbpedia.org/resource/Luciano_C\u00e1ceres"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "El Amor \u2013 primera parte (English language:The Love-Part One) is a 2004 Argentine independent romantic comedy film directed and written by Alejandro Fadel and Mart\u00edn Mauregui and Juan Schnitman and Santiago Mitre"}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Cabin_Fever_2:_Spring_Fever"}, "Title": {"type": "literal", "value": "Cabin Fever 2: Spring Fever"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ti_West"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Giuseppe_Andrews|http://dbpedia.org/resource/Judah_Friedlander|http://dbpedia.org/resource/Larry_Fessenden|http://dbpedia.org/resource/Marc_Senter|http://dbpedia.org/resource/Mark_Borchardt|http://dbpedia.org/resource/Michael_Bowen_(actor)|http://dbpedia.org/resource/Noah_Segan|http://dbpedia.org/resource/Rider_Strong"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Cabin Fever 2: Spring Fever (also known as Cabin Fever 2 or Cabin Fever: Spring Fever) is an 2009 American horror film. The film is about a high school prom that descends into sheer panic when a deadly flesh-eating virus spreads via a popular brand of bottled water. The film was directed by Ti West and the sequel to the 2002 film, Cabin Fever."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lions_Gate"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Exclusive:_Beat_the_Devil's_Tattoo"}, "Title": {"type": "literal", "value": "The Exclusive: Beat the Devil's Tattoo"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Roh_Deok"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jo_Jung-suk|http://dbpedia.org/resource/Lee_Ha-na|http://dbpedia.org/resource/Lee_Mi-sook"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:South_Korean_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "125"}, "Description": {"type": "literal", "value": "The Exclusive: Beat the Devil's Tattoo (Hangul: \ud2b9\uc885: \ub7c9\uccb8\uc0b4\uc778\uae30; RR: Teukjong: Ryangchensalingi) is a 2015 South Korean thriller film directed by Roh Deok. It was released on October 22, 2015."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lotte_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Money_Money,_More_Money"}, "Title": {"type": "literal", "value": "Money Money, More Money"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/J._D._Chakravarthy"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Brahmanandam|http://dbpedia.org/resource/J._D._Chakravarthy"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "Money Money, More Money is a Telugu film directed by J. D. Chakravarthy. The film is a remake of 2006 film Darwaaza Bandh Rakho. The film is touted as a sequel to the films, Money (1993) and Money Money (1995). The film highlights actor Brahmanandam's noted role as Khan Dada in the earlier series."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Reliance_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Like_a_Virgin_(film)"}, "Title": {"type": "literal", "value": "Like a Virgin"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lee_Hae-jun|http://dbpedia.org/resource/Lee_Hae-young"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Baek_Yoon-sik|http://dbpedia.org/resource/Kim_Yoon-seok|http://dbpedia.org/resource/Lee_Eon|http://dbpedia.org/resource/Ryu_Deok-hwan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:South_Korean_comedy_films|http://dbpedia.org/resource/Category:Teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "Like a Virgin (Hangul: \ucc9c\ud558\uc7a5\uc0ac \ub9c8\ub3c8\ub098; RR: Cheonhajangsa Madonna; lit. \"Strong Man Under Heaven Madonna\") is a 2006 South Korean film, written and directed by Lee Hae-jun and Lee Hae-young. Ryu Deok-hwan stars in the lead role as transgender teenager Oh Dong-ku, and won several domestic awards for his performance, as well as a nomination for the Asia Pacific Screen Award Best Performance by an Actor. The film's English title is a reference to a Madonna song of the same name."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/CJ_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tango_&_Cash"}, "Title": {"type": "literal", "value": "Tango & Cash"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Albert_Magnoli|http://dbpedia.org/resource/Andrei_Konchalovsky|http://dbpedia.org/resource/Peter_MacDonald_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jack_Palance|http://dbpedia.org/resource/Kurt_Russell|http://dbpedia.org/resource/Sylvester_Stallone"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1980s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Tango & Cash is a 1989 American buddy cop action comedy film that was mainly directed by Andrei Konchalovsky, although Albert Magnoli took over in the later stages of filming. It stars Sylvester Stallone, Kurt Russell, Jack Palance, and Teri Hatcher. The film was released in the United States on December 22, 1989, and was the final film to be released in the 1980s. Tango & Cash follows Raymond Tango and Gabriel Cash, two rival LAPD narcotics detectives, who are forced to work together after the criminal mastermind Yves Perret frames both of them for murder."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Devil_Dared_Me_To"}, "Title": {"type": "literal", "value": "The Devil Dared Me To"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Stapp"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bonnie_Soper|http://dbpedia.org/resource/Chris_Stapp|http://dbpedia.org/resource/Dominic_Bowden|http://dbpedia.org/resource/Matt_Heath_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "77"}, "Description": {"type": "literal", "value": "The Devil Dared Me To is a New Zealand film written by and starring Chris Stapp and Matt Heath. The film revolves around a fictional stuntman, Randy Cambell, who aspires to be the greatest living New Zealander in that profession. The character was first developed as the stuntman in Stapp and Heath's Back Of The Y Masterpiece Television. Stapp told the New Zealand Listener: Our aim is to make the greatest New Zealand film since Goodbye Pork Pie\". The film was released in theaters across New Zealand on 11 October 2007. The film grossed $93,950 after four days on 35 screens to rank sixth on the week\u2019s box office top 20; after seven days, it had earned $127,320, and earned another $52,000 over Labour Weekend."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Killer_Bud"}, "Title": {"type": "literal", "value": "Killer Bud"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Karl_T._Hirsch"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Corin_Nemec|http://dbpedia.org/resource/Danielle_Harris|http://dbpedia.org/resource/David_Faustino|http://dbpedia.org/resource/Michael_Wiseman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Killer Bud is an American comedy film released in 2001. It was Robert Stack's final film prior to his death in 2003."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Clown_(2011_film)"}, "Title": {"type": "literal", "value": "The Clown"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Selton_Mello"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Larissa_Manoela|http://dbpedia.org/resource/Paulo_Jos\u00e9|http://dbpedia.org/resource/Selton_Mello"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Brazilian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "The Clown (Portuguese: O Palha\u00e7o) is a 2011 Brazilian comedy-drama film. It is the second feature film directed by Selton Mello, who also stars as the protagonist. The film follows the story of the father and son Benjamin and Valdemar, who work as clowns Pangar\u00e9 and Puro Sangue, running the country roads together with the Circus Hope troupe. The clown Benjamin, however, is in crisis. He thinks that is not funny anymore. The film was selected as the Brazilian entry for the Best Foreign Language Oscar at the 85th Academy Awards."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jigarthanda"}, "Title": {"type": "literal", "value": "Jigarthanda"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Karthik_Subbaraj"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aadukalam_Naren|http://dbpedia.org/resource/Bobby_Simha|http://dbpedia.org/resource/Guru_Somasundaram|http://dbpedia.org/resource/Karunakaran_(actor)|http://dbpedia.org/resource/Lakshmi_Menon_(actress)|http://dbpedia.org/resource/Siddharth_(actor)|http://dbpedia.org/resource/Soundararaja|http://dbpedia.org/resource/Vinodhini_Vaidyanathan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "171"}, "Description": {"type": "literal", "value": "Jigarthanda (English: Cold Heart) is a 2014 Indian Tamil black comedy-musical gangster film written and directed by Karthik Subbaraj. Produced by Kathiresan's Group Company, it features Siddharth, Bobby Simha and Lakshmi Menon in the lead, while the supporting cast includes Nassar, Ambika, Karunakaran and Sangili Murugan. Gavemic U Ary was the film's cinematographer, making his debut in Tamil cinema, and Vivek Harshan was the film's editor. Santhosh Narayanan composed the songs and background score. The film was produced under Kathiresan's production banner, Group company. It also won two National Film Awards for Best Supporting Actor (Bobby Simha) and Best Editing (Vivek Harshan). The plot revolves around Karthik (Siddharth), an assistant director who is thrown out of a reality new filmmakers show, as his short film was disappointing. Heartbroken, Karthik has the support of one of the judges (Aadukalam Naren) who believes he has the stuff to be a great director and is willing to back him if he does a script on a real life gangster. Karthik travels to Madurai looking to make a film based on the life and times of the notorious gangster Assault Sethu (Bobby Simha). The rest of the plot deals with how Karthik makes his film with the help of his friend Oorani (Karunakaran). The shoot of the film, entirely held in Madurai, started on 12 June 2013  and was completed after five months on 21 November 2013. Jigarthanda released on 1 August 2014 worldwide to critical acclaim from critics as well as audience who appreciated the film's script, performances, cinematography and music. The film was deemed as one of the most technically brilliant films in Tamil Cinema. The film was also dubbed into Telugu as Chikkadu Dorakadu, becoming Siddharth's first Telugu release in Telangana and Andhra Pradesh post their bifurcation. It was remade in Kannada with the same title in 2016 which was produced by actor Sudeep. The film completed 50 days at the box office, and was declared a \"Hit\" after it grossed \u20b935 crore (US$5.2 million) against a budget of \u20b910 crore (US$1.5 million)."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Going_the_Distance_(2010_film)"}, "Title": {"type": "literal", "value": "Going the Distance"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nanette_Burstein"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Charlie_Day|http://dbpedia.org/resource/Christina_Applegate|http://dbpedia.org/resource/Drew_Barrymore|http://dbpedia.org/resource/Jason_Sudeikis|http://dbpedia.org/resource/Justin_Long"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Going the Distance is a 2010 American romantic comedy film directed by Nanette Burstein and written by Geoff LaTulippe. It stars Drew Barrymore and Justin Long as a young couple, Erin and Garrett, who fall in love one summer in New York City and try to keep their long-distance relationship alive, when Erin heads home to San Francisco."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/New_Line_Cinema|http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Two-Bit_Waltz"}, "Title": {"type": "literal", "value": "Two-Bit Waltz"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Clara_Mamet"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/David_Paymer|http://dbpedia.org/resource/Jared_Gilman|http://dbpedia.org/resource/Rebecca_Pidgeon|http://dbpedia.org/resource/William_H._Macy"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "Two-Bit Waltz is a 2014 American comedy, drama film, written and directed by Clara Mamet in her directorial debut. It stars Mamet, Jared Gilman, Rebecca Pidgeon, David Paymer and William H. Macy. The film had its world premiere at the Tribeca Film Festival on April 19, 2014, and was released in a limited release on October 24, 2014, by Monterey Media."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/In_the_Land_of_Women"}, "Title": {"type": "literal", "value": "In the Land of Women"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jon_Kasdan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Brody|http://dbpedia.org/resource/Kristen_Stewart|http://dbpedia.org/resource/Meg_Ryan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "In the Land of Women is a 2007 American romantic comedy-drama film directed and written by Jon Kasdan. The film premiered in the United States on April 20, 2007."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros._Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/CHiPs_(film)"}, "Title": {"type": "literal", "value": "CHiPs"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dax_Shepard"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "CHiPs is an upcoming American action comedy film written and directed by Dax Shepard, based on the 1970s television series of the same name created by Rick Rosner. The film stars Shepard as Officer Jon Baker and Michael Pe\u00f1a as Frank \u201cPonch\u201d Poncherello, while the other cast includes Vincent D'Onofrio, Adam Brody, Rosa Salazar, Vida Guerra, and Kristen Bell. Principal photography began on October 21, 2015 in Los Angeles. CHiPs is scheduled to be released on August 11, 2017 by Warner Bros. Pictures. The MPAA has given the film an R rating."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros._Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Adventure_of_Iron_Pussy"}, "Title": {"type": "literal", "value": "The Adventure of Iron Pussy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Apichatpong_Weerasethakul|http://dbpedia.org/resource/Michael_Shaowanasai"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Krissada_Terrence|http://dbpedia.org/resource/Michael_Shaowanasai"}, "Published": {"type": "literal", "value": "2003-11-01"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "The Adventure of Iron Pussy (Thai: \u0e2b\u0e31\u0e27\u0e43\u0e08\u0e17\u0e23\u0e19\u0e07 or Hua jai tor ra nong) is a 2003 Thai musical-action-comedy film written and directed by Apichatpong Weerasethakul and Michael Shaowanasai and starring Shaowanasai. The protagonist is a transvestite Thai secret agent whose alter ego is a gay male convenience clerk. A homage and parody of the 1970s Thai action films, musicals and melodramas, particularly those that starred Mitr Chaibancha and Petchara Chaowarat, the movie premiered at the 2003 Tokyo International Film Festival and has also played at the Berlin Film Festival, the International Film Festival Rotterdam and other festivals. It is a cult film and has screened at several gay and lesbian film festivals as well."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kiss_and_Tell_(2011_film)"}, "Title": {"type": "literal", "value": "Kiss and Tell"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Desmond_Elliot"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Desmond_Elliot|http://dbpedia.org/resource/Joseph_Benjamin_(actor)|http://dbpedia.org/resource/Monalisa_Chinda|http://dbpedia.org/resource/Nse_Ikpe_Etim|http://dbpedia.org/resource/Uche_Jombo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Nigerian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "Kiss and Tell is a 2011 Nigerian romantic comedy film, produced by Emem Isong and directed by Desmond Elliot. It stars Monalisa Chinda, Joseph Benjamin, Desmond Elliot, Nse Ikpe Etim, Uche Jombo and Bhaira Mcwizu. Though the film was a commercial success, it was met with mixed to negative reception. The film revolves around two Casanovas, friends and business partners; Iyke (Joseph Benjamin) and Bernard (Desmond Elliot), and a divorce lawyer, Delphine (Monalisa Chinda), who is a divorcee herself and doesn't want to have anything to do with men again. Bernard strikes a bet with Iyke which involves Iyke having sex with Delphine in ten days or forfeit five percent of his shares to Bernard; if Iyke succeeded, he'd have five percent of Bernard's shares. However, Bernard tells Tena (Nse Ikpe Etim), Delphine's best friend about the bet in order to have an edge, thereby complicating things for Iyke."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mister_Lonely"}, "Title": {"type": "literal", "value": "Mr. Lonely"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Harmony_Korine"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anita_Pallenberg|http://dbpedia.org/resource/Denis_Lavant|http://dbpedia.org/resource/Diego_Luna|http://dbpedia.org/resource/James_Fox|http://dbpedia.org/resource/Samantha_Morton|http://dbpedia.org/resource/Werner_Herzog"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:British_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "113"}, "Description": {"type": "literal", "value": "Mister Lonely is a 2007 British-French-Irish-American comedy-drama film directed by Harmony Korine and co-written with his brother Avi Korine. The film features an ensemble cast of well-known foreign actors, including Diego Luna, Samantha Morton, Denis Lavant, Werner Herzog, James Fox, Anita Pallenberg and Leos Carax."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Films|http://dbpedia.org/resource/Palisades_Tartan"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Troma's_War"}, "Title": {"type": "literal", "value": "Troma's War"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lloyd_Kaufman|http://dbpedia.org/resource/Michael_Herz_(producer)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1980s_comedy_horror_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "Troma's War, also known as 1,000 Ways to Die in the United States, is a 1988 American action/adventure film written by Lloyd Kaufman and Mitchell Dana and directed by Michael Herz and Kaufman (credited as Samuel Weil). It began production in 1986 and was released in theaters in 1988 shortly after Class of Nuke 'Em High was done making its rounds at the box office."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ek_Main_Aur_Ekk_Tu"}, "Title": {"type": "literal", "value": "Ek Main Aur Ekk Tu"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Shakun_Batra"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Boman_Irani|http://dbpedia.org/resource/Imran_Khan_(Indian_actor)|http://dbpedia.org/resource/Kareena_Kapoor|http://dbpedia.org/resource/Ram_Kapoor|http://dbpedia.org/resource/Ratna_Pathak_Shah"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "Ek Main Aur Ekk Tu (English: One me, and one you) is a 2012 Indian romantic comedy film written and directed by Shakun Batra in his directorial debut. It was produced by Karan Johar and Hiroo Yash Johar under the banner of Dharma Productions, alongside Ronnie Screwvala of UTV Motion Pictures. The film features Imran Khan and Kareena Kapoor in lead roles, with Ratna Pathak Shah, Boman Irani and Ram Kapoor in supporting roles. The plot centers on an uptight architect named Rahul Kapoor, living in Las Vegas, Nevada, who loses his job and, following a night of debauchery, accidentally marries a free-spirited hairstylist named Riana Braganza. After mutually deciding to annul the marriage, Rahul begins a one-sided attraction for Riana, which threatens to ruin their new friendship. Development began in 2010, when Johar signed Batra and Khan for a film to be made under his banner. Inspired by the Woody Allen style of film-making, Ayesha Devitre and Batra worked on the script, with principal photography taking place in Vegas, Los Angeles, Pataudi and Mumbai. The features music by Clinton Cerejo and Amit Trivedi, with the former composing the score and the latter composing the songs. The lyrics for songs were written by Amitabh Bhattacharya. Originally slated to release during the fall of 2011, Ek Main Aur Ekk Tu eventually released on 10 February 2012, to positive critical notice, with major praise directed to Kapoor and Khan's performance, and proved a moderate commercial success."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/UTV_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Cheap_Thrills_(film)"}, "Title": {"type": "literal", "value": "Cheap Thrills"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/E._L._Katz"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/David_Koechner|http://dbpedia.org/resource/Ethan_Embry|http://dbpedia.org/resource/Pat_Healy_(actor)|http://dbpedia.org/resource/Sara_Paxton"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_comedy_thriller_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Cheap Thrills is a 2013 black comedy thriller film, directed by E. L. Katz in his directorial debut. It premiered at South by Southwest (SXSW) on March 8, 2013, and was acquired by Drafthouse Films and Snoot Entertainment. It was released on March 24, 2014, in the United States."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Drafthouse_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Specials_(film)"}, "Title": {"type": "literal", "value": "The Specials"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Craig_Mazin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/James_Gunn_(filmmaker)|http://dbpedia.org/resource/Jamie_Kennedy|http://dbpedia.org/resource/Jim_Zulevic|http://dbpedia.org/resource/Jordan_Ladd|http://dbpedia.org/resource/Judy_Greer|http://dbpedia.org/resource/Kelly_Coffield|http://dbpedia.org/resource/Paget_Brewster|http://dbpedia.org/resource/Rob_Lowe|http://dbpedia.org/resource/Sean_Gunn|http://dbpedia.org/resource/Thomas_Haden_Church"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "The Specials is a 2000 American comedy film about a group of ordinary superheroes on their day off. According to the film, the Specials are the sixth or seventh most popular group of superheroes in the world. Unlike most superhero films, The Specials has almost no action and few special effects; instead it focuses on the average day-to-day lives of the heroes. The film was written by James Gunn, directed by Craig Mazin, and produced on a small $1 million budget, which is unusual for a superhero-themed film. The MPAA gave the film an R rating for strong language."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Anchor_Bay_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jiyo_Kaka"}, "Title": {"type": "literal", "value": "Jiyo Kaka"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Parambrata_Chatterjee"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Rudranil_Ghosh|http://dbpedia.org/resource/Saswata_Chattopadhyay"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Jiyo Kaka (Bengali: \u099c\u09bf\u09af\u09bc\u09cb \u0995\u09be\u0995\u09be) is a 2011 Bengali comedy film directed by debutant Parambrata Chattopadhyay, the renowned film actor."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Once_Upon_a_Time_in_the_Midlands"}, "Title": {"type": "literal", "value": "Once Upon a Time in the Midlands"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Shane_Meadows"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kathy_Burke|http://dbpedia.org/resource/Rhys_Ifans|http://dbpedia.org/resource/Ricky_Tomlinson|http://dbpedia.org/resource/Robert_Carlyle|http://dbpedia.org/resource/Shirley_Henderson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:British_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "Once Upon a Time in the Midlands is a 2002 British romantic comedy film written and directed by Shane Meadows, starring Robert Carlyle, Rhys Ifans, Kathy Burke, Ricky Tomlinson and Shirley Henderson. It is set in Nottingham in the northeast Midlands."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Film4"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Persepolis_(film)"}, "Title": {"type": "literal", "value": "Persepolis"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Marjane_Satrapi|http://dbpedia.org/resource/Vincent_Paronnaud"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:Animated_comedy_films|http://dbpedia.org/resource/Category:French_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Persepolis is a 2007 French animated film based on Marjane Satrapi's autobiographical graphic novel of the same name. The film was written and directed by Satrapi with Vincent Paronnaud. The story follows a young girl as she comes of age against the backdrop of the Iranian Revolution. The title is a reference to the historic city of Persepolis. The film was co-winner of the Jury Prize at the 2007 Cannes Film Festivaland was released in France and Belgium on 27 June. In her acceptance speech, Satrapi said \"Although this film is universal, I wish to dedicate the prize to all Iranians.\" The film was also nominated for the Academy Award for Best Animated Feature, but lost to Ratatouille. The film was released in the United States on 25 December 2007."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sony_Pictures_Classics"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dear_Secret_Santa"}, "Title": {"type": "literal", "value": "Dear Secret Santa"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Peter_Sullivan_(screenwriter)"}, "Author": {"type": "literal", "value": "http://dbpedia.org/resource/Peter_Sullivan_(screenwriter)"}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bill_Cobbs|http://dbpedia.org/resource/Della_Reese|http://dbpedia.org/resource/Ernie_Hudson|http://dbpedia.org/resource/Jordin_Sparks|http://dbpedia.org/resource/Lamorne_Morris|http://dbpedia.org/resource/Tatyana_Ali"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Dear Secret Santa (also known as Christmas Card) is a Lifetime Television romantic Christmas film, starring Tatyana Ali, Jordin Sparks, Bill Cobbs, Della Reese, Ernie Hudson and Lamorne Morris. The film was directed by Peter Sullivan. The film premiered on Saturday November 30, 2013 on Lifetime."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Happy_(2006_film)"}, "Title": {"type": "literal", "value": "Happy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/A._Karunakaran"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Allu_Arjun|http://dbpedia.org/resource/Genelia_D'Souza|http://dbpedia.org/resource/Manoj_Bajpayee"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "152"}, "Description": {"type": "literal", "value": "Happy is a 2006 Telugu romantic drama film directed by A. Karunakaran. The film stars Allu Arjun, Genelia D'Souza and Manoj Bajpayee in lead roles; music was scored by Yuvan Shankar Raja. The film was produced by Allu Aravind and released on 27 January 2006. Upon release, the film was dubbed into Malayalam and released with the title Happy be Happy. The Telugu version was moderately successful at the box office whereas the Malayalam version was a smash hit collecting \u20b9 12.22 lakhs in its opening week at Ernakulam.The film ran a total of 170 days in kerala and bought a huge fans to allu arjun in kerala. The film was remade in Bengali under the title Bolo Na Tumi Amar starring Dev and Koel Mallick and in Oriya under the title Loafer starring Babushaan and Archita Sahu. The movie was dubbed into Hindi as Dum."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Geetha_Arts"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Story_of_Luke"}, "Title": {"type": "literal", "value": "The Story Of Luke"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alonso_Mayo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cary_Elwes|http://dbpedia.org/resource/Kristin_Bauer|http://dbpedia.org/resource/Lou_Taylor_Pucci|http://dbpedia.org/resource/Seth_Green"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "The Story Of Luke is a 2012 American comedy-drama film written and directed by Alonso Mayo. It is Mayo's first feature-length film and tells the story of Luke, a young man with autism who embarks on a quest for a job and a girlfriend. It stars Lou Taylor Pucci, Seth Green, Cary Elwes and Kristin Bauer."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Gravitas_Ventures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Vasuvum_Saravananum_Onna_Padichavanga"}, "Title": {"type": "literal", "value": "Vasuvum Saravananum Onna Padichavanga"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/M._Rajesh"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Arya_(actor)|http://dbpedia.org/resource/Karunakaran_(actor)|http://dbpedia.org/resource/Muktha_(actress)|http://dbpedia.org/resource/Santhanam_(actor)|http://dbpedia.org/resource/Tamannaah|http://dbpedia.org/resource/Vidyullekha_Raman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "0.2|158"}, "Description": {"type": "literal", "value": "Vasuvum Saravananum Onna Padichavanga (English Translation: Vasu and Saravanan Studied Together) is an Indian Tamil romantic comedy film written and directed by M. Rajesh. It features Arya and Tamannaah in lead roles while Santhanam plays a prominent role. Actor Vishal made a cameo appearance in this film. Arya himself is producing the film under his production company 'The Show People' associating with Prasad V Potluri's PVP cinema. The soundtrack was composed by D. Imman. Nirav Shah and Vivek Harshan handled cinematography and editing, respectively. The film began production in November 2014 and was released on 14 August 2015. The movie was a flop at the box office."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Shanghai_Kiss"}, "Title": {"type": "literal", "value": "Shanghai Kiss"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_Ren"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hayden_Panettiere|http://dbpedia.org/resource/Kelly_Hu|http://dbpedia.org/resource/Ken_Leung"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:Teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "Shanghai Kiss is a 2007 direct-to-DVD film. The film was released on DVD on October 9, 2007.Hayden Panettiere won the Feature Film Award at the Newport Beach Film Festival for her role as Adelaide. Liam Liu (Ken Leung), a Chinese American actor dwelling in Los Angeles unwittingly gets involved with a high school girl. He suddenly has to go to China after learning from his father that he has inherited his grandmother's home in Shanghai. He's not very appreciative of his Chinese roots and at first only wants to sell the house and get back to the U.S. as fast as possible. He gets a taste of Chinese customs after meeting a girl there and ends up having some big decisions to make."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Anchor_Bay_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Denias,_Senandung_Di_Atas_Awan"}, "Title": {"type": "literal", "value": "Denias, Senandung Di Atas Awan"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/John_de_Rantau"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006-10-19"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Indonesian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "Denias, Senandung Di Atas Awan (Denias, Singing on the Cloud) is a 2006 Indonesian film directed by John de Rantau. This film was starring Albert Fakdawer, Ari Sihasale, Nia Zulkarnaen and Marcella Zalianty. The film received the 2007 Asia Pacific Screen Award for Best Children's Feature Film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Alenia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Out_of_Nature"}, "Title": {"type": "literal", "value": "Out of Nature"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ole_Gi\u00e6ver"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ole_Gi\u00e6ver"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Norwegian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "Out of Nature (Norwegian: Mot naturen) is a 2014 Norwegian comedy film written, directed by and starring Ole Gi\u00e6ver. It was screened in the Contemporary World Cinema section at the 2014 Toronto International Film Festival. It was screened in the Panorama section of the 65th Berlin International Film Festival in February 2015. The film was nominated for the 2015 Nordic Council Film Prize."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hormones_(film)"}, "Title": {"type": "literal", "value": "Hormones"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Songyos_Sugmakanan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chantavit_Dhanasevi|http://dbpedia.org/resource/Charlie_Trairat|http://dbpedia.org/resource/Focus_Jirakul|http://dbpedia.org/resource/Lu_Ting_Wei|http://dbpedia.org/resource/Sora_Aoi|http://dbpedia.org/resource/Ungsumalynn_Sirapatsakmetha"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Hormones (Thai: \u0e1b\u0e34\u0e14\u0e40\u0e17\u0e2d\u0e21\u0e43\u0e2b\u0e0d\u0e48 \u0e2b\u0e31\u0e27\u0e43\u0e08\u0e27\u0e49\u0e32\u0e27\u0e38\u0e48\u0e19; rtgs: Pit Thoem Yai Hua Chai Wa Wun) is a 2008 Thai romantic comedy film directed by Songyos Sugmakanan. The literal meaning of the Thai title is 'restless hearts during school break' or 'school break, hearts aflutter'."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/GMM_Tai_Hub"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Truth_Below"}, "Title": {"type": "literal", "value": "The Truth Below"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Scott_Glosserman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gillian_Zinser|http://dbpedia.org/resource/Reid_Ewing|http://dbpedia.org/resource/Ricky_Mabe"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "The Truth Below is a thriller teen television film. The film stars Gillian Zinser, Ricky Mabe, Reid Ewing and Nick Thurston. The film, which was developed by Glen Echo Entertainment and produced in Calgary, Alberta, by Nomadic Pictures, was directed by Scott Glosserman and written by Wendy Diane Miller. Filming began in April 2010. The film's distributor is MTV Networks. The film heavily features music from American pop-punk band A Day To Remember."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/MTV"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_To_Do_List"}, "Title": {"type": "literal", "value": "The To Do List"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Maggie_Carey"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alia_Shawkat|http://dbpedia.org/resource/Andy_Samberg|http://dbpedia.org/resource/Aubrey_Plaza|http://dbpedia.org/resource/Bill_Hader|http://dbpedia.org/resource/Christopher_Mintz-Plasse|http://dbpedia.org/resource/Clark_Gregg|http://dbpedia.org/resource/Connie_Britton|http://dbpedia.org/resource/Donald_Glover|http://dbpedia.org/resource/Johnny_Simmons|http://dbpedia.org/resource/Rachel_Bilson|http://dbpedia.org/resource/Sarah_Steele|http://dbpedia.org/resource/Scott_Porter"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "The To Do List is a 2013 American romantic comedy film released on July 26, 2013. Written and directed by Maggie Carey in her feature film directorial debut, the film stars Aubrey Plaza, Johnny Simmons, Christopher Mintz-Plasse, Scott Porter, and Rachel Bilson. The film is about a virginal recent high school graduate (Plaza), who feels she needs to have more sexual experiences before she starts college."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/CBS_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Teenage_Mutant_Ninja_Turtles_(2014_film)"}, "Title": {"type": "literal", "value": "Teenage Mutant Ninja Turtles"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jonathan_Liebesman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alan_Ritchson|http://dbpedia.org/resource/Danny_Woodburn|http://dbpedia.org/resource/Jeremy_Howard_(actor)|http://dbpedia.org/resource/Megan_Fox|http://dbpedia.org/resource/Noel_Fisher|http://dbpedia.org/resource/Pete_Ploszek|http://dbpedia.org/resource/Will_Arnett|http://dbpedia.org/resource/William_Fichtner"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Teenage Mutant Ninja Turtles is a 2014 American action adventure film based on the Mirage Studios characters of the same name, produced by Nickelodeon Movies and Platinum Dunes, and distributed by Paramount Pictures. It is the fifth film of the Teenage Mutant Ninja Turtles film series and is also a reboot that features the main characters, portrayed by a new cast and the first in the reboot series. The film was directed by Jonathan Liebesman, written by Josh Appelbaum, Andr\u00e9 Nemec and Evan Daugherty, and stars Megan Fox, Will Arnett, William Fichtner, Minae Noji, Whoopi Goldberg, Abby Elliott and Tohoru Masamune, and featuring voices of Johnny Knoxville, Alan Ritchson, Noel Fisher, Jeremy Howard and Tony Shalhoub. The film was announced shortly before Teenage Mutant Ninja Turtles co-creator Peter Laird sold the rights to the characters to Nickelodeon in October 2009. The film was released on August 8, 2014. The film received generally negative reviews from critics, but was a box office success, earning $493.3 million on a $125 million budget and it became the highest grossing film in the series. The film won the Worst Supporting Actress award at the 35th Golden Raspberry Awards in 2015 for Fox's performance as April O'Neil and also received nominations for Worst Picture, Worst Prequel, Remake, Rip-off or Sequel, Worst Director, and Worst Screenplay. Conversely, it was also nominated at the 28th Kids' Choice Awards for Favorite Movie, Favorite Movie Actor and Favorite Movie Actress. A sequel, Teenage Mutant Ninja Turtles: Out of the Shadows, was released on June 3, 2016."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Worst_Week_of_My_Life_(film)"}, "Title": {"type": "literal", "value": "The Worst Week of My Life"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alessandro_Genovesi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alessandro_Siani|http://dbpedia.org/resource/Cristiana_Capotondi|http://dbpedia.org/resource/Fabio_De_Luigi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Italian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "The Worst Week of My Life (Italian: La peggior settimana della mia vita) is a 2011 Italian comedy film directed by Alessandro Genovesi. It is based on the British sitcom of the same name."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Terri_(film)"}, "Title": {"type": "literal", "value": "Terri"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Azazel_Jacobs"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Creed_Bratton|http://dbpedia.org/resource/Jacob_Wysocki|http://dbpedia.org/resource/John_C._Reilly"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Terri is a 2011 independent comedy-drama film about the friendship that develops between an oversized teen misfit and the garrulous but well-meaning school principal who takes an interest in him. Filming took place in Los Angeles, California."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Me_and_You_and_Everyone_We_Know"}, "Title": {"type": "literal", "value": "Me and You and Everyone We Know"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Miranda_July"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/JoNell_Kennedy|http://dbpedia.org/resource/John_Hawkes_(actor)|http://dbpedia.org/resource/Miranda_July"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Me and You and Everyone We Know is a 2005 American romantic comedy-drama film written and directed by Miranda July (her directorial debut) and stars July, John Hawkes, Miles Thompson, Brandon Ratcliff, Natasha Slayton, Najarra Townsend, Carlie Westerman, and JoNell Kennedy."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/No_Entry_Pudhe_Dhoka_Aahey"}, "Title": {"type": "literal", "value": "No Entry Pudhe Dhoka Aahe"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ankush_Choudhary"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aniket_Vishwasrao|http://dbpedia.org/resource/Ankush_Choudhary|http://dbpedia.org/resource/Bharat_Jadhav|http://dbpedia.org/resource/Kranti_Redkar|http://dbpedia.org/resource/Manwa_Naik|http://dbpedia.org/resource/Sai_Lokur|http://dbpedia.org/resource/Sai_Tamhankar"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "163"}, "Description": {"type": "literal", "value": "No Entry Pudhe Dhoka Aahe is a Marathi comedy film released on 7 September 2012. The film was directed by Ankush Choudhary and produced by Prem Rajagopalan and Nikhil Saini. The film stars Ankush Choudhary, Bharat Jadhav, Aniket Vishwasrao, Kranti Redkar, Manwa Naik, Sai Lokur, Sai Tamhankar and Paddy Kambli. It's a remake of 2002 Tamil film Charlie Chaplin."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Unlucky_Plaza"}, "Title": {"type": "literal", "value": "Unlucky Plaza"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ken_Kwek"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adrian_Pang|http://dbpedia.org/resource/Epy_Quizon|http://dbpedia.org/resource/Guo_Liang_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_criminal_comedy_films|http://dbpedia.org/resource/Category:Black_comedy_films|http://dbpedia.org/resource/Category:Singaporean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "122"}, "Description": {"type": "literal", "value": "Unlucky Plaza is a 2014 Singaporean black comedy thriller film written and directed by Ken Kwek. It stars Epy Quizon as a Filipino immigrant to Singapore who takes hostages after falling for a scam. It premiered at the Toronto International Film Festival and was released in Singapore in April 16, 2015. The story is told in a series of flashbacks from the point of view of a talk show that has reunited the captor and his former hostages."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Shaw_Organisation"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kuch_Kuch_Hota_Hai"}, "Title": {"type": "literal", "value": "Kuch Kuch Hota Hai"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Karan_Johar"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kajol|http://dbpedia.org/resource/Rani_Mukerji|http://dbpedia.org/resource/Shah_Rukh_Khan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "185"}, "Description": {"type": "literal", "value": "Kuch Kuch Hota Hai (English: Something Happens) also known as KKHH, is an Indian Hindi coming-of-age romantic comedy drama film, released in India and the United Kingdom on 16 October 1998. It was written and directed by Karan Johar, and starred the popular on-screen pair of Shah Rukh Khan and Kajol in their fourth film together. Rani Mukerji featured in a supporting role, while Salman Khan had an extended guest appearance. Filmed in India, Mauritius, and Scotland, this was Karan Johar's directorial debut. One of his goals for the film was to set a new level for style in Hindi cinema. The plot combines two love triangles set years apart. The first half covers friends on a college campus, while the second tells the story of a widower's young daughter who tries to reunite her dad with his old friend. The film was extremely successful in India and abroad, becoming the highest-grossing Indian film of the year and the third highest-grossing Indian film ever behind Hum Aapke Hain Koun..! and Dilwale Dulhania Le Jayenge. The film was also the first Bollywood film to enter the UK cinema top ten. Outside India, the film was the highest grossing Hindi film ever until its record was broken by Karan's next directorial, Kabhi Khushi Kabhie Gham... (2001). Kuch Kuch Hota Hai received a positive reception from critics, with special praise directed to Kajol's performance. The soundtrack also became the biggest seller of the year. The film won many major awards including the National Film Award for Best Popular Film Providing Wholesome Entertainment and the \"Best Film\" honor at the Filmfare Awards, Zee Cine Awards, Screen Awards, and Bollywood Movie Awards. The film won 8 Filmfare Awards and is the only film in history to win all the four acting category awards at the ceremony (Best Actor, Best Actress, Best Supporting Actor & Best Supporting Actress). The film remains highly popular on Indian television and has achieved a cult classic status."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Dharma_Productions|http://dbpedia.org/resource/Yash_Raj_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Amos_&_Andrew"}, "Title": {"type": "literal", "value": "Amos & Andrew"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/E._Max_Frye"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Brad_Dourif|http://dbpedia.org/resource/Dabney_Coleman|http://dbpedia.org/resource/Margaret_Colin|http://dbpedia.org/resource/Michael_Lerner_(actor)|http://dbpedia.org/resource/Nicolas_Cage|http://dbpedia.org/resource/Samuel_L._Jackson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "Amos & Andrew is a 1993 comedy starring Nicolas Cage and Samuel L. Jackson, filmed in and around Wilmington, North Carolina. It concerns wealthy African-American playwright Andrew Sterling's (Jackson) purchase of a summer home on a predominantly white island. The film's title parodies that of the sitcom Amos 'n' Andy. The premise also appears to be a riff on The Defiant Ones."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Nirel"}, "Title": {"type": "literal", "value": "Nirel"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ranjith_Bajpe"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anoop_Sagar|http://dbpedia.org/resource/Deepak_Paladka|http://dbpedia.org/resource/Varuna_Shetty"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Nirel (English: Shadow) is a Tulu film directed by Ranjith Bajpe and produced jointly by Shodhan Prasad and San Poojary, starring Anoop Sagar, Varuna Shetty, Deepthi, Sachin Padil, Deepak Paladka in the lead roles. This will be the first film produced overseas and planned to shoot completely in Gulf Region. The film is based on the Kannada Script \"Nadu Naduve\" by Karthik Gowda and later converted to Tulu by Ranjith Bajpe. Karthik Gowda also wrote the screenplay for the movie, and dialogues written by Ranjith Bajpe. Cast for the movie was totally selected by an audition at Fortune Grand Hotel Dubai. The people behind \"Nirel\" is a group of four friends, San Poojary, Ranjith Bajpe, Rajneesh Amin and Sachin Padil."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mendadak_Dangdut"}, "Title": {"type": "literal", "value": "Mendadak Dangdut"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rudy_Soedjarwo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dwi_Sasono|http://dbpedia.org/resource/Kinaryosih|http://dbpedia.org/resource/Titi_Kamal"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Mendadak Dangdut (Suddenly Dangdut) is a 2006 Indonesian dramatic-comedy film directed by Rudy Soedjarwo and written by Monty Tiwa. Starring Titi Kamal, Kinaryosih, and Dwi Sasono, it details the rise and fall of a dangdut singer and her sister-cum-manager. Shot over a period of seven days, Mendadak Dangdut addresses social themes such as poverty. The film's release was preceded by a soundtrack album, which was ultimately more commercially viable than the film itself; one single, \"Jablai\" (\"Rarely Caressed\"), became a staple of dangdut concerts for several months. The film, which received mixed critical reception, proved a breakthrough role for Kamal and won 12 awards, including Favourite Film at the 2007 Indonesian Movie Awards."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/SinemArt"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Pattaya_(film)"}, "Title": {"type": "literal", "value": "Pattaya"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Franck_Gastambide"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Franck_Gastambide|http://dbpedia.org/resource/Malik_Bentalha"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Pattaya is a 2016 French comedy film directed by Franck Gastambide."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Gaumont_Film_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Love_in_the_Buff"}, "Title": {"type": "literal", "value": "Love in the Buff"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pang_Ho-cheung"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Miriam_Yeung|http://dbpedia.org/resource/Shawn_Yue|http://dbpedia.org/resource/Vincent_Kok|http://dbpedia.org/resource/Xu_Zheng_(actor)|http://dbpedia.org/resource/Yang_Mi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Hong_Kong_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "Love in the Buff (Chinese: \u6625\u5b0c\u8207\u5fd7\u660e) is a 2012 Hong Kong romantic comedy film directed by Pang Ho-cheung and starring Miriam Yeung and Shawn Yue. It is the sequel to the 2010 film Love in a Puff. Principal photography began in mid-July 2011 at Hong Kong and was later moved to Beijing in early August, before finally wrapping up 30 August 2011. The movie was released on 29 March 2012 in Hong Kong. For her performance in the film, Miriam Yeung won the Best Actress at the 32nd Hong Kong Film Award for the movie."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Media_Asia_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Raising_Victor_Vargas"}, "Title": {"type": "literal", "value": "Raising Victor Vargas"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Peter_Sollett"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Judy_Marte|http://dbpedia.org/resource/Melonie_Diaz|http://dbpedia.org/resource/Silvestre_Rasuk|http://dbpedia.org/resource/Victor_Rasuk"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Raising Victor Vargas is a 2002 American comedy-drama film directed by Peter Sollett, written by Sollett and Eva Vives. The film follows Victor, a Lower East Side teenager, as he deals with his eccentric family, including his strict grandmother, his bratty sister, and a younger brother who completely idolizes him. Along the way he tries to win the affections of Judy, who is very careful and calculating when it comes to how she deals with men. In a subplot, Judy's friend Melonie is depicted in her own romantic adventure. The film was screened in the Un Certain Regard section at the 2002 Cannes Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fireworks_Entertainment|http://dbpedia.org/resource/Samuel_Goldwyn_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Still_Waiting..."}, "Title": {"type": "literal", "value": "Still Waiting..."}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jeff_Balis"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/John_Michael_Higgins|http://dbpedia.org/resource/Rob_Kerkovich|http://dbpedia.org/resource/Robert_Patrick_Benedict|http://dbpedia.org/resource/Rocco_Botte|http://dbpedia.org/resource/Steve_Howey_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Still Waiting... is a 2009 American independent film starring John Michael Higgins and Robert Patrick Benedict, and the sequel to Waiting.... Some of the cast of the original film appear in the sequel. Adam Carolla and Justin Long appear in cameo roles. It was written by Rob McKittrick."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jeff,_Who_Lives_at_Home"}, "Title": {"type": "literal", "value": "Jeff, Who Lives at Home"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jay_Duplass|http://dbpedia.org/resource/Mark_Duplass"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ed_Helms|http://dbpedia.org/resource/Jason_Segel|http://dbpedia.org/resource/Judy_Greer|http://dbpedia.org/resource/Susan_Sarandon"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "Jeff, Who Lives at Home is an American comedy-drama film starring Jason Segel and Ed Helms, written and directed by Jay and Mark Duplass and co-starring Judy Greer and Susan Sarandon. The film premiered on September 14, 2011 at the 2011 Toronto International Film Festival and then saw a limited release in USA and Canada on March 16, 2012, after having been pushed back from the original date of March 2. The film received positive reviews from critics."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Vantage"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/A_Single_Life_(2014_film)"}, "Title": {"type": "literal", "value": "A Single Life"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Job_Roggeveen|http://dbpedia.org/resource/Joris_Oprins|http://dbpedia.org/resource/Marieke_Blaauw"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Dutch_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "3"}, "Description": {"type": "literal", "value": "A Single Life is a 2014 Dutch animated short film directed by Marieke Blaauw, Joris Oprins and Job Roggeveen, from Dutch animation studio Job, Joris & Marieke. It was nominated for the Academy Award for Best Animated Short Film at the 87th Academy Awards."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Big_Wedding"}, "Title": {"type": "literal", "value": "The Big Wedding"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Justin_Zackham"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amanda_Seyfried|http://dbpedia.org/resource/Ben_Barnes_(actor)|http://dbpedia.org/resource/Diane_Keaton|http://dbpedia.org/resource/Katherine_Heigl|http://dbpedia.org/resource/Robert_De_Niro|http://dbpedia.org/resource/Robin_Williams|http://dbpedia.org/resource/Susan_Sarandon|http://dbpedia.org/resource/Topher_Grace"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Comedy_of_remarriage_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "The Big Wedding is a 2013 American comedy film written and directed by Justin Zackham. It is an American remake of the original 2006 Swiss/French film Mon fr\u00e8re se marie (My Brother is Getting Married), written by Jean-St\u00e9phane Bron and Karine Sudan. The film stars a large ensemble cast including Robert De Niro, Katherine Heigl, Diane Keaton, Amanda Seyfried, Topher Grace, Ben Barnes, Susan Sarandon, and Robin Williams. It was released on April 26, 2013 by Lionsgate in the United States and Canada."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lionsgate"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hansel_&_Gretel:_Witch_Hunters"}, "Title": {"type": "literal", "value": "Hansel & Gretel: Witch Hunters"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tommy_Wirkola"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Derek_Mears|http://dbpedia.org/resource/Famke_Janssen|http://dbpedia.org/resource/Gemma_Arterton|http://dbpedia.org/resource/Jeremy_Renner|http://dbpedia.org/resource/Peter_Stormare|http://dbpedia.org/resource/Thomas_Mann_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:Black_comedy_films|http://dbpedia.org/resource/Category:German_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Hansel & Gretel: Witch Hunters is a 2013 American-German comedy action film written and directed by Tommy Wirkola. It is a continuation to the German folklore fairy tale \"Hansel and Gretel\", in which the titular siblings are now grown up and working as a duo of witch exterminators for hire. The film stars Jeremy Renner, Gemma Arterton, Famke Janssen, Peter Stormare, Thomas Mann, and Derek Mears. Originally scheduled for release in March 2012, Hansel & Gretel was delayed for ten months to accommodate Renner's appearances in The Avengers and The Bourne Legacy and to give Wirkola time to shoot a post-credits scene. It premiered in North America on January 25, 2013, in 2D, 3D, and IMAX 3D, as well in D-Box motion theaters and select international 4DX theaters, and was rated R in the United States. The film had its home media release on June 11, including a longer, unrated version on Blu-ray. The film was panned by mainstream critics, particularly for what they saw as its weak script and gratuitous violence. However, many horror genre critics were more positive, viewing the film as unpretentiously entertaining. The film topped the domestic box office on its opening weekend and was a major hit in Brazil, Russia, Germany, and Mexico. Its worldwide theatrical run gross exceeded $226 million for the production cost of $50 million. Due to the commercial success of the film, which was planned as the first part of a series, its sequel is currently in development."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Metro-Goldwyn-Mayer_Pictures|http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Babelsberg_Studio|http://dbpedia.org/resource/Gary_Sanchez_Productions|http://dbpedia.org/resource/MTV_Films"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Finding_Mr._Right"}, "Title": {"type": "literal", "value": "Finding Mr. Right"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Xue_Xiaolu"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Tang_Wei|http://dbpedia.org/resource/Wu_Xiubo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Chinese_romantic_comedy_films|http://dbpedia.org/resource/Category:Hong_Kong_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "122"}, "Description": {"type": "literal", "value": "Finding Mr. Right (simplified Chinese: \u5317\u4eac\u9047\u4e0a\u897f\u96c5\u56fe; traditional Chinese: \u5317\u4eac\u9047\u4e0a\u897f\u96c5\u5716; pinyin: B\u011bij\u012bng y\u00f9sh\u00e0ng Xiy\u01cet\u00fa) is a 2013 romantic comedy film written and directed by Xue Xiaolu. The film was a box-office hit, grossed nearly US$85 million in China. The title translates literally as \"Beijing Meets Seattle\". The success led to the release of a sequel released in 2016, Finding Mr. Right 2."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Silver_Case"}, "Title": {"type": "literal", "value": "Silver Case"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Christian_Filippella"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Eric_Roberts|http://dbpedia.org/resource/Seymour_Cassel|http://dbpedia.org/resource/Shalim_Ortiz|http://dbpedia.org/resource/Vincent_De_Paul_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Silver Case is a multi-awarded independent feature film, produced and directed by Christian Filippella, starring Oscar Nominees actors Eric Roberts and Seymour Cassel, Brian Keith Gamble, Chris Facey, Vincent De Paul (actor), Shalim Ortiz, Claire Falconer, Kelvin Han Yee, Brad Light, Art Hsu, Stanely B. Herman, and Fernanda Romero. Silver Case premiered at the Rome Film Festival and has received many awards worldwide. The film also won 5 Indie Awards at the Indie Fest, best feature and best director at the LA Film & TV Festival and the Spirit of Independent Award at the 26th Fort Lauderdale International Film Festival. The film was shot at various locations in California and Italy."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Six-String_Samurai"}, "Title": {"type": "literal", "value": "Six-String Samurai"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lance_Mungia"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:Comedy_science_fiction_films|http://dbpedia.org/resource/Category:Martial_arts_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Six-String Samurai is a 1998 post-apocalyptic action/comedy film directed by Lance Mungia, starring Jeffrey Falcon and Justin McGuire. Brian Tyler composed the score for this film along with the Red Elvises, the latter providing the majority of the soundtrack. The film was greeted with a great deal of excitement when shown at Slamdance in 1998, winning the Slamdance awards for best editing and cinematography, and gathering extremely favorable reviews from influential alternative, cult and indie film publications such as Fangoria, Film Threat and Ain't It Cool News. It is billed as a \"post-apocalyptic musical satire\". In a limited theatrical release the film ran for several months in a few theaters, gaining a reputation as a minor cult film; having a budget of $2,000,000, it only made a mere $124,494 at the box offices. An intended trilogy has been discussed but not yet realized, just like the predicted launching of the career of the film's star, Jeffrey Falcon, a martial artist who had appeared in several Hong Kong action movies in the 1980s and early 1990s. While Mungia made several music videos, he did not direct another feature until the 2005 film The Crow: Wicked Prayer."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Palm_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sky_High_(2005_film)"}, "Title": {"type": "literal", "value": "Sky High"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mike_Mitchell_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Danielle_Panabaker|http://dbpedia.org/resource/Kelly_Preston|http://dbpedia.org/resource/Kurt_Russell|http://dbpedia.org/resource/Mary_Elizabeth_Winstead|http://dbpedia.org/resource/Michael_Angarano"}, "Published": {"type": "literal", "value": "2005-07-29"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_fantasy-comedy_films|http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Sky High is a 2005 American superhero comedy film about an airborne school for teenage superheroes. It was directed by Mike Mitchell, and written by Paul Hernandez, Robert Schooley, and Mark McCorkle. The starring cast includes Michael Angarano as Will, an incoming freshman at the school, Danielle Panabaker as his best friend and love interest, Kurt Russell and Kelly Preston as his parents, Mary Elizabeth Winstead as a popular senior, Steven Strait as Will's rival, and Lynda Carter as Principal Powers."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/All_for_Love_(2005_film)"}, "Title": {"type": "literal", "value": "All for Love"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Min_Kyu-dong"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hwang_Jung-min|http://dbpedia.org/resource/Im_Chang-jung|http://dbpedia.org/resource/Uhm_Jung-hwa"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "129"}, "Description": {"type": "literal", "value": "All for Love (Hangul: \ub0b4 \uc0dd\uc560 \uac00\uc7a5 \uc544\ub984\ub2e4\uc6b4 \uc77c\uc8fc\uc77c; RR: Naesaengae gajang areumdawun iljuil; lit. \"The Most Beautiful Week of My Life\"; also known as My Lovely Week) is a 2005 South Korean romance ensemble film. It was Min Kyu-dong's solo directorial debut. The film was the 10th highest grossing Korean production of 2005 with 2,533,103 sold nationwide. A week passes in Seoul, with a diverse group of couples and singles experiencing love or tragedy in strong doses. Broken families and newly formed marriages, struggles with debt or with an uneasy conscience, conflict and resolution, sickness and health, newly discovered love, the resurfacing of old relationships..."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/CJ_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dancing_Queen_(2012_film)"}, "Title": {"type": "literal", "value": "Dancing Queen"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lee_Seok-hoon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hwang_Jung-min|http://dbpedia.org/resource/Uhm_Jung-hwa"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:South_Korean_comedy_films|http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "124"}, "Description": {"type": "literal", "value": "Dancing Queen (Hangul: \ub304\uc2f1\ud038; RR: Daensing Kwin) is 2012 South Korean romantic comedy film starring Uhm Jung-hwa and Hwang Jung-min. The film tells a story of a married couple, who in the midst of their mundane lives decides to pursue their lost dreams. The husband finds himself accidentally running for Mayor of Seoul and his wife decides to become a pop singer. It was produced by JK Film and distributed by CJ Entertainment, and released on January 18, 2012."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/CJ_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kick_2"}, "Title": {"type": "literal", "value": "Kick 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Surender_Reddy"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Rakul_Preet_Singh|http://dbpedia.org/resource/Ravi_Kishan|http://dbpedia.org/resource/Ravi_Teja"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "170"}, "Description": {"type": "literal", "value": "Kick 2 is a 2015 Telugu action comedy film written by Vakkantham Vamsi and directed by Surender Reddy. It features Ravi Teja as the protagonist and is the sequel of the 2009 Telugu film Kick starring Ravi Teja, which was also directed by Surender Reddy. The film is produced by actor Nandamuri Kalyan Ram on the N.T.R. Arts banner. The film was officially launched on 20 August 2014, and the principal photography began on the same day. The audio soundtrack of the movie was composed by S. Thaman and was released on 9 May 2015. The film was released worldwide on 21 August 2015 and was produced on a budget of \u20b940 crore (US$5.9 million). The movie collected around \u20b943.5 crore (US$6.5 million) in its 14-day run. It also became the 9th highest-grossing Telugu film of 2015 in the United States, collecting \u20b92.04 crore (US$300,000)."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Oktapodi"}, "Title": {"type": "literal", "value": "Oktapodi"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Emud_Mokhberi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "2.433333333333333"}, "Description": {"type": "literal", "value": "Oktapodi is a 2007 French computer-animated short film that originated as a Graduate Student Project from Gobelins L'Ecole de L'Image. The film is about a pair of love struck octopuses who through a series of comical events are separated and find each other. Oktapodi was directed by Julien Bocabeille, Fran\u00e7ois-Xavier Chanioux, Olivier Delabarre, Thierry Marchand, Quentin Marmier, and Emud Mokhberi. Music was composed by Kenny Wood. Oktapodi was well received, winning a number of awards, as well as an Academy Award nomination for Best Short Film (Animated) for the 81st Academy Awards. It was also included in the Animation Show of Shows."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Turbo_(film)"}, "Title": {"type": "literal", "value": "Turbo"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_Soren_(animator)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Maya_Rudolph|http://dbpedia.org/resource/Michael_Pe\u00f1a|http://dbpedia.org/resource/Michelle_Rodriguez|http://dbpedia.org/resource/Paul_Giamatti|http://dbpedia.org/resource/Ryan_Reynolds|http://dbpedia.org/resource/Samuel_L._Jackson|http://dbpedia.org/resource/Snoop_Dogg"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_sports_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "Turbo is a 2013 American 3D computer-animated comedy sports film produced by DreamWorks Animation and distributed by 20th Century Fox. It is based on an original idea by David Soren, who also directed the film in his feature debut. Set in Los Angeles, the film features an ordinary garden snail whose dream to become the fastest snail in the world comes true. The film was released on July 17, 2013. The film stars the voices of Ryan Reynolds, Paul Giamatti, Michael Pe\u00f1a, Snoop Dogg, Maya Rudolph, Michelle Rodriguez and Samuel L. Jackson. The film was met with generally positive reviews. Despite earning $282.5 million on a $127 million budget, the studio had to take a total of $15.6 million write-down on behalf of the film. A television series based on the film, titled Turbo FAST (Fast Action Stunt Team), was put into production a year before the film's release, and it first aired on Netflix on December 24, 2013."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Guardians_of_the_Galaxy_(film)"}, "Title": {"type": "literal", "value": "Guardians of the Galaxy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Gunn"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films|http://dbpedia.org/resource/Category:Comedy_science_fiction_films|http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "122"}, "Description": {"type": "literal", "value": "Guardians of the Galaxy (retroactively referred to as Guardians of the Galaxy Vol. 1) is a 2014 American superhero film based on the Marvel Comics superhero team of the same name, produced by Marvel Studios and distributed by Walt Disney Studios Motion Pictures. It is the tenth film in the Marvel Cinematic Universe. The film was directed by James Gunn, who wrote the screenplay with Nicole Perlman, and features an ensemble cast including Chris Pratt, Zoe Saldana, Dave Bautista, Vin Diesel, Bradley Cooper, Lee Pace, Michael Rooker, Karen Gillan, Djimon Hounsou, John C. Reilly, Glenn Close, and Benicio del Toro. In Guardians of the Galaxy, Peter Quill forms an uneasy alliance with a group of extraterrestrial misfits who are fleeing after stealing a powerful artifact. Perlman began working on the screenplay in 2009. Producer Kevin Feige first publicly mentioned Guardians of the Galaxy as a potential film in 2010 and Marvel Studios announced it was in active development at the San Diego Comic-Con International in July 2012. Gunn was hired to write and direct the film that September. In February 2013, Pratt was hired to play Peter Quill/Star-Lord, and the supporting cast members were subsequently confirmed. Principal photography began in July 2013 at Shepperton Studios, England, with filming continuing in London before wrapping up in October 2013. Post-production was finished on July 7, 2014. Guardians of the Galaxy premiered in Hollywood on July 21, 2014. It was released in theaters August 1, 2014 in the United States in the 3D and IMAX 3D formats. The film became a critical and commercial success, grossing $773.3 million worldwide and becoming the highest-grossing superhero film of 2014, as well as the third highest-grossing film in North America of 2014. The film garnered praise for its humor, action, soundtrack, visual effects, direction, musical score, and acting. A sequel titled Guardians of the Galaxy Vol. 2 is scheduled to be released on May 5, 2017."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Let's_Be_Cops"}, "Title": {"type": "literal", "value": "Let's Be Cops"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Luke_Greenfield"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Garc\u00eda|http://dbpedia.org/resource/Damon_Wayans,_Jr.|http://dbpedia.org/resource/Jake_Johnson|http://dbpedia.org/resource/James_D'Arcy|http://dbpedia.org/resource/Nina_Dobrev|http://dbpedia.org/resource/Rob_Riggle"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:Police_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "Let's Be Cops is a 2014 American action comedy film written and directed by Luke Greenfield, and co-written with Nicholas Thomas. The film stars Jake Johnson and Damon Wayans, Jr. as two friends who pretend to be Los Angeles police officers. Co-starring Nina Dobrev, Rob Riggle, James D'Arcy and Keegan-Michael Key, the film was released on August 13, 2014."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/How_to_Cheat_in_the_Leaving_Certificate"}, "Title": {"type": "literal", "value": "How to Cheat in the Leaving Certificate"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Graham_Jones_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bosco_Hogan|http://dbpedia.org/resource/Chris_De_Burgh|http://dbpedia.org/resource/Eamon_Morrissey_(actor)|http://dbpedia.org/resource/Feargal_Quinn|http://dbpedia.org/resource/Joe_Duffy|http://dbpedia.org/resource/Joe_McKinney|http://dbpedia.org/resource/Mary_McEvoy|http://dbpedia.org/resource/Maureen_Potter|http://dbpedia.org/resource/Mick_Lally|http://dbpedia.org/resource/Nuala_N\u00ed_Dhomhnaill|http://dbpedia.org/resource/Shay_Healy|http://dbpedia.org/resource/\u00c9amonn_Lawlor"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:Irish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "How to Cheat in the Leaving Certificate is a 1998 independent Irish film directed by Graham Jones, in which six teenagers devise a plan to cheat in their Leaving Certificate final school examinations. The film was shot in black and white on Super 16mm. After being hailed by critics it was blown up to 35mm for theatrical distribution. Many well known Irish faces made cameo appearances and some commentators regard the 2004 American film, The Perfect Score, as a remake."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Hangover"}, "Title": {"type": "literal", "value": "The Hangover"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Todd_Phillips"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:Best_Musical_or_Comedy_Picture_Golden_Globe_winners"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "(This article is about the film. For other uses, see Hangover (disambiguation).) The Hangover is a 2009 American comedy film directed by Todd Phillips, co-produced with Daniel Goldberg and written by Jon Lucas and Scott Moore. The film stars Bradley Cooper, Ed Helms, Zach Galifianakis, Heather Graham, Justin Bartha and Jeffrey Tambor. It tells the story of Phil Wenneck, Stu Price, Alan Garner and Doug Billings, who travel to Las Vegas for a bachelor party to celebrate Doug's impending marriage. However, Phil, Stu and Alan wake up with Doug missing and no memory of the previous night's events, and must find the groom before the wedding can take place. Lucas and Moore wrote the script after executive producer Chris Bender's friend disappeared and had a large bill after being sent to a strip club. After Lucas and Moore sold it to the studio for $2 million, Philips and Jeremy Garelick rewrote the script to include a tiger as well as a subplot involving a baby and a police cruiser, and also including boxer Mike Tyson. Filming took place in Nevada for 15 days, and during filming, the three main actors (Cooper, Helms, and Galifianakis) formed a real friendship. The Hangover was released on June 5, 2009, and was a critical and commercial success. The film became the tenth-highest-grossing film of 2009, with a worldwide gross of over $467 million. The film won the Golden Globe Award for Best Motion Picture \u2013 Musical or Comedy, and received multiple other accolades. It is the tenth-highest-grossing film of 2009 in the world, as well as the second highest-grossing R-rated comedy ever in the United States, surpassing a record previously held by Beverly Hills Cop for almost 25 years. Out of all R-rated films, it is the fifth-highest-grossing ever in the U.S., behind only The Passion of the Christ, The Matrix Reloaded, American Sniper and Deadpool. A sequel, The Hangover Part II, was released on May 26, 2011, and a third and final film, The Hangover Part III, was released on May 23, 2013. Both sequels were box office hits, but were met with more negative reception from critics."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros._Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Neighbors_(2014_film)"}, "Title": {"type": "literal", "value": "Neighbors"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nicholas_Stoller"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Neighbors is a 2014 American comedy film directed by Nicholas Stoller and written by Andrew Cohen and Brendan O'Brien. The film stars Seth Rogen, Zac Efron, Rose Byrne, Dave Franco and Christopher Mintz-Plasse. The plot follows a couple who come into conflict with a fraternity that has recently moved in next door. The film premiered at South by Southwest on March 8, 2014 and was released on May 9 in the United States. It was a critical and commercial success, grossing over $270 million worldwide. A sequel, titled Neighbors 2: Sorority Rising, was released on May 20, 2016. Stollen returned to direct, with Rogen, Efron, Byrne, Mintz-Plasse, Barinholtz, Gallo, Kudrow, Buress and Franco reprising their roles."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hula_Girls"}, "Title": {"type": "literal", "value": "Hula Girls"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lee_Sang-il_(film_director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Etsushi_Toyokawa|http://dbpedia.org/resource/Ittoku_Kishibe|http://dbpedia.org/resource/Sumiko_Fuji|http://dbpedia.org/resource/Yasuko_Matsuyuki|http://dbpedia.org/resource/Y\u016b_Aoi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Japanese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "Hula Girls (\u30d5\u30e9\u30ac\u30fc\u30eb Fura g\u0101ru) is a Japanese film, directed by Sang-il Lee and co-written by Lee and Daisuke Habara, and first released across Japanese theaters on September 23, 2006. Starring Y\u016b Aoi, Yasuko Matsuyuki, Etsushi Toyokawa, Shizuyo Yamazaki, Ittoku Kishibe, Eri Tokunaga, Yoko Ikezu and Sumiko Fuji, it is based on the real-life event of how a group of enthusiastic girls take on hula dancing to save their small mining village, Iwaki, helping the formation of Joban Hawaiian Center (now known as Spa Resort Hawaiians), which was later to become one of Japan's most popular theme parks. It received its premiere at the Toronto International Film Festival. Hula Girls was critically acclaimed upon release in Japan and nominated for a total of 12 awards at the 2007 Japan Academy Awards, going on to win five major awards, including that of best film, best director, best screenplay, best supporting actress (for Y\u016b Aoi), and most popular film. It also won two major awards at the 80th Kinema Junpo awards, including that of best film and best supporting actress (for Y\u016b Aoi). Since its release in Japan, the film has been shown across theaters and film festivals worldwide."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/School_for_Scoundrels_(2006_film)"}, "Title": {"type": "literal", "value": "School for Scoundrels"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Todd_Phillips"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Stiller|http://dbpedia.org/resource/Billy_Bob_Thornton|http://dbpedia.org/resource/Jacinda_Barrett|http://dbpedia.org/resource/Jon_Heder|http://dbpedia.org/resource/Michael_Clarke_Duncan|http://dbpedia.org/resource/Sarah_Silverman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100|108"}, "Description": {"type": "literal", "value": "School for Scoundrels is a 2006 American feature/comedy film, starring Billy Bob Thornton and Jon Heder, and directed by Todd Phillips. The film is based on the 1960 British film of the same name. The film was released on September 29, 2006. The remake has a similar theme to the original film, but a noticeably different plot and tone."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Dimension_Films|http://dbpedia.org/resource/Metro-Goldwyn-Mayer"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Paddington_(film)"}, "Title": {"type": "literal", "value": "Paddington"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Paul_King_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Paddington is a 2014 British-French family comedy film directed by Paul King, written by King and Hamish McColl, and produced by David Heyman. Based on Paddington Bear by Michael Bond, the film stars Ben Whishaw as the voice of the title character, along with Hugh Bonneville, Sally Hawkins, Julie Walters, Jim Broadbent, Peter Capaldi and Nicole Kidman in live-action roles. The film was co-produced by the French company StudioCanal and the British company Heyday Films. It was released in the United Kingdom on 28 November 2014 and grossed $265.3 million worldwide on a \u20ac38.5 million budget. It received an Empire Award nomination for Best British Film. A sequel, Paddington 2, is scheduled to be released in 2017."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/StudioCanal"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tusk_(2014_film)"}, "Title": {"type": "literal", "value": "Tusk"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Smith"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/G\u00e9nesis_Rodr\u00edguez|http://dbpedia.org/resource/Haley_Joel_Osment|http://dbpedia.org/resource/Justin_Long|http://dbpedia.org/resource/Michael_Parks"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Tusk is a 2014 American comedy horror film written and directed by Kevin Smith, based on a story from his SModcast podcast. The film stars Michael Parks, Justin Long, Haley Joel Osment, G\u00e9nesis Rodr\u00edguez, and Johnny Depp. The film is intended to be the first in Smith's planned True North trilogy. Tusk had its world premiere at the Toronto International Film Festival, before it was released on September 19, 2014, by A24. The film was Smith's first major wide release since Cop Out, and performed poorly at the box office after receiving mixed reviews."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/A24_(company)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Who's_Your_Daddy%3F_(film)"}, "Title": {"type": "literal", "value": "Who's Your Daddy?"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Fickman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ali_Landry|http://dbpedia.org/resource/Brandon_Davis_(actor)|http://dbpedia.org/resource/Charlie_Talbert|http://dbpedia.org/resource/Christine_Lakin|http://dbpedia.org/resource/Colleen_Camp|http://dbpedia.org/resource/Dave_Thomas_(actor)|http://dbpedia.org/resource/David_Varney|http://dbpedia.org/resource/Josh_Jacobson|http://dbpedia.org/resource/Justin_Berfield|http://dbpedia.org/resource/Kadeem_Hardison|http://dbpedia.org/resource/Lin_Shaye|http://dbpedia.org/resource/Marnette_Patterson|http://dbpedia.org/resource/Martin_Starr|http://dbpedia.org/resource/Patsy_Kensit|http://dbpedia.org/resource/Robert_Ri'chard|http://dbpedia.org/resource/Robert_Torti|http://dbpedia.org/resource/Ryan_Bittle|http://dbpedia.org/resource/William_Atherton"}, "Published": {"type": "literal", "value": "2005-01-18"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "109|111"}, "Description": {"type": "literal", "value": "Who's Your Daddy? is a 2002 comedy film directed (and co-scripted) by Andy Fickman."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Couples_Retreat"}, "Title": {"type": "literal", "value": "Couples Retreat"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Peter_Billingsley"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Faizon_Love|http://dbpedia.org/resource/Jason_Bateman|http://dbpedia.org/resource/Jean_Reno|http://dbpedia.org/resource/Jon_Favreau|http://dbpedia.org/resource/Kristen_Bell|http://dbpedia.org/resource/Kristin_Davis|http://dbpedia.org/resource/Malin_\u00c5kerman|http://dbpedia.org/resource/Vince_Vaughn"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "113"}, "Description": {"type": "literal", "value": "Couples Retreat is a 2009 American romantic comedy film directed by Peter Billingsley, marking his directorial debut, and written by Jon Favreau, Vince Vaughn, Dana Fox, Curtis Hanson, and Greg Beeman. Vaughn and Favreau star with Jason Bateman, Faizon Love, Kristin Davis, Malin \u00c5kerman, Kristen Bell, and Jean Reno. It was released on October 9, 2009, in the United States. The film was shot mostly on the island of Bora Bora."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Way,_Way_Back"}, "Title": {"type": "literal", "value": "The Way, Way Back"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jim_Rash|http://dbpedia.org/resource/Nat_Faxon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Allison_Janney|http://dbpedia.org/resource/Amanda_Peet|http://dbpedia.org/resource/AnnaSophia_Robb|http://dbpedia.org/resource/Liam_James|http://dbpedia.org/resource/Maya_Rudolph|http://dbpedia.org/resource/Rob_Corddry|http://dbpedia.org/resource/Sam_Rockwell|http://dbpedia.org/resource/Steve_Carell|http://dbpedia.org/resource/Toni_Collette"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "The Way, Way Back is a 2013 American coming-of-age comedy-drama film written and directed by Nat Faxon and Jim Rash in their directorial debut. The film stars Liam James, Steve Carell, Toni Collette, Allison Janney, AnnaSophia Robb, Sam Rockwell and Maya Rudolph, with Rob Corddry, Amanda Peet, Faxon and Rash in supporting roles. It premiered at the 2013 Sundance Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Searchlight_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Love_Liza"}, "Title": {"type": "literal", "value": "Love Liza"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Todd_Louiso"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kathy_Bates|http://dbpedia.org/resource/Philip_Seymour_Hoffman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:Tragicomedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Love Liza is a 2002 American comedy-drama film directed by Todd Louiso and starring Philip Seymour Hoffman, Kathy Bates, Jack Kehler, Wayne Duvall, Sarah Koskoff and Stephen Tobolowsky."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sony_Pictures_Classics|http://dbpedia.org/resource/Sony_Pictures_Motion_Picture_Group"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/All_About_Actresses"}, "Title": {"type": "literal", "value": "All About Actresses"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ma\u00efwenn"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "All About Actresses (French: Le Bal des actrices), also known as The Actress' Ball, is a 2009 French mockumentary film directed by Ma\u00efwenn. The title is a reference to the film directed by Roman Polanski, The Fearless Vampire Killers (Le Bal des vampires)."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Already_Famous"}, "Title": {"type": "literal", "value": "Already Famous"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michelle_Chong"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alien_Huang|http://dbpedia.org/resource/Michelle_Chong"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Singaporean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "Already Famous (Chinese:\u4e00\u6ce1\u800c\u7ea2: Yi Pao Er Hong) is a 2011 Singaporean comedy film and the feature film directorial debut of Michelle Chong, who also starred in the film alongside Taiwanese idol Alien Huang. The movie released on 1 December 2011 in Singapore and was selected as the Singaporean entry for the Best Foreign Language Oscar at the 85th Academy Awards, but it did not make the final shortlist. Already Famous was well received in Singapore, where it grossed S$1.04 million and viewer demand for the film grew so high that movie theaters had to double the number of screens showing the film."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Miss_Nobody_(2010_film)"}, "Title": {"type": "literal", "value": "Miss Nobody"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tim_Cox"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Goldberg|http://dbpedia.org/resource/Brandon_Routh|http://dbpedia.org/resource/Kathy_Baker|http://dbpedia.org/resource/Leslie_Bibb"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Miss Nobody is a 2010 American black comedy film."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Project_X_(2012_film)"}, "Title": {"type": "literal", "value": "Project X"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nima_Nourizadeh"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jonathan_Daniel_Brown|http://dbpedia.org/resource/Oliver_Cooper|http://dbpedia.org/resource/Thomas_Mann_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Project X is a 2012 American comedy film directed by Nima Nourizadeh and written by Michael Bacall and Matt Drake based on a story by Bacall, and produced by director Todd Phillips. The film follows three friends\u2014Thomas (Thomas Mann), Costa (Oliver Cooper) and J.B. (Jonathan Daniel Brown)\u2014who plan to gain popularity by throwing a party, a plan which quickly escalates out of their control. The title Project X was initially a placeholder for a final title, but interest generated by the secretive title kept it in place. A nationwide open casting call was employed to find fresh faces. The majority of the cast were sourced from this casting call, but a few with prior acting credits, such as Mann, were accepted after multiple auditions. Filming took place on sets in Los Angeles over five weeks on a US$12 million budget. The film is presented as a found footage home video from the perspective of an attendee using a camera to document the night's events. Project X was released in the United States, Canada, and the United Kingdom on March 2, 2012, and grossed over $100 million worldwide during its theatrical run. Criticism focused on the \"loathsome\" behavior of the lead characters, the perceived misogyny and the disregard for the effects of drug use. Other reviews considered it funny and thrilling, and equated it to a modern incarnation of the 1978 comedy Animal House. Following release, incidents of large scale parties referenced or blamed the film as an inspiration."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros._Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/A_Fantastic_Fear_of_Everything"}, "Title": {"type": "literal", "value": "A Fantastic Fear of Everything"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Hopewell|http://dbpedia.org/resource/Crispian_Mills"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amara_Karan|http://dbpedia.org/resource/Clare_Higgins|http://dbpedia.org/resource/Paul_Freeman_(actor)|http://dbpedia.org/resource/Simon_Pegg"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "A Fantastic Fear of Everything is a 2012 British horror comedy film starring Simon Pegg, written and directed by Crispian Mills with Chris Hopewell as co-director. It is based on the novella Paranoia in the Launderette by Bruce Robinson, writer and director of Withnail and I. It has been described as a low-budget \"semicomedy\" about a children\u2019s author-turned-crime-novelist who has become obsessed with murder and murdering. It was released on 8 June 2012 in the United Kingdom and Ireland, and received a limited U.S. theatrical release on 7 February 2014. The BBFC classified the film a 15 certificate in the UK, while the MPAA rated the film R in America. Principal photography began on 6 July 2011. Filmed at Shepperton Studios, the film was the first to be backed by Pinewood Studios' initiative to support low-budget British films. It was released by Universal Pictures in the UK and Indomina Releasing in the US."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Iron_Sky:_The_Coming_Race"}, "Title": {"type": "literal", "value": "Iron Sky: The Coming Race"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Timo_Vuorensola"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jukka_Hilden|http://dbpedia.org/resource/Julia_Dietze|http://dbpedia.org/resource/Kari_Ketonen|http://dbpedia.org/resource/Stephanie_Paul|http://dbpedia.org/resource/Tom_Green|http://dbpedia.org/resource/Udo_Kier"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Action_comedy_films|http://dbpedia.org/resource/Category:Comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Iron Sky: The Coming Race is an upcoming Finnish comic science fiction action film directed by Timo Vuorensola. It is the sequel to Vuorensola's 2012 film Iron Sky. The film is currently being crowdfunded through Indiegogo and is stated for a 2017 release. A major inspiration of the content (and the title) seems to be the Vril conspiracy theory."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Pulp_(2012_film)"}, "Title": {"type": "literal", "value": "Pulp"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Hamdy"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/John_Thomson_(comedian)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Pulp is a British comedy film directed by Adam Hamdy and Shaun Magher, starring Jay Sutherland and John Thomson On March 2013 it was released exclusively on Xbox Live, becoming the first feature film to be distributed via a games console platform."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Let's_Kill_Ward's_Wife"}, "Title": {"type": "literal", "value": "Let's Kill Ward's Wife"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Scott_Foley"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amy_Acker|http://dbpedia.org/resource/Dagmara_Domi\u0144czyk|http://dbpedia.org/resource/Donald_Faison|http://dbpedia.org/resource/Greg_Grunberg|http://dbpedia.org/resource/Marika_Domi\u0144czyk|http://dbpedia.org/resource/Nicolette_Sheridan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "81"}, "Description": {"type": "literal", "value": "Let's Kill Ward's Wife is a 2014 American black comedy film written and directed by Scott Foley. Marking Foley's feature-film directorial debut, the film stars Patrick Wilson, Foley, Donald Faison, and James Carpinello. Foley, Wilson, and Carpinello produced the film, along with Joe Hardesty. The film follows three friends (Wilson, Foley, and Carpinello) who plan to kill their friend Ward's (Faison) abusive wife, Stacy (Dagmara Domi\u0144czyk). The cast consists almost entirely of actors who are related to one another, with many being siblings or spouses. For example, Wilson is married to Domi\u0144czyk, who portrays the wife of Faison's character, and Carpinello is married to Amy Acker, who portrays the wife of Foley's character. The film was released on video on demand on December 23, 2014 prior to its limited release on January 9, 2015. It has received generally negative reviews, with criticism aimed at its humor and portrayal of women, though this is countered by it being somewhat analogous to Murder on the Orient Express, a story written by a woman where an obnoxious man is killed with group consensus."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Tribeca_Film_Institute"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lego_DC_Comics_Super_Heroes:_Justice_League_vs._Bizarro_League"}, "Title": {"type": "literal", "value": "Justice League vs. Bizarro League|Lego DC Comics Super Heroes:"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Brandon_Vietti"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "49"}, "Description": {"type": "literal", "value": "Lego DC Comics Super Heroes: Justice League vs. Bizarro League is a direct-to-video Computer animated comedy film based on the Lego and DC Comics brands, released on February 10, 2015 on Blu-ray and DVD. This is the third Lego DC Comics film following Lego Batman: The Movie \u2013 DC Super Heroes Unite and Lego DC Comics: Batman Be-Leaguered. Some actors from various DC properties reprise their respective roles, including Nolan North as Superman, Khary Payton as Cyborg, Diedrich Bader as Green Lantern (Guy Gardner) and Tom Kenny as The Penguin and Plastic Man."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Home_Video"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Alter_Egos"}, "Title": {"type": "literal", "value": "Alter Egos"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jordan_Galland"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Danny_Masterson|http://dbpedia.org/resource/Geneva_Carr|http://dbpedia.org/resource/Kris_Lemche|http://dbpedia.org/resource/Sean_Lennon"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "77"}, "Description": {"type": "literal", "value": "Alter Egos is a 2012 American superhero comedy film written, edited, and directed by Jordan Galland. The film, starring Kris Lemche, Sean Lennon, Danny Masterson, and Geneva Carr, was distributed by Kevin Smith's SModcast Pictures and Phase 4 Films. It premiered was at the Fantasia Film Festival on July 24, 2012, where it was chosen as an official selection."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Phase_4_Films|http://dbpedia.org/resource/SModcast"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Marrying_the_Mafia_III"}, "Title": {"type": "literal", "value": "Marrying the Mafia III"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jeong_Yong-ki"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Shin_Hyun-joon_(actor)|http://dbpedia.org/resource/Tak_Jae-hoon"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:South_Korean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "128"}, "Description": {"type": "literal", "value": "Marrying the Mafia III (Hangul: \uac00\ubb38\uc758 \ubd80\ud65c - \uac00\ubb38\uc758 \uc601\uad11 3; RR: Gamuneui buhwal - Kamuneui yeonggwang 3) is a 2006 South Korean film."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Taxi_(2004_film)"}, "Title": {"type": "literal", "value": "Taxi"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tim_Story"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gisele_B\u00fcndchen|http://dbpedia.org/resource/Jennifer_Esposito|http://dbpedia.org/resource/Jimmy_Fallon|http://dbpedia.org/resource/Queen_Latifah"}, "Published": {"type": "literal", "value": "2004-10-08"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_screwball_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Taxi is a 2004 American remake of the 1998 French film of the same name, starring Queen Latifah, Jimmy Fallon, and Gisele B\u00fcndchen. It is directed by Tim Story."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/True_Memoirs_of_an_International_Assassin"}, "Title": {"type": "literal", "value": "True Memoirs of an International Assassin"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jeff_Wadlow"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Howard|http://dbpedia.org/resource/Andy_Garcia|http://dbpedia.org/resource/Kelen_Coleman|http://dbpedia.org/resource/Kevin_James|http://dbpedia.org/resource/Rob_Riggle|http://dbpedia.org/resource/Zulay_Henao"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:Spy_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "True Memoirs of an International Assassin is an upcoming American action comedy film directed by Jeff Wadlow and written by Jeff Morris. The film stars Kevin James, Zulay Henao, Andy Garcia, Maurice Compte, Kelen Coleman, Andrew Howard, and Rob Riggle. The film is slated to be released on November 11, 2016."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Netflix"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Filth_(film)"}, "Title": {"type": "literal", "value": "Filth"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jon_S._Baird"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Eddie_Marsan|http://dbpedia.org/resource/Imogen_Poots|http://dbpedia.org/resource/James_McAvoy|http://dbpedia.org/resource/Jamie_Bell|http://dbpedia.org/resource/Jim_Broadbent|http://dbpedia.org/resource/Joanne_Froggatt"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:British_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Filth is a 2013 British crime comedy-drama film written and directed by Jon S. Baird, based on Irvine Welsh's novel Filth. The film was released on 27 September 2013 in Scotland, 4 October 2013 elsewhere in the UK and Ireland, 30 May 2014 in the United States. It stars James McAvoy, Jamie Bell and Jim Broadbent."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lions_Gate_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mannar_Mathai_Speaking_2"}, "Title": {"type": "literal", "value": "Mannar Mathai Speaking 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mamas_K._Chandran"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aparna_Gopinath|http://dbpedia.org/resource/Biju_Menon|http://dbpedia.org/resource/Innocent_(actor)|http://dbpedia.org/resource/Janardhanan_(actor)|http://dbpedia.org/resource/Mukesh_(actor)|http://dbpedia.org/resource/Saikumar_(Malayalam_actor)|http://dbpedia.org/resource/Shammi_Thilakan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Mannar Mathai Speaking 2 is Malayalam comedy thriller film, directed by Mamas. It is a sequel to the 1995 cult comedy classic, Mannar Mathai Speaking and the third installment in the celebrated Ramji Rao franchise. Actors Mukesh, Saikumar, Innocent, Janardhanan reprise their roles; while Aparna Gopinath, Shammi Thilakan and a few others are also included in the cast. The film features original music & background score composed by Rahul Raj.The film an average grosser at the box office."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ongole_Githa"}, "Title": {"type": "literal", "value": "Ongole Gittha"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bhaskar_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ahuti_Prasad|http://dbpedia.org/resource/Ajay_(actor)|http://dbpedia.org/resource/Kriti_Kharbanda|http://dbpedia.org/resource/Prabhu|http://dbpedia.org/resource/Prakash_Raj|http://dbpedia.org/resource/Ram_Pothineni"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Ongole Gittha is a 2013 Telugu action masala comedy film written and directed by Bhaskar and produced by B. V. S. N. Prasad under Sri Venkateswara Cine Chitra. The film features Ram Pothineni and Kriti Kharbanda in the lead roles. The soundtrack was composed by G. V. Prakash Kumar, Mani Sharma also scored one song for the film and given the background score. The film was released on 1 February 2013 to negative reviews from critics and commercial failure at the box office. The Hindi dub of the film was renamed as Mahaveer no.1."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/How_to_Stop_Being_a_Loser"}, "Title": {"type": "literal", "value": "How To Stop Being a Loser"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dominic_Burns"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adele_Silva|http://dbpedia.org/resource/Billy_Murray_(actor)|http://dbpedia.org/resource/Colin_Salmon|http://dbpedia.org/resource/Craig_Conway_(actor)|http://dbpedia.org/resource/Gemma_Atkinson|http://dbpedia.org/resource/Martin_Kemp|http://dbpedia.org/resource/Richard_E._Grant|http://dbpedia.org/resource/Simon_Phillips_(actor)|http://dbpedia.org/resource/Stephanie_Leonidas"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "How To Stop Being a Loser (2011) is a British independent comedy starring Billy Murray, Gemma Atkinson, Richard E. Grant, Simon Phillips, and Colin Salmon."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Nick_&_Norah's_Infinite_Playlist"}, "Title": {"type": "literal", "value": "Nick & Norah's Infinite Playlist"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Peter_Sollett"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aaron_Yoo|http://dbpedia.org/resource/Alexis_Dziena|http://dbpedia.org/resource/Ari_Graynor|http://dbpedia.org/resource/Jay_Baruchel|http://dbpedia.org/resource/Kat_Dennings|http://dbpedia.org/resource/Michael_Cera"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Nick & Norah's Infinite Playlist is a 2008 romantic comedy-drama film directed by Peter Sollett and starring Michael Cera and Kat Dennings. Written by Lorene Scafaria and based on the novel of the same name by Rachel Cohn and David Levithan, the story tells of teenagers Nick (Cera) and Norah (Dennings), who meet when Norah asks Nick to pretend to be her boyfriend for five minutes. Over the course of the night, they try to find their favorite band's secret show and search for Norah's drunken best friend. The film came into development in 2003 when producer Kerry Kohansky Roberts found Cohn and Levithan's novel and decided to adapt it for film. Scafaria was hired to write the script in 2005, and Sollett signed on to direct the film in 2006. Principal photography took place over 29 days from October to December 2007, primarily in Manhattan and Brooklyn, New York City. The film premiered on September 6, 2008 at the 2008 Toronto International Film Festival and was released theatrically on October 3, 2008. It tripled its US$10 million budget with a total gross of US$33.5 million. An accompanying soundtrack was released on September 23, 2008, and the film was released on DVD and Blu-ray on February 3, 2009. It attracted generally positive reviews from critics and received nominations for three Satellite Awards, one GLAAD Media Award, one MTV Movie Award and one Golden Reel Award."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures|http://dbpedia.org/resource/Screen_Gems"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Armless"}, "Title": {"type": "literal", "value": "Armless"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Habib_Azar"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Daniel_London|http://dbpedia.org/resource/Janel_Moloney|http://dbpedia.org/resource/Matt_Walton|http://dbpedia.org/resource/Zoe_Lister-Jones"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "Armless is a 2010 comedy film directed by Habib Azar and written by Kyle Jarrow, starring Daniel London, Janel Moloney, Matt Walton, Zoe Lister-Jones and Laurie Kennedy. It was an official selection of the 2010 Sundance Film Festival, as part of the new category 'NEXT' which selects films for their innovative and original work in low- and no-budget filmmaking."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Crazy_Racer"}, "Title": {"type": "literal", "value": "Crazy Racer"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ning_Hao"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Huang_Bo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Black_comedy_films|http://dbpedia.org/resource/Category:Chinese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "Crazy Racer, also known in some countries as Silver Medalist, is a 2009 Chinese black comedy movie directed and written by Ning Hao, filmed mostly in the southern coastal city of Xiamen, PROC."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/China_Film_Group"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Masterpiece_(film)"}, "Title": {"type": "literal", "value": "The Masterpiece"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Franco"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dave_Franco|http://dbpedia.org/resource/Josh_Hutcherson|http://dbpedia.org/resource/Zac_Efron"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Masterpiece is an upcoming American biographical comedy film directed by, co-produced by, and starring James Franco. Based on Greg Sestero's non-fiction book The Disaster Artist, the film depicts the early friendship of Sestero and Tommy Wiseau, the filmmaker behind the 2003 cult film The Room, and the making of the film itself. The film stars James and Dave Franco alongside a supporting cast featuring Seth Rogen, Josh Hutcherson, Ari Graynor, Jacki Weaver, Hannibal Buress, Andrew Santino, Zac Efron, Alison Brie, Sharon Stone and Bryan Cranston. Principal photography of the film began on December 8, 2015. It is scheduled to be theatrically released in 2017."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/My_Super_Psycho_Sweet_16"}, "Title": {"type": "literal", "value": "My Super Psycho Sweet 16"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jacob_Gentry"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Zylka|http://dbpedia.org/resource/Julianna_Guill|http://dbpedia.org/resource/Lauren_McKnight|http://dbpedia.org/resource/Matt_Angel"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "My Super Psycho Sweet 16 is a 2009 American teen drama horror slasher television film, based on the MTV show, My Super Sweet 16. The film follows two girls: an outcast named Skye Rotter (Lauren McKnight), and an extremely spoiled girl named Madison Penrose (Julianna Guill). Madison convinces her parents to re-open the Roller Dome for her sweet sixteenth birthday party. The Roller Dome\u2014a roller skating rink that Skye's father used to own\u2014had been closed because a series of brutal murders took place there ten years ago. The killer, who happens to be Skye's father, comes back to wreak havoc during Madison's party, however. The film was followed by two sequels, My Super Psycho Sweet 16: Part 2 and My Super Psycho Sweet 16: Part 3."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Casa_de_Mi_Padre"}, "Title": {"type": "literal", "value": "Casa de Mi Padre"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Matt_Piedmont"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adrian_Martinez_(actor)|http://dbpedia.org/resource/Diego_Luna|http://dbpedia.org/resource/Efren_Ramirez|http://dbpedia.org/resource/Gael_Garc\u00eda_Bernal|http://dbpedia.org/resource/G\u00e9nesis_Rodr\u00edguez|http://dbpedia.org/resource/Nick_Offerman|http://dbpedia.org/resource/Pedro_Armend\u00e1riz,_Jr.|http://dbpedia.org/resource/Will_Ferrell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Casa de Mi Padre (English: House of My Father or simply My Father's House) is a 2012 Spanish-language American comedy film. The film stars Will Ferrell, Gael Garc\u00eda Bernal, Diego Luna and G\u00e9nesis Rodr\u00edguez with Matt Piedmont directing a screenplay written by Andrew Steele. The film has been described to be in the style of an \"overly dramatic telenovela\" and tells the story of Armando \u00c1lvarez, who must save his father's ranch from a powerful drug lord. Casa de Mi Padre was released on March 16, 2012."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Pantelion_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mutual_Appreciation"}, "Title": {"type": "literal", "value": "Mutual Appreciation"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Bujalski"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Bujalski|http://dbpedia.org/resource/Justin_Rice|http://dbpedia.org/resource/Rachel_Clift|http://dbpedia.org/resource/Seung-Min_Lee_(actress)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "Mutual Appreciation is a 2005 independent film by Andrew Bujalski who previously directed Funny Ha Ha (2002). The script is primarily dialogue between a group of young people as they try to determine where they fit in the world. It is considered part of the mumblecore movement."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Goodbye_Cruel_Releasing"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Star_Wreck:_In_the_Pirkinning"}, "Title": {"type": "literal", "value": "Star Wreck: In the Pirkinning"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Timo_Vuorensola"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Antti_Satama|http://dbpedia.org/resource/Atte_Joutsen|http://dbpedia.org/resource/Janos_Honkonen|http://dbpedia.org/resource/Jari_Ahola|http://dbpedia.org/resource/Kari_V\u00e4\u00e4n\u00e4nen|http://dbpedia.org/resource/Samuli_Torssonen|http://dbpedia.org/resource/Satu_Heli\u00f6|http://dbpedia.org/resource/Timo_Pekurinen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "Star Wreck: In the Pirkinning is a 2005 parody film produced by five friends in a two-room flat with a small budget and the support of a few hundred fans and several dozen acquaintances. It is the seventh production in the Star Wreck movie series, and the first of professional quality and feature length. It is a dark science fiction comedy about domination of the world and the universe, and a parody of the Star Trek and Babylon 5 franchises. The original version (\"net version\") of the film is available as an authorized and legal download on the Internet under the Creative Commons BY-ND-NC license."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Energia_Productions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Grave_Decisions"}, "Title": {"type": "literal", "value": "Grave Decisions"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Marcus_H._Rosenm\u00fcller"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Fritz_Karl|http://dbpedia.org/resource/Markus_Krojer"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:German_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Grave Decisions (German: Wer fr\u00fcher stirbt ist l\u00e4nger tot - literally The sooner you die, the longer you are dead) is a 2006 comedy directed by Marcus H. Rosenm\u00fcller about an 11-year-old Bavarian boy (Sebastian Schneider) who feels responsible for his mother's death, who died during his birth, and naively attempts multiple ways to reach immortality (Procreation, Reincarnation, Sanctification, Rockstardom) to prevent his tenure in hell."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Myth_of_the_American_Sleepover"}, "Title": {"type": "literal", "value": "The Myth of the American Sleepover"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_Robert_Mitchell"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amanda_Bauer_(actress)|http://dbpedia.org/resource/Amy_Seimetz|http://dbpedia.org/resource/Brett_Jacobsen|http://dbpedia.org/resource/Claire_Sloma|http://dbpedia.org/resource/Jade_Ramsey|http://dbpedia.org/resource/Marlon_Morton|http://dbpedia.org/resource/Nikita_Ramsey"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "The Myth of the American Sleepover is a 2010 American coming-of-age film written and directed by David Robert Mitchell and distributed by IFC Films."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Oh_My_God_(2015_film)"}, "Title": {"type": "literal", "value": "Oh My God"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Leste_Chen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chen_Xuedong|http://dbpedia.org/resource/Li_Xiaolu|http://dbpedia.org/resource/Zhang_Yixing"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Chinese_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Oh My God (Chinese: \u4ece\u5929\u513f\u964d) (also known as The Baby from the Universe and Children Fallen from the Skies) is a 2015 Chinese romantic comedy sci-fi film directed by Leste Chen and produced by Zhang Ziyi. The film stars Zhang Yixing, Li Xiaolu, Chen Xuedong and Coco Jiang Wen."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/My_Super_Psycho_Sweet_16:_Part_2"}, "Title": {"type": "literal", "value": "My Super Psycho Sweet 16: Part 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jacob_Gentry"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Zylka|http://dbpedia.org/resource/Kirsten_Prout|http://dbpedia.org/resource/Lauren_McKnight|http://dbpedia.org/resource/Matt_Angel|http://dbpedia.org/resource/Stella_Maeve"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "My Super Psycho Sweet 16: Part 2 is a 2010 American teen horror slasher film, the sequel to the 2009 film My Super Psycho Sweet 16. Skye Rotter (Lauren McKnight), in her journey to disappear from the lives of her friends trying to move on from the horrible Roller-Dome massacre. The police are looking for her as she is the only one who really knows what happened to Madison Penrose (Julianna Guill). Now she encounters a new life when she goes to live with her mother and her mother's new husband and daughter Alex (Kirsten Prout), not knowing that the killer, who is Skye's father, has come back to wreak havoc on her new life."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Surviving_Christmas"}, "Title": {"type": "literal", "value": "Surviving Christmas"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mike_Mitchell_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Affleck|http://dbpedia.org/resource/Bill_Macy|http://dbpedia.org/resource/Catherine_O'Hara|http://dbpedia.org/resource/Christina_Applegate|http://dbpedia.org/resource/David_Selby|http://dbpedia.org/resource/James_Gandolfini|http://dbpedia.org/resource/Jennifer_Morrison|http://dbpedia.org/resource/Josh_Zuckerman_(actor)|http://dbpedia.org/resource/Stephanie_Faracy|http://dbpedia.org/resource/Stephen_Root|http://dbpedia.org/resource/Udo_Kier"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Surviving Christmas is a 2004 American romantic comedy film directed by Mike Mitchell starring Ben Affleck, James Gandolfini, Christina Applegate and Catherine O'Hara. Originally slated for a December 2003 release, DreamWorks SKG pushed the release date back to October 2004, in order to avoid clashing with Affleck's 2003 film Paycheck. Surviving Christmas received negative reviews and was a box office failure. It was released on DVD on December 21, 2004, just two months after it had its theatrical release."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/DreamWorks_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Black_Pond"}, "Title": {"type": "literal", "value": "Black Pond"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tom_Kingsley|http://dbpedia.org/resource/Will_Sharpe"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amanda_Hadingue|http://dbpedia.org/resource/Chris_Langham|http://dbpedia.org/resource/Colin_Hurley|http://dbpedia.org/resource/Simon_Amstell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:British_black_comedy_films|http://dbpedia.org/resource/Category:British_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "Black Pond is the debut, low budget, independent feature by young British directors Tom Kingsley and Will Sharpe. The film was nominated for the 2012 BAFTA Outstanding British Debut Award. The film stars Chris Langham in his first acting role since being convicted of child pornography charges. The film is reported as having cost \u00a325,000 to make. It is a black comedy about a family who are accused of murder when a stranger comes to dinner. Screen International reported that \"The film premiered at the Raindance Film Festival, going on to be nominated for the Raindance award at the BIFAs and two Evening Standard Awards for Best Debut and Best Comedy.\"The Guardian reported that the film had also been shortlisted for the Guardian First Film Award."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Goon_(film)"}, "Title": {"type": "literal", "value": "Goon"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Dowse"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films|http://dbpedia.org/resource/Category:Sports_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Goon is a 2011 Canadian-American sports comedy film directed by Michael Dowse, written by Jay Baruchel and Evan Goldberg, and starring Seann William Scott, Jay Baruchel, Liev Schreiber, Alison Pill, Marc-Andr\u00e9 Grondin, Kim Coates and Eugene Levy. The main plot depicts an exceedingly nice but somewhat dimwitted man who becomes the enforcer for a minor league ice hockey team. A sequel, Goon: Last of the Enforcers, is currently in development, with Baruchel serving as director."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Alliance_Films|http://dbpedia.org/resource/Magnet_Releasing"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Aqua_Teen_Hunger_Force_Colon_Movie_Film_for_Theaters"}, "Title": {"type": "literal", "value": "Aqua Teen Hunger Force|Colon Movie Film for Theaters"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dave_Willis|http://dbpedia.org/resource/Matt_Maiellaro"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Merrill|http://dbpedia.org/resource/Bruce_Campbell|http://dbpedia.org/resource/C._Martin_Croker|http://dbpedia.org/resource/Carey_Means|http://dbpedia.org/resource/Chris_Kattan|http://dbpedia.org/resource/Dana_Snyder|http://dbpedia.org/resource/Mike_Schatz|http://dbpedia.org/resource/Neil_Peart"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films|http://dbpedia.org/resource/Category:Surreal_comedy"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Aqua Teen Hunger Force Colon Movie Film for Theaters is a 2007 American Flash animated surreal comedy film based on the Adult Swim animated series Aqua Teen Hunger Force. The film features the voices of Dana Snyder, Carey Means, Willis, Maiellaro, Mike Schatz, Andy Merrill, C. Martin Croker, Bruce Campbell, Neil Peart and Chris Kattan. The film was written and directed by the show's creators, Matt Maiellaro and Dave Willis. The film was theatrically released on April 13, 2007. The film marks the first time an Adult Swim series was adapted into a feature film. The film grossed $5.5 million compared to its $750,000 budget. Warner Home Video released the film in a two-disc DVD edition on August 14, 2007."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/First_Look_Pictures"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Adult_Swim|http://dbpedia.org/resource/Cartoon_Network|http://dbpedia.org/resource/Williams_Street"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Breakup_Buddies"}, "Title": {"type": "literal", "value": "Breakup Buddies"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ning_Hao"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Huang_Bo|http://dbpedia.org/resource/Xu_Zheng_(actor)|http://dbpedia.org/resource/Yuan_Quan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Chinese_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "Breakup Buddies is a 2014 Chinese romantic comedy and road film, directed by Ning Hao. It stars Huang Bo and Xu Zheng as buddies on a wild 3,000-kilometre cross-country journey from Beijing to Dali City (via Zhangjiajie). The film premiered at the 2014 Toronto International Film Festival on September 7, 2014, and was released domestically on September 30, 2014. It grossed over $195 million to become one of the highest-grossing films in China."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Nerdland"}, "Title": {"type": "literal", "value": "Nerdland"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Prynoski"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hannibal_Buress|http://dbpedia.org/resource/John_Ennis_(actor)|http://dbpedia.org/resource/Kate_Micucci|http://dbpedia.org/resource/Mike_Judge|http://dbpedia.org/resource/Patton_Oswalt|http://dbpedia.org/resource/Paul_Rudd|http://dbpedia.org/resource/Riki_Lindhome"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "Nerdland is a 2016 American animated comedy film directed by Chris Prynoski and written by Andrew Kevin Walker. The film stars Paul Rudd, Patton Oswalt, Hannibal Buress, Kate Micucci, Riki Lindhome, John Ennis and Mike Judge."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Samuel_Goldwyn_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/How_to_Use_Guys_with_Secret_Tips"}, "Title": {"type": "literal", "value": "How to Use Guys with Secret Tips"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lee_Won-suk"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Lee_Si-young|http://dbpedia.org/resource/Oh_Jung-se|http://dbpedia.org/resource/Park_Yeong-gyu"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "How to Use Guys with Secret Tips (Hangul: \ub0a8\uc790\uc0ac\uc6a9\uc124\uba85\uc11c; RR: Namja Sayongseolmyungseo; lit. \"A Manual on How to Use Men\") is a 2013 South Korean romantic comedy film starring Lee Si-young and Oh Jung-se, and directed by Lee Won-suk."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Showbox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Achy_Breaky_Hearts"}, "Title": {"type": "literal", "value": "The Achy Breaky Hearts"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Antoinette_Jadaone"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ian_Veneracion|http://dbpedia.org/resource/Jodi_Sta._Maria|http://dbpedia.org/resource/Richard_Yap"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Philippine_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Achy Breaky Hearts is a 2016 Filipino romantic comedy film directed by Antoinette Jadaone, starring Ian Veneracion, Richard Yap, and Jodi Sta. Maria. The film was produced by Star Cinema and to be released on June 29, 2016 in theaters nationwide. The film was inspired by the 1992 pop hit of the same title by American singer Billy Ray Cyrus. The film was also intended to cash-in from the success of two of Jodi Sta. Maria's previous TV projects: Be Careful With My Heart, where she starred opposite Richard Yap, and Pangako Sa 'Yo remake where she starred opposite Ian Veneracion."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Star_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Fun_Size"}, "Title": {"type": "literal", "value": "Fun Size"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Josh_Schwartz"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chelsea_Handler|http://dbpedia.org/resource/Jackson_Nicoll|http://dbpedia.org/resource/Jane_Levy|http://dbpedia.org/resource/Osric_Chau|http://dbpedia.org/resource/Riki_Lindhome|http://dbpedia.org/resource/Thomas_Mann_(actor)|http://dbpedia.org/resource/Thomas_McDonell|http://dbpedia.org/resource/Thomas_Middleditch|http://dbpedia.org/resource/Victoria_Justice"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Fun Size (known as Half Pint in some countries) is a 2012 American teen comedy film written by Max Werner and directed by Josh Schwartz. It stars Victoria Justice, Jane Levy, Thomas Mann, Jackson Nicoll, Chelsea Handler, Thomas McDonell, Riki Lindhome, and Osric Chau. It was the second time a Nickelodeon film received a PG-13 rating, since Angus, Thongs and Perfect Snogging, which was released straight-to-DVD in the US, and two years before Teenage Mutant Ninja Turtles, which was released in theatres. However, it is the studio's first American and theatrically released film with that rating. The film grossed $11 million against its $14 million budget."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Chumscrubber"}, "Title": {"type": "literal", "value": "The Chumscrubber"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Arie_Posin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:German_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "The Chumscrubber is a 2005 American-German comedy-drama film, directed by Arie Posin, starring an ensemble cast led by Jamie Bell. The plot, written by Posin and Zac Stanford, focuses on the chain of events that follow the suicide of a teenage drug dealer in an idealistic but superficial town. Some of the themes addressed in the film are the lack of communication between teenagers and their parents and the inauthenticity of suburbia. The titular Chumscrubber is a character in a fictional video game that represents the town and its inhabitants. Posin and Stanford had originally planned to shoot the film using their own funds, but they sent the script to producers Lawrence Bender and Bonnie Curtis who agreed to produce the film and help to raise the budget. Bell was cast in the lead role after an extensive auditioning process, and the film was shot in various California locations over 30 days in April 2004. The Chumscrubber premiered at the Sundance Film Festival on January 25, 2005 and was released theatrically on August 26, 2005. An accompanying soundtrack, composed mostly by James Horner, was released on October 18, 2005. The film was both a critical and commercial failure, receiving mostly negative reviews and earning back only US$350,000 of its $10 million budget."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/DreamWorks|http://dbpedia.org/resource/Go_Fish_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Intouchables"}, "Title": {"type": "literal", "value": "The Intouchables"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Olivier_Nakache_&_\u00c9ric_Toledano"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Fran\u00e7ois_Cluzet|http://dbpedia.org/resource/Omar_Sy"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "113"}, "Description": {"type": "literal", "value": "The Intouchables (French: Intouchables [\u025b\u0303tu\u0283abl], UK: Untouchable) is a 2011 French buddy comedy-drama film directed by Olivier Nakache & \u00c9ric Toledano. It stars Fran\u00e7ois Cluzet and Omar Sy. Nine weeks after its release in France on 2 November 2011, it became the second biggest box office hit in France, just behind the 2008 film Welcome to the Sticks. The film was voted the cultural event of 2011 in France with 52% of votes in a poll by Fnac. The film has received several award nominations. In France, the film was nominated for eight C\u00e9sar Awards and earned Omar Sy the C\u00e9sar Award for Best Actor."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/The_Weinstein_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Little_Athens"}, "Title": {"type": "literal", "value": "Little Athens"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tom_Zuber"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/DJ_Qualls|http://dbpedia.org/resource/Erica_Leerhsen|http://dbpedia.org/resource/Jill_Ritchie|http://dbpedia.org/resource/John_Patrick_Amedori|http://dbpedia.org/resource/Michael_Pe\u00f1a|http://dbpedia.org/resource/Michelle_Horn|http://dbpedia.org/resource/Rachel_Miner"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "Little Athens is a 2005 American independent film directed by Tom Zuber, which stars John Patrick Amedori, Erica Leerhsen, DJ Qualls, Rachel Miner, Eric Szmanda, Michael Pe\u00f1a, and more. Despite premiering at Toronto Film Festival in 2005, it wasn't released on DVD until November 21, 2006."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hunt_for_the_Wilderpeople"}, "Title": {"type": "literal", "value": "Hunt for the Wilderpeople"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Taika_Waititi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Julian_Dennison|http://dbpedia.org/resource/Sam_Neill"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:New_Zealand_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Hunt for the Wilderpeople is a 2016 New Zealand adventure comedy-drama film written and directed by Taika Waititi who co-produced with Carthew Neal, Leanne Saunders and Matt Noonan, based on the book Wild Pork and Watercress by Barry Crump. The film stars Sam Neill and Julian Dennison as a father figure and son who become caught in a manhunt. The film premiered In Competition at the 2016 Sundance Film Festival on 22 January 2016. The film opened New Zealand wide on 31 March 2016. The film received a limited North American release on 24 June 2016."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Madman_Entertainment|http://dbpedia.org/resource/The_Orchard_(company)|http://dbpedia.org/resource/Vertigo_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Supernatural_Activity"}, "Title": {"type": "literal", "value": "Supernatural Activity"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Derek_Lee_Nixon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Supernatural Activity is a 2012 comedy film directed by Derek Lee Nixon. It parodies various supernatural films, such as Paranormal Activity, The Last Exorcism, and The Exorcism of Emily Rose. It stars Joey Oglesby, Donny Boaz, Andrew Pozza, Devin Bonn\u00e9e, and Lizabeth Waters as paranormal investigators."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Harvie_Krumpet"}, "Title": {"type": "literal", "value": "Harvie Krumpet"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Elliot"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/John_Flaus|http://dbpedia.org/resource/Julie_Forsyth|http://dbpedia.org/resource/Kamahl"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:Black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "22"}, "Description": {"type": "literal", "value": "Harvie Krumpet is a 2003 Australian clay animation comedy-drama short film written, directed and animated by Adam Elliot, and narrated by Geoffrey Rush. It tells the life story of Harvie Krumpet, a Polish-Australian man whose life is plagued by bad luck but who nevertheless remains optimistic. The film was funded by SBS Independent, the Australian Film Commission and Film Victoria, and it was filmed and animated by Adam Elliot and two assistants over 15 months in 2001\u20132003, using models made of plasticine and other materials. The production was completed in May 2003 and Harvie Krumpet premiered a month later at the Annecy International Animated Film Festival, followed by over 100 subsequent film festival screenings. It won many accolades, including the Academy Award for Best Animated Short Film in 2004."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Atom_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Skinny_(film)"}, "Title": {"type": "literal", "value": "The Skinny"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Patrik-Ian_Polk"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Blake_Young-Fountain|http://dbpedia.org/resource/Jeffrey_Bowyer-Chapman|http://dbpedia.org/resource/Jussie_Smollett"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Skinny is a 2012 American romantic comedy-drama film from the creator of the LOGO television series, Noah's Arc. It was released on April 6, 2012 in select theaters. Producers include Juan Battle and Michael Bennett."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bommarillu"}, "Title": {"type": "literal", "value": "Bommarillu"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bhaskar_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Genelia_D'Souza|http://dbpedia.org/resource/Jayasudha|http://dbpedia.org/resource/Kota_Srinivasa_Rao|http://dbpedia.org/resource/Prakash_Raj|http://dbpedia.org/resource/Siddharth_Narayan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "168"}, "Description": {"type": "literal", "value": "Bommarillu (English: Dollhouse) () is a 2006 Telugu romantic comedy film directed and co-written by Bhaskar, and produced by Dil Raju. The film stars Siddharth Narayan, Genelia D'Souza, Prakash Raj and Jayasudha. Following the film's box office success it was remade in Tamil as Santosh Subramaniam (2008), in Bengali as Bhalobasa Bhalobasa (2008), in Oriya as Dream Girl (2009) and in Hindi as It's My Life (2013). The film primarily revolves around the relationship between a father and son, in which the father's excessive concern for his son, and interference in his life, leads to the latter harbouring bitterness towards his overbearing father. The film opened to Indian audiences on 9 August 2006. On its way to winning state honors and rave reviews, the film went on to win the South Filmfare Awards among other prominent awards. The film's success broke several records at the box office during its prime and is one of the highest grossing Telugu films."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sri_Venkateswara_Creations"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Broken_Hearts_Club:_A_Romantic_Comedy"}, "Title": {"type": "literal", "value": "The Broken Hearts Club: A Romantic Comedy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Greg_Berlanti"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Keegan|http://dbpedia.org/resource/Ben_Weber_(actor)|http://dbpedia.org/resource/Billy_Porter_(Broadway_performer)|http://dbpedia.org/resource/Dean_Cain|http://dbpedia.org/resource/Matt_McGrath_(actor)|http://dbpedia.org/resource/Timothy_Olyphant|http://dbpedia.org/resource/Zach_Braff"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "The Broken Hearts Club: A Romantic Comedy is a 2000 American film written and directed by Greg Berlanti. It follows the lives of a group of gay friends in West Hollywood, centered on a restaurant owned by the fatherly Jack (John Mahoney) and the softball team he sponsors. The friends rely on each other for friendship and support as they search for love, deal with loss, and discover themselves. The Broken Hearts Club was Berlanti's first feature film, based around his circle of friends at the time. The movie was met with generally favorable reviews from critics, receiving praise for portraying homosexuality as normal and its characters as average gay men. The film focuses on \"the universal themes of romance, acceptance and family\", as opposed to AIDS, coming out, and sex, which are more controversial and stereotypical topics commonly covered in LGBT films."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sony_Pictures_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/LolliLove"}, "Title": {"type": "literal", "value": "LolliLove"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jenna_Fischer"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/James_Gunn_(filmmaker)|http://dbpedia.org/resource/Jason_Segel|http://dbpedia.org/resource/Jenna_Fischer|http://dbpedia.org/resource/Judy_Greer|http://dbpedia.org/resource/Linda_Cardellini|http://dbpedia.org/resource/Lloyd_Kaufman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "64"}, "Description": {"type": "literal", "value": "LolliLove is a 2004 American mockumentary co-written by, directed by and starring Jenna Fischer. The film satirizes a hip, misguided Southern California couple who decide to make a difference in the lives of the homeless by giving them lollipops with a cheery slogan on the wrapper."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Troma_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Returning_Mickey_Stern"}, "Title": {"type": "literal", "value": "Returning Mickey Stern"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Prywes"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Connie_Stevens|http://dbpedia.org/resource/Joseph_Bologna|http://dbpedia.org/resource/Joshua_Fishbein|http://dbpedia.org/resource/Ren\u00e9e_Taylor|http://dbpedia.org/resource/Tom_Bosley"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Returning Mickey Stern is a 2002 comedy film written and directed by Michael Prywes. It stars Joseph Bologna, Tom Bosley, Ren\u00e9e Taylor, Connie Stevens, and Joshua Fishbein and was shot almost entirely on Fire Island, off the coast of Long Island, NY. It is the story of a former professional baseball player who discovers a second chance at life and love on the island. The film opened in theaters in New York, Los Angeles, and Massachusetts in 2003, and was released by Pathfinder Home Entertainment on DVD in 2006. Returning Mickey Stern was the first film ever to have four of its stars chosen by the worldwide Internet audience. Through the CastOurMovie web portal, web users could view audition video, peruse headshots and resumes, and discuss their opinions about the actors. The web site garnered the attention of Time Magazine, Entertainment Weekly, Industry Standard, the U.S. News and World Report, and many other media outlets. Two million people participated in the online voting, and the winners were: Kylie Delre, Michael Oberlander, Sarah Schoenberg, and John Sloan."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Welcome_Home_Roscoe_Jenkins"}, "Title": {"type": "literal", "value": "Welcome Home Roscoe Jenkins"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Malcolm_D._Lee"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cedric_the_Entertainer|http://dbpedia.org/resource/James_Earl_Jones|http://dbpedia.org/resource/Joy_Bryant|http://dbpedia.org/resource/Louis_C.K.|http://dbpedia.org/resource/Margaret_Avery|http://dbpedia.org/resource/Martin_Lawrence|http://dbpedia.org/resource/Michael_Clarke_Duncan|http://dbpedia.org/resource/Mike_Epps|http://dbpedia.org/resource/Mo'Nique|http://dbpedia.org/resource/Nicole_Ari_Parker"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "Welcome Home Roscoe Jenkins is a 2008 American comedy film written and directed by Malcolm D. Lee and distributed by Universal Pictures. The film features an ensemble cast featuring: Martin Lawrence, Nicole Ari Parker, Margaret Avery, Michael Clarke Duncan, Mike Epps, Mo'Nique, Cedric the Entertainer, Louis CK, and James Earl Jones."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Banglasia"}, "Title": {"type": "literal", "value": "Banglasia"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Namewee"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Namewee|http://dbpedia.org/resource/Saiful_Apek"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Banglasia (Chinese: \u731b\u52a0\u62c9\u6bba\u624b), is an action comedy and Namewee's fourth film. The budget was more than MYR2 million, and was shot in Kuala Lumpur's Petaling Street. Although the title appears to allude to the alleged Malaysian political phenomenon, the director has denied the insinuation. Filming is completed, however on 30 January 2014, Namewee revealed that the Malaysia Censorship Board had banned the film for 31 reasons. The cast included the \"Bengal Andy,\" (Md Shakhawat Hossain Nirab), comedian Saiful Apek, Dato David Arumugam, Zhu Yu-six, female tattooist Kinki Ryusaki, Singaporean artist Ai Dika (Atikah Suhaime), \"Laozhabor\" You Yamin."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Irumbukkottai_Murattu_Singam"}, "Title": {"type": "literal", "value": "Irumbukkottai Murattu Singam"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chimbu_Deven"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films|http://dbpedia.org/resource/Category:Western_(genre)_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "140"}, "Description": {"type": "literal", "value": "Irumbukkottai Murattu Singam (English: The Iron Fort's Furious Lion) is a 2010 Indian Tamil western comedy film directed by Chimbu Deven, starring choreographer-turned-actor Lawrence Raghavendra, Sandhya, Lakshmi Rai and Padmapriya in lead roles. The film is a \"Western adventure comedy film\" based on Cowboy stories, which is set in the 19th century paying homages to many western films. The film's shooting commenced in April 2009 and released on 7 May 2010, positive reviews for its story.In Tamil cinema, after the movie Gangaa, this is a full length cowboy movie being taken after 38 years. The movie was appreciated to be in the standards of an original Italian cowboy movies. The film comically highlights the current world politics."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dirty_Grandpa"}, "Title": {"type": "literal", "value": "Dirty Grandpa"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dan_Mazer"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aubrey_Plaza|http://dbpedia.org/resource/Dermot_Mulroney|http://dbpedia.org/resource/Julianne_Hough|http://dbpedia.org/resource/Robert_De_Niro|http://dbpedia.org/resource/Zac_Efron|http://dbpedia.org/resource/Zoey_Deutch"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102|109"}, "Description": {"type": "literal", "value": "(For other uses, see Grandpa (disambiguation).) Dirty Grandpa is a 2016 American comedy film directed by Dan Mazer and written by John Philips. The film stars Robert De Niro, Zac Efron, Zoey Deutch, Aubrey Plaza and Dermot Mulroney. Filming began on January 19, 2015 in Atlanta and ended on May 9. It was theatrically released on January 22, 2016 by Lionsgate and received negative reviews from critics, but was a box office success, grossing over $99 million worldwide."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lionsgate_Films"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Barry_Josephson|http://dbpedia.org/resource/Bill_Block|http://dbpedia.org/resource/QED_International"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Rent-a-Cat"}, "Title": {"type": "literal", "value": "Rent-a-Cat"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Naoko_Ogigami"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ken_Mitsuishi|http://dbpedia.org/resource/Mikako_Ichikawa|http://dbpedia.org/resource/Reiko_Kusamura"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Japanese_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "Rent-a-Cat (\u30ec\u30f3\u30bf\u30cd\u30b3, Rentaneko) is a 2007 Japanese comedy-drama film written and directed by Naoko Ogigami. It premiered at 2012 Stockholm International Film Festival and was also featured in 17th Busan International Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Randomers"}, "Title": {"type": "literal", "value": "The Randomers"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Graham_Jones_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "70"}, "Description": {"type": "literal", "value": "The Randomers is a 2014 romantic film from the Irish director Graham Jones about a young woman on the west coast of Ireland who places an advertisement seeking a male for a relationship without speaking."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Making_Fiends_(TV_series)"}, "Title": {"type": "literal", "value": "Making Fiends"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dave_Wasson"}, "Author": {"type": "literal", "value": "http://dbpedia.org/resource/Amy_Winfrey|http://dbpedia.org/resource/Madellaine_Paxson"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008-10-04"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_children's_comedy_television_series|http://dbpedia.org/resource/Category:Black_comedy_television_programs"}, "Genre": {"type": "literal", "value": "http://dbpedia.org/resource/Comedy_horror"}, "Duration": {"type": "literal", "value": "21"}, "Description": {"type": "literal", "value": "Making Fiends is an American comedy horror animated television series. Based upon a web series with the same name, the series premiered on October 4, 2008 on Nicktoons Network. The series follows the evil, but dim-witted Vendetta and the new happy girl, Charlotte, at school in the gloomy town of Clamburg. Vendetta hates Charlotte and tries to destroy her in each and every episode. The series is created by Amy Winfrey. She voices Charlotte and her grandmother Charlene, among other characters. Character designer Aglaia Mortcheva is the voice of Vendetta.All of the voice actors from the web cartoon reprise their roles for the TV series, with the addition of a new castmember and crewmember, Dave Wasson. The series premiered with no promotion or press release. At one point, it was the highest rated original program on Nicktoons. Despite positive reviews and good ratings, the show was abruptly cancelled after airing six episodes."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Catch_That_Kid"}, "Title": {"type": "literal", "value": "Catch That Kid!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bart_Freundlich"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Corbin_Bleu|http://dbpedia.org/resource/Jennifer_Beals|http://dbpedia.org/resource/Kristen_Stewart|http://dbpedia.org/resource/Max_Thieriot|http://dbpedia.org/resource/Sam_Robards"}, "Published": {"type": "literal", "value": "2004-02-06"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Catch That Kid is a 2004 American adventure comedy film directed by Bart Freundlich and starring Kristen Stewart, Corbin Bleu, Max Thieriot, Jennifer Beals, and Sam Robards. It is a remake of the Danish blockbuster Klatret\u00f8sen (2002). The movie's working titles were Mission Without Permission (also the film's UK title as well as part of one of the taglines), Catch That Girl, and Catch That Kid!"}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Cake_(2005_film)"}, "Title": {"type": "literal", "value": "Cake"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nisha_Ganatra"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bruce_Gray|http://dbpedia.org/resource/Cheryl_Hines|http://dbpedia.org/resource/David_Sutcliffe|http://dbpedia.org/resource/Heather_Graham|http://dbpedia.org/resource/Keram_Malicki-S\u00e1nchez|http://dbpedia.org/resource/Sandra_Oh|http://dbpedia.org/resource/Sarah_Chalke|http://dbpedia.org/resource/Taye_Diggs"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Cake is a 2005 romantic comedy film directed by Nisha Ganatra."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lions_Gate_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Brahman_Naman"}, "Title": {"type": "literal", "value": "Brahman Naman"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Qaushiq_Mukherjee"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Shashank_Arora"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Brahman Naman is a 2016 Indian comedy film directed by Qaushiq Mukherjee. It was shown in the World Cinema Dramatic Competition section at the 2016 Sundance Film Festival. It was released on Netflix worldwide on 7 July 2016."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Speech_&_Debate"}, "Title": {"type": "literal", "value": "Speech & Debate"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dan_Harris_(screenwriter)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Speech & Debate is an upcoming film in post-production filmed in Jackson in 2015."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Sycamore_Pictures"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Satan,_Hold_My_Hand"}, "Title": {"type": "literal", "value": "Satan, Hold My Hand"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Courtney_Fathom_Sell"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Janeane_Garofalo|http://dbpedia.org/resource/Reverend_Jen_Miller"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "57"}, "Description": {"type": "literal", "value": "Satan, Hold My Hand or Satan Hold My Hand is a 2013 horror-comedy feature film edited, co-produced and directed by Courtney Fathom Sell. Written by Reverend Jen Miller, the film is notable for being the only feature-length film ASS Studios had completed, known mainly for their short subjects, as well as the inclusion of Writer Jonathan Ames as an Executive Producer. The film also marks the return of actor Robert Prichard, recognized for his roles in various Troma films including The Toxic Avenger & Class of Nuke em' High. Following a loose narrative, the film concerns a group of Satanic worshippers, who, after kidnapping two Catholic schoolgirls, soon realize that Satan isn't as evil as they hoped for."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hum_Tum_Shabana"}, "Title": {"type": "literal", "value": "Hum Tum Shabana"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sagar_Ballary"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Minissha_Lamba|http://dbpedia.org/resource/Shreyas_Talpade|http://dbpedia.org/resource/Tusshar_Kapoor"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "126"}, "Description": {"type": "literal", "value": "Hum Tum Shabana is a 2011 Indian comedy and romance film. It stars Tusshar Kapoor, Shreyas Talpade, and Minissha Lamba in lead roles."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Chillerama"}, "Title": {"type": "literal", "value": "Chillerama"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Green_(filmmaker)|http://dbpedia.org/resource/Adam_Rifkin|http://dbpedia.org/resource/Joe_Lynch_(director)|http://dbpedia.org/resource/Tim_Sullivan_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "119"}, "Description": {"type": "literal", "value": "Chillerama is a 2011 horror comedy anthology film consisting of four stories (or segments) that take place at a drive-in theater playing monster movies. Each segment is a homage to a different genre and style. The first is \"Wadzilla\" and was directed and written by Adam Rifkin spoofing 1950s monster movies. The second segment is \"I Was a Teenage Werebear\" and was directed and written by Tim Sullivan which parodies Rebel Without a Cause, Grease and The Twilight Saga and is set in 1962. The third is called \"The Diary of Anne Frankenstein\" and was directed and written by Adam Green and spoofs Hitler and The Diary of Anne Frank. The last segment is \"Zom-B-Movie\", a spoof of zombie films, and was directed and written by Joe Lynch. Tying each segment of the anthology together is a framing story: a worker for the theater, in a drunken state, digs up his deceased wife's body and attempts oral sex on it, only for her to turn into a zombie and bite his genitals, causing him to slowly turn into a zombie between segments as he is working. Filming took place in late 2010 and was release at Fantasy Filmfest on August 22, 2011. On September 29, 2011 it was released to video on demand and on DVD and Blu-ray on November 29, 2011."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Image_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Zack_and_Miri_Make_a_Porno"}, "Title": {"type": "literal", "value": "Zack and Miri Make a Porno"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Smith"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:2000s_sex_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Zack and Miri Make a Porno is a 2008 American romantic sex comedy film written and directed by Kevin Smith and starring Seth Rogen and Elizabeth Banks. It is Smith's second film (after Jersey Girl) not to be set within the View Askewniverse and his first film not set in New Jersey. It was released on October 31, 2008."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/The_Weinstein_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Extraterrestrial_(2011_film)"}, "Title": {"type": "literal", "value": "Extraterrestrial"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nacho_Vigalondo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Carlos_Areces|http://dbpedia.org/resource/Juli\u00e1n_Villagr\u00e1n|http://dbpedia.org/resource/Michelle_Jenner|http://dbpedia.org/resource/Miguel_Noguera|http://dbpedia.org/resource/Ra\u00fal_Cimas"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Spanish_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Extraterrestrial (Spanish: Extraterrestre) is a 2011 Spanish science-fiction romantic comedy. Directed by Nacho Vigalondo (in his second feature), it stars Michelle Jenner, Julian Villagran and Carlos Areces. It was filmed in Cantabria, in northern Spain and premiered in Spain on March 23, 2012. The film has shown worldwide: in the International Film Festival in Toronto, the International Film Festival of San Sebastian, the Sitges Film Festival in Sitges, Spain, and the Fantastic Fest in Austin, Texas."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/V\u00e9rtigo_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Preggoland"}, "Title": {"type": "literal", "value": "Preggoland"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jacob_Tierney"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Danny_Trejo|http://dbpedia.org/resource/James_Caan|http://dbpedia.org/resource/Laura_Harris|http://dbpedia.org/resource/Paul_Campbell_(Canadian_actor)|http://dbpedia.org/resource/Sonja_Bennett"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "Preggoland is a 2014 Canadian comedy film, directed by Jacob Tierney and written by Sonja Bennett. The film stars Bennett as Ruth, a 35-year-old single woman who falsely claims to be pregnant to deflect her friends' and family's mounting disapproval of her directionless, irresponsible lifestyle. The film's cast also includes James Caan, Danny Trejo, Paul Campbell, Laura Harris, Jared Keeso, Lisa Durupt, Carrie Ruscheinsky and Denise Jones. The film premiered on September 5, 2014 in the Special Presentations section of the 2014 Toronto International Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Gravitas_Ventures|http://dbpedia.org/resource/Mongrel_Media"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Matrimonium"}, "Title": {"type": "literal", "value": "Matrimonium"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Akers"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Sandon_Berg"}, "Published": {"type": "literal", "value": "2012-10-23"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Matrominium is a 2005 comedy film directed by Michael Akers, his second feature film after the successful Gone, But Not Forgotten. Co-written and co-produced by him and Sandon Berg, the latter appears in a lead role in the film as Spencer who is having a sham same-sex marriage with the straight character Rick Federman in the role of Malcolm to enable the latter to win the 1-million dollar prize on the nationally broadcast reality television show Matrimonium. The film was featured in Blood Moon's Guide to Gay & Lesbian Film, by Darwin Porter and Danforth Prince and published by Blood Moon Productions in 2006. In that book, Matrimonium is called a \"hilarious spoof on reality television.\""}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/United_Gay_Network"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Footy_Legends"}, "Title": {"type": "literal", "value": "Footy Legends"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Khoa_Do"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Angus_Sampson|http://dbpedia.org/resource/Anh_Do|http://dbpedia.org/resource/Claudia_Karvan|http://dbpedia.org/resource/Emma_Lung"}, "Published": {"type": "literal", "value": "2006-08-03"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Australian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Footy Legends is a 2006 Australian film, directed and co-written by Khoa Do, produced by Megan McMurchy, starring Khoa's older brother Anh Do, Angus Sampson, Emma Lung and Claudia Karvan. It was filmed in and around Sydney, Australia, mostly in the western suburbs. Footy Legends was released in Australia on 3 August 2006."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Khiladi_786"}, "Title": {"type": "literal", "value": "Khiladi 786"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ashish_R_Mohan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Akshay_Kumar|http://dbpedia.org/resource/Asin|http://dbpedia.org/resource/Himesh_Reshammiya|http://dbpedia.org/resource/Mithun_Chakraborty|http://dbpedia.org/resource/Raj_Babbar"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_action_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "141"}, "Description": {"type": "literal", "value": "Khiladi 786 is a 2012 Indian Hindi Punjabi action comedy film directed by Ashish R Mohan, featuring Akshay Kumar in the title role alongside Asin playing the female lead. It features Himesh Reshammiya, Mithun Chakraborty, Raj Babbar and Mukesh Rishi in supporting roles. The film marks the return of Akshay Kumar to his Khiladi series after 12 years. It is mostly shot in Mumbai and Punjab."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Eros_International"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Let_America_Laugh"}, "Title": {"type": "literal", "value": "Let America Laugh"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lance_Bangs"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/David_Cross"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Documentary_films_about_comedy_and_comedians"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Let America Laugh is a 2003 documentary film produced and directed by Lance Bangs of stand-up comedian David Cross's tour of small alternative rock clubs. While it does feature small portions of David's stand-up routines, it consists mostly of interactions between David and the people accompanying him on tour. Each segment on the DVD has a title taken from a Bible tract by Jack T. Chick (Is There Another Christ?, Gomez Is Coming, This Was Your Life). In October 2005, Cross was sued by Nashville club owner Thomas Weber, accusing Cross of taping him without permission for Let America Laugh, in violation of Weber's privacy rights. In April 2006 the case against David Cross himself was dismissed, leaving Thomas Weber to face Warner Music, Sub-Pop, WEA Corporation, and the Alternative Distribution Alliance. In June, the four companies together offered Weber an 'offer of judgement' of $30,000. Weber then attempted to force each of the four companies to pay $30,000 and in the end received nothing. The case was dismissed on July 25, 2006."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sub_Pop"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Relaks,_It's_Just_Pag-Ibig"}, "Title": {"type": "literal", "value": "Relaks, It's Just Pag-Ibig"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Antoinette_Jadaone"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Julian_Estrada|http://dbpedia.org/resource/Sofia_Andres"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Philippine_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Relaks, It's Just Pag-Ibig (English: Relax, It's Just Love) is a 2014 Filipino romantic comedy film starring I\u00f1igo Pascual, Julian Estrada, and Sofia Andres. It was directed by Antoinette Jadaone who was also behind the movies Beauty in a Bottle and That Thing Called Tadhana. The movie was also the debut film of the newbie artists Pascual, Estrada and Andres. The movie was given five perfect stars by the movie critics from the local movie reviewer website ClickTheCity.com, and Rated PG from MTRCB. Aside from this, it also received an average rating of 8.2/10 from IMDB. The movie was also given Graded A by the Cinema Evaluation Board. It also received positive responses from movie watchers and became a trending topic on the social networking site Twitter during its first day of showing."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Star_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Book_of_Love_(2016_film)"}, "Title": {"type": "literal", "value": "Book of Love"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Xue_Xiaolu"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Tang_Wei|http://dbpedia.org/resource/Wu_Xiubo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Chinese_romantic_comedy_films|http://dbpedia.org/resource/Category:Hong_Kong_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "129"}, "Description": {"type": "literal", "value": "Book of Love (Chinese: \u5317\u4eac\u9047\u4e0a\u897f\u96c5\u56fe\u4e4b\u4e0d\u4e8c\u60c5\u4e66), also titled Finding Mr. Right 2 in English, is a 2016 Chinese-Hong Kong romance film directed and written by Xue Xiaolu and starring Tang Wei and Wu Xiubo. It was released in China by EDKO (Beijing) Distribution on April 29, 2016. Book of Love is director-writer Xue Xiaolu's follow-up to the 2013 hit Finding Mr. Right, and it reunites her with lead actors Tang Wei and Wu Xiubo from the first movie, although the two films' plots are not related. Notably, the two leads have separate storylines throughout the movie, only communicating with each other through handwritten letters until their first meeting towards the end of the film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/EDKO_(Beijing)_Distribution"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tammy_(film)"}, "Title": {"type": "literal", "value": "Tammy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Falcone"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Allison_Janney|http://dbpedia.org/resource/Dan_Aykroyd|http://dbpedia.org/resource/Gary_Cole|http://dbpedia.org/resource/Kathy_Bates|http://dbpedia.org/resource/Mark_Duplass|http://dbpedia.org/resource/Susan_Sarandon"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "Tammy is a 2014 American comedy film directed and co-written by Ben Falcone and produced, co-written by, and starring Melissa McCarthy as the title character. The film also stars Susan Sarandon, Allison Janney, Gary Cole, Mark Duplass, Dan Aykroyd, and Kathy Bates and was released on July 2, 2014. The film received negative reviews from critics, but was a box office success, grossing over $100 million from a $20 million budget."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Falcone|http://dbpedia.org/resource/Gary_Sanchez_Productions|http://dbpedia.org/resource/New_Line_Cinema"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kick-Ass_2_(film)"}, "Title": {"type": "literal", "value": "Kick-Ass 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jeff_Wadlow"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:British_black_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films|http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "Kick-Ass 2 is a 2013 British-American superhero comedy film based on the comic book of the same name and Hit-Girl, both by Mark Millar and John Romita, Jr., and is the sequel to the 2010 film Kick-Ass, as well as the second installment of the Kick-Ass film series. The film was written and directed by Jeff Wadlow and co-produced by Matthew Vaughn, who directed the first film. Aaron Taylor-Johnson, Christopher Mintz-Plasse and Chlo\u00eb Grace Moretz reprise their roles from the first film as Dave Lizewski, Chris D'Amico, and Mindy Macready respectively. Other returning actors include Clark Duke as Marty Eisenberg, Yancy Butler as Angie D'Amico, Garrett M. Brown as Mr. Lizewski, Lyndsy Fonseca as Katie Deauxma, and Sophie Wu as Erika Cho. The film was released on 14 August 2013 in the United Kingdom and Ireland and on 16 August in the United States and Canada. Matthew Vaughn's production company Marv Films produced the film alongside Plan B Entertainment, Dentsu and Universal Pictures. The film earned $60.7 million on a $28 million budget."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Wrong_No."}, "Title": {"type": "literal", "value": "Wrong No."}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Yasir_Nawaz"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Danish_Taimoor|http://dbpedia.org/resource/Janita_Asma|http://dbpedia.org/resource/Sohai_Ali_Abro"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Pakistani_action_comedy_films|http://dbpedia.org/resource/Category:Pakistani_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Wrong No. (also written as Wrong Number) is a 2015 Pakistani romantic comedy film directed by Yasir Nawaz and co-produced by Yasir Nawaz, Nida Yasir and Hassan Zia under the production banner YNH Films. The film features Javed Sheikh, Danish Taimoor, Nadeem Jaffri, Danish Nawaz, Shafqat Cheema, Sohai Ali Abro and Janita Asma in lead roles. Wrong No. is the directorial debut of Yasir Nawaz. The film was released by ARY Films in cinemas nationwide on July 18, 2015 (Eid al-Fitr). In its opening weekend, it took in \u20a82.51 crore (US$250,000) at the local box office."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/ARY_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mo'_Money"}, "Title": {"type": "literal", "value": "Mo' Money"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Peter_MacDonald_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Damon_Wayans|http://dbpedia.org/resource/Joe_Santos|http://dbpedia.org/resource/John_Diehl_(actor)|http://dbpedia.org/resource/Marlon_Wayans|http://dbpedia.org/resource/Stacey_Dash"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_criminal_comedy_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Mo' Money is a 1992 American crime comedy film directed by Peter Macdonald, and written by Damon Wayans, who also starred in the film. The film co-stars Stacey Dash, Joe Santos, John Diehl, Harry Lennix, Bernie Mac (in his film debut), and Marlon Wayans. The film was released in the United States on July 24, 1992."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_People_I've_Slept_With"}, "Title": {"type": "literal", "value": "The People I've Slept With"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Quentin_Lee"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Archie_Kao|http://dbpedia.org/resource/Cathy_Shim|http://dbpedia.org/resource/Chris_Zylka|http://dbpedia.org/resource/James_Shigeta|http://dbpedia.org/resource/Karin_Anna_Cheung|http://dbpedia.org/resource/Lynn_Chen|http://dbpedia.org/resource/Randall_Park|http://dbpedia.org/resource/Wilson_Cruz"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "The People I've Slept With is a 2009 American sex comedy film directed by Quentin Lee."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/My_Super_Psycho_Sweet_16:_Part_3"}, "Title": {"type": "literal", "value": "My Super Psycho Sweet 16: Part 3"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jacob_Gentry"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jillian_Rose_Reed|http://dbpedia.org/resource/Kirsten_Prout|http://dbpedia.org/resource/Lauren_McKnight|http://dbpedia.org/resource/Ryan_Sypek"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "My Super Psycho Sweet 16: Part 3 is a 2012 American teen horror slasher film, the film is the third and final installment of My Super Psycho Sweet 16 trilogy. The film premiered on March 13, 2012 on MTV. Skye Rotter, who's ready to break free of \"Psycho Skye\", heads to college for a new life with her new best friend, but she must attend for one last party before she can escape her dark past."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Plastic_(film)"}, "Title": {"type": "literal", "value": "Plastic"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Julian_Gilbey"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alfie_Allen|http://dbpedia.org/resource/Ed_Speleers|http://dbpedia.org/resource/Emma_Rigby|http://dbpedia.org/resource/Graham_McTavish|http://dbpedia.org/resource/Mem_Ferda|http://dbpedia.org/resource/Sebastian_de_Souza|http://dbpedia.org/resource/Thomas_Kretschmann|http://dbpedia.org/resource/Will_Poulter"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Action_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Plastic is a British-American action comedy-crime film directed by Julian Gilbey and co-written by Will Gilbey and Chris Howard. The film stars Ed Speleers, Will Poulter, Alfie Allen, Sebastian de Souza and Emma Rigby."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Cinema_Management_Group|http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Repo!_The_Genetic_Opera"}, "Title": {"type": "literal", "value": "Repo! The Genetic Opera"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Darren_Lynn_Bousman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alexa_Vega|http://dbpedia.org/resource/Anthony_Head|http://dbpedia.org/resource/Bill_Moseley|http://dbpedia.org/resource/Nivek_Ogre|http://dbpedia.org/resource/Paris_Hilton|http://dbpedia.org/resource/Paul_Sorvino|http://dbpedia.org/resource/Sarah_Brightman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:2000s_musical_comedy_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films|http://dbpedia.org/resource/Category:American_musical_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Repo! The Genetic Opera is a 2008 American splatterpunk, rock opera, musical, comedy horror film directed by Darren Lynn Bousman. Based on the , which was written and composed by Darren Smith and Terrance Zdunich, the film stars Alexa Vega, Paul Sorvino, Anthony Stewart Head, Sarah Brightman, Paris Hilton, Bill Moseley, Nivek Ogre, and Terrance Zdunich. Repo! opened in a very limited release on November 7, 2008, on seven screens in Pasadena, Chicago, Mobile, Charlotte, Kansas City, Toronto and Ottawa. The film received mixed to negative reviews and was a box office bomb, but gained a cult following similar to The Rocky Horror Picture Show, managing even to fill theaters with costumed fans performing shadowcast versions, which Zdunich himself often visits to meet fans around the country."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lions_Gate_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Aziz_Ansari:_Live_at_Madison_Square_Garden"}, "Title": {"type": "literal", "value": "Aziz Ansari:|Live at Madison Square Garden"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Aziz_Ansari"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aziz_Ansari"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Stand-up_comedy_concert_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "58"}, "Description": {"type": "literal", "value": "Aziz Ansari: Live at Madison Square Garden is a 2015 American stand-up comedy film written by and starring Aziz Ansari, who also served as director. It was shot at Madison Square Garden in New York City in October 2014."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mivtza_Savta"}, "Title": {"type": "literal", "value": "Operation Grandma"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dror_Shaul"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ami_Smolartchik|http://dbpedia.org/resource/Rami_Heuberger|http://dbpedia.org/resource/Tzach_Spitzen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "51"}, "Description": {"type": "literal", "value": "Operation Grandma (Hebrew: \u05de\u05d1\u05e6\u05e2 \u05e1\u05d1\u05ea\u05d0, Mivtza Savta) is a short 1999 Israeli satirical comedy about the military and kibbutz life directed by Dror Shaul. It was filmed on Kibbutz Yakum and based on Kibbutz Kissufim where Shaul was born and raised."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Addicted_to_Fresno"}, "Title": {"type": "literal", "value": "Addicted to Fresno"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jamie_Babbit"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aubrey_Plaza|http://dbpedia.org/resource/Fred_Armisen|http://dbpedia.org/resource/Judy_Greer|http://dbpedia.org/resource/Molly_Shannon|http://dbpedia.org/resource/Natasha_Lyonne|http://dbpedia.org/resource/Ron_Livingston"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Addicted to Fresno (original title Fresno) is a 2015 dark comedy that was directed by Jamie Babbit and written by Karey Dornetto. The film had its world premiere March 14, 2015 at South by Southwest and stars Natasha Lyonne and Judy Greer as two sisters that find themselves in trouble after Greer accidentally kills someone. The film was released in the United States on September 1, 2015 through video on demand, and was released in a limited release on October 2, 2015, by Gravitas Ventures."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Gravitas_Ventures"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Gamechanger_Films"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Clerks"}, "Title": {"type": "literal", "value": "Clerks"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Smith"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Brian_O'Halloran|http://dbpedia.org/resource/Jason_Mewes|http://dbpedia.org/resource/Jeff_Anderson|http://dbpedia.org/resource/Lisa_Spoonhauer|http://dbpedia.org/resource/Marilyn_Ghigliotti"}, "Published": {"type": "literal", "value": "1994-10-19"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104|92"}, "Description": {"type": "literal", "value": "Clerks is a 1994 American black and white comedy film written and directed by Kevin Smith. Starring Brian O'Halloran as Dante Hicks and Jeff Anderson as Randal Graves, it presents a day in the lives of two store clerks and their acquaintances. Shot entirely in black and white, Clerks is the first of Smith's View Askewniverse films, and introduces several recurring characters, notably Jay and Silent Bob, the latter played by Smith himself. The structure of the movie contains nine scene breaks, signifying the nine rings of hell as in Dante Alighieri's Divine Comedy, from which the main character, Dante, gets his name. Clerks was shot for $27,575 in the convenience and video stores where director Kevin Smith worked in real life. Upon its theatrical release, the film grossed over $3 million in theaters, launching Smith's career."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Miramax_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hop_(film)"}, "Title": {"type": "literal", "value": "Hop"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tim_Hill_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Elizabeth_Perkins|http://dbpedia.org/resource/Gary_Cole|http://dbpedia.org/resource/Hank_Azaria|http://dbpedia.org/resource/Hugh_Laurie|http://dbpedia.org/resource/James_Marsden|http://dbpedia.org/resource/Kaley_Cuoco|http://dbpedia.org/resource/Russell_Brand"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Hop is a 2011 American 3D live-action/computer-animated buddy comedy film from Universal Pictures and Illumination Entertainment, directed by Tim Hill and produced by Chris Meledandri and Michele Imperato Stabile. The film was released on April 1, 2011, in the United States and the United Kingdom. Hop stars the voice of Russell Brand as E.B., a rabbit who does not want to succeed his father, Mr. Bunny (Hugh Laurie), in the role of the Easter Bunny; James Marsden as Fred O'Hare, a human who is out of work and wishes to become the next Easter Bunny himself; and the voice of Hank Azaria as Carlos, a evil chick who plots to take over the Easter organization. It was released on DVD and Blu-ray Disc on March 23, 2012, in Region 1."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Winnie_the_Pooh_(2011_film)"}, "Title": {"type": "literal", "value": "Winnie the Pooh"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Don_Hall_(filmmaker)|http://dbpedia.org/resource/Stephen_J._Anderson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bud_Luckey|http://dbpedia.org/resource/Craig_Ferguson|http://dbpedia.org/resource/Huell_Howser|http://dbpedia.org/resource/Jim_Cummings|http://dbpedia.org/resource/Kristen_Anderson-Lopez|http://dbpedia.org/resource/Tom_Kenny|http://dbpedia.org/resource/Travis_Oates"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:2010s_musical_comedy_films|http://dbpedia.org/resource/Category:Adventure_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_fantasy-comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "63"}, "Description": {"type": "literal", "value": "Winnie the Pooh is a 2011 American animated musical comedy film produced by Walt Disney Animation Studios and released by Walt Disney Pictures. It is the 51st Disney animated feature film. Inspired by A. A. Milne's stories of the same name, the film is part of Disney's Winnie the Pooh franchise, the fifth theatrical Winnie the Pooh film released, and Walt Disney Animation Studios' second adaptation of Winnie-the-Pooh stories. Jim Cummings reprises his vocal roles as Winnie the Pooh and Tigger, while series newcomers Travis Oates, Tom Kenny, Craig Ferguson, Bud Luckey, and Kristen Anderson-Lopez provide the voices of Piglet, Rabbit, Owl, Eeyore, and Kanga, respectively. In the film, the aforementioned residents of the Hundred Acre Wood embark on a quest to save Christopher Robin from an imaginary culprit while Pooh deals with a hunger for honey. The film is directed by Stephen Anderson and Don Hall, written by A. A. Milne and Burny Mattinson, produced by Peter Del Vecho, Clark Spencer, John Lasseter, and Craig Sost, and narrated by John Cleese. The film was released on April 15, 2011 in the United Kingdom, and on July 15, 2011 in the United States. Production for the film began in September 2009 with John Lasseter announcing that they wanted to create a film that would \"transcend generations.\" The film also features six songs by Kristen Anderson-Lopez and Robert Lopez, as well as a rendition of the Sherman Brothers' \"Winnie the Pooh\" theme song by actress and musician Zooey Deschanel. The film is dedicated to Dan Read, who had worked on Disney films including The Emperor's New Groove and Chicken Little, and died on May 25, 2010. That was also Huell Howser's (who voices the Backson in the epilogue) first and only film role."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Animation_Studios|http://dbpedia.org/resource/Walt_Disney_Pictures"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mater_and_the_Ghostlight"}, "Title": {"type": "literal", "value": "Mater and the Ghostlight"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dan_Scanlon|http://dbpedia.org/resource/John_Lasseter"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bonnie_Hunt|http://dbpedia.org/resource/Cheech_Marin|http://dbpedia.org/resource/Larry_the_Cable_Guy|http://dbpedia.org/resource/Michael_Wallis|http://dbpedia.org/resource/Owen_Wilson|http://dbpedia.org/resource/Paul_Newman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "7"}, "Description": {"type": "literal", "value": "Mater and the Ghostlight is a 2006 Pixar computer-animated short created for the DVD of Cars, which was released in the United States and Canada on November 7, 2006. The short, set in the Cars world, tells a story of Mater being haunted by a mysterious blue light."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Home_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dark_Rising"}, "Title": {"type": "literal", "value": "Dark Rising"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Cymek"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Canadian_comedy_television_series|http://dbpedia.org/resource/Category:Comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Dark Rising is a science fiction comedy franchise created by Andrew Cymek and adapted for film and television by Mihkel Harilaid. The original film, Dark Rising: Bring Your Battle Axe, was released in 2007 and featured the introduction of Summer Vale. The story was brought to television as Dark Rising: The Savage Tales of Summer Vale (2011) but shortly returned to feature film with Dark Rising: Summer Strikes Back (2011). Mihkel Harilaid of Black Walk Films leads the series' production as Executive Producer and each component has been directed by Andrew Cymek of Defiant Empire Films. The franchise is once again in production of a one-hour drama series, Dark Rising: Warrior of Worlds, set for release in 2013 in co-operation with Mar Vista Entertainment. The series was picked up by Super Channel 1 in Canada and started on July 20."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Scenesters"}, "Title": {"type": "literal", "value": "The Scenesters"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Todd_Berger"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jeff_Grace|http://dbpedia.org/resource/Sherilyn_Fenn|http://dbpedia.org/resource/Suzanne_May|http://dbpedia.org/resource/Todd_Berger"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "The Scenesters is a 2009 art-house black comedy film written and directed by Todd Berger. The film was made by Los Angeles-based comedy group The Vacationeers and stars Blaise Miller, Suzanne May, Jeff Grace, Kevin M. Brennan, Todd Berger and Sherilyn Fenn. The film was shot in July 2008 in Los Angeles, California, USA, and premiered on October 23, 2009, at the 16th Annual Austin Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Nora's_Hair_Salon"}, "Title": {"type": "literal", "value": "Nora's Hair Salon"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jerry_Lamothe"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jenifer_Lewis|http://dbpedia.org/resource/Tamala_Jones|http://dbpedia.org/resource/Tatyana_Ali"}, "Published": {"type": "literal", "value": "2004-05-25"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "Nora's Hair Salon is a 2004 independent comedy-drama film, written by Chanel Capra and Jean-Claude La Marre, and directed by Jerry LaMothe. This film stars Jenifer Lewis, Tamala Jones, and Tatyana Ali."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/DEJ_Productions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kingsman:_The_Golden_Circle"}, "Title": {"type": "literal", "value": "Kingsman: The Golden Circle"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Matthew_Vaughn"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Channing_Tatum|http://dbpedia.org/resource/Halle_Berry|http://dbpedia.org/resource/Jeff_Bridges|http://dbpedia.org/resource/Julianne_Moore|http://dbpedia.org/resource/Mark_Strong|http://dbpedia.org/resource/Pedro_Pascal|http://dbpedia.org/resource/Taron_Egerton"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films|http://dbpedia.org/resource/Category:Spy_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Kingsman: The Golden Circle is an upcoming 2017 British-American spy action comedy film directed by Matthew Vaughn, and is the sequel to 2014 film Kingsman: The Secret Service. The film stars Taron Egerton, Julianne Moore, Halle Berry, Mark Strong, Pedro Pascal, Channing Tatum and Jeff Bridges, and is scheduled to be released on 16 June 2017."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Rigor_Mortis_(film)"}, "Title": {"type": "literal", "value": "Rigor Mortis"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Juno_Mak"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anthony_Chan_(actor)|http://dbpedia.org/resource/Chin_Siu-ho|http://dbpedia.org/resource/Kara_Hui|http://dbpedia.org/resource/Lo_Hoi-pang|http://dbpedia.org/resource/Paw_Hee-ching"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:Hong_Kong_comedy_films|http://dbpedia.org/resource/Category:Martial_arts_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Rigor Mortis  is a 2013 Hong Kong horror film directed by Juno Mak, and also produced by Takashi Shimizu. The film is a tribute to the Mr. Vampire film series. Many of the former cast are featured in this film: Chin Siu-ho, Anthony Chan, Billy Lau and Richard Ng. Additionally, Chung Fat, who starred in Encounters of the Spooky Kind, is also featured."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Paper_Towns_(film)"}, "Title": {"type": "literal", "value": "Paper Towns"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jake_Schreier"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Austin_Abrams|http://dbpedia.org/resource/Cara_Delevingne|http://dbpedia.org/resource/Halston_Sage|http://dbpedia.org/resource/Justice_Smith|http://dbpedia.org/resource/Nat_Wolff"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "Paper Towns is a 2015 American mystery, comedy-drama film, directed by Jake Schreier, based on the 2008 novel of the same name by John Green. The film was adapted for the screen by Scott Neustadter and Michael H. Weber, the same team that wrote the first film adaption of one of Green's novels, The Fault in Our Stars. The film stars Nat Wolff and Cara Delevingne and was released on July 24, 2015, in the United States by 20th Century Fox. The film follows the coming of age and search by the protagonist, Quentin \"Q\" Jacobsen (Wolff), for Margo Roth Spiegelman (Delevingne), his childhood friend and object of affection. In the process, Quentin explores the relationship with his friends including his compatibility with Margo. It grossed over $85 million worldwide after the theatrical release, against a $12 million budget. It was released on Blu-ray and DVD on October 20, 2015, and grossed over $7 million in total domestic video sales. The film received mixed reviews."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Crazy_Stone_(film)"}, "Title": {"type": "literal", "value": "Crazy Stone"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ning_Hao"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Guo_Tao_(actor)|http://dbpedia.org/resource/Huang_Bo|http://dbpedia.org/resource/Liu_Gang_(actor)|http://dbpedia.org/resource/Liu_Hua_(actor)|http://dbpedia.org/resource/Teddy_Lin|http://dbpedia.org/resource/Xu_Zheng_(actor)"}, "Published": {"type": "literal", "value": "2006-06-30"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Crazy Stone (simplified Chinese: \u75af\u72c2\u7684\u77f3\u5934; traditional Chinese: \u760b\u72c2\u7684\u77f3\u982d; pinyin: F\u0113ngk\u00faang de sh\u00edtou) is a 2006 mainland Chinese black comedy film directed by Ning Hao and produced by Andy Lau. It was immensely popular, earning 6 million RMB in its first week and more than 23 million RMB (US$3 million) in total box office in Mainland China, despite its low budget (3 million HKD/US$400,000) and cast of unknowns. The movie was shot digitally on HD cameras and produced as part of Andy Lau's \"FOCUS: First Cuts\" series."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Totally_Awesome"}, "Title": {"type": "literal", "value": "Totally Awesome"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Neal_Brennan"}, "Author": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Schur|http://dbpedia.org/resource/Neal_Brennan"}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Kattan|http://dbpedia.org/resource/Dominique_Swain|http://dbpedia.org/resource/James_Hong|http://dbpedia.org/resource/Mikey_Day"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "Totally Awesome is a television film produced by VH1. Totally Awesome directly parodies a number of 1980s movies, including Dirty Dancing, Soul Man, Footloose, Some Kind of Wonderful, Sixteen Candles, Teen Wolf, Better Off Dead, Lucas, Pretty in Pink, and The Karate Kid. The film premiered on November 4, 2006, on VH1, and was broadcast to promote the film's DVD release on November 7."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_French_Kissers"}, "Title": {"type": "literal", "value": "The French Kissers"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Riad_Sattouf"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/No\u00e9mie_Lvovsky|http://dbpedia.org/resource/Vincent_Lacoste"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "The French Kissers is a 2009 French teen film. Its original French title is Les Beaux Gosses, which means \"the handsome boys\". It was written and directed by Riad Sattouf, marking his film debut. The film follows Herv\u00e9 (Vincent Lacoste), an average teenage boy who has little luck with finding a girlfriend until the beautiful Aurore (Alice Tr\u00e9moli\u00e8res) takes a liking to him. Sattouf, a graphic novel writer, was invited to write a script based on an idea from producer Anne-Dominique Toussaint, and he completed the screenplay with Marc Syrigas. Sattouf cast non-professional actors as the film's teenage characters, but he chose to use experienced actors such as No\u00e9mie Lvovsky, Ir\u00e8ne Jacob, Emmanuelle Devos and Valeria Golino as the adult characters. Filming took place over eight weeks in Gagny and Rennes. The film was released in France on 10 June 2009, and a soundtrack composed by Flairs was released on 8 June 2009. The film was well received by critics, who particularly praised the humour, the acting and the cinematography. It won the 2010 C\u00e9sar Award for Best First Feature Film and Lacoste also received a nomination for the C\u00e9sar Award for Most Promising Actor. It also won the Prix Jacques Pr\u00e9vert du Sc\u00e9nario for Best Adaptation in 2010."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Path\u00e9"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Men_in_the_City"}, "Title": {"type": "literal", "value": "Men in the City"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Simon_Verhoeven"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Christian_Ulmen|http://dbpedia.org/resource/Nadja_Uhl|http://dbpedia.org/resource/Wotan_Wilke_M\u00f6hring"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:German_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Men in the City (German: ''M\u00e4nnerherzen''; \"Men's Hearts\") is a 2009 German comedy film directed by Simon Verhoeven with Christian Ulmen, Nadja Uhl and Wotan Wilke M\u00f6hring. The film was followed by ''M\u00e4nnerherzen\u2026 und die ganz ganz gro\u00dfe Liebe in 2011."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Prankstar"}, "Title": {"type": "literal", "value": "Prankstar"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tom_Green"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Christa_Campbell|http://dbpedia.org/resource/Rob_Powell|http://dbpedia.org/resource/Ryan_Scott_(actor)|http://dbpedia.org/resource/Tom_Green"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Prankstar is an unreleased mockumentary independent film written by, directed by, and starring Tom Green."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hot_Rod_(film)"}, "Title": {"type": "literal", "value": "Hot Rod"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Akiva_Schaffer"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Samberg|http://dbpedia.org/resource/Bill_Hader|http://dbpedia.org/resource/Danny_McBride|http://dbpedia.org/resource/Ian_McShane|http://dbpedia.org/resource/Isla_Fisher|http://dbpedia.org/resource/Jorma_Taccone"}, "Published": {"type": "literal", "value": "2007-08-03"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Sports_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Hot Rod is a 2007 American comedy film co-written, directed by, and starring members of The Lonely Island (Andy Samberg, Jorma Taccone and Akiva Schaffer). The film stars Samberg as an amateur stuntman whose abusive step-father, Frank (Ian McShane) continuously mocks and disrespects him. When Frank grows ill, Rod raises money for his heart operation by executing his largest stunt yet. In addition to raising money for the operation, he also does so to win Frank's respect, by kicking his butt. The film also stars Taccone, Sissy Spacek, Will Arnett, Danny McBride, Isla Fisher and Bill Hader. It was directed by Schaffer (in his directorial debut) and distributed by Paramount Pictures. The film was originally drafted by Pam Brady (who retains full writing credit) as a vehicle for Saturday Night Live star Will Ferrell, but the project never commenced. Lorne Michaels convinced Paramount to let The Lonely Island, who were growing famous for their work on SNL, take over the film. The group subsequently re-wrote the film with a heavy emphasis on offbeat surreal humor. The film was shot in Vancouver over the summer of 2006. The film's soundtrack was composed by ex-Yes guitarist, Trevor Rabin, and the film features several songs by the Swedish rock band Europe. Hot Rod opened on August 3, 2007 and was a box office failure, grossing only $14 million of its $25 million budget. As the film's producers predicted, it received mixed reviews, criticizing the film's script and humor."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Superl\u00f3pez_(film)"}, "Title": {"type": "literal", "value": "Superl\u00f3pez contra el robot de bolsillo"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Enrique_Gato"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Spanish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "3"}, "Description": {"type": "literal", "value": "Superl\u00f3pez contra el robot de bolsillo (translated as Superl\u00f3pez Against the Pocket Robot) is a 2003 Spanish CGI animation short film directed by Enrique Gato and based on JAN's comics Superl\u00f3pez. Gato, fan of this comic series, wont to make a homage at JAN work with a 3 minutes animation film, although he tried to make a long duration film, but wasn't possible. The plot is about a battle on the street between the main character against a giant robot."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/How_to_Train_Your_Dragon_2"}, "Title": {"type": "literal", "value": "How to Train Your Dragon 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dean_DeBlois"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_adventure_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_fantasy-comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "How to Train Your Dragon 2 is a 2014 American 3D computer-animated fantasy action film produced by DreamWorks Animation and distributed by 20th Century Fox, loosely based on the British book series of the same name by Cressida Cowell. It is the sequel to the 2010 computer-animated film How to Train Your Dragon and the second in the trilogy. The film is written and directed by Dean DeBlois, and stars the voices of Jay Baruchel, Gerard Butler, Craig Ferguson, America Ferrera, Jonah Hill, Christopher Mintz-Plasse, T.J. Miller, and Kristen Wiig, with the addition of Cate Blanchett, Djimon Hounsou, and Kit Harington. The film takes place five years after the first film, featuring Hiccup and his friends as young adults as they meet Valka, Hiccup's long-lost mother, and Drago Bludvist, a madman who wants to conquer the world. DeBlois, who co-directed the first film, agreed to return to direct the second film on the condition that he would be allowed to turn it into a trilogy. He cited The Empire Strikes Back and My Neighbor Totoro as his main inspirations, with the expanded scope of the The Empire Strikes Back being particularly influential. The entire voice cast from the first film returned, and Cate Blanchett and Djimon Hounsou signed on to voice Valka and Drago, respectively. DeBlois and his creative team visited Norway and Svalbard to give them ideas for the setting. Composer John Powell returned to score the film. How to Train Your Dragon 2 benefited from advances in animation technology and was DreamWorks' first film to use scalable multicore processing and the studio's new animation and lighting software. The film was released on June 13, 2014, and like its predecessor, received wide acclaim. Critics praised the film for its animation, voice acting, action scenes, musical score, emotional depth, and darker, more serious tone compared to its predecessor. It received the Golden Globe Award for Best Animated Feature Film and was nominated for an Academy Award for Best Animated Feature. The film won six Annie Awards, including Best Animated Feature and Best Director. The film grossed over $621 million worldwide, making it the 12th-highest grossing film of 2014. It earned less than its predecessor at the US box office, but performed better internationally. A third installment in the trilogy, How to Train Your Dragon 3, is scheduled to be released on May 18, 2018."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Puff,_Puff,_Pass"}, "Title": {"type": "literal", "value": "Puff, Puff, Pass"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mekhi_Phifer"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Danny_Masterson|http://dbpedia.org/resource/John_C._McGinley|http://dbpedia.org/resource/Jonathan_Banks|http://dbpedia.org/resource/LaVan_Davis|http://dbpedia.org/resource/Mekhi_Phifer|http://dbpedia.org/resource/Ronnie_Warner|http://dbpedia.org/resource/Terry_Crews"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Puff, Puff, Pass is a 2006 comedic crime film, also known as Living High, directed by Mekhi Phifer."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Rainforest_Films|http://dbpedia.org/resource/Sony_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sunday_(2008_film)"}, "Title": {"type": "literal", "value": "Sunday"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rohit_Shetty"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ajay_Devgan|http://dbpedia.org/resource/Arshad_Warsi|http://dbpedia.org/resource/Ayesha_Takia|http://dbpedia.org/resource/Irrfan_Khan"}, "Published": {"type": "literal", "value": "2008-01-25"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Comedy_thriller_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "130"}, "Description": {"type": "literal", "value": "Sunday is a 2008 Bollywood mystery comedy film directed by Rohit Shetty. The film stars Ajay Devgn, Ayesha Takia, Arshad Warsi and Irfan Khan in lead roles. It is a remake of the 2005 Telugu film Anukokunda Oka Roju. Sunday released on 25 January 2008, and received mixed response from critics. It also managed to do average business at the box office worldwide."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Eros_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Coldblooded_(film)"}, "Title": {"type": "literal", "value": "Coldblooded"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Wallace_Wolodarsky"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Janeane_Garofalo|http://dbpedia.org/resource/Jason_Priestley|http://dbpedia.org/resource/Kimberly_Williams-Paisley|http://dbpedia.org/resource/Peter_Riegert|http://dbpedia.org/resource/Robert_Loggia"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_thriller_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Coldblooded is a 1995 black comedy/thriller film about hitmen directed by Wallace Wolodarsky and starring Jason Priestley, Peter Riegert, Robert Loggia, Kimberly Williams and Janeane Garofalo."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IRS_Media"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Appropriate_Behavior"}, "Title": {"type": "literal", "value": "Appropriate Behavior"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Desiree_Akhavan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Desiree_Akhavan|http://dbpedia.org/resource/Halley_Feiffer|http://dbpedia.org/resource/Scott_Adsit"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:British_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Appropriate Behavior is an American comedy film, which premiered on January 18, 2014 at the 2014 Sundance Film Festival. Written and directed by Desiree Akhavan, the film stars Akhavan as Shirin, a bisexual Persian American woman in Brooklyn struggling to rebuild her life after breaking up with her girlfriend Maxine (Rebecca Henderson). The film's cast also includes Scott Adsit, Halley Feiffer, Anh Duong, Hooman Majd, Arian Moayed and Aimee Mullins. The film had a theatrical release on January 16, 2015 in the US and was released on March 6, 2015 in the UK."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Gravitas_Ventures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/I'm_Not_Single"}, "Title": {"type": "literal", "value": "I'm Not Single"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pierre_Andre"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Awal_Ashaari|http://dbpedia.org/resource/Farid_Kamil|http://dbpedia.org/resource/Lisa_Surihani"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "I'm Not Single (translates as Aku Bukan Bujang in Malay) is a sophomore romantic comedy film directed by Pierre Andre. It was released on 24 July 2008. A series of road tour has been launched to promote the film."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Joy_of_Fatherhood"}, "Title": {"type": "literal", "value": "Joy of Fatherhood"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Matthias_Schweigh\u00f6fer"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Isabell_Polak|http://dbpedia.org/resource/Matthias_Schweigh\u00f6fer"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:German_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "Joy of Fatherhood (German: Vaterfreuden) is a 2014 German comedy film directed by Matthias Schweigh\u00f6fer."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/What_a_Beautiful_Surprise"}, "Title": {"type": "literal", "value": "What a Beautiful Surprise"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alessandro_Genovesi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Claudio_Bisio"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Italian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "What a Beautiful Surprise (Italian: Ma che bella sorpresa) is a 2015 Italian comedy film written and directed by Alessandro Genovesi and starring Claudio Bisio. It grossed $5,626,528 at the Italian box office."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Crane_World"}, "Title": {"type": "literal", "value": "Crane World"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pablo_Trapero"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adriana_Aizemberg|http://dbpedia.org/resource/Daniel_Valenzuela|http://dbpedia.org/resource/Luis_Margani"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Crane World (Spanish: Mundo gr\u00faa) is an 1999 Argentine film, written and directed by Pablo Trapero. The film was produced by Lita Stantic and Pablo Trapero. It features Luis Margani, Adriana Aizemberg, Daniel Valenzuela, among others. The movie was partly funded by Argentina's INCAA. The picture is about working class life in Argentina that's gritty (filmed in sepia, black and white). The film follows the fortunes in the life of Rulo, an unemployed suburban man, who tries to earn a living as a crane operator in Buenos Aires."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Cinema_Tropical|http://dbpedia.org/resource/INCAA|http://dbpedia.org/resource/Lita_Stantic"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Cabin_in_the_Woods"}, "Title": {"type": "literal", "value": "The Cabin in the Woods"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Drew_Goddard"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anna_Hutchison|http://dbpedia.org/resource/Bradley_Whitford|http://dbpedia.org/resource/Chris_Hemsworth|http://dbpedia.org/resource/Fran_Kranz|http://dbpedia.org/resource/Jesse_Williams_(actor)|http://dbpedia.org/resource/Kristen_Connolly|http://dbpedia.org/resource/Richard_Jenkins"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "The Cabin in the Woods is a 2012 American horror comedy film directed by Drew Goddard in his directorial debut, produced by Joss Whedon, and written by Whedon and Goddard. The film stars Kristen Connolly, Chris Hemsworth, Anna Hutchison, Fran Kranz, Jesse Williams, Richard Jenkins and Bradley Whitford. The plot follows a group of college students who retreat to a remote forest cabin where they fall victim to backwoods zombies and the two technicians who manipulate the ongoing events from an underground facility. Goddard and Whedon, having worked together previously on Buffy the Vampire Slayer and Angel, wrote the screenplay in three days, describing it as an attempt to \"revitalize\" the slasher film genre and as a critical satire on torture porn. The special effects, monster costumes, special makeup, and prosthetic makeup for the movie were done by veteran horror film actress Heather Langenkamp, her husband David LeRoy Anderson, and their company AFX Studio. Filming took place in Vancouver, British Columbia from March to May 2009 on an estimated budget of $30 million. The film was originally slated for release on February 5, 2010 by Metro-Goldwyn-Mayer and United Artists, but was indefinitely shelved due to ongoing financial difficulties. In 2011, Lionsgate picked up the distribution rights. The film premiered on March 9, 2012 at the South by Southwest film festival in Austin, Texas and was released in the United States on April 13, 2012, grossing over $66 million worldwide."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lionsgate_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Pitch_Perfect"}, "Title": {"type": "literal", "value": "Pitch Perfect"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jason_Moore_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_teen_comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "Pitch Perfect is a 2012 American comedy film directed by Jason Moore. It features an ensemble cast, including Anna Kendrick, Skylar Astin, Rebel Wilson, Anna Camp, Brittany Snow, Ester Dean, Alexis Knapp, Hana Mae Lee, Adam DeVine, Ben Platt, John Michael Higgins, and Elizabeth Banks. The plot follows Barden University's all-girl a cappella group, The Barden Bellas, as they compete against another a cappella group from their college to win Nationals. The film is loosely adapted from Mickey Rapkin's non-fiction book, titled Pitch Perfect: The Quest for Collegiate a Cappella Glory. Filming concluded in December 2011, in Baton Rouge, Louisiana. The film premiered in Los Angeles on September 24, 2012. Released on September 28, 2012 in the United States, the film received positive reviews from critics. It became a sleeper hit and earned over $115 million worldwide, becoming the second highest-grossing music comedy film of all time behind School of Rock. The first film in the film series and was followed by two sequels Pitch Perfect 2 (2015) and Pitch Perfect 3 (2017)."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Maaf,_Saya_Menghamili_Istri_Anda"}, "Title": {"type": "literal", "value": "Maaf, Saya Menghamili Istri Anda"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Monty_Tiwa"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Eddie_Karsito|http://dbpedia.org/resource/Mulan_Kwok|http://dbpedia.org/resource/Ringgo_Agus_Rachman|http://dbpedia.org/resource/Shanty_(actress)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Maaf, Saya Menghamili Istri Anda (Sorry, I've Impregnated Your Wife) is a 2007 Indonesia film written and directed by Monty Tiwa."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sinemart"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kamulah_Satu-Satunya"}, "Title": {"type": "literal", "value": "Kamulah Satu-Satunya"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Hanung_Bramantyo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dennis_Adhiswara|http://dbpedia.org/resource/Didi_Petet|http://dbpedia.org/resource/Ence_Bagus|http://dbpedia.org/resource/Fanny_Fadillah|http://dbpedia.org/resource/Junior_Liem|http://dbpedia.org/resource/Nirina_Zubir|http://dbpedia.org/resource/Ringgo_Agus_Rahman|http://dbpedia.org/resource/Tarzan"}, "Published": {"type": "literal", "value": "2007-07-12"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Kamulah Satu-Satunya (You're the Only One) is a 2007 Indonesian comedy film directed by Hanung Bramantyo and starring Nirina Zubir, Junior Liem, Didi Petet, Tarzan, Fanny Fadillah, Ringgo Agus Rahman, and Dennis Adhiswara. The film premiered on July 12, 2007 in Jakarta. Productions by Oreima Films & Starvision."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Starvision_Plus"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Slutty_Summer"}, "Title": {"type": "literal", "value": "Slutty Summer"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Casper_Andreas"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Casper_Andreas|http://dbpedia.org/resource/Christos_Klapsis|http://dbpedia.org/resource/Jesse_Archer"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Slutty Summer is a 2004 romantic comedy film written and directed by Casper Andreas. It stars Casper Andreas, Jesse Archer, and Christos Klapsis. The film was premiered at the New York Lesbian and Gay Film Festival on June 11, 2004, and was shown at various other film festivals before its release in the United States on June 10, 2005."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Embrem_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Get_Him_to_the_Greek"}, "Title": {"type": "literal", "value": "Get Him to the Greek"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nicholas_Stoller"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Colm_Meaney|http://dbpedia.org/resource/Elisabeth_Moss|http://dbpedia.org/resource/Jonah_Hill|http://dbpedia.org/resource/Rose_Byrne|http://dbpedia.org/resource/Russell_Brand|http://dbpedia.org/resource/Sean_Combs"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "Get Him to the Greek is a 2010 American comedy film written, produced and directed by Nicholas Stoller and starring Russell Brand and Jonah Hill. Released on June 4, 2010, the film serves as a spin-off sequel of Stoller's 2008 film Forgetting Sarah Marshall, reuniting director Stoller with stars Hill and Brand. Brand reprises his role as character Aldous Snow from Forgetting Sarah Marshall, while Hill plays an entirely new character. The film also stars Elisabeth Moss, Rose Byrne, Sean \"Diddy\" Combs, and Colm Meaney."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Apatow_Productions|http://dbpedia.org/resource/Relativity_Media|http://dbpedia.org/resource/Spyglass_Entertainment"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Get_Santa"}, "Title": {"type": "literal", "value": "Get Santa"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Christopher_Smith_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jim_Broadbent|http://dbpedia.org/resource/Rafe_Spall|http://dbpedia.org/resource/Warwick_Davis"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Get Santa is a 2014 British Christmas comedy film directed and written by Christopher Smith. The film stars Jim Broadbent, Rafe Spall, Warwick Davis and Kit Connor. It was Tony Scott's last film as producer."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Spider_(2007_film)"}, "Title": {"type": "literal", "value": "Spider"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nash_Edgerton"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Joel_Edgerton|http://dbpedia.org/resource/Mirrah_Foulkes|http://dbpedia.org/resource/Nash_Edgerton"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "9"}, "Description": {"type": "literal", "value": "(This article is about the Nash Edgerton film. For the David Cronenberg film, see Spider (2002 film).) Spider is a 2007 Australian black comedy short film directed by Nash Edgerton and written by David Mich\u00f4d and Nash Edgerton. The film had its world premiere in competition at the Sydney Film Festival on 17 June 2007. After that the film compete at number of film festivals and later theatrically released with Edgerton's feature-film The Square."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Apparition_(company)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Naiyaandi"}, "Title": {"type": "literal", "value": "Naiyaandi"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/A._Sarkunam"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dhanush|http://dbpedia.org/resource/Nazriya_Nazim"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "158"}, "Description": {"type": "literal", "value": "Naiyaandi (English: Mockery) is a 2013 Indian Tamil romantic comedy film written and directed by A. Sarkunam. The film features Dhanush and Nazriya Nazim in the lead roles. The plot focuses on a love story between a Kuthu Vilakku (lamp) shop owner and a BDS student. It received 'U' certificate from Central Board of Film Certification and released on 11 October 2013. The film, inspired from the 1993 Malayalam film Meleparambil Aanveedu, received mostly negative reviews but had a decent collection in terms of the box office."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Pretty_Smart"}, "Title": {"type": "literal", "value": "Pretty Smart"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dimitri_Logothetis"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dennis_Cole|http://dbpedia.org/resource/Patricia_Arquette|http://dbpedia.org/resource/Tricia_Leigh_Fisher"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1980s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Pretty Smart is a 1987 American comedy-drama film starring Tricia Leigh Fisher and Patricia Arquette. It was directed by Dimitri Logothetis. It was Arquette's first film. It was mostly filmed in Athens with most interiors and some exteriors at the Hotel Grande Bretagne."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/New_World_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Cashback_(film)"}, "Title": {"type": "literal", "value": "Cashback"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sean_Ellis"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Emilia_Fox|http://dbpedia.org/resource/Sean_Biggerstaff"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:British_comedy-drama_films|http://dbpedia.org/resource/Category:British_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102|18"}, "Description": {"type": "literal", "value": "Cashback is a 2006 British romantic comedy-drama film written and directed by Sean Ellis. Originally exhibited as a short in 2004, it was expanded to feature length in 2006. Both versions were produced by Lene Bausager, starring Sean Biggerstaff and Emilia Fox. The feature was released by Magnolia Pictures in late 2006 and also starred Michelle Ryan."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Pelli_Choopulu"}, "Title": {"type": "literal", "value": "PelliChoopuluu"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tharun_Bhascker_Dhaassyam"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ritu_Varma|http://dbpedia.org/resource/Vijay_Deverakonda"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "124"}, "Description": {"type": "literal", "value": "Pelli Choopulu (English: Matchmaking) is a 2016 romantic-comedy Telugu film written and directed by Tharun Bhascker Dhaassyam and produced by Raj Kandukuri and Yash Rangineni. It features Vijay Deverakonda and Ritu Varma in the lead roles. The film was released worldwide on 29 July 2016 to positive reviews from critics and received critical and commercial success."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Suresh_Productions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Josh_and_S.A.M."}, "Title": {"type": "literal", "value": "Josh and S.A.M."}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Billy_Weber"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1993-11-24"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Josh and S.A.M. is a 1993 American drama-comedy film revolving around two brothers who hate each other and the way they react to their parents' divorce. It stars Noah Fleiss, his film debut, along with Jacob Tierney, Martha Plimpton, and a young Jake Gyllenhaal. It was directed by Billy Weber and produced by Martin Brest."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lego_Indiana_Jones_and_the_Raiders_of_the_Lost_Brick"}, "Title": {"type": "literal", "value": "''Lego Indiana Jones and|the Raiders of the Lost Brick''"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Peder_Pedersen_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008-05-10"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Adventure_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "5"}, "Description": {"type": "literal", "value": "Lego Indiana Jones and the Raiders of the Lost Brick (2008) is a 3-D computer-animated Lego movie directed by Peder Pedersen. It combines details from all four Indiana Jones features into one continuous adventure with a humorous twist, and includes several inside-jokes for fans of both the Indiana Jones films and the Star Wars series. All four chapters, which combine to form a so-called \"mini-epic\", aired on Cartoon Network from May 10, 2008 and could be seen at the Lego Indiana Jones page on the Cartoon Network website, as well as on the Lego Indiana Jones website. Pedersen had previously spoofed the Indiana Jones films in his music video for \"Doctor Jones\" (1997), a hit song by the Danish/Norwegian dance-pop group Aqua. Lego Indiana Jones and the Raiders of the Lost Brick was followed by Lego Star Wars: The Quest for R2-D2 in 2009, also directed by Pedersen."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Cartoon_Network"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Shaun_of_the_Dead"}, "Title": {"type": "literal", "value": "Shaun of the Dead"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Edgar_Wright"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bill_Nighy|http://dbpedia.org/resource/Dylan_Moran|http://dbpedia.org/resource/Kate_Ashfield|http://dbpedia.org/resource/Lucy_Davis|http://dbpedia.org/resource/Nick_Frost|http://dbpedia.org/resource/Penelope_Wilton"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:British_black_comedy_films|http://dbpedia.org/resource/Category:British_comedy_horror_films|http://dbpedia.org/resource/Category:Zombie_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "Shaun of the Dead is a 2004 British horror comedy film directed by Edgar Wright, written by Wright and Simon Pegg, and starring Pegg and Nick Frost. Pegg plays Shaun, a man attempting to get some kind of focus in his life as he deals with his girlfriend, his mother and stepfather. At the same time, he has to cope with an apocalyptic zombie uprising. The film was a critical and commercial success. Shaun of the Dead was also a BAFTA nominee. Pegg and Wright considered a sequel that would replace zombies with another monster, but decided against it as they were pleased with the first film as a stand-alone product, and thought too many characters died to continue the story. The film is the first in Wright and Pegg's Three Flavours Cornetto trilogy, followed by 2007's Hot Fuzz and 2013's The World's End."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Rogue_Pictures|http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/No_Blood_No_Tears"}, "Title": {"type": "literal", "value": "No Blood No Tears"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ryoo_Seung-wan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jeon_Do-yeon|http://dbpedia.org/resource/Jung_Jae-young|http://dbpedia.org/resource/Lee_Hye-young_(actress,_born_1962)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "No Blood No Tears (Hangul: \ud53c\ub3c4 \ub208\ubb3c\ub3c4 \uc5c6\uc774; RR: Pi-do nunmul-do eobsi) is a 2002 South Korean pulp noir film from director Ryoo Seung-wan."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Cinema_Service"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Beside_Still_Waters_(film)"}, "Title": {"type": "literal", "value": "Beside Still Waters"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Lowell"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Beck_Bennett|http://dbpedia.org/resource/Brett_Dalton|http://dbpedia.org/resource/Britt_Lower|http://dbpedia.org/resource/Jessy_Hodges|http://dbpedia.org/resource/Reid_Scott_(actor)|http://dbpedia.org/resource/Ryan_Eggold"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "76"}, "Description": {"type": "literal", "value": "Beside Still Waters is an American comedy-drama film co-written, produced, and directed by actor Chris Lowell in his directorial debut. The film was released on November 14, 2014."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kick-Ass_(film)"}, "Title": {"type": "literal", "value": "Kick-Ass"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Matthew_Vaughn"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aaron_Taylor-Johnson|http://dbpedia.org/resource/Chlo\u00eb_Grace_Moretz|http://dbpedia.org/resource/Christopher_Mintz-Plasse|http://dbpedia.org/resource/Mark_Strong|http://dbpedia.org/resource/Nicolas_Cage"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:British_black_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films|http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "117"}, "Description": {"type": "literal", "value": "Kick-Ass is a 2010 British-American independent superhero black comedy film based on the comic book of the same name by Mark Millar and John Romita, Jr. The film was directed by Matthew Vaughn, who co-produced with Brad Pitt and co-wrote the screenplay with Jane Goldman. Its general release was on 25 March 2010 in the United Kingdom and on 16 April 2010 in the United States. It is the first installment of the Kick-Ass film series. It tells the story of an ordinary teenager, Dave Lizewski (Aaron Johnson), who sets out to become a real-life superhero, calling himself \"Kick-Ass\". Dave gets caught up in a bigger fight when he meets Big Daddy (Nicolas Cage), a former cop who, in his quest to bring down the crime boss Frank D'Amico (Mark Strong) and his son (Christopher Mintz-Plasse) (Red Mist), has trained his eleven-year-old daughter (Chlo\u00eb Grace Moretz) to be the ruthless vigilante Hit-Girl. Despite having generated some controversy for its profanity and violence performed by a child, Kick-Ass was well received by both critics and audiences. The film has gained a strong cult following since its release on DVD and Blu-ray. A sequel, written and directed by Jeff Wadlow and produced by Vaughn, was released in August 2013, with Johnson, Mintz-Plasse, and Moretz reprising their roles."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lionsgate_Entertainment|http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Marv_Films|http://dbpedia.org/resource/Plan_B_Entertainment"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Student_of_the_Year"}, "Title": {"type": "literal", "value": "Student of the Year"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Karan_Johar"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alia_Bhatt|http://dbpedia.org/resource/Ram_Kapoor|http://dbpedia.org/resource/Rishi_Kapoor|http://dbpedia.org/resource/Ronit_Roy|http://dbpedia.org/resource/Sana_Saeed|http://dbpedia.org/resource/Sidharth_Malhotra|http://dbpedia.org/resource/Varun_Dhawan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "146|188"}, "Description": {"type": "literal", "value": "Student of the Year is a 2012 Indian romantic drama film directed by Karan Johar and produced by Hiroo Yash Johar under the banner of Dharma Productions and in collaboration with Shah Rukh Khan's Red Chillies Entertainment. The movie features newcomers Sidharth Malhotra, Varun Dhawan and Alia Bhatt in the lead roles with Rishi Kapoor, Sana Saeed, Ronit Roy, Ram Kapoor and Farida Jalal in supporting roles. The movie also features Boman Irani, Kajol, Farah Khan and Vaibhavi Merchant in guest appearances. This is Karan Johar's first directorial venture without Shah Rukh Khan. Student of the Year was released on 19 October 2012 in over 1400 locations across India. It was a critical and commercial success and gained positive to mixed reviews from critics and good box office collections. The movie is one of the highest grossing Bollywood films of 2012."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Eros_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dodging_the_Clock"}, "Title": {"type": "literal", "value": "Dodging the Clock|Horloge biologique"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ricardo_Trogi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Dodging the Clock (French: Horloge biologique) is a Quebec film directed by Ricardo Trogi and released in 2005."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Phil_the_Alien"}, "Title": {"type": "literal", "value": "Phil the Alien"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rob_Stefaniuk"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Graham_Greene_(actor)|http://dbpedia.org/resource/Nicole_de_Boer|http://dbpedia.org/resource/Rob_Stefaniuk"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Phil the Alien is a 2004 Canadian comedy film. It was written and directed by Rob Stefaniuk, who also starred as the titular Phil. The film's cast also includes Graham Greene and Ingrid Veninger."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lions_Gate_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Fullmetal_Alchemist:_Brotherhood"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Yasuhiro_Irie"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Comedy-drama_anime_and_manga"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Fullmetal Alchemist: Brotherhood (Japanese: \u92fc\u306e\u932c\u91d1\u8853\u5e2b Hepburn: Hagane no Renkinjutsushi) is an anime series adapted from the Fullmetal Alchemist manga by Hiromu Arakawa. Produced by Bones, the series is directed by Yasuhiro Irie and written by Hiroshi \u014cnogi. Fullmetal Alchemist: Brotherhood is the second anime television series based on Fullmetal Alchemist, the first being 2003's Fullmetal Alchemist. Fullmetal Alchemist: Brotherhood is a 1:1 adaptation directly following the original events of the manga. It was first announced in the manga series' 20th tank\u014dbon volume. In Japan, it is differentiated from the 2003 series by the inclusion of the English language title. The series premiered on April 5, 2009 on MBS-TBS' Sunday 5:00 PM JST anime time block, replacing Mobile Suit Gundam 00, and ran weekly until airing its final episode on July 4, 2010. Voice actors Romi Park and Rie Kugimiya reprise their roles as main characters Edward and Alphonse Elric, respectively. On March 20, 2009, it was announced that the English title of the series was Fullmetal Alchemist: Brotherhood and that it would receive its English language premiere on Animax Asia, with Japanese audio and English subtitles, from April 10, 2009 at 8:30 p.m, five days after its Japanese premiere. On April 3, 2009, Funimation announced they would stream English subtitled episodes four days after they air in Japan. Madman Entertainment would also stream it \"within days\" of the episodes airing in Japan. On February 14, 2010, the English dubbed version of the series began its run on Adult Swim. On February 1, 2016, Funimation announced that they would be losing home video and streaming rights to both Fullmetal Alchemist: Brotherhood, and Fullmetal Alchemist the Movie: Conqueror of Shamballa, by March 31, 2016. The series was transferred to Aniplex of America."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kadavul_Irukaan_Kumaru"}, "Title": {"type": "literal", "value": "Kadavul Irukaan Kumaru"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/M._Rajesh"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anandhi|http://dbpedia.org/resource/G._V._Prakash_Kumar|http://dbpedia.org/resource/Nikki_Galrani|http://dbpedia.org/resource/RJ_Balaji"}, "Published": {"type": "literal", "value": "2016-10-28"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Kadavul Irukaan Kumaru (English: There is a God, Kumar) is an upcoming Indian Tamil comedy film written and directed by M. Rajesh and produced by T. Siva. The film stars G. V. Prakash Kumar, Nikki Galrani and Anandhi in the leading roles, while Prakash Raj and RJ Balaji play supporting roles. The film began production during March 2016, and will be released during late 2016."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kick_(2009_film)"}, "Title": {"type": "literal", "value": "Kick"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Surender_Reddy"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ileana_D'Cruz|http://dbpedia.org/resource/Ravi_Teja"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "155"}, "Description": {"type": "literal", "value": "Kick is a 2009 Indian Telugu-language action comedy film written by Vakkantham Vamsi and directed by Surender Reddy. It features Ravi Teja and Ileana D'Cruz in the lead roles. The film's music was composed by S. Thaman.The film was released worldwide on 8 May 2009 and became blockbuster and was remade into Tamil as Thillalangadi, Hindi as Kick (2014) and in Kannada as Super Ranga. A sequel, Kick 2 with the same lead actor Ravi Teja and director Surender Reddy released worldwide on 21 August 2015."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Suresh_Productions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Pitch_Perfect_(film_series)"}, "Title": {"type": "literal", "value": "Pitch Perfect"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Elizabeth_Banks|http://dbpedia.org/resource/Jason_Moore_(director)|http://dbpedia.org/resource/Trish_Sie"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_DeVine|http://dbpedia.org/resource/Alexis_Knapp|http://dbpedia.org/resource/Anna_Camp|http://dbpedia.org/resource/Anna_Kendrick|http://dbpedia.org/resource/Ben_Platt_(actor)|http://dbpedia.org/resource/Brittany_Snow|http://dbpedia.org/resource/Chrissie_Fit|http://dbpedia.org/resource/Ester_Dean|http://dbpedia.org/resource/Hailee_Steinfeld|http://dbpedia.org/resource/Hana_Mae_Lee|http://dbpedia.org/resource/John_Michael_Higgins|http://dbpedia.org/resource/Katey_Sagal|http://dbpedia.org/resource/Rebel_Wilson|http://dbpedia.org/resource/Skylar_Astin"}, "Published": {"type": "literal", "value": "2012-09-28|2015-05-15|2017-12-22"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "227"}, "Description": {"type": "literal", "value": "Pitch Perfect is a series of musical comedy films created by Kay Cannon, loosely based on the non-fiction book Pitch Perfect: The Quest for Collegiate a Cappella Glory by Mickey Rapkin. Jason Moore directed the first film and Elizabeth Banks directed the second, with the upcoming third installment set to be released on July 21, 2017. Paul Brooks, Max Handelman, and Banks produced the films. It features an ensemble cast, including Anna Kendrick, Rebel Wilson, Anna Camp, Brittany Snow, Skylar Astin, Adam DeVine, Ben Platt, Alexis Knapp, Hana Mae Lee, Ester Dean, Hailee Steinfeld, Chrissie Fit, Katey Sagal, John Michael Higgins, and Banks. The series is distributed by Universal Pictures. The first film was a sleeper hit. It received positive reviews and is financially successful, grossing over $115 million against a $17 million budget. A sequel was made and released in 2015, to much greater financial success, grossing over $287 million against $29 million budget. The series has since gained a cult following and the second film is the current highest grossing musical comedy film of all time, beating School of Rock's record. The third film is set to be released on 2017."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Massu_Engira_Masilamani"}, "Title": {"type": "literal", "value": "Massu Engira Masilamani"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Venkat_Prabhu"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aravind_Akash|http://dbpedia.org/resource/Jayaprakash|http://dbpedia.org/resource/Nayantara|http://dbpedia.org/resource/Parthiban|http://dbpedia.org/resource/Pranitha_Subhash|http://dbpedia.org/resource/Premgi_Amaren|http://dbpedia.org/resource/Riyaz_Khan|http://dbpedia.org/resource/Samuthirakani|http://dbpedia.org/resource/Suriya"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Horror_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "152"}, "Description": {"type": "literal", "value": "Massu Engira Masilamani (English: Masilamani alias Mass), also known by its former title Masss, is a 2015 Indian Tamil-language comedy horror film directed by Venkat Prabhu. and produced by K. E. Gnanavel Raja under his then-newly formed studio Aadnah Arts, it features an ensemble cast including Suriya, Nayantara, Parthiban, Samuthirakani, Premgi Amaren and Pranitha Subhash. Yuvan Shankar Raja composed the music and cinematography was handled by R. D. Rajasekhar. The film was released worldwide on 29 May 2015. A Telugu dubbed version, titled Rakshasudu, was released simultaneously in Andhra Pradesh and Telangana."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Dream_Factory_(distributor)|http://dbpedia.org/resource/Eros_International|http://dbpedia.org/resource/Studio_Green"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Force_Majeure_(film)"}, "Title": {"type": "literal", "value": "Force Majeure"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ruben_\u00d6stlund"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Johannes_Bah_Kuhnke|http://dbpedia.org/resource/Kristofer_Hivju"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy-drama_films|http://dbpedia.org/resource/Category:Norwegian_comedy_films|http://dbpedia.org/resource/Category:Swedish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "119"}, "Description": {"type": "literal", "value": "Force Majeure ([f\u0254rs ma\u0292\u0153r]; Swedish: Turist, \"tourist\") is a 2014 Swedish comedy-drama film directed by Ruben \u00d6stlund. It follows the marital tension resulting from an avalanche during which the husband, named Tomas, is believed by his wife to have prioritized his own escape over the safety of his family. The film's title comes from force majeure, a contractual clause freeing both parties from liability in the event of unexpected disasters. Force Majeure was acclaimed upon release, with critics praising its script and cinematography. It won the Best Film award at the 50th Guldbagge Awards, and was named one of the best films of 2014 by various publications."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/TerrorVision"}, "Title": {"type": "literal", "value": "TerrorVision"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ted_Nicolaou"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alejandro_Rey|http://dbpedia.org/resource/Bert_Remsen|http://dbpedia.org/resource/Chad_Allen_(actor)|http://dbpedia.org/resource/Diane_Franklin|http://dbpedia.org/resource/Gerrit_Graham|http://dbpedia.org/resource/Jon_Gries|http://dbpedia.org/resource/Mary_Woronov"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1980s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:Comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "TerrorVision is an 1986 American horror comedy film directed by Ted Nicolaou, produced and written by Albert and Charles Band and composed by Richard Band, all of whom would go on to found and work with Full Moon Features in 1989. TerrorVision was made by Empire International Pictures, the production company owned by Charles Band prior to Full Moon, and was released on February 1986. The story follows an hungry-driven creature from a nearby alien planet sent down onto Earthy via satellite and ends up inside a household where three kids must take care of it before it goes into a hungry killing rampage. While not a critical and commercial success, it later developed as a cult film, particularly a \"so bad it's good\" film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Empire_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Swim_Little_Fish_Swim"}, "Title": {"type": "literal", "value": "Swim Little Fish Swim"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lola_Bessis|http://dbpedia.org/resource/Ruben_Amar"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anne_Consigny|http://dbpedia.org/resource/Brooke_Bloom|http://dbpedia.org/resource/Dustin_Guy_Defa|http://dbpedia.org/resource/Lola_Bessis|http://dbpedia.org/resource/Olivia_Durling_Costello"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Swim Little Fish Swim is a 2014 French-American indie comedy-drama, written, produced and co-directed by Lola Bessis and Ruben Amar. This film was shot in New York on a shoe-string budget. Once finished, it hit the festival circuit (Rotterdam; S\u00e3o Paulo; Jerusalem; Durban; CPH:PIX) after premiering at South By South West (SXSW) in 2013. Swim Little Fish Swim enjoyed a worldwide theatrical release and it has recently been sold to HBO Europe, Netflix, RTBF and OCS among other international networks."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Motel_(film)"}, "Title": {"type": "literal", "value": "The Motel"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Kang_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jade_Wu|http://dbpedia.org/resource/Jeffrey_Chyau|http://dbpedia.org/resource/Samantha_Futerman|http://dbpedia.org/resource/Sung_Kang"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "76"}, "Description": {"type": "literal", "value": "The Motel (2006) is the debut feature from director Michael Kang. The film won the Humanitas Prize in the Sundance Film Festival category, and was nominated for an Independent Spirit Award for Best First Feature. It is based on the novel Waylaid by Ed Lin."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/PalmPictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Netto_(film)"}, "Title": {"type": "literal", "value": "Netto"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Robert_Thalheim"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Milan_Peschel|http://dbpedia.org/resource/Sebastian_Butz|http://dbpedia.org/resource/Stephanie_Charlotta_Koetz"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "Netto is a 2005 film directed by Robert Thalheim. It is a story of father-son relationship in post-unification Berlin. The song \"Mein bester Kumpel\" by Peter Tschernig is used throughout the film."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Extremely_Tragic_Story_of_Celal_Tan_and_His_Family"}, "Title": {"type": "literal", "value": "The Extremely Tragic Story of Celal Tan and His Family"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Onur_\u00dcnl\u00fc"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "The Extremely Tragic Story of Celal Tan and His Family (Turkish: Celal Tan ve Ailesinin A\u015f\u0131r\u0131 Ac\u0131kl\u0131 Hikayesi) is a 2011 Turkish comedy-drama film, written and directed by Onur \u00dcnl\u00fc, starring Sel\u00e7uk Y\u00f6ntem as a widowed constitutional law professor, whose life takes a turn for the worse when he remarries to a university student, whose life he has saved. The film was awarded Best Film and Best Screenplay at the 18th International Adana Golden Boll Film Festival (September 17\u201325, 2011) where it premiered."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Filmpot|http://dbpedia.org/resource/Medyavizyon"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Golmaal:_Fun_Unlimited"}, "Title": {"type": "literal", "value": "Golmaal"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rohit_Shetty"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ajay_Devgan|http://dbpedia.org/resource/Arshad_Warsi|http://dbpedia.org/resource/Paresh_Rawal|http://dbpedia.org/resource/Rimi_Sen|http://dbpedia.org/resource/Sharman_Joshi|http://dbpedia.org/resource/Tusshar_Kapoor"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "148"}, "Description": {"type": "literal", "value": "Golmaal is a 2006 Bollywood comedy drama film directed by Rohit Shetty and written by Neeraj Vora. The film stars Ajay Devgn, Arshad Warsi, Sharman Joshi, Tusshar Kapoor and Rimi Sen in lead roles. The opening credits of the movie revealed that the story was based on the Gujarati play Aflatoon by Mihir Bhuta adapted from Harsh Shivsharan's original Marathi play Ghar-Ghar which was earlier used in the 2001 Malayalam comedy Kakkakuyil. The film released on 14 July 2006, and received generally positive reviews from the critics, and turned out to be a surprise hit at the box office. On 29 October 2008, the film spawned a sequel, Golmaal Returns which was even more successful than the original. Opening comedy sequences of this movie was used in the Kannada movie Mast Maja Maadi."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/K._Sera_Sera|http://dbpedia.org/resource/Shree_Ashtavinayak_Cine_Vision_Ltd"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Paappi_Appacha"}, "Title": {"type": "literal", "value": "Paappi Appacha"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mamas_K._Chandran"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dileep_(actor)|http://dbpedia.org/resource/Innocent_(actor)|http://dbpedia.org/resource/Kavya_Madhavan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "160"}, "Description": {"type": "literal", "value": "Paappi Appacha (Malayalam: \u0d2a\u0d3e\u0d2a\u0d4d\u0d2a\u0d40 \u0d05\u0d2a\u0d4d\u0d2a\u0d1a\u0d4d\u0d1a\u0d3e) is a 2010 Malayalam action comedy film starring Dileep, Innocent, and Kavya Madhavan. It was written and directed by Mamas, and produced by Anoop. The film released in April 2010 in Kerala on more than 70 screens. The film also marked the debut of director Mamas. Lead characters in this movie have a similar life style of the comedians in the Paappi Appacha song of the 1972 Prem Nazir movie Mayiladum kunnu."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jeon_Woo-chi:_The_Taoist_Wizard"}, "Title": {"type": "literal", "value": "Jeon Woo-chi: The Taoist Wizard"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Choi_Dong-hoon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Im_Soo-jung_(actress)|http://dbpedia.org/resource/Kang_Dong-won|http://dbpedia.org/resource/Kim_Yoon-seok"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Action_comedy_films|http://dbpedia.org/resource/Category:Fantasy-comedy_films|http://dbpedia.org/resource/Category:South_Korean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "119"}, "Description": {"type": "literal", "value": "Jeon Woo-chi (Hangul: \uc804\uc6b0\uce58; also known as Woochi, Jeon Woo-chi: The Taoist Wizard or Woochi: The Demon Slayer) is a 2009 South Korean fantasy action film written and directed by Choi Dong-hoon who departs from his popular heist films Tazza: The High Rollers and The Big Swindle for this big-budget, special effects-filled action romp that was equally popular with the Korean audience, earning over six million admissions over the 2009 Christmas period. Based on a Korean folktale, it stars Kang Dong-won in the title role. The film became the 3rd best selling film of 2009 with 6,100,532 tickets sold nationwide."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/CJ_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/A_Very_Murray_Christmas"}, "Title": {"type": "literal", "value": "A Very Murray Christmas"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sofia_Coppola"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bill_Murray"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "56"}, "Description": {"type": "literal", "value": "A Very Murray Christmas is a 2015 American Christmas musical comedy film directed by Sofia Coppola and co-written by Bill Murray, Mitch Glazer, and Coppola. The film features an ensemble cast including Bill Murray, George Clooney, Paul Shaffer, Amy Poehler, Julie White, Dimitri Dimitrov, Michael Cera, Chris Rock, David Johansen, Maya Rudolph, Jason Schwartzman, Jenny Lewis, Rashida Jones, and Miley Cyrus and was released on December 4, 2015, on Netflix."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Netflix"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/American_Zoetrope"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ordinary_(film)"}, "Title": {"type": "literal", "value": "Ordinary"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sugeeth"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ann_Augustine|http://dbpedia.org/resource/Asif_Ali_(actor)|http://dbpedia.org/resource/Biju_Menon|http://dbpedia.org/resource/Jishnu_(actor)|http://dbpedia.org/resource/Kunchacko_Boban|http://dbpedia.org/resource/Shritha_Sivadas"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "146"}, "Description": {"type": "literal", "value": "Ordinary is a 2012 Malayalam comedy drama film directed by Sugeeth and written by Nishad K. Koya and Manu Prasad. The film stars Kunchacko Boban, Biju Menon, Asif Ali, Jishnu Raghavan, Ann Augustine and Shritha Sivadas in the main roles. The cinematography is by Faisal Ali and the music is composed by Vidyasagar. The film follows the adventures of a K.S.R.T.C. bus that travels from Pathanamthitta to the village of Gavi via Angamoozhy. The film was remade in Tamil as Jannal Oram by Karu Pazhaniappan and in Telugu as Right Right."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Life_as_We_Know_It_(film)"}, "Title": {"type": "literal", "value": "Life As We Know It"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Greg_Berlanti"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "Life As We Know It is a 2010 American romantic comedy-drama film directed by Greg Berlanti, starring Katherine Heigl and Josh Duhamel. It was released on October 8, 2010, after sneak previews in 811 theaters on October 2, 2010. It was released on February 8, 2011."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Roadshow_Entertainment|http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sockbaby"}, "Title": {"type": "literal", "value": "Sockbaby"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Douglas_TenNapel|http://dbpedia.org/resource/John_Soares"}, "Author": {"type": "literal", "value": "http://dbpedia.org/resource/Douglas_TenNapel|http://dbpedia.org/resource/John_Soares"}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cody_Spurlock|http://dbpedia.org/resource/Dan_Heder|http://dbpedia.org/resource/Doug_Jones_(actor)|http://dbpedia.org/resource/Douglas_TenNapel|http://dbpedia.org/resource/John_Soares|http://dbpedia.org/resource/Jon_Heder|http://dbpedia.org/resource/Uriel_Padilla"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "20"}, "Description": {"type": "literal", "value": "Sockbaby is a four-part no-budget short film originally for Channel 101, directed by Douglas TenNapel, the man best known for works such as Earthworm Jim and The Neverhood; and John Soares, who is best known for co-founding the independent film group WestHavenBrook. The film lampoons kung-fu movies, and directly parodies pop-culture icons like Dragon Ball Z. All of the martial arts were done by the actors themselves, and were directed by Soares. In addition to the numerous martial arts sequences, the film also features a cartoon sequence in part two and a partial CGI sequence in part three. The film centers on a character named Ronnie Cordova, a funky martial artist and (possibly) 1970s-style detective in a slick leisure suit, played by Soares. The plot mostly involves his quest to get a bite to eat that's thwarted consistently as he must protect a Sockbaby from an evil group of Greys (\"demonic men in suits,\" to quote the official site)."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Channel_101"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Reverse_(film)"}, "Title": {"type": "literal", "value": "Reverse"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Borys_Lankosz"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Agata_Buzek|http://dbpedia.org/resource/Anna_Polony|http://dbpedia.org/resource/Krystyna_Janda"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Reverse (original title: Rewers) is a 2009 Polish comedy-drama film, directed by Borys Lankosz."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Studio_Filmowe_Kadr"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Wrong_Ferarri"}, "Title": {"type": "literal", "value": "The Wrong Ferrari"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Green_(musician)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Green_(musician)|http://dbpedia.org/resource/Cory_Kennedy|http://dbpedia.org/resource/Jack_Dishel|http://dbpedia.org/resource/Macaulay_Culkin"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "The Wrong Ferarri (sic) is a feature-film written and directed by Adam Green. Conceived on Green's European music tour in the summer of 2010, the film was shot entirely on an iPhone camera, with Green writing the script for the actors on index cards. Scenes were shot in France, Prague, Venice, The Jersey Shore and New York City. Green has stated that The Wrong Ferarri was inspired by Woody Allen's Bananas, Alejandro Jodorowsky's The Holy Mountain, \"Weird Al\" Yankovic's UHF, Robert Downey, Sr.'s Putney Swope and the television show Seinfeld. The film contains strong profanity, sexual themes, and several scenes of nudity and is unrated by the MPAA."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Cuban_Fury"}, "Title": {"type": "literal", "value": "Cuban Fury"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Griffiths_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_O'Dowd|http://dbpedia.org/resource/Ian_McShane|http://dbpedia.org/resource/Nick_Frost|http://dbpedia.org/resource/Rashida_Jones"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:British_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Cuban Fury is a 2014 British romantic comedy film directed by James Griffiths, written by Jon Brown, and starring Nick Frost, Rashida Jones and Chris O'Dowd. The film was a minor box office success but received mixed reviews from critics."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/StudioCanal"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/30_Days_in_Atlanta"}, "Title": {"type": "literal", "value": "30 Days in Atlanta"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Robert_O._Peters"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ayo_Makun|http://dbpedia.org/resource/Desmond_Elliot|http://dbpedia.org/resource/Juliet_Ibrahim|http://dbpedia.org/resource/Karlie_Redd|http://dbpedia.org/resource/Lynn_Whitfield|http://dbpedia.org/resource/Majid_Michel|http://dbpedia.org/resource/Omoni_Oboli|http://dbpedia.org/resource/Racheal_Oniga|http://dbpedia.org/resource/Ramsey_Nouah|http://dbpedia.org/resource/Richard_Mofe_Damijo|http://dbpedia.org/resource/Vivica_A._Fox"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "30 Days in Atlanta is a 2014 Nigerian romantic comedy film produced by Ayo Makun and directed by Robert Peters. The film was shot on location in Lagos and Atlanta. It premiered on 31 October 2014. It has been declared the highest grossing film of all time in Nigerian cinemas, although the film was met with mixed to negative critical reception."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Diary_of_a_Wimpy_Kid:_Rodrick_Rules_(film)"}, "Title": {"type": "literal", "value": "Diary of a Wimpy Kid: Rodrick Rules"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_Bowers_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Devon_Bostick|http://dbpedia.org/resource/Rachael_Harris|http://dbpedia.org/resource/Robert_Capron|http://dbpedia.org/resource/Steve_Zahn|http://dbpedia.org/resource/Zachary_Gordon"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Diary of a Wimpy Kid: Rodrick Rules (sometimes known as Diary of a Wimpy Kid 2: Rodrick Rules) is a 2011 American semi-teen comedy film based on Jeff Kinney's book of the same name with a couple elements from The Last Straw. Unlike the first film, which was directed by Thor Freudenthal, this film was directed by David Bowers. The film stars Zachary Gordon and Devon Bostick. Robert Capron, Rachael Harris, Steve Zahn, and Peyton List also have prominent roles. The film was released on March 25, 2011 by 20th Century Fox. The film received mixed reviews from critics and it earned $72.4 million on a $21 million budget. It is the second film in the Diary of a Wimpy Kid film series preceded by 2010's Diary of a Wimpy Kid and followed by 2012's Diary of a Wimpy Kid: Dog Days."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Iron_Sky"}, "Title": {"type": "literal", "value": "Iron Sky"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Timo_Vuorensola"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/G\u00f6tz_Otto|http://dbpedia.org/resource/Julia_Dietze|http://dbpedia.org/resource/Peta_Sergeant|http://dbpedia.org/resource/Stephanie_Paul|http://dbpedia.org/resource/Udo_Kier"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Action_comedy_films|http://dbpedia.org/resource/Category:Australian_comedy_films|http://dbpedia.org/resource/Category:Comedy_science_fiction_films|http://dbpedia.org/resource/Category:German_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Iron Sky is a 2012 Finnish-German-Australian comic science fiction action film directed by Timo Vuorensola and written by Johanna Sinisalo and Michael Kalesniko. It tells the story of a group of Nazi Germans who, having been defeated in 1945, fled to the Moon, where they built a space fleet to return in 2018 and conquer Earth. Iron Sky comes from the creators of Star Wreck: In the Pirkinning and was produced by Tero Kaukomaa of Blind Spot Pictures and Energia Productions, co-produced by New Holland Pictures and 27 Films, and co-financed by numerous individual supporters; Samuli Torssonen was responsible for the computer-generated imagery. It was theatrically released throughout Europe in April 2012. A director's cut of the film with 20 additional minutes was released on DVD and Blu-ray on 11 March 2014. A video-game adaptation titled Iron Sky: Invasion was released in October 2012. A sequel, titled Iron Sky: The Coming Race, is currently being crowdfunded through Indiegogo and is slated for a 2017 release."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Buena_Vista_International|http://dbpedia.org/resource/Hoyts"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Monster-in-Law"}, "Title": {"type": "literal", "value": "Monster-in-Law"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Robert_Luketic"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Elaine_Stritch|http://dbpedia.org/resource/Jane_Fonda|http://dbpedia.org/resource/Jennifer_Lopez|http://dbpedia.org/resource/Michael_Vartan|http://dbpedia.org/resource/Monet_Mazur|http://dbpedia.org/resource/Wanda_Sykes"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Australian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Monster-in-Law is a 2005 Australian-American comedy film directed by Robert Luketic and starring Jane Fonda, Jennifer Lopez, Michael Vartan and Wanda Sykes. It marks a return to cinema for Fonda, being her first film since Stanley & Iris 15 years earlier. The screenplay is written by Anya Kochoff. The original music score is composed by David Newman. The film was negatively received by critics but was a huge box office success."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/New_Line_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Pride_&_Prejudice:_A_Latter-Day_Comedy"}, "Title": {"type": "literal", "value": "Pride and Prejudice"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Black_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Gourley|http://dbpedia.org/resource/Carmen_Rasmusen|http://dbpedia.org/resource/Henry_Maguire|http://dbpedia.org/resource/Kam_Heskin|http://dbpedia.org/resource/Lucila_Sol\u00e1|http://dbpedia.org/resource/Orlando_Seale"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "Pride & Prejudice: A Latter-Day Comedy is a 2003 independent film adaptation of Jane Austen's novel set in modern-day Provo, Utah. The film received mixed reviews, with more negative reviews than positive. Critics accused the film of its poor editing and its rough application of the story to modern life. Positive reviews praised Kam Heskin's performance as Elizabeth and enjoyed that the film was \"cute\". Although the film included aspects of LDS culture, most critics agreed that the film's connection with LDS culture was trivial, making the film more universally accessible to viewers."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Excel_Entertainment_Group"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/A_Million_Ways_to_Die_in_the_West"}, "Title": {"type": "literal", "value": "A Million Ways to Die in the West"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Seth_MacFarlane"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amanda_Seyfried|http://dbpedia.org/resource/Charlize_Theron|http://dbpedia.org/resource/Giovanni_Ribisi|http://dbpedia.org/resource/Liam_Neeson|http://dbpedia.org/resource/Neil_Patrick_Harris|http://dbpedia.org/resource/Sarah_Silverman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Western_(genre)_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "A Million Ways to Die in the West is a 2014 American western comedy film directed, produced by and starring Seth MacFarlane, who wrote the screenplay along with Alec Sulkin and Wellesley Wild. The film features an ensemble cast, including Charlize Theron, Amanda Seyfried, Neil Patrick Harris, Giovanni Ribisi, Sarah Silverman and Liam Neeson. It was produced by Media Rights Capital and distributed by Universal Pictures. The film was released on May 30, 2014."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kung_Fu_Panda_2"}, "Title": {"type": "literal", "value": "Kung Fu Panda 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jennifer_Yuh_Nelson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Angelina_Jolie|http://dbpedia.org/resource/Danny_McBride|http://dbpedia.org/resource/David_Cross|http://dbpedia.org/resource/Dennis_Haysbert|http://dbpedia.org/resource/Dustin_Hoffman|http://dbpedia.org/resource/Gary_Oldman|http://dbpedia.org/resource/Jack_Black|http://dbpedia.org/resource/Jackie_Chan|http://dbpedia.org/resource/James_Hong|http://dbpedia.org/resource/Jean-Claude_Van_Damme|http://dbpedia.org/resource/Lucy_Liu|http://dbpedia.org/resource/Michelle_Yeoh|http://dbpedia.org/resource/Seth_Rogen|http://dbpedia.org/resource/Victor_Garber"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Martial_arts_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Kung Fu Panda 2 is a 2011 3D American computer-animated comedy-drama martial arts film, directed by Jennifer Yuh Nelson, produced by DreamWorks Animation, and distributed by Paramount Pictures. It is the sequel to the 2008 film Kung Fu Panda and the second installment in the Kung Fu Panda franchise. Jack Black, Angelina Jolie, Dustin Hoffman, Seth Rogen, Lucy Liu, David Cross, James Hong, and Jackie Chan reprise their character roles from the original film joined by Gary Oldman, Michelle Yeoh and Danny McBride. In the film, Po and the Furious Five battle an evil peacock named Lord Shen who has a powerful weapon that he plans to conquer China with. However Po discovers a terrifying secret about his past in the process. The film was released in theatres May 26, 2011 in Real D 3D and Digital 3D. Kung Fu Panda 2 was the highest grossing animated feature film of the year. The film was nominated for the 2011 Academy Award for Best Animated Feature at the 84th Academy Awards but lost to Rango. A sequel, titled Kung Fu Panda 3, and directed by Jennifer Yuh Nelson and Alessandro Carloni, was released on January 29, 2016."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Behind_the_Mask:_The_Rise_of_Leslie_Vernon"}, "Title": {"type": "literal", "value": "Behind the Mask: The Rise of Leslie Vernon"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Scott_Glosserman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Angela_Goethals|http://dbpedia.org/resource/Kate_Lang_Johnson|http://dbpedia.org/resource/Nathan_Baesel|http://dbpedia.org/resource/Robert_Englund|http://dbpedia.org/resource/Scott_Wilson_(actor)|http://dbpedia.org/resource/Zelda_Rubinstein"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Behind the Mask: The Rise of Leslie Vernon is a 2006 American mockumentary black comedy horror film directed by Scott Glosserman. It stars Nathan Baesel, Angela Goethals and Robert Englund. Although largely filmed in Oregon, the film takes place in a small town in Maryland, and follows a journalist and her film crew that is documenting an aspiring serial killer who models himself according to slasher film conventions. The film is an homage to the slasher film genre and features cameos from several veteran horror actors, including Robert Englund, Zelda Rubinstein, and Kane Hodder. The film premiered at the 2006 South by Southwest film festival and was shown at several other festivals. It received a limited release in the United States on March 16, 2007."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Anchor_Bay_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/House_of_the_Damned_(1996_film)"}, "Title": {"type": "literal", "value": "House of the Damned"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sean_Weathers"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Valerie_Alexander"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:Zombie_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "72"}, "Description": {"type": "literal", "value": "House of the Damned is a 1996 American zombie horror comedy film that was written and directed by Sean Weathers. It was first released on August 20, 1996 through Full Circle Filmworks, but was re-released in 2011 through Music Video Distributors (MVD). The film is Weathers' first film and was dedicated to his best friend and script supervisor Jahvaughn Lambert, who committed suicide before the film was finished editing."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Full_Circle_Filmworks"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Duff"}, "Title": {"type": "literal", "value": "The Duff"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ari_Sandel"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bella_Thorne|http://dbpedia.org/resource/Bianca_A._Santos|http://dbpedia.org/resource/Mae_Whitman|http://dbpedia.org/resource/Nick_Eversman|http://dbpedia.org/resource/Robbie_Amell|http://dbpedia.org/resource/Skyler_Samuels"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "The Duff (stylized as The DUFF) is a 2015 American teen comedy film directed by Ari Sandel and written by Josh A. Cagan, based on the novel of the same name by Kody Keplinger with music by Dominic Lewis and produced by Susan Cartsonis, McG and Mary Viola. The film stars Mae Whitman, Robbie Amell, Bella Thorne, Nick Eversman, Skyler Samuels, Bianca A. Santos, Allison Janney, and Ken Jeong. The film was distributed by Lionsgate and CBS Films and co-produced by Vast Entertainment, CBS Films and Wonderland Sound and Vision. The film was released on February 20, 2015, by Lionsgate and CBS Films. It is the first film for which Lionsgate took over CBS Films' distribution functions."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/CBS_Films|http://dbpedia.org/resource/Lions_Gate_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Mirage_(2015_film)"}, "Title": {"type": "literal", "value": "Le Mirage"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ricardo_Trogi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Louis_Morissette"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Canadian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Le Mirage is a Canadian comedy-drama film from Quebec, released in 2015. Written by Louis Morissette and directed by Ricardo Trogi, the film marked Trogi's first time directing a screenplay he had not written himself. The film stars Morissette as Patrick Lupien, an owner of a sporting goods store who is becoming dissatisfied with the empty consumerism of his day-to-day life and the loss of emotional and sexual intimacy in his marriage to Isabelle (Julie Perreault). Critics compared the film's themes and plot to both The Decline of the American Empire and American Beauty. The film was the second-highest-grossing Quebec film of 2015, after Snowtime!"}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Girlfriend's_Day"}, "Title": {"type": "literal", "value": "Girlfriend's Day"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Stephenson_(filmmaker)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amber_Tamblyn|http://dbpedia.org/resource/Bob_Odenkirk"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Girlfriend's Day is an upcoming American comedy-drama film directed by Michael Stephenson and written by Bob Odenkirk, Philip Zlotorynski, and Eric Hoffman. The film stars Odenkirk and Amber Tamblyn."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Netflix"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/CKY_(video_series)"}, "Title": {"type": "literal", "value": "CKY|CKY (video series)|CKY2K|CKY3|CKY4: The Latest & Greatest"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bam_Margera|http://dbpedia.org/resource/Brandon_DiCamillo|http://dbpedia.org/resource/Joe_Frantz|http://dbpedia.org/resource/Ryan_Gee"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bam_Margera|http://dbpedia.org/resource/Brandon_DiCamillo|http://dbpedia.org/resource/Brandon_Novak|http://dbpedia.org/resource/CKY_Crew|http://dbpedia.org/resource/Chad_Ginsburg|http://dbpedia.org/resource/Deron_Miller|http://dbpedia.org/resource/Jess_Margera|http://dbpedia.org/resource/Raab_Himself|http://dbpedia.org/resource/Rake_Yohn|http://dbpedia.org/resource/Ryan_Dunn"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Comedy_films_by_series"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100|44|45"}, "Description": {"type": "literal", "value": "The CKY video series were a series of videos produced by Bam Margera and Brandon DiCamillo and other residents of West Chester, Pennsylvania. Four videos were released, Landspeed presents: CKY (later called CKY), CKY2K, CKY 3, and CKY4: The Latest & Greatest. There is also a CKY \"documentary\" DVD, which is a supplemental item in the hard-to-find CKY \"Box Set,\" as well as two \"CKY Trilogy\" sets, both of which are compilation DVDs featuring scenes from the previous CKY DVDs. The videos were named after Bam Margera's brother Jess Margera and his band CKY (with Deron Miller and Chad Ginsburg). \"CKY\" stands for \"Camp Kill Yourself\". The videos feature Bam Margera, Brandon DiCamillo, their friends and Bam's relatives performing various stunts and pranks, interspersed with skating and prank footage of Bam and other pros. A trademark of the skating footage was to show unsuccessful trick attempts immediately followed by the same skater pulling the trick off. CKY started when Bam and his friends were in the same Graphics Arts class at school in West Chester, Pennsylvania. During class, they would go out to a field and film skits, eventually being compiled into the CKY series. In a 2002 interview Bam Margera said that more than 400,000 copies of the CKY series have been sold."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Landspeed|http://dbpedia.org/resource/Slam_Films|http://dbpedia.org/resource/Ventura_Distribution"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/A_Fistful_of_Fingers"}, "Title": {"type": "literal", "value": "A Fistful of Fingers"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Edgar_Wright"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films|http://dbpedia.org/resource/Category:Western_(genre)_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "78"}, "Description": {"type": "literal", "value": "A Fistful of Fingers is a 1995 British film written and directed by Edgar Wright. It is a homonymous remake of an earlier, and even lower-budget, movie by Wright and starring Graham Low which had been made while they were still at school. The original Fistful of Fingers was never picked up by a distributor, but did receive enough local attention - along with his other school-era spoofs such as \"Carbolic Soap\", \"The Unparkables\" and \"Rolf Harris Saves the World\" - for Wright to win funding for the 1994 remake."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Don_Peyote"}, "Title": {"type": "literal", "value": "Don Peyote"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dan_Fogler"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Annabella_Sciorra|http://dbpedia.org/resource/Jay_Baruchel|http://dbpedia.org/resource/Josh_Duhamel|http://dbpedia.org/resource/Wallace_Shawn"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "Don Peyote is a 2014 American comedy film written and directed by Dan Fogler and Michael Canzoniero. It stars Fogler as a slacker who has a spiritual awakening and becomes obsessed with conspiracy theories."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Scouts_Guide_to_the_Zombie_Apocalypse"}, "Title": {"type": "literal", "value": "Scouts Guide to the Zombie Apocalypse"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Christopher_B._Landon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/David_Koechner|http://dbpedia.org/resource/Logan_Miller|http://dbpedia.org/resource/Sarah_Dumont|http://dbpedia.org/resource/Tye_Sheridan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:Zombie_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Scouts Guide to the Zombie Apocalypse is a 2015 American horror comedy film directed by Christopher B. Landon and written by Landon, Carrie Evans, Emi Mochizuki and Lona Williams. The film stars Tye Sheridan, Logan Miller, Joey Morgan, Sarah Dumont and David Koechner. Principal photography began on May 8, 2014 in Los Angeles, and it was released on October 30, 2015 by Paramount Pictures."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sleepover_(film)"}, "Title": {"type": "literal", "value": "Sleepover"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Joe_Nussbaum"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alexa_Vega|http://dbpedia.org/resource/Jane_Lynch|http://dbpedia.org/resource/Kallie_Flynn_Childress|http://dbpedia.org/resource/Mika_Boorem|http://dbpedia.org/resource/Sara_Paxton|http://dbpedia.org/resource/Scout_Taylor-Compton|http://dbpedia.org/resource/Sean_Faris|http://dbpedia.org/resource/Steve_Carell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Sleepover is a 2004 American teen film directed by Joe Nussbaum and starring Alexa Vega, Sara Paxton, Mika Boorem, Scout Taylor-Compton, Kallie Flynn Childress, Sean Faris, Steve Carell, Jane Lynch, Sam Huntington, Brie Larson and Evan Peters."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Metro-Goldwyn-Mayer"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Identity_Thief"}, "Title": {"type": "literal", "value": "Identity Thief"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Seth_Gordon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jason_Bateman|http://dbpedia.org/resource/Melissa_McCarthy"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "Identity Thief is a 2013 American comedy film directed by Seth Gordon, written by Craig Mazin, and starring Jason Bateman and Melissa McCarthy. The film tells a story about a man (Bateman) whose identity is stolen by a woman (McCarthy). Despite being a commercial success, grossing over $170 million worldwide on a $35 million budget, the film received generally negative reviews from critics."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Aggregate_Films|http://dbpedia.org/resource/Relativity_Media|http://dbpedia.org/resource/Scott_Stuber"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Biriyani_(film)"}, "Title": {"type": "literal", "value": "Biriyani"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Venkat_Prabhu"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hansika_Motwani|http://dbpedia.org/resource/Jayaprakash|http://dbpedia.org/resource/Karthi|http://dbpedia.org/resource/Madhumitha|http://dbpedia.org/resource/Mandy_Takhar|http://dbpedia.org/resource/Premgi_Amaren|http://dbpedia.org/resource/Ramki_(actor)|http://dbpedia.org/resource/Sampath_Raj|http://dbpedia.org/resource/Uma_Riyaz_Khan|http://dbpedia.org/resource/Vijayalakshmi_(Tamil_actress)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_black_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "150"}, "Description": {"type": "literal", "value": "Biriyani is a 2013 Indian Tamil crime-comedy film written and directed by Venkat Prabhu. Produced by Studio Green, it features Karthi and Hansika Motwani in the lead roles alongside Ramki, Premgi Amaren, Nithin Sathya, Madhumitha and Mandy Takhar. Yuvan Shankar Raja composed the score and soundtrack of Biriyani, which marks his 100th film, while Sakthi Saravanan and Praveen-Srikanth handled cinematography and editing, respectively. Filming started in November 2012, lasted for over nine months and took place primarily at Chennai, Hyderabad and Ambur. The Movie heavily Inspired by the Hollywood movie The Hangover the story and the making is similar for both the films. The film was released on 20 December 2013. The movie is inspired by the 2004 movie Harold & Kumar Go to White Castle"}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Get_Hard"}, "Title": {"type": "literal", "value": "Get Hard"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Etan_Cohen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alison_Brie|http://dbpedia.org/resource/Craig_T._Nelson|http://dbpedia.org/resource/Edwina_Findley|http://dbpedia.org/resource/Greg_Germann|http://dbpedia.org/resource/Kevin_Hart|http://dbpedia.org/resource/T.I."}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Get Hard is a 2015 American comedy film directed by Etan Cohen (in his directorial debut) and written by Cohen, Jay Martel and Ian Roberts. The film stars Will Ferrell, Kevin Hart, Alison Brie, Edwina Findley, T.I. and Craig T. Nelson. The film was released on March 27, 2015 to negative reviews but was a financial success, grossing over $111 million."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Little_Death_(2014_film)"}, "Title": {"type": "literal", "value": "The Little Death"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Josh_Lawson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bojana_Novakovic|http://dbpedia.org/resource/Damon_Herriman"}, "Published": {"type": "literal", "value": "2014-06-26"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Australian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "The Little Death (known as A Funny Kind of Love in the UK) is a 2014 Australian comedy film written and directed by Josh Lawson. It deals with the secret lives of five suburban couples living in Sydney revealing both the fetishes and the repercussions that come with sharing them."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Once_Upon_a_Time_(2008_film)"}, "Title": {"type": "literal", "value": "Once Upon a Time"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jeong_Yong-ki"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Lee_Bo-young|http://dbpedia.org/resource/Park_Yong-woo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Adventure_comedy_films|http://dbpedia.org/resource/Category:South_Korean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "Once Upon a Time (Hangul: \uc6d0\uc2a4 \uc5b4\ud3f0 \uc5b4 \ud0c0\uc784; RR: Wonseu-eopon-eo-taim) is a 2008 South Korean film, directed by Jeong Yong-ki and adapted from a screenplay by Cheon Seong-il. The film is a heist comedy film set in 1940s Korea, and stars Park Yong-woo and Lee Bo-young as a con artist and a jazz singer, respectively, who each plot to steal a valuable diamond from the Japanese authorities. Once Upon a Time was the first major investment by SK Telecom's film division, established late 2007, and was released in South Korea on January 30, 2008, under the company's CH Entertainment banner."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/SK_Telecom"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/So_It's_You"}, "Title": {"type": "literal", "value": "So It's You"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jun_Lana"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Carla_Abellana|http://dbpedia.org/resource/JC_de_Vera|http://dbpedia.org/resource/Tom_Rodriguez"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Philippine_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "So It's You is a 2014 Filipino romantic comedy film starring Carla Abellana, Tom Rodriguez and JC de Vera. It is written and directed by Jun Lana. It was released on May 7, 2014 by Regal Entertainment. The film is about a pair of broken-hearted people who meet and begin a relationship, but their painful pasts hang over their romance."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Regal_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/You_Shoot,_I_Shoot"}, "Title": {"type": "literal", "value": "You Shoot, I Shoot"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pang_Ho-cheung"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cheung_Tat-ming|http://dbpedia.org/resource/Eric_Kot"}, "Published": {"type": "literal", "value": "2001-08-16"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Black_comedy_films|http://dbpedia.org/resource/Category:Hong_Kong_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "You Shoot, I Shoot (\u8cb7\u5147\u62cd\u4eba) is a 2001 Hong Kong black comedy film produced, written and directed by Pang Ho-cheung and starring Eric Kot and Cheung Tat-ming."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Lifeguard"}, "Title": {"type": "literal", "value": "The Lifeguard"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Liz_W._Garcia"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/David_Lambert_(actor)|http://dbpedia.org/resource/Kristen_Bell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "The Lifeguard is a 2013 American drama produced, written, and directed by Liz W. Garcia, and starring Kristen Bell and David Lambert. The film was released via video on demand on July 30, 2013, and received a limited release in theaters on August 30."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Focus_Features|http://dbpedia.org/resource/Screen_Media_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Damsel_(2017_film)"}, "Title": {"type": "literal", "value": "Damsel"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_Zellner"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Mia_Wasikowska|http://dbpedia.org/resource/Robert_Pattinson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Damsel is an upcoming western comedy period film directed by David Zellner, and co-wrote by David Zellner and Nathan Zellner. It stars Robert Pattinson and Mia Wasikowska in lead roles."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Victory's_Short"}, "Title": {"type": "literal", "value": "Victory's Short"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mika'ela_Fisher"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Mika'ela_Fisher"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Black_comedy"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "15"}, "Description": {"type": "literal", "value": "Victory's Short ( La Victoire est de courte dur\u00e9e ) is a 2014 black comedy short film directed by Mika'ela Fisher  and co-directed by Benjamin Feitelson"}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bulletproof_Monk"}, "Title": {"type": "literal", "value": "Bulletproof Monk"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Paul_Hunter_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chow_Yun-fat|http://dbpedia.org/resource/Jaime_King|http://dbpedia.org/resource/Seann_William_Scott"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:Martial_arts_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "Bulletproof Monk is a 2003 American action comedy film directed by Paul Hunter in his directorial debut, and starring Chow Yun-fat, Seann William Scott, and Jaime King. The film is loosely based on the comic book by Michael Avon Oeming. The film was shot in Toronto and Hamilton, Canada, and other locations that resemble New York City."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Metro-Goldwyn-Mayer"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tiktik:_The_Aswang_Chronicles"}, "Title": {"type": "literal", "value": "Tiktik: The Aswang Chronicles"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Erik_Matti"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Philippine_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Tiktik: The Aswang Chronicles is a 2012 Filipino  action horror  comedy adventure film written and directed by Erik Matti.The film stars Dingdong Dantes, Lovi Poe, Joey Marquez, Janice de Belen and Roi Vinzon. Dingdong Dantes' company AgostoDos Pictures also served as one of the producers. The film is the first full-length Filipino film entirely shot on green screen chroma key. The film received mixed to positive reviews from critics who praised its visual effects while criticizing the plot. Tiktik: The Aswang Chronicles was followed up with a sequel in Kubot: The Aswang Chronicles 2 in 2014 which was also directed by Matti."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/GMA_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Fanboys_(film)"}, "Title": {"type": "literal", "value": "Fanboys"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kyle_Newman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Marquette|http://dbpedia.org/resource/Dan_Fogler|http://dbpedia.org/resource/Jay_Baruchel|http://dbpedia.org/resource/Kristen_Bell|http://dbpedia.org/resource/Sam_Huntington"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Fanboys is a 2009 comedy film directed by Kyle Newman and starring Sam Huntington, Chris Marquette, Dan Fogler, Jay Baruchel and Kristen Bell. It was released in the United States on February 6, 2009, and in Canada on April 3, 2009."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/The_Weinstein_Company|http://dbpedia.org/resource/Vivendi_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dope_(2015_film)"}, "Title": {"type": "literal", "value": "Dope"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rick_Famuyiwa"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/A$AP_Rocky|http://dbpedia.org/resource/Blake_Anderson|http://dbpedia.org/resource/Chanel_Iman|http://dbpedia.org/resource/Kiersey_Clemons|http://dbpedia.org/resource/Kimberly_Elise|http://dbpedia.org/resource/Shameik_Moore|http://dbpedia.org/resource/Tony_Revolori|http://dbpedia.org/resource/Tyga|http://dbpedia.org/resource/Zo\u00eb_Kravitz"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "Dope is a 2015 American crime comedy-drama film written and directed by Rick Famuyiwa and starring Shameik Moore, Tony Revolori, Kiersey Clemons, Blake Anderson, Zo\u00eb Kravitz, A$AP Rocky, and Chanel Iman. The film was produced by Forest Whitaker, executive produced by Pharrell Williams, and co-executive produced by Sean Combs.Dope debuted in the U.S. Dramatic Competition category at the 2015 Sundance Film Festival, which started on January 22, 2015 in Park City, Utah. Dope was initially released in North American theaters on June 19, 2015 by Open Road Films. and then re-released on September 4, 2015 during the Labor Day holiday weekend."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Open_Road_Films"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/I_am_OTHER|http://dbpedia.org/resource/Revolt_(TV_network)"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Three_for_the_Road"}, "Title": {"type": "literal", "value": "Three for the Road"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bill_L._Norton"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alan_Ruck|http://dbpedia.org/resource/Blair_Tefkin|http://dbpedia.org/resource/Charlie_Sheen|http://dbpedia.org/resource/Kerri_Green|http://dbpedia.org/resource/Sally_Kellerman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1980s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Three for the Road is a 1987 road trip themed comedy starring Charlie Sheen, Alan Ruck, Kerri Green, Sally Kellerman and Blair Tefkin."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/New_Century-Vista"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Happythankyoumoreplease"}, "Title": {"type": "literal", "value": "happythankyoumoreplease"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Josh_Radnor"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Josh_Radnor|http://dbpedia.org/resource/Kate_Mara|http://dbpedia.org/resource/Malin_\u00c5kerman|http://dbpedia.org/resource/Pablo_Schreiber|http://dbpedia.org/resource/Tony_Hale|http://dbpedia.org/resource/Zoe_Kazan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Happythankyoumoreplease is a 2010 comedy-drama film written and directed by Josh Radnor in his directorial debut. The film stars Radnor, Malin \u00c5kerman, Kate Mara, Zoe Kazan, Michael Algieri, Pablo Schreiber, and Tony Hale, and it tells the story of a group of young New Yorkers, struggling to balance love, friendship, and their encroaching adulthoods. happythankyoumoreplease premiered at the 26th Sundance Film Festival in 2010, where it won the Audience Award and was further nominated for the Grand Jury Prize. On March 4, 2011 it was released in theatres throughout Los Angeles and New York."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Anchor_Bay_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Life_of_the_Party_(2018_film)"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Falcone"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Debby_Ryan|http://dbpedia.org/resource/Gillian_Jacobs|http://dbpedia.org/resource/Jacki_Weaver|http://dbpedia.org/resource/Julie_Bowen|http://dbpedia.org/resource/Matt_Walsh_(comedian)|http://dbpedia.org/resource/Maya_Rudolph"}, "Published": {"type": "literal", "value": "2018-05-11"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Life of the Party is an upcoming comedy film directed by Ben Falcone and written by Falcone and Melissa McCarthy. The film stars McCarthy, Maya Rudolph, Molly Gordon, Julie Bowen, Gillian Jacobs, Debby Ryan, Matt Walsh and Jacki Weaver. Produced by On the Day, the film is scheduled to be released May 11, 2018, by Warner Bros. Pictures."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros._Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lost_in_Translation_(film)"}, "Title": {"type": "literal", "value": "Lost in Translation"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sofia_Coppola"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:Best_Musical_or_Comedy_Picture_Golden_Globe_winners|http://dbpedia.org/resource/Category:Films_featuring_a_Best_Musical_or_Comedy_Actor_Golden_Globe_winning_performance"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Lost in Translation is a 2003 American romantic comedy-drama film written and directed by Sofia Coppola. It was her second feature film after The Virgin Suicides (1999). It stars Bill Murray as aging actor Bob Harris, who befriends college graduate Charlotte (Scarlett Johansson) in a Tokyo hotel. Lost in Translation received critical acclaim and was nominated for four Academy Awards, including Best Picture, Best Actor for Bill Murray, and Best Director for Coppola; Coppola won for Best Original Screenplay. Murray and Johansson each won a BAFTA award for Best Actor in a Leading Role and Best Actress in a Leading Role respectively. The film was a commercial success, grossing $119 million on a budget of $4 million."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Educating_My_Father"}, "Title": {"type": "literal", "value": "Educating My Father"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Giorgos_Lazaridis|http://dbpedia.org/resource/Nikos_Tsiforos"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1950s_comedy_films|http://dbpedia.org/resource/Category:Greek_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "78"}, "Description": {"type": "literal", "value": "Educating My Father (Greek: O babas ekpaidevetai) is a 1953 Greek comedy film directed by Giorgos Lazaridis and Nikos Tsiforos and starring Petros Kyriakos, Sasa Dario and Giorgos Kabanellis."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Key_of_Life"}, "Title": {"type": "literal", "value": "Key of Life"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kenji_Uchida_(film_director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Masato_Sakai|http://dbpedia.org/resource/Ryoko_Hirosue|http://dbpedia.org/resource/Teruyuki_Kagawa"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Japanese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Key of Life (\u9375\u6ce5\u68d2\u306e\u30e1\u30bd\u30c3\u30c9 Kagi Dorob\u014d no Mesoddo, lit. \"(The/A) Key Thief's Method\") is a 2012 Japanese comedy film directed by Kenji Uchida. The film opened in Japan on September 15, 2012."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Caramel_(film)"}, "Title": {"type": "literal", "value": "Caramel"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nadine_Labaki"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adel_Karam|http://dbpedia.org/resource/Aziza_Semaan|http://dbpedia.org/resource/Dimitri_Staneofski|http://dbpedia.org/resource/Fadia_Stella|http://dbpedia.org/resource/Fatmeh_Safa|http://dbpedia.org/resource/Gis\u00e8le_Aouad|http://dbpedia.org/resource/Joanna_Moukarzel|http://dbpedia.org/resource/Nadine_Labaki|http://dbpedia.org/resource/Sihame_Haddad|http://dbpedia.org/resource/Yasmine_Al_Masri"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "Caramel (Arabic: \u0633\u0643\u0631 \u0628\u0646\u0627\u062a Sekkar banat\u200e\u200e) is a 2007 Lebanese film \u2014 the first feature film by Lebanese director-actress Nadine Labaki. The film premiered on May 20 at the 2007 Cannes Film Festival, in the Directors' Fortnight section.It ran for the Cam\u00e9ra d'Or. Caramel was distributed in over 40 countries, easily becoming the most internationally acclaimed and exposed Lebanese film to date. The story focuses on the lives of five Lebanese women dealing with issues such as forbidden love, binding traditions, repressed sexuality, the struggle to accept the natural process of age, and duty versus desire. Labaki's film is unique for not showcasing a war-ravaged Beirut but rather a warm and inviting locale where people deal with universal issues. The title Caramel refers to an epilation method that consists of heating sugar, water and lemon juice. Labaki also symbolically implies the \"idea of sweet and salt, sweet and sour\" and showcases that everyday relations can sometimes be sticky but ultimately the sisterhood shared between the central female characters prevails."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Europa_Corp."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dead_Snow:_Red_vs._Dead"}, "Title": {"type": "literal", "value": "Dead Snow: Red vs. Dead"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tommy_Wirkola"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kristoffer_Joner|http://dbpedia.org/resource/Martin_Starr"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:Norwegian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Dead Snow: Red vs. Dead (Norwegian: D\u00f8d Sn\u00f8 2) is a 2014 Icelandic-Norwegian horror comedy film directed by Tommy Wirkola. It is a sequel to Wirkola's 2009 film Dead Snow. The film was released in Norway on 12 February and in the United States on 10 October 2014. Vegar Hoel reprises his role from the first film as Martin, the sole survivor of an attack by Nazi zombies led by the evil Herzog (\u00d8rjan Gamst). Filming took place in Iceland."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Aaranya_Kaandam"}, "Title": {"type": "literal", "value": "Aaranya Kaandam"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Thiagarajan_Kumararaja"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Guru_Somasundaram|http://dbpedia.org/resource/Jackie_Shroff|http://dbpedia.org/resource/Ravi_Krishna|http://dbpedia.org/resource/Sampath_Raj"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Indian_black_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "123"}, "Description": {"type": "literal", "value": "Aaranya Kaandam (Tamil: \u0b86\u0bb0\u0ba3\u0bcd\u0baf \u0b95\u0bbe\u0ba3\u0bcd\u0b9f\u0bae\u0bcd; English: Jungle Chapter; English title: Anima and Persona) is a 2011 Indian Tamil neo-noir gangster film written and directed by newcomer Thiagarajan Kumararaja. It is supposedly the first neo-noir film in Tamil cinema. The story takes place in a day in the lives of the six protagonists, played by Jackie Shroff, Ravi Krishna, Sampath Raj and newcomers Yasmin Ponnappa, Somasundaram and Master Vasanth. Produced by S. P. B. Charan's Capital Film Works, the film features musical score by Yuvan Shankar Raja and cinematography by P. S. Vinod and editing handled by the duo Praveen K. L. and N. B. Srikanth. The film was launched on 18 December 2008, with its principal photography being completed by late 2009, which was followed by a lengthy post-production phase. It ran into difficulties as the regional censor board in Chennai raised objection against the film, giving it an adult rating besides demanding 52 cuts. After screening at and becoming approved by the Tribunal in Delhi, the film was released worldwide on 10 June 2011, to high critical acclaim. It had its world premi\u00e8re on 30 October 2010 at the South Asian International Film Festival, where it won the Grand Jury Award for Best Film. Subsequently, the film was honoured with two National Film Awards for Best Editing and Best First Film of a Director category respectively."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Four_Friends_(2010_film)"}, "Title": {"type": "literal", "value": "Four Friends"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Saji_Surendran"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jayaram|http://dbpedia.org/resource/Jayasurya|http://dbpedia.org/resource/Kunchacko_Boban|http://dbpedia.org/resource/Meera_Jasmine"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Four Friends is a 2010 Malayalam film directed by Saji Surendran. It stars Jayaram with Kunchacko Boban, Jayasurya, Meera Jasmine, features Kamal Hassan in a cameo role after a hiatus of 21 years. The film was released on 28 October 2010. The film was a big letdown. This film came after the huge success Saji Surendran's previous film Happy husbands. But it failed to recreate the magic in the boxoffice. And it was declared as a flop in the box office..The film is inspired by the 2007 American film The Bucket List. It was dubbed into Tamil as Anbulla Kamal as Tamil actor Kamal Haasan plays a guest role in the film."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ramaiya_Vastavaiya"}, "Title": {"type": "literal", "value": "Ramaiya Vastavaiya"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Prabhu_Deva"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Girish_Kumar|http://dbpedia.org/resource/Shruti_Haasan|http://dbpedia.org/resource/Sonu_Sood"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_action_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "148"}, "Description": {"type": "literal", "value": "Ramaiya Vastavaiya (Telugu: Ramayya will come ; name of a popular Telugu folk song adopted by a 1950s Hindi film with same name and again re-adopted in 2013) is a 2013 Bollywood action romantic drama film directed by Prabhudheva and produced by Kumar S. Taurani, under Tips. Film stars debutant Girish Kumar alongside Shruti Haasan in lead roles. The theatrical trailer of Ramaiya Vastavaiya was uploaded on 25 April 2013, whilst the film released on 19 July 2013. It is a remake of the Telugu film Nuvvostanante Nenoddantana (2005), starring Siddharth and Trisha Krishnan."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Tips_Music_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lost_in_Beijing"}, "Title": {"type": "literal", "value": "Lost in Beijing"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Li_Yu_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Elaine_Jin|http://dbpedia.org/resource/Fan_Bingbing|http://dbpedia.org/resource/Tong_Dawei|http://dbpedia.org/resource/Tony_Leung_Ka-fai"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "Lost in Beijing (Chinese: \u82f9\u679c; literally: \"apple\") is a 2007 Chinese film directed by Li Yu and starring Tony Leung Ka-fai, Fan Bingbing, Tong Dawei, and Elaine Jin. It had its international premiere at the 2007 Berlin International Film Festival on February 16, 2007. Lost in Beijing is director Li Yu's third feature film after the lesbian-themed Fish and Elephant (2002) and the drama Dam Street (2005). Lost in Beijing was produced by Laurel Films, a small independent production company owned by Fang Li and based in Beijing, and is being released internationally by the French company Films Distribution. Distribution in the United States was picked up by New Yorker Films. Like many films that touch on the underbelly of Chinese society (see for example, Li Yang's Blind Shaft or Blind Mountain, or Wang Xiaoshuai's Beijing Bicycle), Li Yu's tale of prostitution, blackmail, and rape in modern-day Beijing has been plagued with censorship problems. The film also found controversy for what some critics described as \"thumb-nosing gratuitous sex scenes.\" After nearly a year of delays, the film was finally banned by Chinese authorities in January 2008."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Films_Distribution"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Take_Me_Home_(2011_film)"}, "Title": {"type": "literal", "value": "Take Me Home"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sam_Jaeger"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Sam_Jaeger"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Take Me Home is a 2011 American romantic comedy film directed by and starring Sam Jaeger. The film also stars his wife Amber Jaeger, Lin Shaye, and Victor Garber. It premiered on April 19, 2011 at the Nashville Film Festival. Take Me Home was released to DVD on May 29, 2012."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Moms_(film)"}, "Title": {"type": "literal", "value": "Moms"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dmitri_Dyuzhev|http://dbpedia.org/resource/Eldar_Salavatov|http://dbpedia.org/resource/Karen_Oganesyan|http://dbpedia.org/resource/Sarik_Andreasyan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "Moms (Russian: Mamy) is a 2012 Russian anthology film. It consists of eight short films which are set on 8 March, the International Women's Day."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tripping_Forward"}, "Title": {"type": "literal", "value": "Tripping Forward"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Marcus_Nash"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amber_Benson|http://dbpedia.org/resource/Chris_Fogleman|http://dbpedia.org/resource/William_Gregory_Lee"}, "Published": {"type": "literal", "value": "2009-04-26"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Tripping Forward is a 2009 comedy film starring Chris Fogleman and directed by Marcus Nash from a screenplay by Fogleman and Nash. It also stars William Gregory Lee and Amber Benson and features Ed Begley, Jr., Angela Kinsey and actress/model Sung Hi-Lee."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Wendell_Baker_Story"}, "Title": {"type": "literal", "value": "The Wendell Baker Story"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andrew_Wilson_(actor)|http://dbpedia.org/resource/Luke_Wilson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Eddie_Griffin|http://dbpedia.org/resource/Eva_Mendes|http://dbpedia.org/resource/Harry_Dean_Stanton|http://dbpedia.org/resource/Kris_Kristofferson|http://dbpedia.org/resource/Luke_Wilson|http://dbpedia.org/resource/Owen_Wilson|http://dbpedia.org/resource/Seymour_Cassel|http://dbpedia.org/resource/Will_Ferrell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "The Wendell Baker Story is a 2005 American film. It is the first film directed by Luke Wilson and his eldest brother Andrew Wilson. It premiered at the 2005 South by Southwest Film Festival in Austin, Texas, in March 2005. The film stars Luke Wilson, along with his brother Owen."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Wendell_Distribution_Inc."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Powerpuff_Girls_Movie"}, "Title": {"type": "literal", "value": "The Powerpuff Girls Movie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Craig_McCracken"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cathy_Cavadini|http://dbpedia.org/resource/Elizabeth_Daily|http://dbpedia.org/resource/Roger_L._Jackson|http://dbpedia.org/resource/Tara_Strong|http://dbpedia.org/resource/Tom_Kane|http://dbpedia.org/resource/Tom_Kenny"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "75"}, "Description": {"type": "literal", "value": "The Powerpuff Girls Movie is a 2002 American animated superhero action-adventure comedy-drama film based on the Cartoon Network animated television series of the same name. Directed by series creator Craig McCracken, and produced by Cartoon Network Studios and distributed by Warner Bros. Pictures, the film was released in the United States on July 3, 2002. It is a prequel to the series that tells the origin story of how the Powerpuff Girls were created, and how they came to be the defenders of Townsville. In theaters, a Dexter's Laboratory short entitled \"Chicken Scratch\" was shown prior to the film, which later aired as part of the series' fourth season. The film made its network debut on Cartoon Network on May 23, 2003 and on March 5, 2004 on Toonami."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/You're_My_Boss"}, "Title": {"type": "literal", "value": "You're My Boss"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Antoinette_Jadaone"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Coco_Martin|http://dbpedia.org/resource/Toni_Gonzaga"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Philippine_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "117"}, "Description": {"type": "literal", "value": "You're My Boss is a 2015 Filipino romantic comedy film written and directed by Antoinette Jadaone starring Toni Gonzaga and Coco Martin. It was released on April 4, 2015, by Star Cinema."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Star_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dilwale_Dulhania_Le_Jayenge"}, "Title": {"type": "literal", "value": "Dilwale Dulhania Le Jayenge"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Aditya_Chopra"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kajol|http://dbpedia.org/resource/Shah_Rukh_Khan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "189"}, "Description": {"type": "literal", "value": "Dilwale Dulhania Le Jayenge (English: The Big-Hearted Will Take Away the Bride), also known by the initialism DDLJ, is an Indian romance film written and directed by Aditya Chopra and produced by Yash Chopra. Released on 20 October 1995, the film stars Shah Rukh Khan and Kajol. The plot revolves around Raj and Simran, two young non-resident Indians, who fall in love during a vacation through Europe with their friends. Raj tries to win over Simran's family so the couple can marry, but Simran's father has long since promised her hand to his friend's son. The film was shot in India, London and Switzerland, from September 1994 to August 1995. Earning \u20b91.06 billion (valued at about US$32,766,000 in 1995) in India and \u20b9160 million (valued at about US$4,946,000 in 1995) overseas, Dilwale Dulhania Le Jayenge became the highest grossing Bollywood film of the year, and one of the most successful Indian films of all time. It won 10 Filmfare Awards, the most for a single film at that time, and won the National Film Award for Best Popular Film Providing Wholesome Entertainment. Its soundtrack album became one of the most popular of the 1990s. Many critics praised the film, which connected with different segments of society by simultaneously promoting strong family values and the following of one's own heart. Its success led other film makers to target the non-resident Indian audience, which was deemed more lucrative for them. It spawned many imitations of its story and style, and homages to specific scenes. Dilwale Dulhania Le Jayenge was one of only three Hindi films in the reference book 1001 Movies You Must See Before You Die, and was placed twelfth on the British Film Institute's list of top Indian films of all time. It is the longest-running film in the history of Indian cinema. As of 2016, over 20 years after its first release, it is still being shown at the Maratha Mandir theatre in Mumbai."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sophie's_Misfortunes_(2016_film)"}, "Title": {"type": "literal", "value": "Sophie's Misfortunes"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Christophe_Honor\u00e9"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ana\u00efs_Demoustier|http://dbpedia.org/resource/Golshifteh_Farahani|http://dbpedia.org/resource/Muriel_Robin"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "Sophie's Misfortunes (French: Les Malheurs de Sophie) is a 2016 French film written and directed by Christophe Honor\u00e9."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_One_I_Love_(film)"}, "Title": {"type": "literal", "value": "The One I Love"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Charlie_McDowell"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Elisabeth_Moss|http://dbpedia.org/resource/Mark_Duplass|http://dbpedia.org/resource/Ted_Danson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "The One I Love is a 2014 American psychological thriller, directed by Charlie McDowell and written by Justin Lader, the film stars Mark Duplass and Elisabeth Moss. The film had its world premiere at 2014 Sundance Film Festival on January 21, 2014. It was released on August 1, 2014 through video on demand prior to a limited release on August 22, 2014, by RADiUS-TWC."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/The_Weinstein_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Being_Tom_Cruise"}, "Title": {"type": "literal", "value": "Being Tom Cruise"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Elliot_Hegarty"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007-08-02"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Channel_4_comedy"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "\"The Church of Scientology Presents: Being Tom Cruise, Why Scientology Isn't In Any Way Mental\" is a satirical spoof documentary from the series Star Stories, parodying the life of Tom Cruise and his relationship with the Church of Scientology. It is episode 2 of the second series of Star Stories, and first aired on Channel 4 on 2 August 2007. The show recounts Cruise's time with a group of some of his early acting friends. After filming Top Gun, Cruise (Kevin Bishop) is introduced to Scientology by John Travolta (Steve Edge), who convinces him to join the organization by smashing Cruise over the head with a shovel. He meets Nicole Kidman (Dolly Wells) and they start a relationship. After dating Pen\u00e9lope Cruz, Cruise is introduced to Katie Holmes (Laura Patch) by Travolta. Holmes agrees to marry Cruise, and the program ends with a voiceover asking the viewer to visit a Scientology website and purchase expensive products. The program received positive reception, and The Guardian and the Evening Times highlighted it as the \"pick of the day\". The Daily Mirror described it as a \"brilliant spoof\", and The Sunday Times characterized the show as \"Comedy so broad it barely fits on the screen, it is hard not to be amused\". The Herald Sun called it a \"ruthless but spot-on parody\"."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/You_Again"}, "Title": {"type": "literal", "value": "You Again"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Fickman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Betty_White|http://dbpedia.org/resource/Jamie_Lee_Curtis|http://dbpedia.org/resource/Kristen_Bell|http://dbpedia.org/resource/Odette_Annable|http://dbpedia.org/resource/Sigourney_Weaver"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "You Again is a 2010 American family comedy film produced (with John J. Strauss and Eric Tannenbaum) and directed by Andy Fickman with music by Nathan Wang and written by Moe Jelline. The film stars Kristen Bell, Jamie Lee Curtis, Sigourney Weaver, Odette Yustman, Billy Unger, Kristin Chenoweth, Victor Garber, Meagan Holder, James Wolk and Betty White. The film was released on September 24, 2010 by Touchstone Pictures. You Again has received negative reviews from critics and it earned $32 million on a $20 million budget. It was the last solo Touchstone Pictures project before working on subsequent films in association with Miramax, DreamWorks, and Lucasfilm. As a result of this, Touchstone signed a deal with DreamWorks Pictures in 2011 starting with I Am Number Four."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Butcher,_the_Chef_and_the_Swordsman"}, "Title": {"type": "literal", "value": "The Butcher, the Chef and the Swordsman"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Wuershan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ashton_Xu|http://dbpedia.org/resource/Liu_Xiaoye|http://dbpedia.org/resource/Masanobu_Ando|http://dbpedia.org/resource/You_Benchang|http://dbpedia.org/resource/Zhang_Yuqi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Butcher, the Chef and the Swordsman (simplified Chinese: \u5200\u89c1\u7b11; traditional Chinese: \u5200\u898b\u7b11; pinyin: D\u0101o Ji\u00e0n Xi\u00e0o) is a 2010 action comedy film directed by Wuershan. The film is a connection of three inter-twining stories.The first about a butcher who takes revenge on a swordsman for humiliation, the second is about a chef who has his apprentice makes an eight-course meal for the powerful Eunuch Liu. The final story is about a warrior with a powerful sword melted from other champion swords, but the sword does not work as expected during combat. The film was a feature debut of director Wuershan. It premiered at the Toronto International Film Festival where it received a mixed critical reception."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bolt_(2008_film)"}, "Title": {"type": "literal", "value": "Bolt"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Byron_Howard|http://dbpedia.org/resource/Chris_Williams_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/John_Travolta|http://dbpedia.org/resource/Mark_Walton_(story_artist)|http://dbpedia.org/resource/Miley_Cyrus|http://dbpedia.org/resource/Susie_Essman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Animated_comedy_films|http://dbpedia.org/resource/Category:Fantasy-comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "Bolt is a 2008 American computer animated road-comedy-adventure film produced by Walt Disney Animation Studios and released by Walt Disney Pictures. It is the studio's 48th animated feature. Directed by Chris Williams and Byron Howard, the film stars the voices of John Travolta, Miley Cyrus, Malcolm McDowell, Diedrich Bader, Nick Swardson, Greg Germann, Susie Essman and Mark Walton. The film's plot centers on a small white dog named Bolt who, having spent his entire life on the set of a television series, thinks that he has super powers. When he believes that his human, Penny, has been kidnapped, he sets out on a cross-country journey to \"rescue\" her. Despite a relatively marginal box-office performance, Bolt received a strong positive critical reception and is renowned for playing an important role in instigating what is widely referred to as the Disney Revival, as well as setting the studio in a new creative direction that would lead to other critically acclaimed features such as Tangled (2010) and Frozen (2013). Bolt was also Disney Animation's first feature film to be produced under the complete creative guidance of John Lasseter, as well as the first computer-animated feature film to implement non-photorealistic rendering. The film was nominated for a series of awards, such as the Academy Award for Best Animated Feature, which it lost to another Walt Disney Pictures release, Pixar Animation Studios' WALL-E."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Desires_of_the_Heart"}, "Title": {"type": "literal", "value": "Desires of the Heart"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ma_Liwen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Fan_Bingbing|http://dbpedia.org/resource/Ge_You|http://dbpedia.org/resource/Vivian_Wu"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Chinese_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "Desires of the Heart is a 2008 Chinese romantic comedy film directed and written by Ma Liwen, starring Vivian Wu, Ge You, Fan Bingbing, and Cong Shan. The film was first released in China on 20 November 2008, and grossed over \uffe520 million."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Cornered!_(film)"}, "Title": {"type": "literal", "value": "Cornered!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Daniel_Maze"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ellia_English|http://dbpedia.org/resource/James_Duval|http://dbpedia.org/resource/Steve_Guttenberg"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "Cornered! is a 2009 horror film written and directed by Daniel Maze, and co-written by Darrin Grimwood."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/REC_3:_G\u00e9nesis"}, "Title": {"type": "literal", "value": "REC 3: G\u00e9nesis"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Paco_Plaza"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Leticia_Dolera"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "81"}, "Description": {"type": "literal", "value": "REC 3: G\u00e9nesis (stylised as [REC]\u00b3: G\u00e9nesis) is a 2012 Spanish horror film directed by Paco Plaza. This film is the third installment of the REC series. It is a parallel sequel to the first two films, taking place before, during and after the films. It was released in cinemas in Spain on 30 March 2012. with more international premiere dates that followed. The world premiere took place in Paris at the Grand Rex on 7 March, followed by midnight screenings at the South By Southwest Film Festival on 9 March. In the U.S., it was released via video on demand on 3 August and was released theatrically on 7 September 2012 in select cities. Sony Entertainment released the DVD on 6 November 2012. It begins in the series' trademark found footage format but switches to traditional cinematography early on. The film was followed by a fourth installment, REC 4: Apocalypse, in October 2014."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Filmax_International|http://dbpedia.org/resource/Magnolia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Brindavanam_(film)"}, "Title": {"type": "literal", "value": "Brindavanam"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Vamsi_Paidipally"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kajal_Aggarwal|http://dbpedia.org/resource/N._T._Rama_Rao_Jr.|http://dbpedia.org/resource/Prakash_Raj|http://dbpedia.org/resource/Samantha_Ruth_Prabhu|http://dbpedia.org/resource/Srihari"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "170"}, "Description": {"type": "literal", "value": "Brindavanam is a 2010 Telugu romantic comedy film starring N. T. Rama Rao Jr., Kajal Aggarwal and Samantha Ruth Prabhu in the lead roles while actors Kota Srinivasa Rao, Prakash Raj and Srihari play other pivotal roles. The film was produced by Dil Raju on Sri Venkateswara Creations banner. It was written by Koratala Siva and directed by Vamsi Paidipally, who directed Munna, also produced by Dil Raju. S. Thaman composed the music while Chota K. Naidu and Marthand K. Venkatesh handled the cinematography and editing of the film respectively. A. S. Prakash and Anand Sai were the art directors of the film while Ram Lakshman composed the stunt and fight sequences of the film. The film released on 14 October 2010 and was a critical and commercial success. It was first remade in Odia as Love Master starring Babushaan & Riya Dey. In Kannada it was Remade as Brindavana starring Darshan, Karthika Nair and Milana Nagaraj in the lead roles and directed by K. Madesh which enjoyed similar success. It was remade in Bengali as Khoka 420 with Dev, Nusrat Jahan and Subhashree Ganguly playing the lead roles and directed by Rajib Biswas. It has been dubbed into Hindi as The Super Khiladi and into Tamil under the same name and later this movie dubbed in Malayalam as Chakravyooham.It was also remade in Bangladesh as Buk Fatey To Mukh Foteyna. It was remade in Marathi as Vrundavan starring Raqesh Vashisth, Pooja Sawant and Vaidehi Parshurami."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sri_Venkateswara_Creations"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Of_Snails_and_Men"}, "Title": {"type": "literal", "value": "Of Snails and Men"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tudor_Giurgiu"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andi_Vasluianu|http://dbpedia.org/resource/Monica_B\u00eerl\u0103deanu"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Of Snails and Men (Romanian: Despre oameni \u0219i melci) is a 2012 Romanian comedy film directed by Tudor Giurgiu."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Clover_(2014_film)"}, "Title": {"type": "literal", "value": "Clover"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Takeshi_Furusawa"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Emi_Takei|http://dbpedia.org/resource/Haruka_Kinami|http://dbpedia.org/resource/Kento_Nagayama|http://dbpedia.org/resource/Natsuna_Watanabe|http://dbpedia.org/resource/Tadayoshi_Okura"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Japanese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "Clover (\u30af\u30ed\u30fc\u30d0\u30fc) is 2014 Japanese film directed by Takeshi Furusawa and based on the manga series created by Toriko Chiya."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Toho"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Megane_(film)"}, "Title": {"type": "literal", "value": "Megane"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Naoko_Ogigami"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hiroko_Yakushimaru|http://dbpedia.org/resource/Ken_Mitsuishi|http://dbpedia.org/resource/Masako_Motai|http://dbpedia.org/resource/Mikako_Ichikawa|http://dbpedia.org/resource/Ryo_Kase|http://dbpedia.org/resource/Satomi_Kobayashi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Japanese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "Megane (\u3081\u304c\u306d, \"Glasses\") is a 2007 Japanese comedy film written and directed by Naoko Ogigami. The film is set on an unnamed Japanese island and tells the story of a vacationing university professor who comes in contact with several eccentric local inhabitants. The movie is a follow-up to Ogigami's 2006 film Kamome Shokudo, and features two of the same actors. It was featured at several film festivals including the Sundance Film Festival. During production, Ogigami decided the title of the movie after an impromptu realization that all of the characters in the film wore glasses."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Nikkatsu"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sydney_White"}, "Title": {"type": "literal", "value": "Sydney White"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Joe_Nussbaum"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amanda_Bynes|http://dbpedia.org/resource/Crystal_Hunt|http://dbpedia.org/resource/John_Schneider_(screen_actor)|http://dbpedia.org/resource/Matt_Long|http://dbpedia.org/resource/Sara_Paxton"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "Sydney White, also known as Sydney White and the Seven Dorks, is a 2007 American teen romantic comedy film directed by Joe Nussbaum and written by Chad Gomez Creasey based on the story of \"Snow White\". The film, starring Amanda Bynes, Sara Paxton and Matt Long, was released theatrically on September 21, 2007 by Universal Pictures."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Graveyard_Alive"}, "Title": {"type": "literal", "value": "Graveyard Alive: A Zombie Nurse in Love"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Elza_Kephart"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anne_Day-Jones|http://dbpedia.org/resource/Samantha_Slan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:Canadian_comedy_films|http://dbpedia.org/resource/Category:Zombie_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "Graveyard Alive: A Zombie Nurse in Love, is an independent zombie horror/comedy directed by Elza Kephart. The film is in black and white and it is dubbed. The film, had its U.S. premiere at the 2004 Slamdance festival in Park City, Utah and won best Cinematography.The movie was made by Bastard Amber Productions, and it was filmed in Montreal, Quebec, Canada. The movie was featured in Nightmare in Canada: Canadian Horror on Film (2004) (Doc)"}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Rooftop_(film)"}, "Title": {"type": "literal", "value": "The Rooftop"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jay_Chou"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alan_Ko|http://dbpedia.org/resource/Eric_Tsang|http://dbpedia.org/resource/Jay_Chou|http://dbpedia.org/resource/Li_Xin'ai|http://dbpedia.org/resource/Wang_Xueqi|http://dbpedia.org/resource/Xu_Fan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_musical_comedy_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Martial_arts_comedy_films|http://dbpedia.org/resource/Category:Taiwanese_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "The Rooftop (Chinese: \u5929\u53f0; pinyin: ti\u0101n t\u00e1i; literally: \"Rooftop\") is a 2013 Taiwanese musical film. It is the second feature film directed by Taiwanese singer/actor Jay Chou. Similar to his first feature film, Secret, Jay played multiple roles in the production of the film, as the main lead, director, script-writer and music composer. The Rooftop is one of the many scripts that Chou has written since the success of Secret in 2007. Most of the scripts are sequels to Secret. However, Chou and his long-time friend Will Liu decided to work on The Rooftop as a challenge to produce the first Chinese mainstream musical-come-martial arts film. They claimed that The Rooftop is a film that is difficult to be categorized, for it combined the elements of musical extravaganza and actions. Chou has made good use of his experience from filming The Green Hornet in Hollywood, Initial D in Hong Kong and directing over 60 of his own music videos, to conceptualize The Rooftop with music as its roots, combined with actions, to create a genre never seen before in Asia."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Buena_Vista_Distribution"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Vacation_(2015_film)"}, "Title": {"type": "literal", "value": "Vacation"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/John_Francis_Daley|http://dbpedia.org/resource/Jonathan_Goldstein_(screenwriter)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Beverly_D'Angelo|http://dbpedia.org/resource/Chevy_Chase|http://dbpedia.org/resource/Chris_Hemsworth|http://dbpedia.org/resource/Christina_Applegate|http://dbpedia.org/resource/Ed_Helms|http://dbpedia.org/resource/Leslie_Mann|http://dbpedia.org/resource/Ron_Livingston|http://dbpedia.org/resource/Skyler_Gisondo|http://dbpedia.org/resource/Steele_Stebbins"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "Vacation is a 2015 American comedy film written and directed by Jonathan Goldstein and John Francis Daley (in their directorial debuts). It stars Ed Helms, Christina Applegate, Skyler Gisondo, Steele Stebbins, Leslie Mann, Chris Hemsworth, Beverly D'Angelo and Chevy Chase. It is the fifth installment of the Vacation film series serving as both a sequel to the original four films and a modernized reboot of the series. It is also the second not to carry the National Lampoon name after Vegas Vacation, and was released by New Line Cinema and Warner Bros. on July 29, 2015. Vacation has received negative reviews from critics but it was a box office success, earning $104.9 million on a $31 million budget."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros._Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/20_Once_Again"}, "Title": {"type": "literal", "value": "20 Once Again"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Leste_Chen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chen_Bolin|http://dbpedia.org/resource/Kuei_Ya-lei|http://dbpedia.org/resource/Lu_Han_(singer)|http://dbpedia.org/resource/Yang_Zishan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Chinese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "131"}, "Description": {"type": "literal", "value": "20 Once Again (Chinese: \u91cd\u8fd420\u5c81 Ch\u00f3ng f\u01cen \u00e8rsh\u00ed su\u00ec) is a 2015 Chinese comedy film directed by Leste Chen and starring Yang Zishan, Kuei Ya-lei, Bolin Chen and Lu Han. The film is a remake of the South Korean movie Miss Granny. It was released on January 8, 2015."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Itty_Bitty_Titty_Committee"}, "Title": {"type": "literal", "value": "Itty Bitty Titty Committee"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jamie_Babbit"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Carly_Pope|http://dbpedia.org/resource/Daniela_Sea|http://dbpedia.org/resource/Guinevere_Turner|http://dbpedia.org/resource/Melanie_Mayron|http://dbpedia.org/resource/Melonie_Diaz"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "Itty Bitty Titty Committee is a feminist, lesbian-related comedy film directed by Jamie Babbit. It was released on September 28, 2007. The film had its premiere at the international film festival Berlinale on February 9, 2007, where it was nominated for a Teddy Award for Best Feature. It had its American premiere at SXSW in March where it won the Jury Prize for Best Feature. The film was produced by non-profit organization POWER UP."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Pretty_One"}, "Title": {"type": "literal", "value": "The Pretty One"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jen\u00e9e_LaMarque"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jake_Johnson|http://dbpedia.org/resource/John_Carroll_Lynch|http://dbpedia.org/resource/Ron_Livingston|http://dbpedia.org/resource/Sterling_Beaumon|http://dbpedia.org/resource/Zoe_Kazan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "The Pretty One is a 2013 comedy drama film directed and written by Jen\u00e9e LaMarque. The film stars Zoe Kazan, Jake Johnson, Ron Livingston, Sterling Beaumon and John Carroll Lynch."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Men,_Women_&_Children_(film)"}, "Title": {"type": "literal", "value": "Men, Women & Children"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jason_Reitman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Sandler|http://dbpedia.org/resource/Dean_Norris|http://dbpedia.org/resource/Jennifer_Garner|http://dbpedia.org/resource/Judy_Greer|http://dbpedia.org/resource/Rosemarie_DeWitt"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "119"}, "Description": {"type": "literal", "value": "Men, Women & Children is a 2014 American drama film dealing with online addiction. It is directed by Jason Reitman, co-written with Erin Cressida Wilson, based on a novel of the same name written by Chad Kultgen, and starring Rosemarie DeWitt, Jennifer Garner, Judy Greer, Dean Norris, Adam Sandler, Ansel Elgort, and Kaitlyn Dever."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mr._Bean's_Holiday"}, "Title": {"type": "literal", "value": "Mr. Bean's Holiday"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Steve_Bendelack"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Emma_de_Caunes|http://dbpedia.org/resource/Jean_Rochefort|http://dbpedia.org/resource/Karel_Roden|http://dbpedia.org/resource/Rowan_Atkinson|http://dbpedia.org/resource/Willem_Dafoe"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films|http://dbpedia.org/resource/Category:German_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Mr. Bean's Holiday is a 2007 British comedy film, directed by Steve Bendelack, music composed by Howard Goodall, produced by Peter Bennett-Jones, Tim Bevan and Eric Fellner, written by Hamish McColl and Robin Driscoll and starring Rowan Atkinson, Max Baldry, Emma de Caunes and Willem Dafoe. It is the second film based on the television series Mr. Bean, following the 1997 Bean. The film was theatrically released on 24 March 2007 by Universal Pictures. The film received mixed reviews from critics but earned $229.7 million on a $25 million budget. Mr. Bean's Holiday was released on DVD and HD DVD on 27 November 2007."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Gravy_(film)"}, "Title": {"type": "literal", "value": "Gravy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Roday"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dul\u00e9_Hill|http://dbpedia.org/resource/Gabourey_Sidibe|http://dbpedia.org/resource/Gabriel_Luna|http://dbpedia.org/resource/James_Roday|http://dbpedia.org/resource/Lily_Cole|http://dbpedia.org/resource/Lothaire_Bluteau|http://dbpedia.org/resource/Michael_Weston|http://dbpedia.org/resource/Paul_Rodriguez|http://dbpedia.org/resource/Sarah_Silverman|http://dbpedia.org/resource/Sutton_Foster"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Gravy is a 2015 American comedy horror film, directed by James Roday and co-written by Roday and Todd Harthan. It stars Sutton Foster, Lily Cole, Gabriel Luna, Gabourey Sidibe, Lothaire Bluteau, James Roday, Paul Rodriguez, Michael Weston, Molly Ephraim, and Sarah Silverman. The film was released in the United States on October 2, 2015 by Scream Factory."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Scream_Factory|http://dbpedia.org/resource/Shout!_Factory"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Hangover_Part_II"}, "Title": {"type": "literal", "value": "The Hangover Part II"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Todd_Phillips"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "The Hangover Part II is a 2011 American comedy film produced by Legendary Pictures and distributed by Warner Bros. Pictures. It is the sequel to the 2009 film The Hangover and the second installment in The Hangover trilogy. Directed by Todd Phillips, who co-wrote the script with Craig Mazin and Scot Armstrong, the film stars Bradley Cooper, Ed Helms, Zach Galifianakis, Ken Jeong, Jeffrey Tambor, Justin Bartha, and Paul Giamatti. It tells the story of Phil, Stu, Alan, and Doug as they travel to Thailand for Stu's wedding. After the bachelor party in Las Vegas, Stu takes no chances and opts for a safe, subdued pre-wedding brunch. Things do not go as planned, resulting in another bad hangover with no memories of the previous night. Development of The Hangover Part II began in April 2009, two months before The Hangover was released. The principal actors were cast in March 2010 to reprise their roles from the first film. Production began in October 2010, in Ontario, California, before moving on location in Thailand. The film was released on May 26, 2011 and became the highest-grossing R-rated comedy during its theatrical run. A third and final film, The Hangover Part III, was released on May 23, 2013."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Shrink_(film)"}, "Title": {"type": "literal", "value": "Shrink"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jonas_Pate"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Spacey|http://dbpedia.org/resource/Saffron_Burrows"}, "Published": {"type": "literal", "value": "2009-07-24"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104|110"}, "Description": {"type": "literal", "value": "Shrink is a 2009 American independent comedy-drama film about a psychologist who treats members of the entertainment industry in Los Angeles, California. It was directed by Jonas Pate, written by Thomas Moffett, and stars Kevin Spacey and along with an ensemble cast. The film premiered at the 2009 Sundance Film Festival and includes music by Jackson Browne."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Roadside_Attractions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Head_Above_Water"}, "Title": {"type": "literal", "value": "Head Above Water"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jim_Wilson_(producer)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Billy_Zane|http://dbpedia.org/resource/Cameron_Diaz|http://dbpedia.org/resource/Craig_Sheffer|http://dbpedia.org/resource/Harvey_Keitel|http://dbpedia.org/resource/Shay_Duffin"}, "Published": {"type": "literal", "value": "1996-11-07|1997-06-25"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_comedy_thriller_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Head Above Water is a 1996 American comedy thriller film directed by Jim Wilson and starring Harvey Keitel, Cameron Diaz, Craig Sheffer. It was rated PG-13 by the MPAA. The film is a remake of Hodet over vannet by Norwegian film director Nils Gaup."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fine_Line_Features"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Besharam_(2013_film)"}, "Title": {"type": "literal", "value": "Besharam"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Abhinav_Kashyap"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Javed_Jaffrey|http://dbpedia.org/resource/Neetu_Singh|http://dbpedia.org/resource/Pallavi_Sharda|http://dbpedia.org/resource/Ranbir_Kapoor|http://dbpedia.org/resource/Rishi_Kapoor"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "142"}, "Description": {"type": "literal", "value": "Besharam (English: Shameless) is a 2013 Bollywood action comedy film directed by Abhinav Kashyap. The film features Ranbir Kapoor opposite Pallavi Sharda, who marks her return to cinema. Filming for Besharam was scheduled to commence on 10 December 2012, with part of it taking place on a film set in Film City, Mumbai. The film's tagline is \"Na sammaan ka moh, na apmaan ka bhay\", translated as \"No yearning for respect, no fear of humiliation\". The film received negative reviews upon its release on 2 October 2013 and was declared a \"Flop\" by Box Office India four days after its release."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Reliance_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Bad_Education_Movie"}, "Title": {"type": "literal", "value": "The Bad Education Movie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Elliot_Hegarty"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Charlie_Wernham|http://dbpedia.org/resource/Harry_Enfield|http://dbpedia.org/resource/Iain_Glen|http://dbpedia.org/resource/Jack_Binstead|http://dbpedia.org/resource/Jack_Whitehall|http://dbpedia.org/resource/Layton_Williams|http://dbpedia.org/resource/Mathew_Horne|http://dbpedia.org/resource/Sarah_Solemani"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "The Bad Education Movie is a 2015 British comedy film directed by Elliot Hegarty and written by Freddy Syborn and Jack Whitehall. The movie is based on Whitehall's sitcom of the same name, and follows a similar plot-line, with young teacher Alfie Wickers' (Jack Whitehall) ineptly trying to supervise and occasionally educate Form K. Filming for The Bad Education Movie took place over five weeks, commencing 23 February 2015. The film was theatrically released in the United Kingdom on 21 August 2015 by Entertainment Film Distributors."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Entertainment_Film_Distributors"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Tiger_Aspect_Productions"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Wherever_You_Are_(film)"}, "Title": {"type": "literal", "value": "(aka Lifelines)|Wherever You Are"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rob_Margolies"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dreama_Walker|http://dbpedia.org/resource/Jacob_Kogan|http://dbpedia.org/resource/Jane_Adams_(actress)|http://dbpedia.org/resource/Joe_Morton|http://dbpedia.org/resource/Josh_Pais"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Wherever You Are is a 2008 comedy-drama film from director-screenwriter Rob Margolies. The film addresses the changes within a dysfunctional family after 1 session of therapy. It is noted for having been filmed in 11 days."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Land_Ho!"}, "Title": {"type": "literal", "value": "Land Ho!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Aaron_Katz_(filmmaker)|http://dbpedia.org/resource/Martha_Stephens"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Paul_Eenhoorn"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Land Ho! is an American-Icelandic adventure comedy film co-written and co-directed by Martha Stephens and Aaron Katz. The film made its world premiere at 2014 Sundance Film Festival on January 19, 2014. It also screened at the 2014 Tribeca Film Festival, Los Angeles Film Festival, Nantucket Film Festival, Locarno International Film Festival, and BFI London Film Festival . Sony Pictures Classics acquired worldwide distribution rights to the film after its world premiere at the Sundance Film Festival. The film released on July 11, 2014, in New York City and Los Angeles before expanding wide in the United States. It won the John Cassavetes Award for Best Feature under $500,000 at the 2015 Independent Spirit Awards."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sony_Pictures_Classics"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kalavani"}, "Title": {"type": "literal", "value": "Kalavani"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/A._Sarkunam"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ganja_Karuppu|http://dbpedia.org/resource/Ilavarasu|http://dbpedia.org/resource/Oviya|http://dbpedia.org/resource/Saranya_Ponvannan|http://dbpedia.org/resource/Vimal"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Kalavani (Tamil: \u0b95\u0bb3\u0bb5\u0bbe\u0ba3\u0bbf),(English: Thief) is a 2010 Indian Tamil-language romantic comedy film written and directed by newcomer A. Sargunam. It stars Vimal of Pasanga fame in the lead role along with debutante Oviya, Saranya Ponvannan, Ganja Karuppu and Ilavarasu, who enact pivotal roles. The film, made on a shoe-string budget, released on 25 June 2010 to very positive reviews and became a sleeper hit of 2010."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Ayngaran_International"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Whisky_(film)"}, "Title": {"type": "literal", "value": "Whisky"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Juan_Pablo_Rebella|http://dbpedia.org/resource/Pablo_Stoll"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andr\u00e9s_Pazos|http://dbpedia.org/resource/Jorge_Bolani|http://dbpedia.org/resource/Mirella_Pascual"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Tragicomedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "Whisky is an Uruguayan tragicomedy film directed by Juan Pablo Rebella and Pablo Stoll and released in 2004. The film stars Andr\u00e9s Pazos, Mirella Pascual, Jorge Bolani, Ana Katz, and Daniel Hendler. It has very sparse dialogue and the three principal actors play very straight roles showing little emotion. It was premiered at the 2004 Cannes Film Festival where it won a Prix du Regard Original Award."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Any_Way_the_Wind_Blows_(film)"}, "Title": {"type": "literal", "value": "Any Way The Wind Blows"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tom_Barman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Diane_De_Belder|http://dbpedia.org/resource/Eric_Kloeck|http://dbpedia.org/resource/Frank_Vercruyssen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:Belgian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Any Way the Wind Blows is a 2003 film by dEUS' singer-songwriter-director Tom Barman."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Axiom_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jump_Tomorrow"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Joel_Hopkins"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hippolyte_Girardot|http://dbpedia.org/resource/Natalia_Verbeke|http://dbpedia.org/resource/Tunde_Adebimpe"}, "Published": {"type": "literal", "value": "2001-11-09"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Jump Tomorrow is a 2001 independent film and romantic comedy written and directed by Joel Hopkins, starring Tunde Adebimpe, Hippolyte Girardot, and Natalia Verbeke. It concerns George (Adebimpe), a shy, bespectacled man who is about to marry a fellow Nigerian American woman named Sophie Ochenado, played by Abiola Abrams, when he falls for a Spanish woman. It is based on a short film called Jorge."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Someone_Special_(film)"}, "Title": {"type": "literal", "value": "Someone Special"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jang_Jin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jung_Jae-young|http://dbpedia.org/resource/Lee_Na-young"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "Someone Special (Hangul: \uc544\ub294 \uc5ec\uc790; RR: Aneun yeoja; lit. \"A Woman I Know\") is a 2004 South Korean romantic comedy film about a struggling baseball player and a fan with a long-time crush on him. It was selected to screen at the 2004 Pusan International Film Festival, 2005 Udine Far East Film Festival, and made its United States premiere at the 2005 New York Asian Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Almost_Love"}, "Title": {"type": "literal", "value": "Almost Love"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lee_Han"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kim_Ha-neul|http://dbpedia.org/resource/Kwon_Sang-woo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "Almost Love (Hangul: \uccad\ucd98\ub9cc\ud654; RR: Cheongchun-manhwa; lit. \"Youth Comic\") is a 2006 South Korean film. It was directed by Lee Han, starring Kwon Sang-woo and Kim Ha-neul. Distributed by Showbox, it was released on March 23, 2006, and ran at 116 minutes."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Showbox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Safe_Men"}, "Title": {"type": "literal", "value": "Safe Men"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/John_Hamburg"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Allen_Swift|http://dbpedia.org/resource/Michael_Lerner_(actor)|http://dbpedia.org/resource/Paul_Giamatti|http://dbpedia.org/resource/Sam_Rockwell|http://dbpedia.org/resource/Steve_Zahn"}, "Published": {"type": "literal", "value": "1998-08-07"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Safe Men is a 1998 American criminal comedy film written and directed by John Hamburg (in his directorial debut), and stars Sam Rockwell and Steve Zahn as a pair of aspiring lounge singers who are mistaken for ace safe crackers, and get mixed up with a Jewish mobster, Big Fat Bernie Gayle (Michael Lerner) and Big Fat's intern, Veal Chop (Paul Giamatti). Hamburg later wrote screenplays for a few films, such as Meet the Parents, Zoolander, Along Came Polly and I Love You, Man, which he also directed."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/October_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sunny_(2011_film)"}, "Title": {"type": "literal", "value": "Sunny"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kang_Hyeong-cheol"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jin_Hee-kyung|http://dbpedia.org/resource/Kang_So-ra|http://dbpedia.org/resource/Shim_Eun-kyung|http://dbpedia.org/resource/Yoo_Ho-jeong"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:South_Korean_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "134"}, "Description": {"type": "literal", "value": "Sunny (Hangul: \uc368\ub2c8; RR: Sseoni) is a 2011 South Korean comedy-drama film. The film is about a middle-aged woman who tries to fulfill her friend's dying wish of reuniting their group of high school friends. The film alternates between two timelines: the present day where the women are middle-aged, and the 1980s when they were in high school. It is the second film by writer-director Kang Hyeong-cheol, who previously directed Scandal Makers (2008). Released on 4 May 2011, Sunny was the first film of that year to sell five million tickets in South Korea, and became the second highest grossing Korean film by year's end. As of 20 September 2012, it is the all-time 13th best-selling in South Korean history. Kang Hyeong-cheol and Nam Na-yeong won Best Director and Best Editing, respectively, at the Grand Bell Awards. Actress Kang So-ra won several awards for her role as the teenage Ha Chun-hwa."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/CJ_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ishq_Positive"}, "Title": {"type": "literal", "value": "Ishq Positive"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Noor_Bukhari"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Iftikhar_Thakur|http://dbpedia.org/resource/Noor_Bukhari|http://dbpedia.org/resource/Saud_(actor)|http://dbpedia.org/resource/Shafqat_Cheema|http://dbpedia.org/resource/Sonu_Sood"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Pakistani_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Ishq Positive is a 2016 Pakistani romantic comedy film directed by Noor Bukhari, written by Suraj Baba and produced by Shazia Hussain Kashif Latif under the production banner of KSL Productions. The film stars Noor Bukhari, Wali Hamid Ali Khan, Saud,Saim Ali, Ahmed Ali, Faria Bukhari, Durdana Butt. The film was scheduled for release on Eid al-Adha 2015 but was delayed. It is now slated for release on 22 July 2016. At the 4th Hum Awards CEO of Hum Network Limited Duraid Qureshi announced that the film will be released under the Hum Films Banner."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Hum_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Invention_of_Lying"}, "Title": {"type": "literal", "value": "The Invention of Lying"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Matthew_Robinson_(director)|http://dbpedia.org/resource/Ricky_Gervais"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jennifer_Garner|http://dbpedia.org/resource/Jonah_Hill|http://dbpedia.org/resource/Louis_C.K.|http://dbpedia.org/resource/Ricky_Gervais|http://dbpedia.org/resource/Rob_Lowe|http://dbpedia.org/resource/Tina_Fey"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:Fantasy-comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "The Invention of Lying is a 2009 American fantasy romantic comedy film written and directed by Ricky Gervais and Matthew Robinson (in their directorial debuts). The film stars Gervais as the first human with the ability to lie in a world where people can only tell the truth. The supporting cast features Jennifer Garner, Jonah Hill, Louis C.K., Rob Lowe and Tina Fey. The film was released in the United States on October 2, 2009."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Focus_Features|http://dbpedia.org/resource/Warner_Bros._Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Drama_(film)"}, "Title": {"type": "literal", "value": "Drama"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Yogaraj_Bhat"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Radhika_Pandit|http://dbpedia.org/resource/Sathish_Ninasam|http://dbpedia.org/resource/Sindhu_Lokanath|http://dbpedia.org/resource/Yash_(Kannada_actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "149"}, "Description": {"type": "literal", "value": "Drama is a 2012 Indian Kannada romantic comedy thriller written, directed and co-produced by Yogaraj Bhat under the banner Yogaraj Movies and Jayanna Combines. It stars Yash, Radhika Pandit, Sathish Ninasam and Sindhu Lokanath in leading roles and Ambareesh in an extended cameo appearance. Music for the film was scored by V. Harikrishna while lyrics for the soundtrack were written by the successful combination of Jayanth Kaikini and Yogaraj Bhat. Krishna was roped in as the cinematographer for the film, who had previously worked with Bhat in the massively successful film, Mungaru Male."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/My_Best_Friend_(2001_film)"}, "Title": {"type": "literal", "value": "My Best Friend"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lakis_Lazopoulos|http://dbpedia.org/resource/Yorgos_Lanthimos"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Antonis_Kafetzopoulos|http://dbpedia.org/resource/Lakis_Lazopoulos"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "My Best Friend (Greek: \u039f \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03bf\u03c2 \u03bc\u03bf\u03c5 \u03c6\u03af\u03bb\u03bf\u03c2) is a 2001 Greek comedy film directed by Yorgos Lanthimos and Lakis Lazopoulos."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/DodgeBall:_A_True_Underdog_Story"}, "Title": {"type": "literal", "value": "DodgeBall: A True Underdog Story"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rawson_Marshall_Thurber"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Stiller|http://dbpedia.org/resource/Christine_Taylor|http://dbpedia.org/resource/Rip_Torn|http://dbpedia.org/resource/Vince_Vaughn"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_sports_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "DodgeBall: A True Underdog Story is a 2004 American sports comedy film produced by 20th Century Fox and Red Hour Productions, written and directed by Rawson Marshall Thurber and starring Vince Vaughn and Ben Stiller. The film focuses on a rivalry between the owners of Average Joe's, a small gym, and Globo-Gym, a competing big-budget gym located across the street. Peter LaFleur (Vaughn), the owner of the smaller gym, has defaulted on his mortgage and enters a dodgeball tournament in an attempt to earn the money necessary to prevent his gym from being purchased by Globo-Gym to build a new parking lot for their gym members. Globo-Gym enters a team in the tournament in an effort to ensure that Average Joe's gym fails. DodgeBall received generally positive reviews, including a 70% aggregate rating on Rotten Tomatoes, and grossed more than $167 million worldwide."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/18_Years_Later"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Edoardo_Leo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Edoardo_Leo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:Italian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "18 Years Later (Italian: Diciotto anni dopo) is a 2009 Italian comedy-drama film written, directed and starring Edoardo Leo. For this film Leo was nominated for David di Donatello for Best New Director and for a Nastro d'Argento in the same category. The film also won several awards in a number of international film festivals, including the Audience Award at the Annecy Italian Film Festival and the awards for best film, best director, best actor and best actress at the 2010 Ibiza International Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hotel_Noir"}, "Title": {"type": "literal", "value": "Hotel Noir"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sebastian_Gutierrez"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Carla_Gugino|http://dbpedia.org/resource/Danny_DeVito|http://dbpedia.org/resource/Kevin_Connolly_(actor)|http://dbpedia.org/resource/Malin_Akerman|http://dbpedia.org/resource/Mandy_Moore|http://dbpedia.org/resource/Robert_Forster|http://dbpedia.org/resource/Rosario_Dawson|http://dbpedia.org/resource/Rufus_Sewell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Hotel Noir is a 2012 crime film directed and written by Sebastian Gutierrez. The film stars Carla Gugino and Rufus Sewell. The film was released at Video on demand on October 9, 2012 in USA."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Youth_in_Oregon"}, "Title": {"type": "literal", "value": "Youth in Oregon"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Joel_David_Moore"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alex_Shaffer_(actor)|http://dbpedia.org/resource/Billy_Crudup|http://dbpedia.org/resource/Christina_Applegate|http://dbpedia.org/resource/Frank_Langella|http://dbpedia.org/resource/Josh_Lucas|http://dbpedia.org/resource/Mary_Kay_Place|http://dbpedia.org/resource/Nicola_Peltz"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Youth in Oregon is a comedy-drama film directed by Joel David Moore. The film stars Frank Langella, Billy Crudup, Christina Applegate, Nicola Peltz, Josh Lucas, Mary Kay Place, and Alex Shaffer. The film had its world premiere at the Tribeca Film Festival on April 16, 2016."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Phat_Girlz"}, "Title": {"type": "literal", "value": "Phat Girlz"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nnegest_Likk\u00e9"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Godfrey_(comedian)|http://dbpedia.org/resource/Jimmy_Jean-Louis|http://dbpedia.org/resource/Mo'Nique"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "Phat Girlz is a 2006 comedy film written and directed by Nnegest Likk\u00e9 and starring Mo'Nique."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Searchlight_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Azad_(2016_film)"}, "Title": {"type": "literal", "value": "Azad"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rehan_Sheikh"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Angeline_Malik|http://dbpedia.org/resource/Imran_Abbas_(actor)|http://dbpedia.org/resource/Nimra_Bucha|http://dbpedia.org/resource/Rehan_Sheikh|http://dbpedia.org/resource/Sabreen_Hisbani|http://dbpedia.org/resource/Sajjad_Kishwar|http://dbpedia.org/resource/Salman_Shahid|http://dbpedia.org/resource/Sanam_Saeed|http://dbpedia.org/resource/Zahid_Ahmed_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Pakistani_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Azad (Urdu: \u0622\u0632\u0627\u0631\u200e) is an upcoming 2016 Pakistani comedy\u2013drama film directed and written by Rehan Sheikh and co-produced by Hassan Naeem and Rehan Sheikh under the production banner of Bling Studios and Roomi Films. The film features Sanam Saeed, Salman Shahid, Rehan Sheikh, Nimra Bucha and Sabreen Hasbani Zahid Ahmed and Sajjad Kishwar. The cast also includes debutants Ajlal Shah and Jawad Rana. A special appearance is also made by Angeline Malik, Imran Abbas and Schumaila Hussain."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Just_Like_Brothers"}, "Title": {"type": "literal", "value": "Just Like Brothers"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Hugo_G\u00e9lin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Fran\u00e7ois-Xavier_Demaison|http://dbpedia.org/resource/M\u00e9lanie_Thierry|http://dbpedia.org/resource/Nicolas_Duvauchelle|http://dbpedia.org/resource/Pierre_Niney"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "Just Like Brothers (original title: Comme des fr\u00e8res) is a 2012 French comedy film written, directed and produced by Hugo G\u00e9lin."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/She's_Out_of_My_League"}, "Title": {"type": "literal", "value": "She's Out of My League"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jim_Field_Smith"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "She's Out of My League is a 2010 American romantic comedy film directed by Jim Field Smith and written by Sean Anders and John Morris. The film stars Jay Baruchel and Alice Eve, and was produced by Jimmy Miller and David Householter for Paramount Pictures and DreamWorks Pictures and filmed in Pittsburgh, Pennsylvania. Production on the film finished in 2008. The film received its wide theatrical release on March 12, 2010. The film is director Jim Field Smith's first feature."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Due_Date"}, "Title": {"type": "literal", "value": "Due Date"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Todd_Phillips"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jamie_Foxx|http://dbpedia.org/resource/Juliette_Lewis|http://dbpedia.org/resource/Michelle_Monaghan|http://dbpedia.org/resource/Robert_Downey,_Jr.|http://dbpedia.org/resource/Zach_Galifianakis"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010_comedy_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_screwball_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Due Date is a 2010 American comedy film directed by Todd Phillips, co-written by Alan R. Cohen, Alan Freedland, and Adam Sztykiel, and starring Robert Downey, Jr. and Zach Galifianakis. The film was released on November 5, 2010. The film was shot in Las Cruces, New Mexico, Atlanta, Georgia, and Tuscaloosa, Alabama."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/To_Jennifer"}, "Title": {"type": "literal", "value": "To Jennifer"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Cullen_Bressack"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/James_Cullen_Bressack|http://dbpedia.org/resource/Jessica_Cameron"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "74"}, "Description": {"type": "literal", "value": "To Jennifer is a found footage horror comedy film that was directed by James Cullen Bressack. It was released direct to DVD on October 15, 2013 and stars Chuck Pappas as a young man that sets out to confront his unfaithful girlfriend Jennifer. The entire film was shot and edited on the iPhone 5."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Gallants_(film)"}, "Title": {"type": "literal", "value": "Gallants"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Clement_Cheng|http://dbpedia.org/resource/Derek_Kwok"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chen_Kuan-tai|http://dbpedia.org/resource/JJ_Jia|http://dbpedia.org/resource/Leung_Siu-lung|http://dbpedia.org/resource/Lo_Mang|http://dbpedia.org/resource/MC_Jin|http://dbpedia.org/resource/Teddy_Robin|http://dbpedia.org/resource/Wong_You-nam"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Gallants (Da lui toi \u6253\u64c2\u53f0) is a 2010 Hong Kong action comedy film directed by Derek Kwok and Clement Cheng, starring Leung Siu-lung, Chen Kuan-tai and Teddy Robin. The film is set in modern times, but is in the style of Hong Kong action comedy films from the 1960s and 1970s. The film premiered at the Hong Kong Film Festival on 26 March 2010. The film has received favorable reviews on its festival shows in North America."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/My_Boss"}, "Title": {"type": "literal", "value": "My Boss"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jeethu_Joseph"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dileep_(actor)|http://dbpedia.org/resource/Mamta_Mohandas"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "150"}, "Description": {"type": "literal", "value": "My Boss is a 2012 Malayalam romantic comedy film directed by Jeethu Joseph, starring Dileep and Mamta Mohandas in the lead roles and Mukesh in a cameo appearance. It is the third film by Jeethu Joseph. The film is produced by East Coast Vijayan under the banner of East Coast Communications. It was filmed in Mumbai and various locales in Kerala. The film is a loose remake of the 2009 Hollywood film The Proposal. The film is set in the backdrop of the IT industry. The film follows Manu Varma (Dileep) who's hired as the executive assistant in a leading firm in Bombay who aspires to migrate to a foreign country while Priya Nair (Mamta), his boss, an Indian born Australian citizen has visa problems at a time when she has the opportunity to get a promotion. This leads Priya to get into a fake marriage with Manu to stay in India. My Boss released in Kerala on 10 November 2012 to positive reviews and was declared a hit."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/It's_All_Gone_Pete_Tong"}, "Title": {"type": "literal", "value": "It's All Gone Pete Tong"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Dowse"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Beatriz_Batarda|http://dbpedia.org/resource/Kate_Magowan|http://dbpedia.org/resource/Mike_Wilmot|http://dbpedia.org/resource/Paul_Kaye"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "It's All Gone Pete Tong is a 2004 Canadian independent film about Frankie Wilde (played by Paul Kaye), a DJ who goes completely deaf. The title is a reference to a cockney rhyming slang phrase used in Britain from the 80s to present day, referring to the BBC Radio 1 DJ Pete Tong, standing for \"it's all gone a bit wrong.\" The film was released on April 15, 2005. The DVD was released on September 20, 2005. It won two awards at the US Comedy Arts Festival for Best Feature and Best Actor (Paul Kaye) and swept the Gen Art Film Festival awards (Grand Jury and Audience). It was filmed on location in Ibiza and shot entirely in HD. Several famous DJs appear in the film as \"talking heads\", giving the film a true sense of authenticity. Carl Cox, Ti\u00ebsto, Sarah Main, Barry Ashworth, Paul van Dyk, Lol Hammond and Pete Tong appear in the film. Ibiza locations used in the movie include music venues; Pacha, Amnesia, Privilege, DC10, the historic Pike's Hotel and Cala Longa beach. A remake has been made by Indian film director Neerav Ghosh titled Soundtrack which was released in 2011."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Guy_X"}, "Title": {"type": "literal", "value": "Guy X"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Saul_Metzstein"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jason_Biggs|http://dbpedia.org/resource/Jeremy_Northam|http://dbpedia.org/resource/Michael_Ironside|http://dbpedia.org/resource/Natascha_McElhone"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Guy X is a 2005 black comedy war film directed by Saul Metzstein, based on the novel No One Thinks Of Greenland by John Griesemer. The movie stars Jason Biggs, Natascha McElhone, Jeremy Northam, and Michael Ironside."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_D_Train"}, "Title": {"type": "literal", "value": "The D Train"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jarrad_Paul"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/James_Marsden|http://dbpedia.org/resource/Jeffrey_Tambor|http://dbpedia.org/resource/Kathryn_Hahn|http://dbpedia.org/resource/Mike_White_(filmmaker)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "The D Train (also known as Bad Bromance) is a 2015 American comedy-drama film written and directed by Jarrad Paul and Andrew Mogel in their directorial debuts, and stars Jack Black and James Marsden. The film premiered at the 11th Sundance Film Festival on January 23, 2015, and was released in the United States on May 8, 2015 by IFC Films."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Sitter"}, "Title": {"type": "literal", "value": "The Sitter"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_Gordon_Green"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ari_Graynor|http://dbpedia.org/resource/J._B._Smoove|http://dbpedia.org/resource/Jonah_Hill|http://dbpedia.org/resource/Max_Records|http://dbpedia.org/resource/Sam_Rockwell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "81|87"}, "Description": {"type": "literal", "value": "The Sitter is a 2011 comedy film directed by David Gordon Green and produced by Michael De Luca. The film follows a slacker college student who, after being suspended, is forced by his mother to fill in for a babysitter that called in sick. During this time, he takes his charges along for his extensive criminal escapades. The film is a Michael De Luca Productions and 20th Century Fox joint venture, distributed by 20th Century Fox. The film was originally scheduled to be released in theaters on August 5, 2011, but was pushed back to December 9, 2011."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Whore_(2008_film)"}, "Title": {"type": "literal", "value": "Whore"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Thomas_Dekker_(actor)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Lauren_Storm|http://dbpedia.org/resource/Lena_Headey|http://dbpedia.org/resource/Megan_Fox|http://dbpedia.org/resource/Ron_Jeremy|http://dbpedia.org/resource/Rumer_Willis|http://dbpedia.org/resource/Thomas_Dekker_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Whore is a 2008 drama film co-starring, edited, written, produced and directed by Thomas Dekker. It was released on October 20, 2008."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Undrafted_(film)"}, "Title": {"type": "literal", "value": "Undrafted"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Joseph_Mazzello"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aaron_Tveit|http://dbpedia.org/resource/Chace_Crawford|http://dbpedia.org/resource/Philip_Winchester|http://dbpedia.org/resource/Tyler_Hoechlin"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Undrafted is an sports comedy-drama film the directorial debut of Joseph Mazzello who also wrote, co-produced and starred in the film. It also stars Aaron Tveit, Tyler Hoechlin, Chace Crawford and Philip Winchester. It is based on the true story of Mazzello's brother who missed out on the Major League Baseball draft. The film was released on July 15, 2016, by Vertical Entertainment."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Vertical_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lola_Versus"}, "Title": {"type": "literal", "value": "Lola Versus"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Daryl_Wein"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bill_Pullman|http://dbpedia.org/resource/Debra_Winger|http://dbpedia.org/resource/Greta_Gerwig|http://dbpedia.org/resource/Joel_Kinnaman|http://dbpedia.org/resource/Zoe_Lister-Jones"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "Lola Versus is a 2012 American romantic comedy film directed by Daryl Wein. The screenplay was co-written by Wein and his partner and Lola co-star Zoe Lister-Jones. It stars Greta Gerwig, Joel Kinnaman, Zoe Lister Jones, Bill Pullman and Debra Winger."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Searchlight_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Class_of_Nuke_'Em_High"}, "Title": {"type": "literal", "value": "Class of Nuke 'Em High"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lloyd_Kaufman|http://dbpedia.org/resource/Michael_Herz_(producer)|http://dbpedia.org/resource/Richard_W._Haines"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/R._L._Ryan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1980s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Class of Nuke 'Em High, also known as Atomic High School, is a 1986 American science fiction horror comedy film made by cult classic B-movie production group Troma Entertainment. It was directed by Richard W. Haines and Lloyd Kaufman under the pseudonym Samuel Weil. New York holographer Jason Sapan created the laser effects."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Troma_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Flintstones:_On_the_Rocks"}, "Title": {"type": "literal", "value": "The Flintstones: On the Rocks"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Savino"}, "Author": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Savino|http://dbpedia.org/resource/Cindy_Morrow|http://dbpedia.org/resource/Clayton_McKenzie_Morrow"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "66"}, "Description": {"type": "literal", "value": "The Flintstones: On the Rocks is a 2001 made-for-television animated film based on the television series The Flintstones. It debuted on November 3, 2001 on Cartoon Network and was directed by Chris Savino and David Smith. It was dedicated to William Hanna, creator of The Flintstones with partner Joseph Barbera, founder and chairman of Hanna-Barbera, who died earlier that year and longtime Hanna-Barbera composer Hoyt Curtin, who passed on a year before Hanna. Since then, the movie has not been released on VHS, Laserdisc, DVD, Blu-ray or any other form of home media release, though bootleg copies exist on various torrent sites."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Cartoon_Network|http://dbpedia.org/resource/Warner_Bros._Television_Distribution"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Kevin_Bishop_Show"}, "Title": {"type": "literal", "value": "The Kevin Bishop Show"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dominic_Brigstocke|http://dbpedia.org/resource/Elliot_Hegarty"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jim_Howick|http://dbpedia.org/resource/Karen_Gillan|http://dbpedia.org/resource/Kevin_Bishop|http://dbpedia.org/resource/Oliver_Maltman"}, "Published": {"type": "literal", "value": "2008-07-25"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Channel_4_comedy|http://dbpedia.org/resource/Category:Comedy_Showcase"}, "Genre": {"type": "literal", "value": "http://dbpedia.org/resource/Comedy"}, "Duration": {"type": "literal", "value": "30"}, "Description": {"type": "literal", "value": "The Kevin Bishop Show was a sketch comedy written by and starring English comedian Kevin Bishop, part of the Star Stories team. The show was commissioned by Channel 4 for a six-part series starting on 25 July 2008 at 10pm. A pilot was broadcast on 23 November 2007 as part of Channel 4's Comedy Showcase and the programme soon earned interest for its incredibly fast pace; 42 sketches were shown in 23 minutes. The show was nominated for Best New Comedy at the 2008 British Comedy Awards. The show started its second series on Friday 31 July 2009 at 10pm on Channel 4."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/All3Media"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/New_York,_I_Love_You"}, "Title": {"type": "literal", "value": "New York, I Love You"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Brett_Ratner|http://dbpedia.org/resource/Fatih_Akin|http://dbpedia.org/resource/Hughes_brothers|http://dbpedia.org/resource/Jiang_Wen|http://dbpedia.org/resource/Joshua_Marston|http://dbpedia.org/resource/Mira_Nair|http://dbpedia.org/resource/Natalie_Portman|http://dbpedia.org/resource/Shekhar_Kapur|http://dbpedia.org/resource/Shunji_Iwai|http://dbpedia.org/resource/Yvan_Attal"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "New York, I Love You is a 2008 American romantic comedy-drama anthology consisting of eleven short films, each by a different director. The short films all relate in some way to the subject of love, and are set among the five boroughs of New York City. The film is a sequel of sorts to the 2006 film Paris, je t'aime, which had the same structure, and is the second film in the Cities of Love franchise, created and produced by Emmanuel Benbihy. Unlike Paris, je t'aime, the short films of New York, I Love You all have a unifying thread, of a videographer who films the other characters. The film stars an ensemble cast, among them Bradley Cooper, Shia LaBeouf, Natalie Portman, Anton Yelchin, Hayden Christensen, Orlando Bloom, Irrfan Khan, Rachel Bilson, Chris Cooper, Andy Garc\u00eda, Christina Ricci, John Hurt, Cloris Leachman, Robin Wright Penn, Julie Christie, Maggie Q, Ethan Hawke, James Caan, Shu Qi and Eli Wallach. New York, I Love You premiered at the 2008 Toronto International Film Festival in September 2008, and was released in the United States on October 16, 2009."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Vivendi"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dhand_(film)"}, "Title": {"type": "literal", "value": "Dhand"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ranjith_Bajpe"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anoop_Sagar|http://dbpedia.org/resource/Arjun_Kapikad|http://dbpedia.org/resource/Deepak_Paladka|http://dbpedia.org/resource/Sandeep_Shetty"}, "Published": {"type": "literal", "value": "2015-05-29"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Dhand (English: Army) is a Tulu film directed by Ranjith Bajpe and produced by Shodhan Prasad under the banner of Sandhya Creations. It stars Arjun Kapikad, Sandeep Shetty, Anoop Sagar, Deepak Paladka, Gopinath Bhat, Umesh Mijar, Ranjan Boloor, Shilpa Suvarna, Anvitha Sagar, and Subhash Bangera in the lead roles. This is the first Tulu movie to be released in Australia,United Kingdom. and Israel"}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mr._Right_(2015_film)"}, "Title": {"type": "literal", "value": "Mr. Right"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Paco_Cabezas"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anna_Kendrick|http://dbpedia.org/resource/Anson_Mount|http://dbpedia.org/resource/James_Ransone|http://dbpedia.org/resource/Michael_Eklund|http://dbpedia.org/resource/RZA|http://dbpedia.org/resource/Sam_Rockwell|http://dbpedia.org/resource/Tim_Roth"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "This page is about the film directed by Paco Cabezas. For the 2015 film Mr. Right directed by Roger Melvin, see IMDB Mr. Right is a 2016 American action-comedy romance film directed by Paco Cabezas and written by Max Landis. It stars Sam Rockwell, Anna Kendrick, Tim Roth, James Ransone, Anson Mount, Michael Eklund and RZA. The film was released in the United States on April 8, 2016, by Focus World."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Focus_Features"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Foodland_(film)"}, "Title": {"type": "literal", "value": "Foodland"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Smoluk"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kim_Poirier"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "Foodland is a 2010 Canadian comedy film written and directed by Adam Smoluk."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/All_About_Steve"}, "Title": {"type": "literal", "value": "All About Steve"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Phil_Traill"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "All About Steve is a 2009 American comedy film directed by Phil Traill that stars Sandra Bullock, Thomas Haden Church, and Bradley Cooper as the eponymous Steve. The film was panned by critics and is the winner of two Golden Raspberry Awards."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Conception_(film)"}, "Title": {"type": "literal", "value": "Conception"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Josh_Stolberg"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aaron_Ashmore|http://dbpedia.org/resource/Alan_Tudyk|http://dbpedia.org/resource/America_Olivo|http://dbpedia.org/resource/Connie_Britton|http://dbpedia.org/resource/David_Arquette|http://dbpedia.org/resource/Gregory_Smith_(actor)|http://dbpedia.org/resource/Jason_Mantzoukas|http://dbpedia.org/resource/Jennifer_Finnigan|http://dbpedia.org/resource/Jennifer_Jostyn|http://dbpedia.org/resource/Jonathan_Silverman|http://dbpedia.org/resource/Julie_Bowen|http://dbpedia.org/resource/Leah_Pipes|http://dbpedia.org/resource/Matt_Prokop|http://dbpedia.org/resource/Moon_Bloodgood|http://dbpedia.org/resource/Pamela_Adlon|http://dbpedia.org/resource/Sarah_Hyland|http://dbpedia.org/resource/Steve_Howey_(actor)|http://dbpedia.org/resource/Tim_Griffin_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "Conception is an American film that was released in 2011. The film is produced by Rock It Productions."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Tribeca_Film_Festival"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/TMNT_(film)"}, "Title": {"type": "literal", "value": "TMNT"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Munroe"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "TMNT is a 2007 computer-animated fantasy action film based on the comic book characters the Teenage Mutant Ninja Turtles. Written and directed by Kevin Munroe, the film features the voice talents of Nolan North, James Arnold Taylor, Mikey Kelley, Mitchell Whitfield, Chris Evans, Sarah Michelle Gellar, Kevin Smith, Patrick Stewart, Zhang Ziyi and Laurence Fishburne (who provides narration). It was the last film that Mako Iwamatsu made before his death and was co-produced by the Turtles' co-creator Peter Laird for Warner Bros. Pictures. TMNT was the first Teenage Mutant Ninja Turtles film made with computer-generated imagery (CGI), created by Imagi Animation Studios, as well as the first feature film in the franchise in 14 years. TMNT co-creator Peter Laird stated it takes place in its own universe separate from the previous films, which was supported by its depiction in Turtles Forever. However director Kevin Munroe says the film exists in the same continuity as the other films, which was supported by the memento wall at the end of the film. The film sees the four Turtles (Raphael, Leonardo, Donatello, and Michelangelo) grow apart after their final defeat of the Shredder, when strange things are happening in New York City as ancient creatures threaten the world and the Turtles must reunite to save it. TMNT premiered theatrically on March 23, 2007. It was a commercial success, grossing $95 million worldwide for a budget of $34 million, but received mixed reviews from film critics. Its release coincided with tie-in products including toys, comics and video games."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/De_l'autre_c\u00f4t\u00e9_du_lit"}, "Title": {"type": "literal", "value": "De l'autre c\u00f4t\u00e9 du lit"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pascale_Pouzadoux"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dany_Boon|http://dbpedia.org/resource/Sophie_Marceau"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "De l'autre c\u00f4t\u00e9 du lit (English: Changing Sides) is a 2008 French comedy film directed by Pascale Pouzadoux and starring Sophie Marceau and Dany Boon. Adapted from the novel of the same name by Alix Girod de l'Ain, the film is about a husband and wife who decide to exchange their lives for a year in order to save their marriage. De l'autre c\u00f4t\u00e9 du lit was filmed on location in Paris."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Murder_Party"}, "Title": {"type": "literal", "value": "Murder Party"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jeremy_Saulnier"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Macon_Blair"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "Murder Party is a 2007 American horror comedy film written, directed and shot by Jeremy Saulnier. It was shot in Brooklyn, New York. It was given the Audience Award for Best Feature at the 2007 Slamdance Film Festival and screened within such festivals as Maryland Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Magnolia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Comedy_Garage"}, "Title": {"type": "literal", "value": "The Comedy Garage"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Logan_Leistikow"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Documentary_films_about_comedy_and_comedians"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "50"}, "Description": {"type": "literal", "value": "The Comedy Garage is a documentary by director Logan Leistikow, released in 2011, depicting a day in the life of five rising star comedians who produce a stand up comedy show performed on a self-made stage in their garage in Burbank, California. Shot cin\u00e9ma v\u00e9rit\u00e9 style, the film highlights the unique personalities and techniques of comics Cornell Reid, Matthew Sullivan, Sean Green, Paul Danke, and Casey Feigh. The Comedy Garage had been a staple of the Los Angeles comedy scene before filming began. Leistikow met the comedians while working at Tom Green Live. Once he was invited to a comedy garage show, he got inspired and soon began production on the documentary."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IndieFlix"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Great_World_of_Sound"}, "Title": {"type": "literal", "value": "Great World of Sound"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Craig_Zobel"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kene_Holliday|http://dbpedia.org/resource/Pat_Healy_(actor)|http://dbpedia.org/resource/Rebecca_Mader"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "Great World of Sound is a 2007 comedy film directed by Craig Zobel. Zobel won Breakthrough Director at the Gotham Awards and the film also won the Grand Jury Award at the Atlanta Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Magnolia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Soul_Men"}, "Title": {"type": "literal", "value": "Soul Men"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Malcolm_D._Lee"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Herschman|http://dbpedia.org/resource/Affion_Crockett|http://dbpedia.org/resource/Bernie_Mac|http://dbpedia.org/resource/Isaac_Hayes|http://dbpedia.org/resource/Jennifer_Coolidge|http://dbpedia.org/resource/John_Legend|http://dbpedia.org/resource/Mike_Epps|http://dbpedia.org/resource/Samuel_L._Jackson|http://dbpedia.org/resource/Sean_Hayes_(actor)|http://dbpedia.org/resource/Sharon_Leal|http://dbpedia.org/resource/Vanessa_del_Rio"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Soul Men is an American musical comedy film directed by Malcolm D. Lee, and starring Samuel L. Jackson, Bernie Mac, Sharon Leal and Sean Hayes, released on November 7, 2008. This was Bernie Mac's last film appearance; he died on August 9, 2008. Bernie Mac and Isaac Hayes died in unrelated circumstances on August 9 and 10, 2008, respectively. Director Lee said the film was heavily re-edited to soften the tone of the film, as a tribute to the two actors."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Dimension_Films|http://dbpedia.org/resource/Metro-Goldwyn-Mayer"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Search_Party_(film)"}, "Title": {"type": "literal", "value": "Search Party"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Scot_Armstrong"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Pally|http://dbpedia.org/resource/Alison_Brie|http://dbpedia.org/resource/Krysten_Ritter|http://dbpedia.org/resource/Shannon_Woodward|http://dbpedia.org/resource/T._J._Miller|http://dbpedia.org/resource/Thomas_Middleditch"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Search Party is a 2014 American comedy film directed by Scot Armstrong in his directorial debut, and co-written with Mike Gagerman and Andrew Waller based on a story by Gagerman and Waller. The film stars T. J. Miller, Adam Pally, Thomas Middleditch, Alison Brie, Shannon Woodward, and Krysten Ritter. The film was released in 2014 internationally,  but was not released in the United States until May 13, 2016, by Focus World."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Focus_Features"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Gold_Circle_Films|http://dbpedia.org/resource/Original_Film"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/500_Days_of_Summer"}, "Title": {"type": "literal", "value": "500 Days of Summer"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Marc_Webb"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Joseph_Gordon-Levitt|http://dbpedia.org/resource/Zooey_Deschanel"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "500 Days of Summer (stylized as (500) Days of Summer) is a 2009 American romantic comedy-drama film directed by Marc Webb from a screenplay written by Scott Neustadter and Michael H. Weber, and produced by Mark Waters. The film stars Joseph Gordon-Levitt and Zooey Deschanel, and employs a nonlinear narrative structure, with the story based upon its male protagonist and his memories of a failed relationship. As an independent production, the film was picked up for distribution by Fox Searchlight Pictures and premiered at the 25th Sundance Film Festival. It garnered critical acclaim and became a successful \"sleeper hit\", earning over $60 million in worldwide returns, far exceeding its $7.5 million budget. Many critics lauded the film as one of the best from 2009 and drew comparisons to other acclaimed films such as Annie Hall (1977) and High Fidelity (2000). The film received Best Original Screenplay and Best Screenplay awards at the 14th Satellite Awards and 25th Independent Spirit Awards, respectively, as well as two nominations at the 67th Golden Globe Awards: Best Motion Picture \u2013 Musical or Comedy and Best Actor \u2013 Musical or Comedy (Gordon-Levitt)."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Searchlight_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Familia_rodante"}, "Title": {"type": "literal", "value": "Familia rodante"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pablo_Trapero"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Graciana_Chironi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "Familia rodante (English: Rolling Family) is a 2004 comedy drama film, written and directed by Pablo Trapero, and produced by various countries, including Argentina. The film's executive producers were Hugo Castro Fau and Martina Gusman, and it was produced by Pablo Trapero, Robert Bevan, and Donald Ranvaud. The picture is about a large Argentine family that takes a northern 1000 plus kilometer road trip in an old cramped motor-home to attend a wedding. The family takes part in many adventures along their way to the wedding."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Axiom_Films|http://dbpedia.org/resource/Pol-Ka"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Connasse,_Princesse_des_c\u0153urs"}, "Title": {"type": "literal", "value": "Connasse, Princesse des c\u0153urs"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/No\u00e9mie_Saglio|http://dbpedia.org/resource/\u00c9lo\u00efse_Lang"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Camille_Cottin"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Belgian_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "Connasse, Princesse des c\u0153urs (also titled The Parisian Bitch) is a 2015 French-Belgian comedy film written and directed by \u00c9lo\u00efse Lang and No\u00e9mie Saglio, and starring Camille Cottin."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Gaumont_Film_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Greyness_of_Autumn"}, "Title": {"type": "literal", "value": "The Greyness of Autumn"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Quick"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Quick|http://dbpedia.org/resource/Duncan_Airlie_James"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "14"}, "Description": {"type": "literal", "value": "The Greyness of Autumn is a short comedy film following the life of Danny McGuire, an ostrich living in Glasgow. The film was produced by Quick Off The Mark Productions and marked the directorial debut for Chris Quick."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mammoth_(2006_film)"}, "Title": {"type": "literal", "value": "Mammoth"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tim_Cox"}, "Author": {"type": "literal", "value": "http://dbpedia.org/resource/Brook_Durham|http://dbpedia.org/resource/Sean_Keller|http://dbpedia.org/resource/Tim_Cox"}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Leila_Arcieri|http://dbpedia.org/resource/Summer_Glau|http://dbpedia.org/resource/Tom_Skerritt|http://dbpedia.org/resource/Vincent_Ventresca"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Mammoth is a 2006 action comedy horror directed by Tim Cox and produced by Plinyminor in association with the Sci Fi Channel starring Vincent Ventresca, Summer Glau, Leila Arcieri and Tom Skerritt. The film was nominated for a 2006 Emmy Award for Outstanding Special Visual Effects."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Alliance_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/12:08_East_of_Bucharest"}, "Title": {"type": "literal", "value": "12:08 East of Bucharest|A fost sau n-a fost?"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Corneliu_Porumboiu"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ion_Sapdaru|http://dbpedia.org/resource/Mircea_Andreescu|http://dbpedia.org/resource/Teodor_Corban"}, "Published": {"type": "literal", "value": "2006-05-24"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "12:08 East of Bucharest (Romanian: A fost sau n-a fost?) is a 2006 Romanian film directed by Corneliu Porumboiu, released in 2006 and winner of the Cam\u00e9ra d'Or Prize (for best first film) at the Cannes Film Festival. It was also released in the United States under the abridged titles East of Bucharest and 12:08 Bucharest. The film is set in the city of Vaslui, and centers on a group of characters who revisit the Romanian Revolution of 1989 which brought an end to the communist regime. The full English title refers to the setting of the film and the time of day at which Romanian dictator Nicolae Ceau\u015fescu fled following the revolution, 12:08 pm on 22 December 1989. The original Romanian title roughly translates to \"Was There or Wasn't There?\", referring to the film's central issue: did Vaslui have any part in the 1989 revolution? The answer depends on whether the city registered any protest before the moment of Ceau\u015fescu's flight."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Tartan_USA"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Young_Adult_(film)"}, "Title": {"type": "literal", "value": "Young Adult"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jason_Reitman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Charlize_Theron|http://dbpedia.org/resource/Elizabeth_Reaser|http://dbpedia.org/resource/Patrick_Wilson_(American_actor)|http://dbpedia.org/resource/Patton_Oswalt"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Young Adult is a 2011 American comedy-drama film directed by Jason Reitman, from a screenplay written by Diablo Cody, and starring Charlize Theron. Reitman and Cody worked together previously on Juno (2007). Young Adult had a limited release on December 9, 2011, and a wide release on December 16 to generally positive reviews."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Denver_and_Delilah_Productions|http://dbpedia.org/resource/Mandate_Pictures|http://dbpedia.org/resource/Mr._Mudd"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mystery_Team"}, "Title": {"type": "literal", "value": "Mystery Team"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dan_Eckman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aubrey_Plaza|http://dbpedia.org/resource/DC_Pierson|http://dbpedia.org/resource/Dominic_Dierkes|http://dbpedia.org/resource/Donald_Glover"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Comedy_mystery_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Mystery Team is a 2009 film created by the comedy group Derrick Comedy. The story was written by Donald Glover, DC Pierson, Dominic Dierkes, Dan Eckman, and Meggie McFadden. It stars Donald Glover, DC Pierson, and Dominic Dierkes. It was directed by Eckman and produced by McFadden."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Roadside_Attractions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Celal_ile_Ceren"}, "Title": {"type": "literal", "value": "Celal ile Ceren"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Togan_G\u00f6kbakar"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ezgi_Mola|http://dbpedia.org/resource/\u015eahan_G\u00f6kbakar"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Turkish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "Celal ile Ceren is a 2013 Turkish romantic comedy film directed by Togan G\u00f6kbakar and starring \u015eahan G\u00f6kbakar and Ezgi Mola. The film has been released nationwide on 18 January 2013. Celal ile Ceren is accused of sexism by Turkish film critics and recognized to be one of the worst films ever made. It is considered as a mockbuster of high-grossing Turkish comedy Recep \u0130vedik."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Tiglon_(distributor)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Alvin_and_the_Chipmunks_(film)"}, "Title": {"type": "literal", "value": "Landon Hayes and Friends"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tim_Hill_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cameron_Richardson|http://dbpedia.org/resource/David_Cross|http://dbpedia.org/resource/Jason_Lee_(actor)|http://dbpedia.org/resource/Jesse_McCartney|http://dbpedia.org/resource/Justin_Long|http://dbpedia.org/resource/Matthew_Gray_Gubler"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_fantasy-comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Landon Hayes and Friends is a 2007 American live-action musical comedy film directed by Tim Hill. Based on the characters of the same name created by Ross Bagdasarian, Sr., the film stars Jason Lee, David Cross, and Cameron Richardson with the voices of Justin Long, Matthew Gray Gubler and Jesse McCartney. It was distributed by 20th Century Fox and produced by Fox 2000 Pictures, Regency Enterprises and Bagdasarian Company. The film received largely negative reviews, but was a major financial success; it made $217 million in North America and $361 million at the box office worldwide on a budget of $60 million and was the seventh-best-selling DVD of 2008, earning over $101 million. The first film in the film series, Alvin and the Chipmunks was followed by three sequels: Alvin and the Chipmunks: The Squeakquel, released on December 23, 2009, Alvin and the Chipmunks: Chipwrecked, released on December 16, 2011 and Alvin and the Chipmunks: The Road Chip, released on December 18, 2015."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Big_Helium_Dog"}, "Title": {"type": "literal", "value": "Big Helium Dog"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Brian_Lynch_(writer)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Matt_Kawczynski|http://dbpedia.org/resource/Michael_Linstroth"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Big Helium Dog is a 1999 comedy film. It is produced by Kevin Smith's View Askew production company and also features the Broken Lizard comedy troupe in starring (Kevin Heffernan) and supporting (Jay Chandrasekhar, Steve Lemme, and Erik Stolhanske) roles. The film has long been a favorite amongst fans who attended screenings at festivals such as the Smith sponsored \"Vulgarthon\" which led to an anticipated DVD release."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Can't_Hardly_Wait"}, "Title": {"type": "literal", "value": "Can't Hardly Wait"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Deborah_Kaplan|http://dbpedia.org/resource/Harry_Elfont"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:1990s_romantic_comedy_films|http://dbpedia.org/resource/Category:1990s_teen_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Can't Hardly Wait is a 1998 American teen comedy film written and directed by Deborah Kaplan and Harry Elfont. It stars an ensemble cast including Jennifer Love Hewitt, Ethan Embry, Charlie Korsmo, Lauren Ambrose, Peter Facinelli, and Seth Green, and is notable for a number of \"before-they-were-famous\" appearances by teen stars."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Free_Agents"}, "Title": {"type": "literal", "value": "Free Agents"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Griffiths_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anthony_Head|http://dbpedia.org/resource/Sharon_Horgan|http://dbpedia.org/resource/Stephen_Mangan"}, "Published": {"type": "literal", "value": "2009-02-13"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Comedy_Showcase"}, "Genre": {"type": "literal", "value": "http://dbpedia.org/resource/Comedy"}, "Duration": {"type": "literal", "value": "22"}, "Description": {"type": "literal", "value": "Free Agents is a romantic black comedy starring Stephen Mangan, Sharon Horgan and Anthony Head. Originally a pilot for Channel 4 in November 2007, the series began on 13 February 2009. It spawned a short lived US remake, which was cancelled after just 4 episodes aired, although 4 more were later released on Hulu."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/That_Day_After_Everyday"}, "Title": {"type": "literal", "value": "That Day After Everyday..."}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Anurag_Kashyap"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Geetanjali_Thapa|http://dbpedia.org/resource/Radhika_Apte|http://dbpedia.org/resource/Sandhya_Mridul"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "22"}, "Description": {"type": "literal", "value": "That Day After Everyday is a Hindi short film directed by Anurag Kashyap, written by Nitin Bhardwaj, and produced by Sankalp Acharekar & Omer Haidar. Starring Sandhya Mridul, Radhika Apte, Geetanjali Thapa and Aranya kaur - the film takes the audience on an emotional ride ending at an action filled crescendo."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Severance_(film)"}, "Title": {"type": "literal", "value": "Severance"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Christopher_Smith_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Nyman|http://dbpedia.org/resource/Claudie_Blakley|http://dbpedia.org/resource/Danny_Dyer|http://dbpedia.org/resource/Laura_Harris|http://dbpedia.org/resource/Tim_McInnerny|http://dbpedia.org/resource/Toby_Stephens"}, "Published": {"type": "literal", "value": "2006-08-25"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:British_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Severance is a 2006 British-German comedy horror film co-written and directed by Christopher Smith. Co-written with James Moran, it stars Danny Dyer and Laura Harris. The film tells a story of group of co-workers who go to a remote mountain forest in Hungary, where they become victims of murderous attacks. Severance received mostly positive reviews. In 2009, media interest in the film was revived following the alleged copycat murder of a UK teenager."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Magnolia_Pictures|http://dbpedia.org/resource/Path\u00e9"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Brother_Nature_(film)"}, "Title": {"type": "literal", "value": "Brother Nature"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Matt_Villines"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bill_Pullman|http://dbpedia.org/resource/Bobby_Moynihan|http://dbpedia.org/resource/Gillian_Jacobs|http://dbpedia.org/resource/Rita_Wilson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Brother Nature is a 2016 American comedy film directed by Osmany Rodriguez and Matt Villines, from a screenplay by Mikey Day, Cameron Fay, and Taran Killam. It stars Killam, Bobby Moynihan, Gillian Jacobs, Rita Wilson and Bill Pullman. The film was released in a limited release and through video on demand on September 9, 2016, by Insurge Pictures and Samuel Goldwyn Films. The film was originally titled Brother in Laws."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Insurge_Pictures|http://dbpedia.org/resource/Samuel_Goldwyn_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/I_Give_It_a_Year"}, "Title": {"type": "literal", "value": "I Give It a Year"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dan_Mazer"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anna_Faris|http://dbpedia.org/resource/Jason_Flemyng|http://dbpedia.org/resource/Minnie_Driver|http://dbpedia.org/resource/Olivia_Colman|http://dbpedia.org/resource/Rafe_Spall|http://dbpedia.org/resource/Rose_Byrne|http://dbpedia.org/resource/Simon_Baker|http://dbpedia.org/resource/Stephen_Merchant"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:British_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "I Give It a Year is a 2013 British comedy film, written and directed by Dan Mazer and starring Rose Byrne, Rafe Spall, Anna Faris and Simon Baker. The film was based and filmed in London and was released on 8 February 2013. I Give It a Year was Mazer's directorial debut. He was previously been best known for co-writing the Sacha Baron Cohen films Borat and Br\u00fcno."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Magnolia_Pictures|http://dbpedia.org/resource/StudioCanal"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tijuana_Makes_Me_Happy"}, "Title": {"type": "literal", "value": "Tijuana Makes Me Happy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dylan_Verrechia"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "Tijuana Makes Me Happy is a 2007 film made in Tijuana, Mexico. It was directed by Dylan Verrechia, co-written by James Lefkowitz, with original music by Nortec Collective, and titled by writer Rafael Saavedra. Variety described it as \"slight but likable\". The movie has not yet had a general release , but has been screened at several movie festivals  and won the Grand Jury Prize for Best Narrative Feature at the 2007 Slamdance Film Festival, and is one of the four recipients of the 2007 SAFILM Indie Max Award ."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/House_of_Fury"}, "Title": {"type": "literal", "value": "House of Fury"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Stephen_Fung|http://dbpedia.org/resource/Yuen_Woo-ping"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anthony_Wong_(Hong_Kong_actor)|http://dbpedia.org/resource/Charlene_Choi|http://dbpedia.org/resource/Daniel_Wu|http://dbpedia.org/resource/Gillian_Chung|http://dbpedia.org/resource/Jon_Foo|http://dbpedia.org/resource/Michael_Wong_(actor)|http://dbpedia.org/resource/Philip_Ng|http://dbpedia.org/resource/Stephen_Fung"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Hong_Kong_action_comedy_films|http://dbpedia.org/resource/Category:Martial_arts_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "House of Fury (Chinese: \u7cbe\u6b66\u5bb6\u5ead) is a 2005 Hong Kong martial arts comedy film written and directed by Stephen Fung, who also co-stars in the film, and executive produced by Jackie Chan. The film stars Anthony Wong, Michael Wong and Gillian Chung. The film was released in the Hong Kong on 24 March 2005. House of Fury features a collaboration between Anthony Wong and Michael Wong, reuniting them for the first time since 1998's Beast Cops."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Emperor_Entertainment_Group|http://dbpedia.org/resource/JCE_Movies_Limited"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/A_Lost_Man"}, "Title": {"type": "literal", "value": "Un homme perdu - \u0631\u062c\u0644 \u0636\u0627\u0626\u0639"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Danielle_Arbid"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alexander_Siddig|http://dbpedia.org/resource/Carol_Abboud|http://dbpedia.org/resource/Melvil_Poupaud|http://dbpedia.org/resource/Sarah_Warde|http://dbpedia.org/resource/Yasmine_Lafitte"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "A Lost Man (French : Un homme perdu)(Arabic: \u0631\u062c\u0644 \u0636\u0627\u0626\u0639 rajolon da'e'\u200e\u200e) is a 2007 Lebanese film by the Lebanese director Danielle Arbid. The film premiered on 18 March during the 2007 Cannes Film Festival, in the Directors' Fortnight section. It is possibly the most sexually graphic film ever made by an Arab director. The film was inspired by the life of the French photographer Antoine D'Agata."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Spies_(film)"}, "Title": {"type": "literal", "value": "The Spies"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Woo_Min-ho"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Byun_Hee-bong|http://dbpedia.org/resource/Jung_Gyu-woon|http://dbpedia.org/resource/Kim_Myung-min|http://dbpedia.org/resource/Yoo_Hae-jin|http://dbpedia.org/resource/Yum_Jung-ah"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Action_comedy_films|http://dbpedia.org/resource/Category:South_Korean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "The Spies (Hangul: \uac04\ucca9; RR: Gancheop), also known as The Spy, is a 2012 South Korean action comedy film, starring Kim Myung-min, Yum Jung-ah, Byun Hee-bong, Jung Gyu-woon, Yoo Hae-jin and directed by Woo Min-ho. It is about North Korean undercover spies living mundane lives in South Korea. The film was released on September 20, 2012, and attracted 1,310,895 admissions nationwide."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lotte_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Emojimovie:_Express_Yourself"}, "Title": {"type": "literal", "value": "Emojimovie: Express Yourself"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tony_Leondis"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ilana_Glazer|http://dbpedia.org/resource/James_Corden|http://dbpedia.org/resource/T._J._Miller"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Emojimovie: Express Yourself is an upcoming American computer-animated adventure comedy film directed by Tony Leondis and written by Eric Siegel and Leondis. Produced by Sony Pictures Animation, the film will be released on August 11, 2017 by Columbia Pictures. The film, along with Smurfs: The Lost Village and The Star, will make Sony Pictures Animation the second animation studio to release three feature films in the same year."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Chai_Lai"}, "Title": {"type": "literal", "value": "Chai Lai (Dangerous Flowers)"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Poj_Arnon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bongkoj_Khongmalai|http://dbpedia.org/resource/Bunyawan_Pongsuwan|http://dbpedia.org/resource/Jintara_Poonlarp|http://dbpedia.org/resource/Kessarin_Ektawatkul|http://dbpedia.org/resource/Supaksorn_Chaimongkol"}, "Published": {"type": "literal", "value": "2006-01-26"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Martial_arts_comedy_films|http://dbpedia.org/resource/Category:Thai_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Chai Lai (Thai: \u0e44\u0e09\u0e44\u0e25, English title: Dangerous Flowers and also known as Chai Lai's Angels) is a 2006 Thai action film about five female top-secret crimefighters, each with the codename of a flower, Lotus, Hibiscus, Rose, Spadix and Crown of Thorns. The premise is modelled after Charlie's Angels."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sahamongkol_Film_International"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/WolfCop"}, "Title": {"type": "literal", "value": "WolfCop"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lowell_Dean"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amy_Matysio|http://dbpedia.org/resource/Jesse_Moss_(actor)|http://dbpedia.org/resource/Jonathan_Cherry|http://dbpedia.org/resource/Sarah_Lind"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:Canadian_comedy_films|http://dbpedia.org/resource/Category:Police_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "WolfCop is a 2014 Canadian horror comedy film written and directed by Lowell Dean. The film was released to Cineplex theatres nationwide on 6 June 2014. It is the first film chosen for production from the CineCoup Film Accelerator. It stars Jesse Moss, Amy Matysio, Jonathan Cherry, Sarah Lind, Aidan Devine, Corrine Conley and Leo Fafard. The plot revolves around an alcoholic small town cop who transforms into a werewolf after being cursed. However, he still possesses his human intelligence in wolf form and continues his work as a police officer even in wolf form. WolfCop was released to UK DVD and Blu-ray on the 13 October 2014."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Goa_(2010_film)"}, "Title": {"type": "literal", "value": "Goa"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Venkat_Prabhu"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aravind_Akash|http://dbpedia.org/resource/Jai_(actor)|http://dbpedia.org/resource/Melanie_Marie_Jobstreibitzer|http://dbpedia.org/resource/Piaa_Bajpai|http://dbpedia.org/resource/Premji_Amaran|http://dbpedia.org/resource/Sampath_Raj|http://dbpedia.org/resource/Sneha_(actress)|http://dbpedia.org/resource/Vaibhav_Reddy"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "164"}, "Description": {"type": "literal", "value": "Goa is a 2010 Tamil adult comedy film written and directed by Venkat Prabhu, who with the project, directed his third film following two previous successes. Starring his \"regular cast\" consisting of Jai, Vaibhav and Premji Amaran in the lead roles along with Sneha, Piaa Bajpai and the debutant Australian model Melanie Marie in other roles, the film is the first production of Soundarya Rajinikanth's Ocher Picture Productions. Actors Silambarasan Rajendar, Nayantara and Prasanna make guest appearances in the film, which features music composed by Yuvan Shankar Raja, whilst cinematography is handled by Sakthi Saravanan and the film is edited by K. L. Praveen and N. B. Srikanth. The film follows the journey of three young men, Vinayagam, Ramarajan and Saamikannu, who flee from their remote, conservative village to escape their overly strict families and travel to the international tourist-destination Goa, after encountering a friend who had fallen in love with a Caucasian girl whilst on holiday there. The film explores their time in Goa, the people they meet ranging from gay hoteliers to suave casino owners, and dwells on the relationships they encounter in the region. The film, which began pre-production work in August 2008, became highly anticipated before release due to the successes of the director's prior two films. Filming began in April 2009 and took place in various locations: in the title location of Goa as well as in Pannapuram, Tamil Nadu and Langkawi, Malaysia with the latter being used due to the monsoonal season of Goa, forcing the team to relocate. Before release, the film was given an adult rating by the Central Board of Film Certification, despite much contention from the team with the film also avoiding a court case in regard to the producer's loan. The film released on 29 January 2010 to mostly mixed reviews. The film was remade in Kannada language using the same title and released in 2015."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Soundarya_Rajinikanth|http://dbpedia.org/resource/Warner_Bros._Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Toni_Erdmann"}, "Title": {"type": "literal", "value": "Toni Erdmann"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Maren_Ade"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Lucy_Russell_(actress)|http://dbpedia.org/resource/Peter_Simonischek|http://dbpedia.org/resource/Sandra_H\u00fcller|http://dbpedia.org/resource/Vlad_Ivanov"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Austrian_comedy_films|http://dbpedia.org/resource/Category:German_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "162"}, "Description": {"type": "literal", "value": "Toni Erdmann is a 2016 German-Austrian comedy drama film directed, written and co-produced by Maren Ade. It stars Peter Simonischek, Sandra H\u00fcller , Michael Wittenborn, Thomas Loibl, Trystan P\u00fctter, Hadewych Minis, Lucy Russell, Ingrid Bisu, Vlad Ivanov and Victoria Cocias. The film was selected to compete for the Palme d'Or at the 2016 Cannes Film Festival. It was selected as the German submission for the Best Foreign Language Film at the 89th Academy Awards."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Outside_Bet"}, "Title": {"type": "literal", "value": "Outside Bet"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sacha_Bennett"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Deacon|http://dbpedia.org/resource/Bob_Hoskins|http://dbpedia.org/resource/Jenny_Agutter|http://dbpedia.org/resource/Philip_Davis_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Outside Bet, also known as Weighed In: The Story of the Mumper, is a British comedy film directed by Sacha Bennett and starring Bob Hoskins, Jenny Agutter, Philip Davis and Adam Deacon. The film was released on 27 April 2012."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/We_Are_Brothers"}, "Title": {"type": "literal", "value": "We Are Brothers"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jang_Jin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cho_Jin-woong|http://dbpedia.org/resource/Kim_Sung-kyun"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:South_Korean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "We Are Brothers (Hangul: \uc6b0\ub9ac\ub294 \ud615\uc81c\uc785\ub2c8\ub2e4; RR: Urineun Hyeongjeibnida) is a 2014 South Korean film directed by Jang Jin."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Showbox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Mississippi_Grind"}, "Title": {"type": "literal", "value": "Mississippi Grind"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Anna_Boden|http://dbpedia.org/resource/Ryan_Fleck"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alfre_Woodard|http://dbpedia.org/resource/Analeigh_Tipton|http://dbpedia.org/resource/Ben_Mendelsohn|http://dbpedia.org/resource/Ryan_Reynolds|http://dbpedia.org/resource/Sienna_Miller"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "Mississippi Grind is a 2015 American drama film directed and written by Anna Boden and Ryan Fleck. It stars Ryan Reynolds, Ben Mendelsohn, Sienna Miller, Analeigh Tipton, Robin Weigert, and Alfre Woodard. The film was released on September 25, 2015 by A24."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/A24_(company)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Good_Neighbors_(film)"}, "Title": {"type": "literal", "value": "Good Neighbours"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jacob_Tierney"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Emily_Hampshire|http://dbpedia.org/resource/Jay_Baruchel|http://dbpedia.org/resource/Scott_Speedman|http://dbpedia.org/resource/Xavier_Dolan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Black_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Good Neighbours is a 2010 Canadian black comedy-thriller film which was written and directed by Jacob Tierney. It is based on the book by Chrystine Brouillet."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Alliance_Films|http://dbpedia.org/resource/Myriad_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Onion_Movie"}, "Title": {"type": "literal", "value": "The Onion Movie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tom_Kuntz"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Larissa_Laskin|http://dbpedia.org/resource/Len_Cariou|http://dbpedia.org/resource/Scott_Klace|http://dbpedia.org/resource/Steven_Seagal"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "The Onion Movie is a comedy film written by The Onion writers Robert D. Siegel and Todd Hanson along with the Chicago-based writing staff of the paper. It was filmed in 2003 and released on June 3, 2008 direct-to-video."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Searchlight_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Perks_of_Being_a_Wallflower_(film)"}, "Title": {"type": "literal", "value": "The Perks of Being a Wallflower"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Stephen_Chbosky"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "The Perks of Being a Wallflower is a 2012 American coming-of-age, comedy-drama film. An adaptation of the 1999 epistolary novel of the same name, it was written and directed by the novel's author, Stephen Chbosky. Filmed in Pittsburgh, Pennsylvania, the film was released on September 21, 2012, to positive critical response and commercial success, earning $33.4 million to a budget of $13 million. The film stars Logan Lerman, Emma Watson and Ezra Miller. Two or three years after the release of film, Chbosky began to speak more openly concerning the mental health care aspects of the film which were of significance to him in the original writing of the book and the production of the film as he conceived it. This is one of the three films from John Malkovich, Lianne Halfon and Russell Smith's Mr. Mudd Productions that feature struggling teenagers; the other two are Ghost World and Juno."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Summit_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hello,_My_Name_Is_Doris"}, "Title": {"type": "literal", "value": "Hello, My Name Is Doris"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Showalter"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Beth_Behrs|http://dbpedia.org/resource/Elizabeth_Reaser|http://dbpedia.org/resource/Max_Greenfield|http://dbpedia.org/resource/Natasha_Lyonne|http://dbpedia.org/resource/Sally_Field|http://dbpedia.org/resource/Stephen_Root|http://dbpedia.org/resource/Tyne_Daly|http://dbpedia.org/resource/Wendi_McLendon-Covey"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Hello, My Name Is Doris is a 2015 American romantic comedy-drama film directed by Michael Showalter from a screenplay by Showalter and Laura Terruso, about a woman in her 60s who tries to act on her attraction to a younger co-worker. It stars Sally Field in the title role, alongside Max Greenfield, Beth Behrs, Wendi McLendon-Covey, Stephen Root, Elizabeth Reaser, Natasha Lyonne and Tyne Daly. The film had its world premiere at the SXSW Film Festival on March 14, 2015, and was theatrically released on March 11, 2016, by Roadside Attractions and Stage 6 Films."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Roadside_Attractions|http://dbpedia.org/resource/Stage_6_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hexed"}, "Title": {"type": "literal", "value": "Hexed"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alan_Spencer"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adrienne_Shelly|http://dbpedia.org/resource/Arye_Gross|http://dbpedia.org/resource/Claudia_Christian|http://dbpedia.org/resource/Norman_Fell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_comedy_thriller_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Hexed is a 1993 comedy film, starring Arye Gross, Claudia Christian, Adrienne Shelly, and R. Lee Ermey, and written and directed by Alan Spencer, best known as the creator of the satirical TV series Sledge Hammer! The dark humor centers on a nebbish clerk who is seduced by a supermodel, unaware that she's a psychotic murderess. The film was shot in Dallas and Fort Worth.Director and writer Alan Spencer expressed disappointment he was not given full creative control and was forced to film the movie on a tight schedule."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Nataraja_Service"}, "Title": {"type": "literal", "value": "Nataraja Service"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pavan_Wadeyar"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Mayuri_Kyatari|http://dbpedia.org/resource/Sharan_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_films|http://dbpedia.org/resource/Category:Romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Nataraja Service (Kannada: \u0ca8\u0c9f\u0cb0\u0cbe\u0c9c \u0cb8\u0cb0\u0ccd\u0cb5\u0cbf\u0cb8\u0ccd) is an upcoming Indian Kannada language romantic comedy film directed by Pavan Wadeyar, produced by N.S. Rajkumar and presented by Puneeth Rajkumar. It stars Sharan and Mayuri Kyatari in the lead roles. The music of the film is composed by Anoop Seelin whilst the cinematography is by Arul K. Somasundaram. Principal photography for the film began in October 2015 and the shooting was held at Bangalore,mysore, davanagere, mandya, Dandeli and Sirsi locations. Reportedly, the shooting completed in early June 2016."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Defendor"}, "Title": {"type": "literal", "value": "Defendor"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Peter_Stebbings"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Elias_Koteas|http://dbpedia.org/resource/Kat_Dennings|http://dbpedia.org/resource/Michael_Kelly_(American_actor)|http://dbpedia.org/resource/Sandra_Oh|http://dbpedia.org/resource/Woody_Harrelson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:Canadian_comedy-drama_films|http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Defendor is a 2009 Canadian-American superhero comedy-drama film written and directed by Peter Stebbings, and starring Woody Harrelson, Kat Dennings, Elias Koteas and Sandra Oh. The story tells of a regular man who adopts the persona of a real-life superhero named Defendor on a quest to find his arch enemy, Captain Industry. Defendor, Stebbings' feature film debut, was written in 2005 and filmed in January 2009 in Toronto and Hamilton, Ontario, and had its North American theatrical release on February 19, 2010. It has also been released to DVD on April 13, 2010."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Alliance_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Cross_My_Heart_(1987_film)"}, "Title": {"type": "literal", "value": "Cross My Heart"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Armyan_Bernstein"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Annette_O'Toole|http://dbpedia.org/resource/Martin_Short"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1980s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Cross My Heart is an American romantic comedy that was released in the United States on November 13, 1987. It stars Annette O'Toole and Martin Short."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bullet_Basya"}, "Title": {"type": "literal", "value": "Bullet Basya"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jayatheertha"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Haripriya|http://dbpedia.org/resource/Sharan_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "139"}, "Description": {"type": "literal", "value": "Bullet Basya is a 2015 Indian Kannada comedy film directed by Jayatheertha, and stars Sharan and Haripriya in the lead roles. The supporting cast features Rangayana Raghu, Sadhu Kokila and Yathiraj Jaggesh. The title of the film was taken from Sudheer's character in the 1989 Kannada film C.B.I. Shankar. The makers however confirmed that there was connection between the two."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Big_Gay_Musical"}, "Title": {"type": "literal", "value": "The Big Gay Musical"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Casper_Andreas"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Casper_Andreas|http://dbpedia.org/resource/Lena_Hall"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films|http://dbpedia.org/resource/Category:LGBT-related_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Big Gay Musical is a 2009 gay-themed musical-comedy film written by Fred M. Caruso and co-directed by Caruso and Casper Andreas. The film follows a brief period in the lives of two young actors, one who is openly gay, the other closeted to his parents. The openly gay actor struggles with whether he should be sexually promiscuous or seek a life partner, while the closeted one wonders if he should come out to his conservative, religious parents. Throughout the film, there are a series of musical numbers with tap dancing angels, a re-telling of the Genesis story, protests from televangelists, a deprogramming camp that tries to turn gay kids straight. By the end of the film, the characters realize that life would be better if they just accepted themselves the way they are."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Finding_North"}, "Title": {"type": "literal", "value": "Finding North"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tanya_Wexler"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/John_Benjamin_Hickey|http://dbpedia.org/resource/Wendy_Makkena"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Finding North is a 1998 gay-themed independent comedy-drama. Written by Kim Powers and directed by Tanya Wexler, the film stars Wendy Makkena and John Benjamin Hickey."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hellbenders_(film)"}, "Title": {"type": "literal", "value": "Hellbenders"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/J._T._Petty"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andre_Royo|http://dbpedia.org/resource/Clancy_Brown|http://dbpedia.org/resource/Clifton_Collins_Jr.|http://dbpedia.org/resource/Macon_Blair"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Hellbenders is a 2012 American comedy film written and directed by J. T. Petty. The film stars Clifton Collins Jr., Clancy Brown, Andre Royo, Robyn Rikoon, Macon Blair and Stephen Gevedon. The film was released on October 18, 2013, by The Film Arcade."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/The_Film_Arcade"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Next_to_Me_(film)"}, "Title": {"type": "literal", "value": "Next to Me"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Stevan_Filipovi\u0107"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hristina_Popovi\u0107|http://dbpedia.org/resource/Mirjana_Karanovi\u0107"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Next to Me (Serbian: Pored mene) is a 2015 Serbian comedy film directed by Stevan Filipovi\u0107."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Do_I_Have_to_Take_Care_of_Everything%3F"}, "Title": {"type": "literal", "value": "Do I Have to Take Care of Everything?"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Selma_Vilhunen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Finnish_comedy"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Do I Have to Take Care of Everything? (Finnish: Pit\u00e4\u00e4k\u00f6 mun kaikki hoitaa?) is a 2012 Finnish short film by Selma Vilhunen. It was nominated for the Best Live Action Short Film at the 86th Academy Awards. The film is a comedy about a busy morning in a family and a mother who is trying to take care of everything by herself. Do I Have to Take Care of Everything? is the second Finnish film as an Academy Award nominee. The first was The Man Without a Past by Aki Kaurism\u00e4ki in 2002. The film had one of only two U.S. screenings at the Chicago Comedy Film Festival in 2012."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Herbie:_Fully_Loaded"}, "Title": {"type": "literal", "value": "Herbie: Fully Loaded"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Angela_Robinson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Breckin_Meyer|http://dbpedia.org/resource/Justin_Long|http://dbpedia.org/resource/Lindsay_Lohan|http://dbpedia.org/resource/Matt_Dillon|http://dbpedia.org/resource/Michael_Keaton"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Herbie: Fully Loaded is a 2005 American sport-comedy film directed by Angela Robinson and produced by Robert Simonds for Walt Disney Pictures. It stars Lindsay Lohan as the youngest member of an automobile-racing family, Michael Keaton as her father, Matt Dillon as a competing racer, Breckin Meyer as her brother, and Justin Long as her best friend and mechanic. The film features cameos by many NASCAR drivers, including Jeff Gordon, Jimmie Johnson, Tony Stewart, Dale Earnhardt Jr., and Mark Martin. It is the first theatrical Herbie film since Herbie Goes Bananas in 1980, and grossed over $144 million worldwide."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tales_of_Halloween"}, "Title": {"type": "literal", "value": "Tales of Halloween"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Gierasch_and_Jace_Anderson|http://dbpedia.org/resource/Andrew_Kasch|http://dbpedia.org/resource/Axelle_Carolyn|http://dbpedia.org/resource/Darren_Lynn_Bousman|http://dbpedia.org/resource/John_Skipp|http://dbpedia.org/resource/Lucky_McKee|http://dbpedia.org/resource/Neil_Marshall|http://dbpedia.org/resource/Paul_Solet"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Barbara_Crampton|http://dbpedia.org/resource/Booboo_Stewart|http://dbpedia.org/resource/Caroline_Williams|http://dbpedia.org/resource/Grace_Phipps|http://dbpedia.org/resource/Greg_Grunberg|http://dbpedia.org/resource/Lin_Shaye"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Tales of Halloween is a 2015 American horror comedy film anthology consisting of ten interlocking segments. The film had its world premiere on July 24, 2015, at the Fantasia International Film Festival. It was released in a limited release and through video on demand on October 16, 2015, by Epic Pictures."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dead_Leaves"}, "Title": {"type": "literal", "value": "Dead Leaves"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Hiroyuki_Imaishi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kappei_Yamaguchi|http://dbpedia.org/resource/Takako_Honda|http://dbpedia.org/resource/Y\u016bko_Mizutani"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Action_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films|http://dbpedia.org/resource/Category:Comedy_anime_and_manga|http://dbpedia.org/resource/Category:Comedy_science_fiction_films|http://dbpedia.org/resource/Category:Japanese_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "52"}, "Description": {"type": "literal", "value": "Dead Leaves (\u30c7\u30c3\u30c9 \u30ea\u30fc\u30d6\u30b9 Deddo R\u012bbusu) is a 2004 Japanese anime science fiction film produced by animation studio Production I.G. It was distributed in Japan by Shochiku, in North America, Canada and the U.K. by Manga Entertainment, and in Australia and New Zealand by Madman Entertainment. It is directed by Hiroyuki Imaishi. It is notable for its fast pace and energetic visual style."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Shochiku"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Fan_Chan"}, "Title": {"type": "literal", "value": "Fan Chan (My Girl)"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Anusorn_Trisirikasem|http://dbpedia.org/resource/Komgrit_Triwimol|http://dbpedia.org/resource/Nithiwat_Tharathorn|http://dbpedia.org/resource/Songyos_Sugmakanan|http://dbpedia.org/resource/Vitcha_Gojiew|http://dbpedia.org/resource/Witthaya_Thongyooyong"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Charlie_Trairat|http://dbpedia.org/resource/Focus_Jirakul"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Fan Chan (Thai: \u0e41\u0e1f\u0e19\u0e09\u0e31\u0e19, English: My Girl) is a 2003 Thai romantic film offering a nostalgic look back at the childhood friendship of a boy and girl growing up in a small town in Thailand in the 1980s. It was the debut film by six young screenwriter-directors, Vitcha Gojiew, Songyos Sugmakanan, Nithiwat Tharathorn, Witthaya Thongyooyong, Anusorn Trisirikasem and Komgrit Triwimol. With a soundtrack that featured Thai pop music of the era, Fan Chan was the top domestic film at the Thailand box office in 2003, earning 140 million baht."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/GMM_Grammy"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Turn_Me_On,_Dammit!"}, "Title": {"type": "literal", "value": "Turn Me On, Dammit!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jannicke_Systad_Jacobsen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Arthur_Berning|http://dbpedia.org/resource/Beate_St\u00f8fring|http://dbpedia.org/resource/Helene_Bergsholm|http://dbpedia.org/resource/Julia_Schacht|http://dbpedia.org/resource/Malin_Bj\u00f8rhovde"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Norwegian_comedy_films|http://dbpedia.org/resource/Category:Sex_comedy_films|http://dbpedia.org/resource/Category:Teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "76"}, "Description": {"type": "literal", "value": "Turn Me On, Dammit! (Norwegian: F\u00e5 meg p\u00e5, for faen!) or Turn Me On, Goddammit! is a Norwegian coming-of-age comedy film premiered in 2011. It is based on Olaug Nilssen\u2019s novel of the same name. Set in Skoddeheimen, a fictional small town in western Norway, the film is about Alma (Helene Bergsholm), a 15 year old girl and her sexual awakening."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dance_Flick"}, "Title": {"type": "literal", "value": "Dance Flick"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Damien_Dante_Wayans"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Damon_Wayans,_Jr.|http://dbpedia.org/resource/Essence_Atkins|http://dbpedia.org/resource/Marlon_Wayans|http://dbpedia.org/resource/Shawn_Wayans|http://dbpedia.org/resource/Shoshana_Bush"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "83|88"}, "Description": {"type": "literal", "value": "Dance Flick is a 2009 American parody comedy movie directed by Damien Dante Wayans, written by many of the Wayans Family, and starring Shoshana Bush and Damon Wayans, Jr.. The film is a spoof of the popular dance film genre. It was set for release in North America on February 6, 2009. It was moved, however, to August 2009 and then to May 22, 2009."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Oru_Kal_Oru_Kannadi"}, "Title": {"type": "literal", "value": "Oru Kal Oru Kannadi"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/M._Rajesh"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hansika_Motwani|http://dbpedia.org/resource/Jangiri_Madhumitha|http://dbpedia.org/resource/Santhanam_(actor)|http://dbpedia.org/resource/Udhayanidhi_Stalin"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "166"}, "Description": {"type": "literal", "value": "Oru Kal Oru Kannadi (English: A Stone, A Mirror) abbreviated as OKOK is an Tamil romantic comedy film written and directed by M. Rajesh. It stars producer Udhayanidhi Stalin, in his acting debut, Hansika Motwani and Santhanam, whilst featuring Harris Jayaraj's music and Balasubramaniem's cinematography. The film was named after a song from the film Siva Manasula Sakthi (2009). Releasing on 13 April 2012, it opened to highly positive reviews and became a blockbuster. It was eventually released in Telugu as OK OK on 31 August 2012."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Red_Giant_Movies"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Art_of_Crying"}, "Title": {"type": "literal", "value": "The Art of Crying"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Peter_Sch\u00f8nau_Fog"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jesper_Asholt"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "The Art of Crying (Danish: Kunsten at Gr\u00e6de i Kor) is a 2006 Danish tragicomedy directed by Peter Sch\u00f8nau Fog. It stars Jannik Lorenzen and Jesper Asholt in a harsh tale about an 11-year-old boy's struggle to hold intact his bizarre family with its abusive father, mother in denial, and rebellious sister during the social unrest of the early 1970s. Based upon an autobiographical novel by Erling Jepsen, the screenplay was written by Bo Hr. Hansen. In 2007, the film received both the Bodil and Robert awards for Best Danish Film, and The Nordic Council Film Prize."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/SF_Film_(Danish_company)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/La_Luna_(2011_film)"}, "Title": {"type": "literal", "value": "La Luna"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Enrico_Casarosa"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011-06-06|2012-06-22"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "7"}, "Description": {"type": "literal", "value": "La Luna (IPA: /la\u02c8luna/ [la\u02c8lu\u02d0na], Italian for The Moon) is a 2011 Pixar computer-animated short film, directed and written by Enrico Casarosa. The short premiered on June 6, 2011 at the Annecy International Animated Film Festival in France, and was paired with Pixar's Brave for its theatrical release on June 22, 2012, being shown before the film's beginning. La Luna was released on November 13, 2012, on the Brave DVD and Blu-ray, and on a new Pixar Short Films Collection, Volume 2, the second collection of Pixar's short films. La Luna was nominated for an Academy Award for Best Animated Short Film at the 84th Academy Awards."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kids_in_America_(film)"}, "Title": {"type": "literal", "value": "Kids in America"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Josh_Stolberg"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Gregory_Smith_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:Teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Kids in America is a 2005 American comedy film directed by Josh Stolberg. It was written by Andrew Shaifer and Stolberg. The film is inspired by real events. It received negative reviews from film critics, and was a box office bomb."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Rainstorm_Entertainment|http://dbpedia.org/resource/Screen_Media_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Library_Wars:_The_Last_Mission"}, "Title": {"type": "literal", "value": "Library Wars: The Last Mission"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Shinsuke_Sato"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aoi_Nakamura|http://dbpedia.org/resource/Chiaki_Kuriyama|http://dbpedia.org/resource/Junichi_Okada|http://dbpedia.org/resource/Kazuyuki_Aijima|http://dbpedia.org/resource/Kei_Tanaka|http://dbpedia.org/resource/Kiyoshi_Kodama|http://dbpedia.org/resource/K\u014dji_Ishizaka|http://dbpedia.org/resource/Nana_Eikura|http://dbpedia.org/resource/Naomi_Nishida|http://dbpedia.org/resource/Sota_Fukushi|http://dbpedia.org/resource/Tao_Tsuchiya|http://dbpedia.org/resource/Tori_Matsuzaka"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Japanese_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "Library Wars: The Last Mission (\u56f3\u66f8\u9928\u6226\u4e89 THE LAST MISSION Toshokan Sens\u014d The Last Mission) is a 2015 Japanese romance action comedy film directed by Shinsuke Sato. The film is a sequel of Library War (2013), with both films based on the light novel series Library War written by Hiro Arikawa and illustrated by Sukumo Adabana. The film was released on October 10, 2015."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Toho"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Chennai_600028_II:_Second_Innings"}, "Title": {"type": "literal", "value": "Chennai 600028 II: Second Innings"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Venkat_Prabhu"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aravind_Akash|http://dbpedia.org/resource/Jai_(actor)|http://dbpedia.org/resource/Nithin_Sathya|http://dbpedia.org/resource/Premji_Amaren|http://dbpedia.org/resource/Shiva_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Sports_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Chennai 600028 II: Second Innings is an upcoming Indian Tamil-language coming-of-age sports comedy film written and directed by Venkat Prabhu, who also produces the film along with S. P. B. Charan under Black Ticket Company and Capital Film Works. The film, which is a sequel to Chennai 600028 (2007), features several cast members from the earlier film including Jai, Shiva, Premji, Aravind Akash and Nithin Sathya. The film's score and soundtrack will be composed by Yuvan Shankar Raja, while the film is likely to release in early 2017."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/S._P._B._Charan"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bale_Pandiya_(2010_film)"}, "Title": {"type": "literal", "value": "Bale Pandiya"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Siddharth_Chandrasekhar"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Piaa_Bajpai|http://dbpedia.org/resource/R_Amarendran|http://dbpedia.org/resource/Vishnu_Vishal"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "140"}, "Description": {"type": "literal", "value": "Bale Pandiya is a 2010 Tamil action comedy film written and directed by Siddharth Chandrasekhar. It stars Vishnu Vishal and Piaa Bajpai in the lead roles. The film was released on 3 September 2010 to mixed reviews."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Green_Butchers"}, "Title": {"type": "literal", "value": "The Green Butchers"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Anders_Thomas_Jensen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Line_Kruse|http://dbpedia.org/resource/Mads_Mikkelsen|http://dbpedia.org/resource/Nikolaj_Lie_Kaas|http://dbpedia.org/resource/Ole_Thestrup"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Danish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "The Green Butchers (Danish: De gr\u00f8nne slagtere) is a 2003 Danish film starring Mads Mikkelsen, Nikolaj Lie Kaas, and Line Kruse, written and directed by Anders Thomas Jensen. It is a black comedy featuring two butchers, Svend \"Sweat\" and Bjarne, who start their own shop to get away from their arrogant boss. Cannibalism is soon introduced to the plot, and further complications arise due to the reappearance of Bjarne's mentally challenged twin brother Eigil."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sandrew_Metronome"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/MacGruber_(film)"}, "Title": {"type": "literal", "value": "MacGruber"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jorma_Taccone"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kristen_Wiig|http://dbpedia.org/resource/Maya_Rudolph|http://dbpedia.org/resource/Powers_Boothe|http://dbpedia.org/resource/Ryan_Phillippe|http://dbpedia.org/resource/Val_Kilmer|http://dbpedia.org/resource/Will_Forte"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "MacGruber is a 2010 American action comedy film based on the Saturday Night Live sketch of the same name, itself a parody of action-adventure television series MacGyver. Jorma Taccone of the comedy trio The Lonely Island directed the film, which stars Will Forte in the title role; Kristen Wiig as his love interest/partner, Vicki St. Elmo; Ryan Phillippe as Dixon Piper, a young lieutenant who becomes part of MacGruber's team; Maya Rudolph as MacGruber's dead wife, Casey; and Val Kilmer as the villain, Dieter von Cunth. Originally scheduled for release on April 23, 2010, the film was instead released on May 21, 2010, grossing $9.3 million worldwide against a $10 million budget. The film has since been labeled a cult classic."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/This_Is_the_End"}, "Title": {"type": "literal", "value": "This Is the End"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Evan_Goldberg|http://dbpedia.org/resource/Seth_Rogen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Craig_Robinson_(actor)|http://dbpedia.org/resource/Danny_McBride|http://dbpedia.org/resource/Emma_Watson|http://dbpedia.org/resource/James_Franco|http://dbpedia.org/resource/Jay_Baruchel|http://dbpedia.org/resource/Jonah_Hill|http://dbpedia.org/resource/Michael_Cera"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:American_fantasy-comedy_films|http://dbpedia.org/resource/Category:American_screwball_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films|http://dbpedia.org/resource/Category:Religious_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "This Is the End is a 2013 American comedy film directed by Seth Rogen and Evan Goldberg and stars Rogen, James Franco, Jonah Hill, Jay Baruchel, Danny McBride, Craig Robinson, Michael Cera and Emma Watson. The film centers around a group of real life actors playing fictionalized versions of themselves in the aftermath of a global biblical apocalypse. The film premiered at the Fox Village Theater on June 3, 2013 and was released on June 14, 2013 by Columbia Pictures, with a re-release on September 6, 2013. The film grossed $126 million on a $32 million budget."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Brave_(2012_film)"}, "Title": {"type": "literal", "value": "Brave"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Brenda_Chapman|http://dbpedia.org/resource/Mark_Andrews_(filmmaker)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Billy_Connolly|http://dbpedia.org/resource/Craig_Ferguson|http://dbpedia.org/resource/Emma_Thompson|http://dbpedia.org/resource/Julie_Walters|http://dbpedia.org/resource/Kelly_Macdonald|http://dbpedia.org/resource/Kevin_McKidd|http://dbpedia.org/resource/Robbie_Coltrane"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Brave is a 2012 American 3D computer-animated fantasy comedy-drama film produced by Pixar Animation Studios and released by Walt Disney Pictures. It was directed by Mark Andrews and Brenda Chapman, and co-directed by Steve Purcell. The story is by Chapman, with the screenplay by Andrews, Purcell, Chapman and Irene Mecchi. Chapman drew inspiration from her relationship with her own daughter. Chapman became Pixar\u2019s first female director of a feature-length film. The film was produced by Katherine Sarafian, with John Lasseter, Andrew Stanton and Pete Docter as executive producers. The film's voice cast features Kelly Macdonald, Julie Walters, Billy Connolly, Emma Thompson, Kevin McKidd, Craig Ferguson, and Robbie Coltrane. To create the most complex visuals possible, Pixar completely rewrote their animation system for the first time in 25 years. It is the first film to use the Dolby Atmos sound format. Set in the Scottish Highlands, the film tells the story of a princess named Merida who defies an age-old custom, causing chaos in the kingdom by expressing the desire to not be betrothed. After consulting a witch for help, Merida uses a spell which transforms her mother into a bear. Merida must act to undo the spell before its effects become permanent. Brave premiered on June 10, 2012, at the Seattle International Film Festival, and was released in North America on June 22, 2012, to both positive reviews and box office success. The film won the Academy Award, the Golden Globe, and the BAFTA Award for Best Animated Feature Film. Preceding the feature theatrically was a short film entitled La Luna, directed by Enrico Casarosa."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/EuroTrip"}, "Title": {"type": "literal", "value": "EuroTrip"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alec_Berg|http://dbpedia.org/resource/David_Mandel|http://dbpedia.org/resource/Jeff_Schaffer"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_adventure_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "EuroTrip is a 2004 American-European teen comedy adventure film written by Alec Berg, David Mandel, and Jeff Schaffer, and directed by Schaffer. The film stars Scott Mechlowicz, Jacob Pitts, Michelle Trachtenberg, Travis Wester, and Jessica Boehrs. Mechlowicz portrays Scott \"Scotty\" Thomas, an American teenager who travels across Europe in search of his German pen pal, Mieke (Boehrs). Accompanied by his friend Cooper (Pitts) and siblings Jenny and Jamie (Trachtenberg and Wester), Scott's quest takes him to London, Paris, Amsterdam, Bratislava, Berlin, and Rome, encountering awkward and embarrassing situations along the way. The film received a 2004 Teen Choice Award nomination for Choice Movie Your Parents Didn't Want You to See."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/DreamWorks"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Larger_than_Life_(film)"}, "Title": {"type": "literal", "value": "Larger Than Life"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Howard_Franklin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bill_Murray|http://dbpedia.org/resource/Janeane_Garofalo|http://dbpedia.org/resource/Jeremy_Piven|http://dbpedia.org/resource/Linda_Fiorentino|http://dbpedia.org/resource/Matthew_McConaughey|http://dbpedia.org/resource/Pat_Hingle"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Larger Than Life is a 1996 American comedy film starring Bill Murray."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Metro-Goldwyn-Mayer|http://dbpedia.org/resource/Path\u00e9|http://dbpedia.org/resource/United_Artists"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lake_Placid_3"}, "Title": {"type": "literal", "value": "Lake Placid 3"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Griff_Furst"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Colin_Ferguson_(actor)|http://dbpedia.org/resource/Kacey_Barnfield|http://dbpedia.org/resource/Kirsty_Mitchell|http://dbpedia.org/resource/Michael_Ironside|http://dbpedia.org/resource/Yancy_Butler"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "Lake Placid 3 is a 2010 made-for-television horror comedy film directed by Griff Furst. The film is a sequel to the 2007 film Lake Placid 2 and the third installment in the Lake Placid franchise. The film premiered on August 21, 2010 on Syfy."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Stage_6_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ride_Along_2"}, "Title": {"type": "literal", "value": "Ride Along 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tim_Story"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Police_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Ride Along 2 is a 2016 American action comedy film directed by Tim Story and written by Phil Hay and Matt Manfredi. It is the sequel to the 2014 film Ride Along. The film stars Ice Cube, Kevin Hart, Ken Jeong, Benjamin Bratt, Olivia Munn, Bruce McGill and Tika Sumpter. Universal Pictures released the film on January 15, 2016. Upon release the film was critically panned and grossed over $124 million."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Cube_Vision|http://dbpedia.org/resource/Will_Packer_Productions"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Milaga"}, "Title": {"type": "literal", "value": "Milaga"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ravi_Mariya"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Natarajan_Subramaniam|http://dbpedia.org/resource/Ravi_Mariya|http://dbpedia.org/resource/Singampuli"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Milaga (English: Chilli) is a 2010 Tamil action film directed by Ravi Mariya. The film stars himself in a negative role while Natrajan playing the lead role with Poongodi playing the pair. The film was released on 25 June 2010 to negative reviews."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/S._Thanu"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Frozen_Fever"}, "Title": {"type": "literal", "value": "Frozen Fever"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Buck|http://dbpedia.org/resource/Jennifer_Lee_(filmmaker)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Idina_Menzel|http://dbpedia.org/resource/Jonathan_Groff|http://dbpedia.org/resource/Josh_Gad|http://dbpedia.org/resource/Kristen_Bell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_fantasy-comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "7"}, "Description": {"type": "literal", "value": "Frozen Fever is a 2015 American computer-animated musical fantasy short film produced by Walt Disney Animation Studios and released by Walt Disney Pictures. It is a sequel to the 2013 feature film Frozen, and tells the story of Anna's birthday party given by Elsa with the help of Kristoff, Sven, and Olaf. Chris Buck and Jennifer Lee again served as the directors with Kristen Bell, Idina Menzel, Jonathan Groff, and Josh Gad providing the lead voices. Production on Frozen Fever began in June 2014 and took six months to complete. The film debuted in theaters alongside Walt Disney Pictures' Cinderella on March 13, 2015. It received positive reviews from critics, along with praise for its new song \"Making Today a Perfect Day\" by Kristen Anderson-Lopez and Robert Lopez."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Legally_Blonde"}, "Title": {"type": "literal", "value": "Legally Blonde"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Robert_Luketic"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alanna_Ubach|http://dbpedia.org/resource/Ali_Larter|http://dbpedia.org/resource/Holland_Taylor|http://dbpedia.org/resource/Jennifer_Coolidge|http://dbpedia.org/resource/Jessica_Cauffiel|http://dbpedia.org/resource/Luke_Wilson|http://dbpedia.org/resource/Matthew_Davis|http://dbpedia.org/resource/Reese_Witherspoon|http://dbpedia.org/resource/Selma_Blair|http://dbpedia.org/resource/Victor_Garber"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "Legally Blonde is a 2001 American comedy film directed by Robert Luketic, written by Karen McCullah Lutz and Kirsten Smith, and produced by Marc E. Platt. It is based on the novel of the same name by Amanda Brown. The film stars Reese Witherspoon as a sorority girl who struggles to win back her ex-boyfriend by earning a law degree, with the help of Luke Wilson as a young attorney that she meets during her studies, Matthew Davis as her ex-boyfriend, Selma Blair as his new fianc\u00e9e, Victor Garber and Holland Taylor as law professors, Jennifer Coolidge as a manicurist and friend, and Ali Larter as a fitness instructor accused of murder. The film was released in the US on July 13, 2001, and received positive reviews. It was nominated for a Golden Globe Award for Best Motion Picture: Musical or Comedy and was ranked 29th on Bravo's 2007 list of \"100 Funniest Movies.\" For her performance, Witherspoon received a Golden Globe nomination for Best Actress \u2013 Motion Picture Musical or Comedy and the 2002 MTV Movie Award for Best Female Performance. The box-office success led to a 2003 sequel, Legally Blonde 2: Red, White & Blonde, and a 2009 direct-to-DVD spin-off, Legally Blondes. Additionally, Legally Blonde: The Musical premiered on January 23, 2007, in San Francisco and opened in New York City at the Palace Theatre on Broadway on April 29, 2007, starring Laura Bell Bundy."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Metro-Goldwyn-Mayer"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Song_for_Marion"}, "Title": {"type": "literal", "value": "(Unfinished Song)|Song for Marion"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Paul_Andrew_Williams"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Christopher_Eccleston|http://dbpedia.org/resource/Gemma_Arterton|http://dbpedia.org/resource/Terence_Stamp|http://dbpedia.org/resource/Vanessa_Redgrave"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:British_comedy-drama_films|http://dbpedia.org/resource/Category:German_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Song for Marion (released in the United States as Unfinished Song) is a 2012 British-German comedy-drama film written and directed by Paul Andrew Williams and starring Terence Stamp, Gemma Arterton, Christopher Eccleston and Vanessa Redgrave. The film was nominated for three awards\u2014Best Actor, Best Screenplay, and Best Supporting Actress\u2014at the 2012 British Independent Film Awards."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Entertainment_One|http://dbpedia.org/resource/The_Weinstein_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/10:10_(film)"}, "Title": {"type": "literal", "value": "10:10"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Arin_Paul"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Abir_Chatterjee|http://dbpedia.org/resource/Aparajita_Ghosh_Das|http://dbpedia.org/resource/Claudia_Ciesla|http://dbpedia.org/resource/Kanchan_Mullick|http://dbpedia.org/resource/Soumitra_Chatterjee|http://dbpedia.org/resource/Subrat_Dutta"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "10:10 (Bengali: \u09a6\u09b6\u099f\u09be \u09a6\u09b6) is a 2008 Bengali comedy film directed by Arin Paul. It features Soumitra Chatterjee, Kanchan Mullick, Claudia Ciesla, Subrata Dutta, Aparajita Ghosh Das and Abir Chatterjee."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Morpheus_Media_Ventures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/A_Happy_Event"}, "Title": {"type": "literal", "value": "A Happy Event"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/R\u00e9mi_Bezan\u00e7on"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Josiane_Balasko|http://dbpedia.org/resource/Louise_Bourgoin|http://dbpedia.org/resource/Pio_Marma\u00ef"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Belgian_comedy_films|http://dbpedia.org/resource/Category:French_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "A Happy Event (French: Un heureux \u00e9v\u00e9nement) is a 2011 French-Belgian comedy-drama film directed by R\u00e9mi Bezan\u00e7on."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Gaumont_Film_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/You're_Next"}, "Title": {"type": "literal", "value": "You're Next"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Wingard"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/A._J._Bowen|http://dbpedia.org/resource/Joe_Swanberg|http://dbpedia.org/resource/Sharni_Vinson|http://dbpedia.org/resource/Wendy_Glenn"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "You're Next is a 2011 American slasher film directed by Adam Wingard, written by Simon Barrett and starring Sharni Vinson, Nicholas Tucci, Wendy Glenn, A. J. Bowen and Joe Swanberg. The plot concerns a family under attack by a group of masked assailants during their wedding anniversary getaway. The film had its world premiere at the 2011 Toronto International Film Festival Midnight Madness program and was theatrically released on August 23, 2013, in the United States. The film grossed over $26 million at the box office."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lions_Gate_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Wild_Tales_(film)"}, "Title": {"type": "literal", "value": "Wild Tales"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dami\u00e1n_Szifron"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dar\u00edo_Grandinetti|http://dbpedia.org/resource/Julieta_Zylberberg|http://dbpedia.org/resource/Leonardo_Sbaraglia|http://dbpedia.org/resource/Oscar_Mart\u00ednez_(actor)|http://dbpedia.org/resource/Ricardo_Dar\u00edn|http://dbpedia.org/resource/\u00c9rica_Rivas"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Argentine_comedy_films|http://dbpedia.org/resource/Category:Comedy_thriller_films|http://dbpedia.org/resource/Category:Spanish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "122"}, "Description": {"type": "literal", "value": "Wild Tales (Spanish: Relatos salvajes) is a 2014 Argentine black comedy anthology film composed of six standalone shorts, all written and directed by Dami\u00e1n Szifron, united by a common theme of violence and vengeance. It stars an ensemble cast consisting of Ricardo Dar\u00edn, Oscar Mart\u00ednez, Leonardo Sbaraglia, \u00c9rica Rivas, Rita Cortese, Julieta Zylberberg, and Dar\u00edo Grandinetti, and was co-produced by Agust\u00edn Almod\u00f3var and Pedro Almod\u00f3var. The film's musical score was composed by Gustavo Santaolalla. It was nominated for the Best Foreign Language Film at the 87th Academy Awards, won the Best Film Not in the English Language at the 69th British Academy Film Awards, and also won the Best Ibero-American Film at the 2nd Platino Awards."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Quick_Change"}, "Title": {"type": "literal", "value": "Quick Change"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Bill_Murray|http://dbpedia.org/resource/Howard_Franklin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Geena_Davis|http://dbpedia.org/resource/Jason_Robards|http://dbpedia.org/resource/Randy_Quaid"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Quick Change is a 1990 American crime comedy film written by Howard Franklin, produced by and starring Bill Murray, and directed by both. Geena Davis, Randy Quaid, and Jason Robards co-star. Other cast members include Tony Shalhoub, Stanley Tucci, Phil Hartman, Victor Argo, Kurtwood Smith, Bob Elliott, and Philip Bosco. It is based on a book of the same name by Jay Cronley. The film is set in New York City, particularly in Manhattan and Queens, with scenes taking place on the New York City Subway and within John F. Kennedy International Airport. Times Square, the Empire State Building, and the Statue of Liberty are also briefly seen. To date, Quick Change is the only directorial credit of Bill Murray's career."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Hollars"}, "Title": {"type": "literal", "value": "The Hollars"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/John_Krasinski"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anna_Kendrick|http://dbpedia.org/resource/Charlie_Day|http://dbpedia.org/resource/Margo_Martindale|http://dbpedia.org/resource/Richard_Jenkins|http://dbpedia.org/resource/Sharlto_Copley"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "The Hollars is a 2016 American comedy-drama film directed by John Krasinski and written by James C. Strouse. The film stars an ensemble cast led by Krasinski, starring Sharlto Copley, Charlie Day, Richard Jenkins, Anna Kendrick and Margo Martindale. The film had its world premiere at the Sundance Film Festival on January 24, 2016. The film was released on August 26, 2016, by Sony Pictures Classics."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sony_Pictures_Classics"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Love_in_a_Puff"}, "Title": {"type": "literal", "value": "Love in a Puff"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pang_Ho-cheung"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Hong_Kong_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "Love in a Puff (simplified Chinese: \u5fd7\u660e\u4e0e\u6625\u5a07; traditional Chinese: \u5fd7\u660e\u8207\u6625\u5b0c) is a 2010 Hong Kong romantic comedy directed by Pang Ho-cheung and starring Shawn Yue and Miriam Yeung. The plot revolves around the love story of Cherie and Jimmy, two smokers who met at an outdoor smoking area subsequent to the ban of all indoor smoking areas in Hong Kong. The film is classified as a category 3 film in Hong Kong. Love in a Puff is one of the films which premiered in the 2010 Hong Kong International Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Media_Asia_Entertainment_Group"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Na_Ghar_Ke_Na_Ghaat_Ke"}, "Title": {"type": "literal", "value": "Na Ghar Ke Na Ghaat Ke"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rahul_Aggarwal_(producer)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Na Ghar Ke Na Ghaat Ke is a 2010 Hindi comedy film directed by and starring Rahul Aggarwal as a Uttar Pradesh migrant to Mumbai. The film was released on 12 March 2010."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Flower_Girl_(film)"}, "Title": {"type": "literal", "value": "Flower Girl"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michelle_Bello"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Blossom_Chukwujekwu|http://dbpedia.org/resource/Chris_Attoh|http://dbpedia.org/resource/Damilola_Adegbite|http://dbpedia.org/resource/Eku_Edewor"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Nigerian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "Flower Girl is a 2013 Nigerian romantic comedy film set and shot in Lagos, Nigeria. It revolves around a story of Kemi (Damilola Adegbite) who is dying to get married to Umar (Chris Attoh); a young man who is desperate to get ahead in his career. When their relationship hits troubled waters, Kemi seeks the help of movie superstar Tunde (Blossom Chukwujekwu) and they hatch a plan to get Kemi what she wants."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Rules_of_Dating"}, "Title": {"type": "literal", "value": "Rules of Dating"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Han_Jae-rim"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Greena_Park|http://dbpedia.org/resource/Kang_Hye-jung|http://dbpedia.org/resource/Lee_Dae-yeon|http://dbpedia.org/resource/Park_Hae-il"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "121"}, "Description": {"type": "literal", "value": "Rules of Dating (Hangul: \uc5f0\uc560\uc758 \ubaa9\uc801; RR: Yeonae-ui mokjeok) is a 2005 South Korean film starring Park Hae-il and Kang Hye-jung, and is the directorial debut of filmmaker Han Jae-rim."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/CJ_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Actor_In_Law"}, "Title": {"type": "literal", "value": "Actor In Law"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nabeel_Qureshi_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alyy_Khan|http://dbpedia.org/resource/Fahad_Mustafa|http://dbpedia.org/resource/Humayun_Saeed|http://dbpedia.org/resource/Irfan_Motiwala|http://dbpedia.org/resource/Mahira_Khan|http://dbpedia.org/resource/Mehwish_Hayat|http://dbpedia.org/resource/Nayyar_Ejaz|http://dbpedia.org/resource/Om_Puri|http://dbpedia.org/resource/Rehan_Sheikh|http://dbpedia.org/resource/Saboor_Ali|http://dbpedia.org/resource/Saife_Hassan|http://dbpedia.org/resource/Saleem_Mairaj|http://dbpedia.org/resource/Talat_Hussain_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Pakistani_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "Actor In Law is a 2016 Pakistani socio-comedy film directed by Nabeel Qureshi, co-written and produced by Fizza Ali Meerza. The film was released nationwide on Eid-ul-Adha 2016. by Urdu 1 Pictures."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Urdu_1_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Teenage_Mutant_Ninja_Turtles:_Out_of_the_Shadows"}, "Title": {"type": "literal", "value": "Out of the Shadows|Teenage Mutant Ninja Turtles:"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dave_Green_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "Teenage Mutant Ninja Turtles: Out of the Shadows is a 2016 American science fiction action comedy based on the Mirage Studios characters the Teenage Mutant Ninja Turtles and the sixth film of the Teenage Mutant Ninja Turtles film series and a sequel to the 2014 film Teenage Mutant Ninja Turtles. The film was directed by Dave Green, written by Josh Appelbaum and Andr\u00e9 Nemec, and stars Megan Fox, Stephen Amell, Will Arnett, Brian Tee, Tyler Perry, Brittany Ishibashi and Laura Linney, and featuring voices of Pete Ploszek, Alan Ritchson, Noel Fisher, Jeremy Howard, Tony Shalhoub, Gary Anthony Williams, Stephen \"Sheamus\" Farrelly and Brad Garrett. Principal photography on the film began on April 27, 2015, in New York City. It was released in theaters on June 3, 2016, in 3D, RealD 3D, 4DX, and in IMAX 3D. It received generally mixed reviews from critics, being considered by many an improvement over its previous one, but was not as successful as its predecessor, grossing $245 million against a $135 million budget."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Alibaba_Pictures|http://dbpedia.org/resource/Nickelodeon_Movies|http://dbpedia.org/resource/Platinum_Dunes"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Elvis_&_Nixon"}, "Title": {"type": "literal", "value": "Elvis & Nixon"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Liza_Johnson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alex_Pettyfer|http://dbpedia.org/resource/Ashley_Benson|http://dbpedia.org/resource/Colin_Hanks|http://dbpedia.org/resource/Evan_Peters|http://dbpedia.org/resource/Johnny_Knoxville|http://dbpedia.org/resource/Kevin_Spacey|http://dbpedia.org/resource/Michael_Shannon|http://dbpedia.org/resource/Sky_Ferreira|http://dbpedia.org/resource/Tate_Donovan|http://dbpedia.org/resource/Tracy_Letts"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Elvis & Nixon is a 2016 American comedy-drama film directed by Liza Johnson and written by Joey Sagal, Hanala Sagal, and Cary Elwes. The film stars Kevin Spacey as President Richard Nixon and Michael Shannon as singer Elvis Presley, and focuses on the December 21, 1970 meeting between the two men at the White House. The film also stars Alex Pettyfer, Johnny Knoxville, Colin Hanks, Evan Peters and Ashley Benson. The film was released on April 22, 2016 by Amazon Studios and Bleecker Street."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Amazon_Studios|http://dbpedia.org/resource/Bleecker_Street_(company)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Late_Night_Shopping"}, "Title": {"type": "literal", "value": "Late Night Shopping"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Saul_Metzstein"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Enzo_Cilenti|http://dbpedia.org/resource/James_Lance|http://dbpedia.org/resource/Kate_Ashfield|http://dbpedia.org/resource/Luke_de_Woolfson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Late Night Shopping is a 2001 comedy film funded by FilmFour Productions, centering on a group of friends who all work the graveyard shifts."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Plaga_Zombie_(film_series)"}, "Title": {"type": "literal", "value": "The Plaga Zombie Trilogy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pablo_Par\u00e9s"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Berta_Mu\u00f1iz|http://dbpedia.org/resource/Pablo_Par\u00e9s"}, "Published": {"type": "literal", "value": "2001-12-21|2012-03-12"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Zombie_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "270"}, "Description": {"type": "literal", "value": "Plaga Zombie is an Argentine comedy horror film series created by Pablo Par\u00e9s, Berta Mu\u00f1iz, and Hern\u00e1n S\u00e1ez. The films follow three misfit heroes who uncover an alien-government conspiracy after a zombie outbreak occurs in their hometown. Plaga Zombie was the first-ever zombie horror film released in Argentina and is the only zombie horror trilogy to be produced in Latin America. Plaga Zombie received mainstream coverage from Fangoria and was picked up by its horror label, Fangoria Films International, helping the series to attain a worldwide cult following. The latest installment of the series, Plaga Zombie: American Invasion, began production in the summer of 2013."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fangoria_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/M\u00e4dchen,_M\u00e4dchen"}, "Title": {"type": "literal", "value": "M\u00e4dchen, M\u00e4dchen (Girls on Top)"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dennis_Gansel"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Diana_Amft|http://dbpedia.org/resource/Felicitas_Woll|http://dbpedia.org/resource/Karoline_Herfurth"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:German_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "M\u00e4dchen, M\u00e4dchen (English: Girls, Girls), also known as Girls on Top, is a 2001 German film directed by Dennis Gansel. Its story is about an eighteen-year-old girl named Inken (Diana Amft), who is frustrated at not having had an orgasm yet with her boyfriend. Her two best friends are Vicky (Felicitas Woll), who is in the same situation as Inken, and the still virgin Lena (Karoline Herfurth). The movie is about the girls' search to find someone to give them an orgasm. The film was followed by a 2004 sequel, M\u00e4dchen, M\u00e4dchen 2 - Loft oder Liebe. The film had over 1,700,000 admissions in Germany and grossed $233,538 in Russia."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Delicacy_(film)"}, "Title": {"type": "literal", "value": "Delicacy"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_Foenkinos|http://dbpedia.org/resource/St\u00e9phane_Foenkinos"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Audrey_Tautou|http://dbpedia.org/resource/Bruno_Todeschini|http://dbpedia.org/resource/Fran\u00e7ois_Damiens"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:French_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "Delicacy (French: La d\u00e9licatesse) is a 2011 French romantic comedy-drama directed by David and St\u00e9phane Foenkinos based on a novel of the same name by David Foenkinos. David was nominated for the 2012 Best Writing (Adaptation) C\u00e9sar Award and the film was nominated as Best First Film."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Croods"}, "Title": {"type": "literal", "value": "The Croods"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Sanders|http://dbpedia.org/resource/Kirk_DeMicco"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Catherine_Keener|http://dbpedia.org/resource/Clark_Duke|http://dbpedia.org/resource/Cloris_Leachman|http://dbpedia.org/resource/Emma_Stone|http://dbpedia.org/resource/Nicolas_Cage|http://dbpedia.org/resource/Ryan_Reynolds"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "The Croods is a 2013 American 3D computer-animated adventure comedy film produced by DreamWorks Animation and distributed by 20th Century Fox. It stars the voices of Nicolas Cage, Emma Stone, Ryan Reynolds, Catherine Keener, Clark Duke, and Cloris Leachman. The film is set in a fictional prehistoric Pliocene era known as \"The Croodaceous\" (a prehistoric period which contains fictional prehistoric creatures) when a caveman's position as a \"Leader of the Hunt\" is threatened by the arrival of a prehistoric genius who comes up with revolutionary new inventions as they trek through a dangerous but exotic land in search of a new home. The Croods was written and directed by Kirk DeMicco and Chris Sanders, and produced by Kristine Belson and Jane Hartwell. The film premiered at the 63rd Berlin International Film Festival on February 15, 2013, and was released in the United States on March 22, 2013. As part of the distribution deal, this is the first film from DreamWorks Animation to be distributed by 20th Century Fox, since the end of their distribution deal with Paramount Pictures. The Croods received generally positive reviews, and proved to be a box office success, earning more than $587 million on a budget of $135 million. The film launched a new franchise, with a sequel set for 2018, and a television series, Dawn of the Croods, which debuted on December 24, 2015, on Netflix."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/HeartBeat_Love"}, "Title": {"type": "literal", "value": "Heartbeat Love"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Leste_Chen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Rainie_Yang|http://dbpedia.org/resource/Show_Luo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://dbpedia.org/resource/Comedy"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Heartbeat Love (\u518d\u4e00\u6b21\u5fc3\u8df3) is a 2012 Taiwanese short film starring Rainie Yang and Show Luo. It was filmed in Australia (Sydney, Melbourne and Tasmania). It is a miniseries that aired on the internet, and has a total of 5 episodes. It started 12 April 2012, and aired every Thursday midnight Taiwan time (i.e. early Thursday morning). This was the second time these two stars collaborated after the successful Taiwanese drama Hi My Sweetheart. Australia's Tourism commission invested in the film to introduce Australia to Chinese tourism."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Evil_Dead"}, "Title": {"type": "literal", "value": "Evil Dead"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Fede_Alvarez|http://dbpedia.org/resource/Sam_Raimi"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bruce_Campbell"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Comedy_films_by_series|http://dbpedia.org/resource/Category:Horror_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Evil Dead is an American horror film franchise created by Sam Raimi consisting of four feature films. The films revolve around the Necronomicon Ex-Mortis, an ancient Sumerian text which wreaks havoc upon a group of cabin inhabitants in a wooded area in Tennessee. The protagonist, Ashley J. \"Ash\" Williams (Bruce Campbell) is the only character to appear in every installment of the original trilogy (Linda, Ash's girlfriend makes an appearance in all 3 films, but her only appearance in Army of Darkness is during the prologue). The original trilogy includes The Evil Dead (1981), Evil Dead II (1987), and Army of Darkness (1992), all written and directed by Raimi, produced by Robert G. Tapert, and starring Campbell. The franchise has since expanded into other formats, including video games, comic books, a musical, and a television series. The franchise was resurrected in 2013 with Evil Dead, both a reboot and a loose continuation of the series directed by Fede Alvarez and produced by Raimi, Campbell and Tapert. It is rumored that there will be three other installments of the franchise that are considered: a sequel to the 2013 reboot currently titled Evil Dead 2 but will not be directed by Alvarez, a direct sequel to the original trilogy currently titled Army of Darkness 2 rumored to be directed by Sam Raimi and starring Campbell, and a seventh and final film which would merge the narratives of both chronologies. In July 2014, Bruce Campbell stated it was likely that the planned sequel would instead be a TV series with him as the star.Starz officially announced on November 10, 2014 that a ten-episode series titled Ash vs Evil Dead would premiere on their cable network in 2015. The series stars Bruce Campbell as Ash and is executive produced by Campbell, Sam Raimi, and Rob Tapert."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/De_Laurentiis_Entertainment_Group|http://dbpedia.org/resource/New_Line_Cinema|http://dbpedia.org/resource/TriStar_Pictures|http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Orange_County_(film)"}, "Title": {"type": "literal", "value": "Orange County"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jake_Kasdan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Catherine_O'Hara|http://dbpedia.org/resource/Colin_Hanks|http://dbpedia.org/resource/Jack_Black|http://dbpedia.org/resource/John_Lithgow|http://dbpedia.org/resource/Lily_Tomlin|http://dbpedia.org/resource/Schuyler_Fisk"}, "Published": {"type": "literal", "value": "2002-01-11"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "81"}, "Description": {"type": "literal", "value": "Orange County is a 2002 American comedy film starring Colin Hanks and Jack Black. It was released on January 11, 2002. The movie was distributed by Paramount Pictures and produced by MTV Films and Scott Rudin. The movie was directed by Jake Kasdan and written by Mike White."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Central_Intelligence"}, "Title": {"type": "literal", "value": "Central Intelligence"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rawson_Marshall_Thurber"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aaron_Paul|http://dbpedia.org/resource/Amy_Ryan|http://dbpedia.org/resource/Danielle_Nicolet|http://dbpedia.org/resource/Dwayne_Johnson|http://dbpedia.org/resource/Kevin_Hart"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "107|116"}, "Description": {"type": "literal", "value": "Central Intelligence is a 2016 American comedy film directed by Rawson Marshall Thurber and written by Thurber, Ike Barinholtz and David Stassen. The film stars Kevin Hart and Dwayne Johnson as two old high school friends who team up to save America after one of them joins the CIA in order to save the world from a terrorist who has an intention to sell satellite codes. Amy Ryan and Aaron Paul also star. The film premiered in Los Angeles on June 10, 2016 and was theatrically released in the United States on June 17, 2016. Central Intelligence received mixed to positive reviews and grossed $215 million worldwide against its $50 million budget."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios|http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Bluegrass_Films|http://dbpedia.org/resource/New_Line_Cinema|http://dbpedia.org/resource/Perfect_World_Pictures|http://dbpedia.org/resource/RatPac-Dune_Entertainment"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/A.R.O.G"}, "Title": {"type": "literal", "value": "A.R.O.G"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Cem_Y\u0131lmaz"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cem_Y\u0131lmaz|http://dbpedia.org/resource/Nil_Karaibrahimgil|http://dbpedia.org/resource/Zafer_Alg\u00f6z|http://dbpedia.org/resource/\u00d6zge_\u00d6zberk|http://dbpedia.org/resource/\u00d6zkan_U\u011fur"}, "Published": {"type": "literal", "value": "2008-12-05"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Turkish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "128"}, "Description": {"type": "literal", "value": "A.R.O.G: A Prehistoric Film (Turkish: A.R.O.G: Bir Yontma Ta\u015f Filmi) is a 2008 Turkish science-fiction comedy film, directed by Cem Y\u0131lmaz and Ali Taner Baltac\u0131, about a used carpet salesman who is sent back in time by an old interplanetary adversary out for revenge. The film, which went on nationwide general release across Turkey on December 5, 2008, was the highest grossing Turkish films of 2008 and is one of the most expensive Turkish films ever made. It is a sequel to G.O.R.A. (2004)."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Up_in_the_Air_(2009_film)"}, "Title": {"type": "literal", "value": "Up in the Air"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jason_Reitman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anna_Kendrick|http://dbpedia.org/resource/Danny_McBride|http://dbpedia.org/resource/George_Clooney|http://dbpedia.org/resource/Vera_Farmiga"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "Up in the Air is a 2009 American comedy-drama film directed by Jason Reitman and co-written by Reitman and Sheldon Turner. It is a film adaptation of the 2001 novel of the same name, written by Walter Kirn. The story is centered on corporate \"downsizer\" Ryan Bingham (George Clooney) and his travels. The film follows his isolated life and philosophies and the people he meets along the way. Filming was primarily in St. Louis, Missouri, which substituted for a number of other cities. Several scenes were filmed in Detroit, Omaha, Las Vegas, and Miami. Reitman promoted Up in the Air with personal appearances at film festivals and other showings, starting with the Telluride Film Festival on September 5, 2009. The Los Angeles premiere was at the Mann Village Theater on Monday, November 30, 2009. Paramount scheduled a limited North American release on December 4, 2009, broadening the release on December 11, 2009, with a wide release on December 23, 2009. The National Board of Review and the Washington D.C. Area Film Critics Association named Up in the Air the Best Picture of 2009. It received eight Broadcast Film Critics Association nominations and garnered a win for Adapted Screenplay, six Golden Globe nominations, earning a win for Best Screenplay, and three Screen Actors Guild nominations. It received six Academy Award nominations, but did not win in any category. Up in the Air also received recognition from numerous critics' associations."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Greatest_of_All"}, "Title": {"type": "literal", "value": "The Greatest of All"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Carlo_Virz\u00ec"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Italian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Greatest of All (Italian: I pi\u00f9 grandi di tutti) is a 2011 Italian comedy film directed by Carlo Virz\u00ec. It entered the competition at the 2011 Turin Film Festival."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Open_Season_(2006_film)"}, "Title": {"type": "literal", "value": "Open Season"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Anthony_Stacchi|http://dbpedia.org/resource/Jill_Culton|http://dbpedia.org/resource/Roger_Allers"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ashton_Kutcher|http://dbpedia.org/resource/Billy_Connolly|http://dbpedia.org/resource/Debra_Messing|http://dbpedia.org/resource/Gary_Sinise|http://dbpedia.org/resource/Georgia_Engel|http://dbpedia.org/resource/Gordon_Tootoosis|http://dbpedia.org/resource/Jane_Krakowski|http://dbpedia.org/resource/Jon_Favreau|http://dbpedia.org/resource/Martin_Lawrence|http://dbpedia.org/resource/Patrick_Warburton"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Open Season is a 2006 American computer-animated comedy film, written by Steve Bencich and Ron J. Friedman and directed by Jill Culton and Roger Allers, and co-directed by Anthony Stacchi. It follows Boog, a domestic bear who teams up with a one-antlered deer named Elliot and woodland animals to defeat human hunters. The film stars the voices of Martin Lawrence, Ashton Kutcher, Gary Sinise, Debra Messing, Billy Connolly, Jon Favreau, Georgia Engel, Jane Krakowski, Gordon Tootoosis and Patrick Warburton. It was produced by Sony Pictures Animation as its first theatrical film and released by Columbia Pictures on September 29, 2006. It has also been released in the IMAX 3D format. A video game for the film was released on multiple platforms. Open Season earned $197.3 million on a $85 million budget, and was followed by three direct-to-video sequels: Open Season 2 (2009), Open Season 3 (2011), and Open Season: Scared Silly (2016)."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/National_Lampoon's_TV:_The_Movie"}, "Title": {"type": "literal", "value": "National Lampoon's TV: The Movie"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sam_Maccarone"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Pontius|http://dbpedia.org/resource/Jason_Acu\u00f1a|http://dbpedia.org/resource/Jason_Mewes|http://dbpedia.org/resource/Preston_Lacy|http://dbpedia.org/resource/Steve-o|http://dbpedia.org/resource/Tony_Cox_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "National Lampoon's TV: The Movie is a comedy film that was released in 2006 and features some of the actors from the TV show Jackass."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Chennai_Express"}, "Title": {"type": "literal", "value": "Chennai Express"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rohit_Shetty"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Deepika_Padukone|http://dbpedia.org/resource/Shahrukh_Khan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_action_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "141"}, "Description": {"type": "literal", "value": "Chennai Express /t\u0283\u1d7b\u02c8na\u026a/ /\u026ak\u02c8spr\u025bs/ is a 2013 Indian romantic action comedy film directed by Rohit Shetty, and produced by Gauri Khan for Red Chillies Entertainment. The film features Shahrukh Khan and Deepika Padukone in lead roles; it is the second collaboration between Khan and Padukone after Om Shanti Om (2007). The film is about a man's journey from Mumbai to Rameswaram, and what happens along the way after he falls in love with the daughter of a local don. Principal photography began on 27 September 2012, filming began in October 2012 and was completed by May 2013. Chennai Express was released in the overseas markets on 8 August 2013, and a day later in India. Extensive paid previews were held in India on 8 August as well. Although the film received mixed reviews from critics, it broke several box office records in India and abroad, becoming the quickest film to collect \u20b91 billion (US$15 million) net domestically at that time. The film currently ranks as the seventh highest grossing Indian film of all time."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/UTV_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Prom_(film)"}, "Title": {"type": "literal", "value": "Prom"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Joe_Nussbaum"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aimee_Teegarden|http://dbpedia.org/resource/Cameron_Monaghan|http://dbpedia.org/resource/Christine_Elise|http://dbpedia.org/resource/Danielle_Campbell|http://dbpedia.org/resource/Dean_Norris|http://dbpedia.org/resource/Nicholas_Braun|http://dbpedia.org/resource/Nolan_Sotillo|http://dbpedia.org/resource/Raini_Rodriguez|http://dbpedia.org/resource/Thomas_McDonell|http://dbpedia.org/resource/Yin_Chang"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_screwball_comedy_films|http://dbpedia.org/resource/Category:American_teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "Prom is a 2011 American teen romance comedy-drama film directed by Joe Nussbaum written by Katie Wech and produced by Ted Griffin and Justin Springer. It was released on April 29, 2011, by Walt Disney Pictures. The film was the first major production shot with Arriflex's Alexa HD cameras to be released in theatres."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ted_2"}, "Title": {"type": "literal", "value": "Ted 2"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Seth_MacFarlane"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amanda_Seyfried|http://dbpedia.org/resource/Giovanni_Ribisi|http://dbpedia.org/resource/Jessica_Barth|http://dbpedia.org/resource/John_Slattery|http://dbpedia.org/resource/Mark_Wahlberg|http://dbpedia.org/resource/Morgan_Freeman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_fantasy-comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "Ted 2 is a 2015 American comedy film directed by Seth MacFarlane and is a sequel to the 2012 film Ted. The film's screenplay was written by MacFarlane, Alec Sulkin, and Wellesley Wild. The film stars Mark Wahlberg and MacFarlane and follows Ted's fight for his civil rights when authorities rule that he is property rather than a person. Ted 2 was released on June 26, 2015, by Universal Pictures, grossed over $216 million and received mixed reviews from critics."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Grabbers"}, "Title": {"type": "literal", "value": "Grabbers"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jon_Wright"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Richard_Coyle|http://dbpedia.org/resource/Russell_Tovey|http://dbpedia.org/resource/Ruth_Bradley"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:British_comedy_horror_films|http://dbpedia.org/resource/Category:Irish_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "Grabbers is a 2012 Irish-British monster film directed by Jon Wright and written by Kevin Lehane. The film stars Richard Coyle, Ruth Bradley, Bronagh Gallagher and Russell Tovey among an ensemble cast of Irish actors."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Element_Pictures|http://dbpedia.org/resource/Sony_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Asterix:_The_Mansions_of_the_Gods"}, "Title": {"type": "literal", "value": "Asterix: The Mansions of the Gods"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alexandre_Astier|http://dbpedia.org/resource/Louis_Clichy"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Catherine_Tate|http://dbpedia.org/resource/Dick_&_Dom|http://dbpedia.org/resource/Greg_Davies|http://dbpedia.org/resource/Harry_Enfield|http://dbpedia.org/resource/Jack_Whitehall|http://dbpedia.org/resource/Jim_Broadbent|http://dbpedia.org/resource/Matt_Berry|http://dbpedia.org/resource/Nick_Frost"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Adventure_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films|http://dbpedia.org/resource/Category:Belgian_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Asterix: The Mansions of the Gods (French: Ast\u00e9rix - Le Domaine des Dieux), also titled Asterix and Obelix: Mansion of the Gods, is a 2014 French-Belgian 3D computer animated adventure family comedy film directed and written by Alexandre Astier. It is based on the comic book Asterix: The Mansions of the Gods, which was the seventeenth book in the comic book series Asterix by Goscinny and Uderzo. The film features the voices of Roger Carel, Guillaume Briat, Lionnel Astier, Serge Papagalli and Florence Foresti. The film sticks to the book's plot very closely while also expanding on it. It was the first Asterix film animated in 3D. The film was theatrically released on 26 November 2014 by SND Films in France across 696 movie theatres. It received generally favorable reviews and has grossed over $34 million on a \u20ac31 million budget. It received a IFMCA Award nomination for Best Original Score for an Animated Feature Film. Asterix: The Land of the Gods was released on DVD, VOD and Blu-ray on 9 June 2015, by M6 Vid\u00e9o."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/SND_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ali_G,_Innit"}, "Title": {"type": "literal", "value": "Ali G, Innit"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Bobin|http://dbpedia.org/resource/Steve_Smith_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Sacha_Baron_Cohen"}, "Published": {"type": "literal", "value": "1999-11-15"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Ali G, Innit is a VHS release (later re-issued on DVD) of Ali G interview segments from The 11 O'Clock Show as well as footage not broadcast. It is hosted by Ali G himself."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/2_Entertain"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Can't_Complain"}, "Title": {"type": "literal", "value": "Can't Complain"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Richard_Johnson_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Can't Complain is a 2009 American independent comedy film written and produced by Corey Williams. This was director Richard Johnson second feature length narrative film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/GoldenTiger_Productions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hello_I_Must_Be_Going_(2012_film)"}, "Title": {"type": "literal", "value": "Hello I Must Be Going"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Todd_Louiso"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Blythe_Danner|http://dbpedia.org/resource/Christopher_Abbott|http://dbpedia.org/resource/John_Rubinstein|http://dbpedia.org/resource/Melanie_Lynskey"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "Hello I Must Be Going is a 2012 American comedy-drama film written by Sarah Koskoff and directed by Todd Louiso. It stars Melanie Lynskey, Christopher Abbott and Blythe Danner. The film had its world premiere at the 2012 Sundance Film Festival, and was released theatrically in the United States on September 7, 2012. The title is a reference to a song from the Marx Brothers' film Animal Crackers."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Oscilloscope_Laboratories"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Quiz_Show_Scandal"}, "Title": {"type": "literal", "value": "The Quiz Show Scandal"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jang_Jin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Han_Jae-suk|http://dbpedia.org/resource/Jang_Young-nam|http://dbpedia.org/resource/Kim_Su-ro|http://dbpedia.org/resource/Ryu_Seung-ryong|http://dbpedia.org/resource/Shim_Eun-kyung"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:South_Korean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "121"}, "Description": {"type": "literal", "value": "The Quiz Show Scandal (Hangul: \ud034\uc988\uc655; RR: Kwijeu Wang; lit. \"Quiz King\") is a 2010 South Korean film. The ensemble comedy satire is written and directed by Jang Jin. At a police station, people involved in a car accident are accidentally informed of the answer to the last question of a quiz show with a prize of over ten million dollars. On the day of the show, those same people gather again to compete against each other but they only know the answer to the last question. Who is going to win the fortune?"}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Cinema_Service"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Monster_House_(film)"}, "Title": {"type": "literal", "value": "Monster House"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Gil_Kenan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Catherine_O'Hara|http://dbpedia.org/resource/Fred_Willard|http://dbpedia.org/resource/Jason_Lee_(actor)|http://dbpedia.org/resource/Kathleen_Turner|http://dbpedia.org/resource/Kevin_James|http://dbpedia.org/resource/Maggie_Gyllenhaal|http://dbpedia.org/resource/Nick_Cannon|http://dbpedia.org/resource/Steve_Buscemi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Monster House is a 2006 American 3D computer-animated family horror comedy film directed by Gil Kenan, produced by ImageMovers and Amblin Entertainment, and distributed by Columbia Pictures. The film stars Mitchel Musso, Sam Lerner, Spencer Locke, Steve Buscemi, Nick Cannon, Maggie Gyllenhaal, Jon Heder, Kevin James, Jason Lee, Catherine O'Hara, Kathleen Turner, and Fred Willard. Executive produced by Robert Zemeckis and Steven Spielberg, this is the first time since Back to the Future Part III that they have worked together. It is also the first time that Zemeckis and Spielberg both served as executive producers of a film. The film's characters are animated primarily utilizing performance capture, making it the second film to use the technology so extensively, following Zemeckis' The Polar Express. Monster House received generally positive reviews from critics and grossed over $140 million worldwide. The film was nominated for the Academy Award for Best Animated Feature at the 79th Academy Awards, but lost to Happy Feet."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Hangover_(film_series)"}, "Title": {"type": "literal", "value": "The Hangover"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Todd_Phillips"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bradley_Cooper|http://dbpedia.org/resource/Ed_Helms|http://dbpedia.org/resource/Justin_Bartha|http://dbpedia.org/resource/Ken_Jeong|http://dbpedia.org/resource/Zach_Galifianakis"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Hangover is a series of three American comedy films created by Jon Lucas and Scott Moore and directed by Todd Phillips. All three films follows the misadventures of a quartet of friends (also known as \"the Wolfpack\") who go on their road trip to attend a wedding reception. While all of the films finds three of the four men on their mission to find their missing friend, the first two films focus on the events following a night of debauchery moments before a wedding in Las Vegas and Bangkok; where as the third and final film involves a road trip and a kidnapping in lieu of a bachelor party."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros._Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sayew"}, "Title": {"type": "literal", "value": "Sayew"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kiat_Songsanant|http://dbpedia.org/resource/Kongdej_Jaturanrasamee"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Pimpaporn_Leenutapong"}, "Published": {"type": "literal", "value": "2003-02-28"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "113"}, "Description": {"type": "literal", "value": "Sayew (Thai: \u0e2a\u0e22\u0e34\u0e27, also Spasm or X-Rated Sex Story: Fact or Fiction) is a 2003 Thai comedy film about a naive female college student who works as a writer of erotic stories for a pornographic magazine."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Sahamongkol_Film_International"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Current_(film)"}, "Title": {"type": "literal", "value": "Current"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Palnati_Surya_Pratap"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Brahmanandam|http://dbpedia.org/resource/Charan_Raj|http://dbpedia.org/resource/Lakshman_Rao_Kondavalasa|http://dbpedia.org/resource/Melkote|http://dbpedia.org/resource/Raghu_Babu|http://dbpedia.org/resource/Shafi|http://dbpedia.org/resource/Shakeela|http://dbpedia.org/resource/Sneha_Ullal|http://dbpedia.org/resource/Sushanth|http://dbpedia.org/resource/Tanikella_Bharani|http://dbpedia.org/resource/Telangana_Sakuntala"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "137.0833333333333"}, "Description": {"type": "literal", "value": "Current is a 2009 romantic comedy drama Telugu film directed by Palnati Surya Pratap. It stars Sushanth and Sneha Ullal in the Lead. Devi Sri Prasad provided the Music while Vijay Kumar C. Provided the Cinematography. Marthand K. Venkatesh handled the Editing Department. It was declared as a Super Hit at the Box Office."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Aaaaaaaah!"}, "Title": {"type": "literal", "value": "Aaaaaaaah!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Steve_Oram"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Holli_Dempsey|http://dbpedia.org/resource/Julian_Barratt|http://dbpedia.org/resource/Julian_Rhind-Tutt|http://dbpedia.org/resource/Noel_Fielding|http://dbpedia.org/resource/Steve_Oram|http://dbpedia.org/resource/Tom_Meeten|http://dbpedia.org/resource/Toyah_Willcox"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_black_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films|http://dbpedia.org/resource/Category:Horror_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "Aaaaaaaah! is a 2015 British horror comedy film written and directed by Steve Oram. The film contains no dialogue, with the cast communicating entirely in animalistic grunts. It premiered in August 2015 at London FrightFest Film Festival. In 2016 the film was released on DVD / Blu Ray and VOD on Icon Productions's Frightfest Presents label"}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Settai"}, "Title": {"type": "literal", "value": "Settai"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/R._Kannan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anjali_(actress_born_1986)|http://dbpedia.org/resource/Arya_(actor)|http://dbpedia.org/resource/Hansika_Motwani|http://dbpedia.org/resource/Premji_Amaren|http://dbpedia.org/resource/Santhanam_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_black_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "136"}, "Description": {"type": "literal", "value": "Settai (English: Mischief) is a 2013 Indian Tamil comedy film directed by R. Kannan. A remake of the 2011 English-language film, Delhi Belly, it stars Arya, Anjali, Santhanam, Premji Amaren and Hansika Motwani. The film, which began filming in Chennai on 7 May 2012, released for April 2013. The film was dubbed in Telugu as crazy. The audio was launched on 30 January. The film released on 5 April 2013."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Drones_(2010_film)"}, "Title": {"type": "literal", "value": "Drones"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Busch|http://dbpedia.org/resource/Amber_Benson"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/James_Urbaniak|http://dbpedia.org/resource/Jonathan_M._Woodward|http://dbpedia.org/resource/Samm_Levine"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "Drones is a 2010 office comedy film directed by Amber Benson and Adam Busch, who describe it as \"The Office meets Close Encounters\"."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Phase_4_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hum_Tum"}, "Title": {"type": "literal", "value": "Hum Tum"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kunal_Kohli"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kirron_Kher|http://dbpedia.org/resource/Rani_Mukerji|http://dbpedia.org/resource/Rati_Agnihotri|http://dbpedia.org/resource/Rishi_Kapoor|http://dbpedia.org/resource/Saif_Ali_Khan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "143"}, "Description": {"type": "literal", "value": "Hum Tum (translation: Me and You) is a 2004 Indian romantic comedy film directed by Kunal Kohli and produced by Aditya Chopra and Yash Chopra under the Yash Raj Films banner. The movie stars Saif Ali Khan and Rani Mukerji in the lead roles. The film is loosely based on the 1989 romantic comedy When Harry Met Sally.... Hum Tum follows the encounters of the two main characters until they, after several years and various meetings, become friends and finally fall in love at the end of the movie. The comic characters Hum and Tum have their own animated sequences in the movie, where they represent the current state of Karan's and Rhea's relationship. The animation for this film was done by Kathaa Animations and the Special Effects by Tata Elxsi. The director Kunal Kohli has stated that the film \"is inspired from the genre When Harry Met Sally... belongs to.\" The film was generally received well by critics, and special praise went to Khan's and Mukerji's performances. It won several Filmfare Awards, including Best Actress (Mukerji), Director (Kohli), and Actor in a Comic Role (Khan). In June 2005, Khan won the National Film Award for Best Actor."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Yash_Raj_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Telle_m\u00e8re,_telle_fille"}, "Title": {"type": "literal", "value": "Telle m\u00e8re, telle fille"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/No\u00e9mie_Saglio"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Camille_Cottin|http://dbpedia.org/resource/Catherine_Jacob_(actress)|http://dbpedia.org/resource/Juliette_Binoche|http://dbpedia.org/resource/Lambert_Wilson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Telle m\u00e8re, telle fille is a French comedy film written and directed by No\u00e9mie Saglio."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Gaumont_Film_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/He's_Way_More_Famous_Than_You"}, "Title": {"type": "literal", "value": "He's Way More Famous Than You"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Urie"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Stiller|http://dbpedia.org/resource/Halley_Feiffer|http://dbpedia.org/resource/Jesse_Eisenberg|http://dbpedia.org/resource/Mamie_Gummer|http://dbpedia.org/resource/Michael_Urie|http://dbpedia.org/resource/Vanessa_L._Williams"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "He's Way More Famous Than You is a 2013 comedy feature film written by and starring Halley Feiffer and Ryan Spahn, and directed by Michael Urie, who also costars. The film also stars Jesse Eisenberg, Ben Stiller, Mamie Gummer, Ralph Macchio, Vanessa Williams, Tracee Chimo, Austin Pendleton, and Michael Chernus. It premiered at the 2013 Slamdance Film Festival, where it was acquired by Gravitas Ventures and for theatrical distribution. The film was produced by Christopher Sepulveda and Michael Anderson of Logolite Entertainment, Ur-Mee Productions and Geoff Soffer. It was released pre-theatrically on iTunes, Amazon Video and Video on Demand on April 8, 2013, through Gravitas Ventures and Warner Bros., and was released theatrically in the United States and Canada on May 10, 2013. The DVD was released on September 24, 2013 by Kino Lorber and Archstone Distribution."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Harold_&_Kumar"}, "Title": {"type": "literal", "value": "Harold & Kumar"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Danny_Leiner|http://dbpedia.org/resource/Hayden_Schlossberg|http://dbpedia.org/resource/Jon_Hurwitz"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/John_Cho|http://dbpedia.org/resource/Kal_Penn|http://dbpedia.org/resource/Neil_Patrick_Harris"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_duos"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "300"}, "Description": {"type": "literal", "value": "Harold & Kumar is the name for a series of American stoner comedy films starring John Cho (Harold) and Kal Penn (Kumar). The first film, Harold & Kumar Go to White Castle, was released on July 30, 2004, by New Line Cinema and spawned a sequel titled Harold & Kumar Escape from Guantanamo Bay, released four years later. A Very Harold & Kumar 3D Christmas, the third installment of the series, opened nationwide in the U.S. on November 4, 2011. The series has been a financial success. The three films, produced on a total budget of US$40 million, grossed $102.8 million worldwide. In addition to their box office grosses, the films were extremely successful on home video. The series has been released on both Blu-ray and DVD."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/New_Line_Cinema|http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/AV_Idol_(film)"}, "Title": {"type": "literal", "value": "AV Idol"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Hideo_Jojo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Yeo_Min-Jeong"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Japanese_sex_comedy_films|http://dbpedia.org/resource/Category:South_Korean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "AV Idol AKA Love & Seoul (AV \uc544\uc774\ub3cc in Korean, \u30e9\u30d6\uff06\u30bd\u30a6\u30eb in Japanese) is a 2012 erotic comedy film directed by Hideo Jojo. It is a co-production between Japan and South Korea."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Googly_(film)"}, "Title": {"type": "literal", "value": "Googly"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pavan_Wadeyar"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anant_Nag|http://dbpedia.org/resource/Kriti_Kharbanda|http://dbpedia.org/resource/Yash_(Kannada_actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Googly is a 2013 Indian Kannada language romantic comedy film directed by Pavan Wadeyar and produced by Jayanna Combines. Yash and Kriti Kharbanda are the lead actors while Ananth Nag and Sadhu Kokila play the primary supporting roles. The film released on 19 July 2013. The film won multiple nominations at the 3rd South Indian International Movie Awards. Having been nominated in 11 categories, the film won SIIMA awards for Best Director (Pavan Wadeyar), Best Cinematographer (Vaidi S.), Best Lyricist (Pavan Wadeyar) and Best Fight Choreographer (Ravi Varma)."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/In_a_Valley_of_Violence"}, "Title": {"type": "literal", "value": "In a Valley of Violence"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ti_West"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ethan_Hawke|http://dbpedia.org/resource/James_Ransone|http://dbpedia.org/resource/John_Travolta|http://dbpedia.org/resource/Karen_Gillan|http://dbpedia.org/resource/Taissa_Farmiga"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "In a Valley of Violence is a 2016 American Western film written, directed, produced and edited by Ti West. The film marks the second time West has directed a non-horror film. Jason Blum serves as producer through his production company Blumhouse Productions. The film stars Ethan Hawke, Taissa Farmiga, James Ransone, Karen Gillan, and John Travolta. It had its world premiere at South by Southwest on March 12, 2016. The film is scheduled to be released on October 21, 2016 by Focus World."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Focus_Features"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Reefer_Madness_(2005_film)"}, "Title": {"type": "literal", "value": "Reefer Madness: The Movie Musical"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Fickman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alan_Cumming|http://dbpedia.org/resource/Amy_Spanger|http://dbpedia.org/resource/Ana_Gasteyer|http://dbpedia.org/resource/Christian_Campbell|http://dbpedia.org/resource/John_Kassir|http://dbpedia.org/resource/Kristen_Bell|http://dbpedia.org/resource/Neve_Campbell|http://dbpedia.org/resource/Robert_Torti|http://dbpedia.org/resource/Steven_Weber_(actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy_films|http://dbpedia.org/resource/Category:German_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "Reefer Madness, also known as Reefer Madness: The Movie Musical, is a 2005 American made-for-television musical comedy film adapted from the musical of the same name based on the 1936 exploitation film also of the same title. The film, directed by Andy Fickman, written by Kevin Murphy and Dan Studney, and produced by the three, premiered on Showtime on April 16, 2005. The film stars Kristen Bell, Christian Campbell, and John Kassir reprising their stage roles, with the notable addition of Alan Cumming and Ana Gasteyer in other lead roles, with Campbell's sister Neve making a cameo appearance as Miss Poppy. Robert Torti, who played the characters of both Jack and Jesus onstage, portrays only the latter in this version."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Showtime_(TV_network)"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Gardener_of_Eden"}, "Title": {"type": "literal", "value": "Gardener of Eden"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Connolly_(actor)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Erika_Christensen|http://dbpedia.org/resource/Giovanni_Ribisi|http://dbpedia.org/resource/Jerry_Ferrara|http://dbpedia.org/resource/Lukas_Haas"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Gardener of Eden is a 2007 American comedy-drama film directed by Kevin Connolly. It stars Lukas Haas, Erika Christensen and Giovanni Ribisi."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Cyrus_(2010_comedy-drama_film)"}, "Title": {"type": "literal", "value": "Cyrus"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jay_Duplass|http://dbpedia.org/resource/Mark_Duplass"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Catherine_Keener|http://dbpedia.org/resource/John_C._Reilly|http://dbpedia.org/resource/Jonah_Hill|http://dbpedia.org/resource/Marisa_Tomei"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Cyrus is a 2010 comedy-drama film written and directed by brothers Jay and Mark Duplass and starring John C. Reilly, Jonah Hill, Marisa Tomei, and Catherine Keener."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Fox_Searchlight_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/A_Hard_Day"}, "Title": {"type": "literal", "value": "A Hard Day"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kim_Seong-hun_(filmmaker)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cho_Jin-woong|http://dbpedia.org/resource/Lee_Sun-kyun"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:South_Korean_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "A Hard Day (Hangul: \ub05d\uae4c\uc9c0 \uac04\ub2e4; RR: Kkeutkkaji Ganda; lit. \"Take It to the End\") is a 2014 South Korean crime action thriller film written and directed by Kim Seong-hun, and starring Lee Sun-kyun and Cho Jin-woong. It was selected to compete in the Directors' Fortnight section of the 2014 Cannes Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Showbox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dead_Heat_(1988_film)"}, "Title": {"type": "literal", "value": "Dead Heat"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mark_Goldblatt"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Darren_McGavin|http://dbpedia.org/resource/Joe_Piscopo|http://dbpedia.org/resource/Lindsay_Frost|http://dbpedia.org/resource/Treat_Williams|http://dbpedia.org/resource/Vincent_Price"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Dead Heat is a 1988 American action comedy horror film directed by Mark Goldblatt and starring Treat Williams, Joe Piscopo and Vincent Price. The B movie is about an LAPD police officer who is murdered while attempting to arrest zombies who have been reanimated by the head of Dante Laboratories in order to carry out violent armed robberies, and decides to get revenge with the help of his former partner."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/New_World_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Slow_Video"}, "Title": {"type": "literal", "value": "Slow Video"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kim_Young-tak"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Cha_Tae-hyun|http://dbpedia.org/resource/Nam_Sang-mi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:South_Korean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "Slow Video (Hangul: \uc2ac\ub85c\uc6b0 \ube44\ub514\uc624; RR: Seullou Bidio) is a 2014 South Korean comedy film written and directed by Kim Young-tak, starring Cha Tae-hyun and Nam Sang-mi. It is the second Korean film to be fully financed by American studio 20th Century Fox."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Sano_Sansar"}, "Title": {"type": "literal", "value": "Sano Sansar \" (Small World)"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alok_Nembang"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Sano Sansar (Nepali: \u0938\u093e\u0928\u094b \u0938\u0902\u0938\u093e\u0930, translation: Small World) is a 2008 Nepali romantic comedy film directed by Alok Nembang. The film has a massive star cast which includes Neer Shah and newcomers Mahesh Shakya (popularly known  Karma ), Jivan Luitel and Namrata Shrestha. Sano Sansar is director Alok Nembang's directorial debut and is the second Nepali HD movie made after Kagbeni. The film is heavily influenced by the Korean movie My Sassy Girl and the English-language movie You've Got Mail."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Joker_(2012_film)"}, "Title": {"type": "literal", "value": "Joker"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Shirish_Kunder"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Akshay_Kumar|http://dbpedia.org/resource/Minisha_Lamba|http://dbpedia.org/resource/Shreyas_Talpade|http://dbpedia.org/resource/Sonakshi_Sinha"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Comedy_science_fiction_films|http://dbpedia.org/resource/Category:Indian_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_science_fiction_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "Joker is an 2012 Hindi science fiction comedy film directed by Shirish Kunder, and also his second directorial venture after Jaan-E-Mann. The film stars Akshay Kumar opposite Sonakshi Sinha in lead roles. This was the second film in which Sinha paired opposite Kumar after Rowdy Rathore (2012). The film released worldwide on 31 August 2012, and received mixed to negative response upon release. Despite collecting mediocre box office collections, the film was panned by the audience and was declared a 'disaster' at the box office. The film is regarded as one of the worst films of the decade. The trailer of the film revealed on 11 July 2012, and also in cinemas along with Cocktail."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Hari_Om_Entertainment|http://dbpedia.org/resource/UTV_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lucky_Them"}, "Title": {"type": "literal", "value": "Lucky Them"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Megan_Griffiths"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Thomas_Haden_Church|http://dbpedia.org/resource/Toni_Collette"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Lucky Them is a 2013 American comedy-drama film directed by Megan Griffiths. It was screened in the Special Presentation section at the 2013 Toronto International Film Festival, and in a June, 2014 screening at the Greenwich International Film Festival in producer Emily Wachtel's native Stamford, Connecticut.The film received positive reviews from outlets such as Variety, The Hollywood Reporter, ScreenDaily, and The Huffington Post. The film was released theatrically on May 30, 2014, by IFC Films. It was released on DVD on September 20, 2014 and available through Netflix."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Adult_Beginners"}, "Title": {"type": "literal", "value": "Adult Beginners"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ross_Katz"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bobby_Cannavale|http://dbpedia.org/resource/Joel_McHale|http://dbpedia.org/resource/Nick_Kroll|http://dbpedia.org/resource/Rose_Byrne"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Adult Beginners is a 2014 American comedy drama film directed by Ross Katz and written by Jeff Cox and Liz Flahire based on a story by Nick Kroll. The film stars Kroll, Rose Byrne, Bobby Cannavale, and Joel McHale. RADiUS-TWC acquired the North American distribution rights of the film during its premiere at the 2014 Toronto International Film Festival. The film was released in a limited release in theatres and VOD on April 24, 2015."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/The_Weinstein_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/My_Amnesia_Girl"}, "Title": {"type": "literal", "value": "My Amnesia Girl"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Cathy_Garcia-Molina"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/John_Lloyd_Cruz|http://dbpedia.org/resource/Toni_Gonzaga"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Philippine_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "My Amnesia Girl is a 2010 Filipino romantic film starring John Lloyd Cruz and Toni Gonzaga. It was released by Star Cinema and directed by Cathy Garcia-Molina. The film is the highest grossing Filipino film of 2010."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Star_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Zombie_Night_2:_Awakening"}, "Title": {"type": "literal", "value": "Zombie Night"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_J._Francis"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:Zombie_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Zombie Night 2: Awakening is a 2006 Canadian horror film directed by David J. Francis. It is a conceptual sequel to Zombie Night. It was followed in 2008 by Reel Zombies."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_TV_Set"}, "Title": {"type": "literal", "value": "The TV Set"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jake_Kasdan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/David_Duchovny|http://dbpedia.org/resource/Ioan_Gruffudd|http://dbpedia.org/resource/Judy_Greer|http://dbpedia.org/resource/Sigourney_Weaver"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "The TV Set is a 2006 comedy-drama film about an idealistic writer attempting to bring his vision for a TV show to fruition on the small screen."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox|http://dbpedia.org/resource/THINKFilm"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/How_to_Train_Your_Dragon_(film)"}, "Title": {"type": "literal", "value": "How to Train Your Dragon"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chris_Sanders_(director)|http://dbpedia.org/resource/Dean_DeBlois"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/America_Ferrera|http://dbpedia.org/resource/Christopher_Mintz-Plasse|http://dbpedia.org/resource/Craig_Ferguson|http://dbpedia.org/resource/Gerard_Butler|http://dbpedia.org/resource/Jay_Baruchel|http://dbpedia.org/resource/Jonah_Hill|http://dbpedia.org/resource/Kristen_Wiig|http://dbpedia.org/resource/T.J._Miller"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_fantasy-comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "How to Train Your Dragon is a 2010 American 3D computer-animated action-fantasy film produced by DreamWorks Animation and distributed by Paramount Pictures. Loosely based on the British book series of the same name by Cressida Cowell, the film was directed by Chris Sanders and Dean DeBlois, the duo who directed Disney's Lilo & Stitch. It stars the voices of Jay Baruchel, Gerard Butler, Craig Ferguson, America Ferrera, Jonah Hill, T.J. Miller, Kristen Wiig, and Christopher Mintz-Plasse. The story takes place in a mythical Viking world where a young Viking teenager named Hiccup aspires to follow his tribe's tradition of becoming a dragon slayer. After finally capturing his first dragon, and with his chance at last of gaining the tribe's acceptance, he finds that he no longer wants to kill it and instead befriends it. The film was released March 26, 2010, and was a critical and commercial success, earning acclaim from film critics and audiences and earning nearly $500 million worldwide. It was nominated for the Academy Award for Best Animated Feature and Best Original Score at the 83rd Academy Awards, but lost to Toy Story 3 and The Social Network, respectively. The movie also won ten Annie Awards, including Best Animated Feature. A sequel, How to Train Your Dragon 2, was written and directed by Dean DeBlois and released on June 13, 2014, and was also universally acclaimed and a box office success. A second sequel, How to Train Your Dragon 3 is to be released on May 18, 2018. The film's success has also inspired other merchandise, including a video game and a TV series."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/You_Lucky_Dog"}, "Title": {"type": "literal", "value": "You Lucky Dog"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Paul_Schneider_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chelsea_Noble|http://dbpedia.org/resource/John_de_Lancie|http://dbpedia.org/resource/Kirk_Cameron"}, "Published": {"type": "literal", "value": "1998-06-27"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy_films|http://dbpedia.org/resource/Category:American_fantasy-comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "You Lucky Dog is a 1998 Disney Channel Original Movie, first aired on June 27, 1998. It stars Kirk Cameron and was directed by Paul Schneider."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Disney-ABC_Domestic_Television"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Pineapple_Express_(film)"}, "Title": {"type": "literal", "value": "Pineapple Express"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_Gordon_Green"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Danny_McBride|http://dbpedia.org/resource/Gary_Cole|http://dbpedia.org/resource/James_Franco|http://dbpedia.org/resource/Rosie_Perez"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "Pineapple Express is a 2008 American action comedy film directed by David Gordon Green, written by Seth Rogen and Evan Goldberg and starring Rogen and James Franco. The plot concerns a process server and his marijuana dealer friend forced to flee from hitmen and a corrupt police officer after witnessing them commit a murder. Producer Judd Apatow, who previously worked with Rogen and Goldberg on Knocked Up and Superbad, assisted in developing the story, which was partially inspired by the bromantic comedy subgenre. Columbia Pictures released the film on August 6, 2008, and it grossed $101.6 million worldwide. Franco was nominated for a Golden Globe Award for his performance in the film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Idiotmaker's_Gravity_Tour"}, "Title": {"type": "literal", "value": "The Idiotmaker's Gravity Tour"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Daniel_Kremer"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Peter_Brunette"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "The Idiotmaker's Gravity Tour is a 2011 American independent comedy-drama film starring William Cully Allen, Glenn Walsh, K.J. Linhein, Pappu Rai, Peter Brunette, Erin Lovett Sherman, Alanna Blair, William McKeever and written and directed by Daniel Kremer."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Dangerously_Delicious"}, "Title": {"type": "literal", "value": "Dangerously Delicious"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jason_Woliner"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aziz_Ansari"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Stand-up_comedy_concert_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "61"}, "Description": {"type": "literal", "value": "Dangerously Delicious is a 2012 American stand-up comedy film written by and starring Aziz Ansari. It was filmed in June 2011 at the Warner Theatre in Washington, D.C. during his Dangerously Delicious Tour."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Zombieland"}, "Title": {"type": "literal", "value": "Zombieland"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ruben_Fleischer"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:Zombie_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "Zombieland is a 2009 American horror comedy zombie film directed by Ruben Fleischer and written by Rhett Reese and Paul Wernick. The film stars Woody Harrelson, Jesse Eisenberg, Emma Stone and Abigail Breslin as survivors of a zombie apocalypse. The film follows a geeky college kid making his way through the zombie apocalypse, meeting three strangers along the way and together taking an extended road trip across the Southwestern United States in an attempt to find a sanctuary free from zombies. The film premiered at Fantastic Fest on September 25, 2009 and was theatrically released on October 2, 2009 in the United States by Columbia Pictures. Zombieland was a critical and commercial success, grossing more than $60.8 million in 17 days and surpassing the 2004 film Dawn of the Dead as the top-grossing zombie film in the United States until World War Z in 2013."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Columbia_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tales_from_the_Crapper"}, "Title": {"type": "literal", "value": "Tales from the Crapper"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chad_Ferrin|http://dbpedia.org/resource/Gabriel_Friedman|http://dbpedia.org/resource/Lloyd_Kaufman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Arban_Ornelas|http://dbpedia.org/resource/Debbie_Rochon|http://dbpedia.org/resource/James_Gunn_(filmmaker)|http://dbpedia.org/resource/Jorge_Garcia|http://dbpedia.org/resource/Julie_Strain|http://dbpedia.org/resource/Kevin_Eastman|http://dbpedia.org/resource/Masuimi_Max|http://dbpedia.org/resource/Ron_Jeremy"}, "Published": {"type": "literal", "value": "2004-09-28"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Tales from the Crapper is a 2004 straight-to-video anthology film that was a spoof of the Tales from the Crypt comics. The film was released by Troma Entertainment."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Troma_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/F\u00edask\u00f3"}, "Title": {"type": "literal", "value": "F\u00edask\u00f3"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ragnar_Bragason"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kristbj\u00f6rg_Kjeld|http://dbpedia.org/resource/R\u00f3bert_Arnfinnsson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "F\u00edask\u00f3 (English title: Fiasco) is an Icelandic film written and directed by Ragnar Bragason."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Friends_with_Benefits_(film)"}, "Title": {"type": "literal", "value": "Friends with Benefits"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Will_Gluck"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bryan_Greenberg|http://dbpedia.org/resource/Jenna_Elfman|http://dbpedia.org/resource/Justin_Timberlake|http://dbpedia.org/resource/Mila_Kunis|http://dbpedia.org/resource/Patricia_Clarkson|http://dbpedia.org/resource/Richard_Jenkins|http://dbpedia.org/resource/Woody_Harrelson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "Friends with Benefits is a 2011 American romantic comedy film directed by Will Gluck, and starring Justin Timberlake and Mila Kunis in the lead roles. The film features Patricia Clarkson, Jenna Elfman, Bryan Greenberg, Nolan Gould, Richard Jenkins, and Woody Harrelson in supporting roles. The plot revolves around Dylan Harper (Timberlake) and Jamie Rellis (Kunis), who meet in New York City, and naively believe adding sex to their friendship will not lead to complications. Over time, they begin to develop deep mutual feelings for each other, only to deny it each time they are together. Principal casting for Friends with Benefits took place over a three-month period from April to July 2010. Gluck reworked the original script and plot shortly after casting Timberlake and Kunis. Filming began in New York City on July 20, 2010, and concluded in Los Angeles in September 2010. The film was distributed by Screen Gems and was released in North America on July 22, 2011. Friends with Benefits was generally well received by film critics, most of whom praised the chemistry between the lead actors. The film became a commercial success at the box office, grossing over $149.5 million worldwide, against a budget of $35 million. It was nominated for two People's Choice Awards\u2014Favorite Comedy Movie, and Favorite Comedic Movie Actress (Kunis)\u2014and two Teen Choice Awards for Timberlake and Kunis."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Screen_Gems"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Spectacular_Now"}, "Title": {"type": "literal", "value": "The Spectacular Now"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/James_Ponsoldt"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "The Spectacular Now is a 2013 American romantic comedy-drama film directed by James Ponsoldt, written by Scott Neustadter and Michael H. Weber and starring Miles Teller and Shailene Woodley. The film is based on the novel of the same name by Tim Tharp. The film premiered at the 2013 Sundance Film Festival, where it garnered critical acclaim."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/A24_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Baby_Mama_(film)"}, "Title": {"type": "literal", "value": "Baby Mama"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_McCullers"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amy_Poehler|http://dbpedia.org/resource/Dax_Shepard|http://dbpedia.org/resource/Greg_Kinnear|http://dbpedia.org/resource/Sigourney_Weaver|http://dbpedia.org/resource/Tina_Fey"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "Baby Mama is a 2008 American romantic comedy film written and directed by Michael McCullers and starring Tina Fey, Amy Poehler, Greg Kinnear, Dax Shepard and Sigourney Weaver."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Studios"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Secretly,_Greatly"}, "Title": {"type": "literal", "value": "Secretly, Greatly"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jang_Cheol-soo"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kim_Soo-Hyun|http://dbpedia.org/resource/Lee_Hyun-woo_(actor)|http://dbpedia.org/resource/Park_Ki-woong"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:South_Korean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "123"}, "Description": {"type": "literal", "value": "Secretly, Greatly (Hangul: \uc740\ubc00\ud558\uac8c \uc704\ub300\ud558\uac8c; RR: Eunmilhage Widaehage) is a 2013 South Korean action comedy-drama film starring Kim Soo-hyun, Park Ki-woong, and Lee Hyun-woo, who play North Korean spies who infiltrate South Korea as a village idiot, a rock musician, and a high school student, respectively. They assimilate to small town life while awaiting their orders, until one day, due to a sudden power shift in the North, their mission turns out to be an order to commit suicide. The film is based on the 2010 spy webtoon series Covertness by Hun, which has received over 40 million page hits. And upon its release on June 5, 2013, the film broke several box office records in South Korea: the highest single day opening for a domestic film, most tickets sold in one day for a domestic film, the biggest opening weekend, the highest-grossing webtoon-based film, and the fastest movie to reach the 1 million, 2 million, 3 million, and 4 million marks in audience number. Movie pundits attribute its success to a large percentage of teen audience turnout."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Showbox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tormented_(2009_British_film)"}, "Title": {"type": "literal", "value": "Tormented"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jon_Wright"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alex_Pettyfer|http://dbpedia.org/resource/April_Pearson|http://dbpedia.org/resource/Calvin_Dean|http://dbpedia.org/resource/Dimitri_Leonidas|http://dbpedia.org/resource/Georgia_King|http://dbpedia.org/resource/Larissa_Wilson|http://dbpedia.org/resource/Sophie_Wu|http://dbpedia.org/resource/Tom_Hopper|http://dbpedia.org/resource/Tuppence_Middleton"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films|http://dbpedia.org/resource/Category:British_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "Tormented is a 2009 British comedy horror and slasher film starring Alex Pettyfer, April Pearson, Dimitri Leonidas, Calvin Dean and newcomer Tuppence Middleton. It was directed by Jon Wright, produced by Cavan Ash, Tracy Brimm, Arvind Ethan David and Kate Myers and written by newcomer Stephen Prentice, the film was released on 22 May 2009 in the UK by Warner Bros.. Tormented was co-produced by BBC Films, Path\u00e9, Slingshot Studios, Forward Films, and Screen West Midlands, and the music was composed by Orbital member Paul Hartnoll. The film received mixed to positive reviews from critics and it earned \u00a3284,757 on a \u00a3700,000 budget. Tormented was released on DVD and Blu-ray on 28 September 2009 by MPI Home Video."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Films|http://dbpedia.org/resource/MPI_Home_Video|http://dbpedia.org/resource/Paramount_Vantage|http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jewel_of_the_Sahara"}, "Title": {"type": "literal", "value": "Jewel of the Sahara"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ariel_Vromen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Clifford_David|http://dbpedia.org/resource/Gerard_Butler|http://dbpedia.org/resource/Peter_Franz\u00e9n"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Fantasy-comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "17"}, "Description": {"type": "literal", "value": "Jewel of the Sahara is a 2001 film starring Gerard Butler, Clifford David as the old Francois Renard and Peter Franz\u00e9n as the young Francois Renard. Jewel of the Sahara is comedy, fantasy short film directed by Ariel Vromen, who also wrote the screenplay, was the executive producer and edited the film. The film was made by Keyser Productions."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Eating_Out"}, "Title": {"type": "literal", "value": "Eating Out"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Q._Allan_Brocka"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Emily_Stiles|http://dbpedia.org/resource/Jim_Verraros|http://dbpedia.org/resource/Rebekah_Kochan|http://dbpedia.org/resource/Ryan_Carnes|http://dbpedia.org/resource/Scott_Lunsford"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "Eating Out is a 2004 gay-themed romantic comedy film written and directed by Q. Allan Brocka."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Roadside_Romeo"}, "Title": {"type": "literal", "value": "Roadside Romeo"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jugal_Hansraj"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jaaved_Jaaferi|http://dbpedia.org/resource/Kareena_Kapoor_Khan|http://dbpedia.org/resource/Saif_Ali_Khan|http://dbpedia.org/resource/Sanjai_Mishra|http://dbpedia.org/resource/Vrajesh_Hirjee"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Roadside Romeo is a 2008 3D Indian-American computer animated romantic musical comedy family film written and directed by Jugal Hansraj and produced by Aditya Chopra and Yash Chopra of Yash Raj Films and distributed by Walt Disney Studios Motion Pictures in United States, India, and all around the world. It was released on 24 October 2008 in the United States and India. This was the second Bollywood movie to receive a North American release by a Hollywood studio, following Sony Pictures' Saawariya (2007). The title character is a dog living in Mumbai, as voiced by Saif Ali Khan; his girlfriend, Laila, is voiced by Kareena Kapoor. This was the first voiceover in an animated production for both actors. Roadside Romeo was also Hansraj's first animated directorial debut. Roadside Romeo received generally negative reviews from critics, with most of the criticism focused on the film's script, predictable plot and overuse of cliches."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Observe_and_Report"}, "Title": {"type": "literal", "value": "Observe and Report"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jody_Hill"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Observe and Report is a 2009 American black comedy film written and directed by Jody Hill, starring Seth Rogen, Anna Faris and Ray Liotta."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/I_Love_NY_(2015_film)"}, "Title": {"type": "literal", "value": "I Love NY"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Radhika_Rao_(director)|http://dbpedia.org/resource/Vinay_Sapru"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Kangana_Ranaut|http://dbpedia.org/resource/Sunny_Deol|http://dbpedia.org/resource/Tannishtha_Chatterjee"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "127"}, "Description": {"type": "literal", "value": "I Love NY, also known as I Love New Year, is an Indian romantic comedy film directed by Radhika Rao and Vinay Sapru starring Sunny Deol and Kangana Ranaut in lead roles. The film is produced by Bhushan Kumar and Krishan Kumar under the banner of Super Cassettes Industries Ltd. The film was extensively shot in Mumbai, New York City and Bangkok. The main plot was taken from the Russian romantic comedy The Irony of Fate (1976). After numerous delays, the film released on 10 July 2015."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Golmaal_Returns"}, "Title": {"type": "literal", "value": "Golmaal Returns"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rohit_Shetty"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ajay_Devgn|http://dbpedia.org/resource/Amrita_Arora|http://dbpedia.org/resource/Anjana_Sukhani|http://dbpedia.org/resource/Arshad_Warsi|http://dbpedia.org/resource/Celina_Jaitley|http://dbpedia.org/resource/Kareena_Kapoor|http://dbpedia.org/resource/Shreyas_Talpade|http://dbpedia.org/resource/Tusshar_Kapoor"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Golmaal Returns is a 2008 Bollywood comedy drama film directed by Rohit Shetty. The film is a sequel to the 2006 film, Golmaal: Fun Unlimited with Ajay Devgn, Tusshar Kapoor and Arshad Warsi reprising their roles, whilst Shreyas Talpade replaced the role originally played by Sharman Joshi. The film also features Kareena Kapoor, Amrita Arora and Celina Jaitley in supporting roles. The film is remake of 1989 marathi film Pheka Pheki starring Ashok Saraf and Laxmikant Berde. Where the role of Ashok Saraf is played by Ajay Devgn and the role of Laxmikant Berde is played by Shreyas Talpade in this film. The film's storyline also meets that one of 1973 film, Aaj Ki Taaza Khabar. Produced by Dhillin Mehta under Shree Ashtavinayak Cine Vision LTD, the film released on 29 October 2008 and received mixed response from critics. However, managed to do very well at the box office. On 5 November 2010, the film spawned an sequel Golmaal 3, which became the second highest grossing Bollywood film of 2010."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Shree_Ashtavinayak_Cine_Vision_Ltd"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Max_Keeble's_Big_Move"}, "Title": {"type": "literal", "value": "Max Keeble's Big Move"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tim_Hill_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alex_D._Linz|http://dbpedia.org/resource/Josh_Peck|http://dbpedia.org/resource/Zena_Grey"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "Max Keeble's Big Move is a 2001 American comedy film directed by Tim Hill, written by David L. Watts, James Greer, Jonathan Bernstein, and Mark Blackwell, and starring Alex D. Linz as the title character. The film was released in North America on October 5, 2001 by Walt Disney Pictures."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Kings_of_Summer"}, "Title": {"type": "literal", "value": "The Kings of Summer"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jordan_Vogt-Roberts"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alison_Brie|http://dbpedia.org/resource/Erin_Moriarty_(actress)|http://dbpedia.org/resource/Gabriel_Basso|http://dbpedia.org/resource/Marc_Evan_Jackson|http://dbpedia.org/resource/Mary_Lynn_Rajskub|http://dbpedia.org/resource/Megan_Mullally|http://dbpedia.org/resource/Mois\u00e9s_Arias|http://dbpedia.org/resource/Nick_Offerman|http://dbpedia.org/resource/Nick_Robinson_(American_actor)"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "The Kings of Summer (originally Toy's House) is a 2013 American independent coming-of-age comedy-drama film that premiered at the 2013 Sundance Film Festival. It stars Nick Robinson, Mois\u00e9s Arias, Gabriel Basso, and Nick Offerman. The film was released in a limited release on May 31, 2013, by CBS Films."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Big_Beach_(company)"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Presto_(film)"}, "Title": {"type": "literal", "value": "Presto"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Doug_Sweetland"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Doug_Sweetland"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "5.283333333333333"}, "Description": {"type": "literal", "value": "Presto is a 2008 American Pixar computer-animated short film shown in theaters before their feature-length film WALL-E. The short is about a magician trying to perform a show with his uncooperative rabbit and is a gag-filled homage to classic cartoons such as Tom and Jerry and Looney Tunes. Presto was directed by veteran Pixar animator Doug Sweetland, in his directorial debut. The original idea for the short was a magician who incorporated a rabbit into his act who suffered from stage fright. This was considered to be too long and complicated, and the idea was reworked. To design the theater featured in Presto, the filmmakers visited several opera houses and theaters for set design ideas. Problems arose when trying to animate the theater's audience of 2,500 patrons; this was deemed too expensive, and was solved by showing the back of the audience. Reaction to the short was positive, and reviewers of WALL-E's home media release considered it to be an enjoyable special feature. Presto was nominated for an Annie Award and Academy Award. It was included in the Animation Show of Shows in 2008."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Friends_with_Kids"}, "Title": {"type": "literal", "value": "Friends with Kids"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jennifer_Westfeldt"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Friends with Kids is a 2011 American romantic comedy film written, produced, and directed by Jennifer Westfeldt, who also stars in the film. Kristen Wiig, Adam Scott, Maya Rudolph, Chris O'Dowd, Edward Burns, Megan Fox and Jon Hamm also star in the film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Lions_Gate_Entertainment|http://dbpedia.org/resource/Roadside_Attractions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Paper_Soldiers"}, "Title": {"type": "literal", "value": "Paper Soldiers"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Damon_Dash"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Beanie_Sigel|http://dbpedia.org/resource/Kevin_Hart_(actor)|http://dbpedia.org/resource/Memphis_Bleek|http://dbpedia.org/resource/Michael_Rapaport|http://dbpedia.org/resource/Noreaga|http://dbpedia.org/resource/Stacey_Dash|http://dbpedia.org/resource/Tiffany_Withers"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Paper Soldiers is an urban crime comedy released in 2002. This hip-hop comedy from Roc-A-Fella Records' film division stars Kevin Hart (in his film debut), Beanie Sigel, Stacey Dash, Kamal Ahmed, and rapper Jay-Z appears in a cameo role. Kevin Hart plays the character Shawn, a rookie thief who is part of a crew of thieves who does small-time jobs like house breaking. The crew itself is not exactly a highly polished operation, and the crew's capers result in comic mishaps far more often than actual thefts. They still manage to do some jobs like breaking into Jay-Z's house and robbing some of its material goods, but predictably, they receive prison time for robbery or aggravated assault. Beanie Sigel plays Stu, a hot-headed hood bully that does small robberies to make some cash, Damon Dash and Memphis Bleek as a thieves of another crew, Stacey Dash as a beautiful woman named Tamika, Myxt Matanza as the bodega owner and Jay-Z as the rapper himself. It was produced by Roc-A-Fella Films and distributed by Universal Pictures."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kill_Buljo"}, "Title": {"type": "literal", "value": "Kill Buljo"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tommy_Wirkola"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Frank_Arne_Olsen|http://dbpedia.org/resource/Linda_\u00d8verli_Nilsen|http://dbpedia.org/resource/Martin_Hykkerud|http://dbpedia.org/resource/Natasha_Angel_Dahle|http://dbpedia.org/resource/Stig_Frode_Henriksen|http://dbpedia.org/resource/Tommy_Wirkola"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Action_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Kill Buljo is a 2007 Norwegian parody of the Quentin Tarantino film Kill Bill. It is set in Finnmark, Norway and portrays the protagonist Jompa Tormann's hunt for Tampa and Papa Buljo. The film depends heavily on satirizing stereotypes about Norway's Sami population. According to the Norwegian newspaper Dagbladet, Quentin Tarantino has watched the film's trailer and was quite happy about it, looking forward to seeing the film itself."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Oro_Film"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Love_Punch"}, "Title": {"type": "literal", "value": "The Love Punch"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Joel_Hopkins"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Celia_Imrie|http://dbpedia.org/resource/Emma_Thompson|http://dbpedia.org/resource/Laurent_Lafitte|http://dbpedia.org/resource/Louise_Bourgoin|http://dbpedia.org/resource/Pierce_Brosnan|http://dbpedia.org/resource/Timothy_Spall"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "(For other uses, see Love Punch (disambiguation).) The Love Punch is a 2013 British comedy film written and directed by Joel Hopkins. It was screened in the Gala Presentation section at the 2013 Toronto International Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Entertainment_One"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jersey_Girl_(2004_film)"}, "Title": {"type": "literal", "value": "Jersey Girl"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kevin_Smith"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Affleck|http://dbpedia.org/resource/George_Carlin|http://dbpedia.org/resource/Jason_Biggs|http://dbpedia.org/resource/Jennifer_Lopez|http://dbpedia.org/resource/Liv_Tyler|http://dbpedia.org/resource/Raquel_Castro|http://dbpedia.org/resource/Will_Smith"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Jersey Girl is a 2004 American comedy-drama film written, co-edited, and directed by Kevin Smith. It stars Ben Affleck, Liv Tyler, Raquel Castro, George Carlin, Jason Biggs, Jennifer Lopez, and Will Smith. At $35 million, it was Kevin Smith's biggest-budget project but went on to become a box office bomb. It was the second one where Ben Affleck and Liv Tyler played a couple after Armageddon. It was the first one written and directed by Smith not to be set in the View Askewniverse and the first one not to feature appearances by Jay and Silent Bob, although animated versions of them appear in the View Askew logo."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Miramax_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Harold_&_Kumar_Escape_from_Guantanamo_Bay"}, "Title": {"type": "literal", "value": "Harold & Kumar Escape from Guantanamo Bay"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Hayden_Schlossberg|http://dbpedia.org/resource/Jon_Hurwitz"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Danneel_Harris|http://dbpedia.org/resource/John_Cho|http://dbpedia.org/resource/Kal_Penn|http://dbpedia.org/resource/Neil_Patrick_Harris|http://dbpedia.org/resource/Rob_Corddry"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102|107"}, "Description": {"type": "literal", "value": "Harold & Kumar Escape from Guantanamo Bay is a 2008 American stoner comedy film, and the second installment of the Harold & Kumar series. The film was written and directed by Jon Hurwitz and Hayden Schlossberg. The story continues where Harold & Kumar Go to White Castle leaves off, with Harold Lee (John Cho) and Kumar Patel (Kal Penn) flying to Amsterdam, but they are imprisoned after being mistaken for terrorists, and end up on a series of comical misadventures when they escape from Guantanamo Bay. The film also stars Paula Garc\u00e9s, Neil Patrick Harris, Jon Reep, Rob Corddry, Ed Helms, David Krumholtz, Eddie Kaye Thomas, Jack Conley, Roger Bart, Danneel Harris, Eric Winter, Adam Herschman, and Richard Christy. The film was released on April 25, 2008 by Warner Bros.; this film was the first New Line Cinema title to be distributed by Warner Bros. since New Line Cinema became a division of Warner Bros. It is also the first Harold & Kumar film made in association with Mandate Pictures. The film was released on DVD and Blu-ray Disc on July 29, 2008."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/New_Line_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Jalla!_Jalla!"}, "Title": {"type": "literal", "value": "Jalla! Jalla!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Josef_Fares"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Fares_Fares|http://dbpedia.org/resource/Laleh_Pourkarim|http://dbpedia.org/resource/Torkel_Petersson|http://dbpedia.org/resource/Tuva_Novotny"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Jalla! Jalla! is a Swedish comedy film, which was released to cinemas in Sweden on 22 December 2000 directed by Josef Fares starring Fares Fares, Torkel Petersson, Tuva Novotny and Laleh Pourkarim as the main roles. It was the debut film by Josef Fares and one of his most well-known. The film received eight nominations and won four, including Best Film. \u201cJalla! Jalla!\u201d means \u201cCome on!\u201d or \u201cHurry up!\u201d in Arabic."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Celeste_and_Jesse_Forever"}, "Title": {"type": "literal", "value": "Celeste and Jesse Forever"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lee_Toland_Krieger"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Samberg|http://dbpedia.org/resource/Ari_Graynor|http://dbpedia.org/resource/Elijah_Wood|http://dbpedia.org/resource/Emma_Roberts|http://dbpedia.org/resource/Eric_Christian_Olsen"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Celeste and Jesse Forever is a 2012 American romantic comedy-drama film directed by Lee Toland Krieger. It stars Rashida Jones and Andy Samberg, and was written by Jones and Will McCormack, who also has a role in the film. It was released on August 3, 2012, in New York and Los Angeles."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Buena_Vista_International|http://dbpedia.org/resource/Sony_Pictures_Classics"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Chotta_Mumbai"}, "Title": {"type": "literal", "value": "Chotta Mumbai"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Anwar_Rasheed"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bhavana_Menon|http://dbpedia.org/resource/Bijukuttan|http://dbpedia.org/resource/Indrajith_Sukumaran|http://dbpedia.org/resource/Jagathy_Sreekumar|http://dbpedia.org/resource/Kalabhavan_Mani|http://dbpedia.org/resource/Manikuttan|http://dbpedia.org/resource/Maniyanpilla_Raju|http://dbpedia.org/resource/Mohanlal|http://dbpedia.org/resource/Rajan_P._Dev|http://dbpedia.org/resource/Saikumar_(Malayalam_actor)|http://dbpedia.org/resource/Siddique_(actor)"}, "Published": {"type": "literal", "value": "2007-04-06"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "129"}, "Description": {"type": "literal", "value": "Chotta Mumbai is a 2007 Malayalam comedy film directed by Anwar Rasheed, written by Benny P Nayarambalam, and produced by Maniyanpilla Raju. The film stars Mohanlal, Siddique, Saikumar, Bhavana, Jagathy Sreekumar, Indrajith, Manikuttan, Bijukuttan, Kalabhavan Mani, and Rajan P. Dev. Rahul Raj composed the score and soundtrack of the movie. The film opened to positive reviews from critics and went on to become a blockbuster.The film was the third highest grosser of year behind Mayavi and Hello."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bekas_(film)"}, "Title": {"type": "literal", "value": "Bekas"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Karzan_Kader"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "Bekas is a Kurdish comedy-drama movie written and directed by Karzan Kader and released in 2012.. The film revolves around two shoeshine boys who set off for America on their donkey, named Michael Jackson."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Kevi_Rite_Jaish"}, "Title": {"type": "literal", "value": "Kevi Rite Jaish"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Abhishek_Jain"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anang_Desai|http://dbpedia.org/resource/Rakesh_Bedi|http://dbpedia.org/resource/Tom_Alter"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "128"}, "Description": {"type": "literal", "value": "Kevi Rite Jaish (Gujarati: \u0a95\u0ac7\u0ab5\u0ac0 \u0ab0\u0ac0\u0aa4\u0ac7 \u0a9c\u0a88\u0ab6) is a 2012 Indian Gujarati-language drama film directed by Abhishek Jain and produced by Nayan Jain. The film is a satire on the fascination and obsession of the Patels' - a Gujarati farmer community - migration to the U.S. Over the last half century, thousands of Patels have migrated to the U.S.A and have come to dominate its motel industry. The film stars Divyang Thakkar, Veronica Kalpana-Gautam, Tejal Panchasara, Kenneth Desai, and Anang Desai."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/CineMan_Productions"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Deadpool_(film)"}, "Title": {"type": "literal", "value": "Deadpool"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tim_Miller_(director)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_action_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "Deadpool is a 2016 American superhero comedy film directed by Tim Miller and written by Rhett Reese and Paul Wernick, based on the Marvel Comics character of the same name. It is the eighth installment in the X-Men film series, and stars Ryan Reynolds, Morena Baccarin, Ed Skrein, T.J. Miller, Gina Carano, Leslie Uggams and Brianna Hildebrand. In Deadpool, antihero Wade Wilson hunts the man who nearly destroyed his life. Development began in February 2004 with New Line Cinema, but put the film in turnaround in March 2005, with 20th Century Fox buying the rights. In May 2009, after Reynolds portrayed the character in X-Men Origins: Wolverine, Fox lent the film to writers, and Miller was hired for his directorial debut in April 2011. Enthusiastic acclaim from leaked CGI test footage by Miller in July 2014 led to Fox greenlighting the film in September. Additional casting began in early 2015, and principal photography commenced in Vancouver from March to May. Deadpool premiered in Paris on February 8, 2016, and was released on February 12 in the United States in IMAX, DLP, D-Box and premium large format. The film was a massive blockbuster success, grossing over $782 million worldwide and breaking numerous box office records, including becoming the seventh highest-grossing film of 2016, the highest-grossing R-rated film of all time when unadjusted for inflation, and the highest-grossing X-Men film. It also received generally positive reviews, with many praising Reynolds' performance and the film's style, black humor and action sequences. Shortly after its success, a sequel was greenlit by Fox."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hotel_Beautifool"}, "Title": {"type": "literal", "value": "Hotel Beautifool"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Sameer_Iqbal_Patel"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Brijendra_Kala|http://dbpedia.org/resource/Imam_Siddique|http://dbpedia.org/resource/Johnny_Lever|http://dbpedia.org/resource/Rejith_Menon|http://dbpedia.org/resource/Rohit_Khurana"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Hotel Beautifool is an under production Bollywood film starring Rejith Menon, Johnny Lever, Brijendra Kala, Imam Siddique. Directed by Sameer Iqbal Patel."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ned_(film)"}, "Title": {"type": "literal", "value": "Ned"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Abe_Forsythe"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Abe_Forsythe|http://dbpedia.org/resource/Damon_Herriman|http://dbpedia.org/resource/Felix_Williamson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Australian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "81"}, "Description": {"type": "literal", "value": "For the 2010 British film by Peter Mullan, see Neds (film). Ned is a 2003 Australian film, directed by Abe Forsythe. It is satire of Australian outlaw Ned Kelly, and his iconographical status as a \"hero.\" The film was released in the same year as Ned Kelly, starring Heath Ledger. In November 2006 on Vega FM host Shaun Micallef called Ned \"The funniest Australian film made in the last ten years.\""}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Becker_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Trolls_(film)"}, "Title": {"type": "literal", "value": "Trolls"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Mike_Mitchell_(director)|http://dbpedia.org/resource/Walt_Dohrn"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anna_Kendrick|http://dbpedia.org/resource/Gwen_Stefani|http://dbpedia.org/resource/James_Corden|http://dbpedia.org/resource/Justin_Timberlake|http://dbpedia.org/resource/Russell_Brand|http://dbpedia.org/resource/Zooey_Deschanel"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_musical_comedy_films|http://dbpedia.org/resource/Category:American_fantasy-comedy_films|http://dbpedia.org/resource/Category:American_musical_comedy_films|http://dbpedia.org/resource/Category:Animated_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Trolls is a 2016 American 3D computer-animated musical buddy comedy film based on the dolls of the same name by Thomas Dam. Directed by Mike Mitchell, and co-directed by Walt Dohrn at his feature debut, the film is produced by Gina Shay, and written by Jonathan Aibel, Glenn Berger, and Erica Rivinoja. The film stars the voices of Anna Kendrick, Justin Timberlake, Zooey Deschanel, Russell Brand, James Corden, and Gwen Stefani. It revolves around two trolls on a quest to save their village from destruction by the Bergens, creatures who devour trolls. Produced as the 33rd animated feature by DreamWorks Animation, the film premiered on October 8, 2016, at the BFI London Film Festival, and is scheduled to be released on November 4, 2016, by 20th Century Fox."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Cinco_(film)"}, "Title": {"type": "literal", "value": "Cinco"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Cathy_Garcia-Molina"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/AJ_Perez|http://dbpedia.org/resource/Jodi_Sta._Maria|http://dbpedia.org/resource/Maja_Salvador|http://dbpedia.org/resource/Mariel_Rodriguez|http://dbpedia.org/resource/Pokwang|http://dbpedia.org/resource/Rayver_Cruz|http://dbpedia.org/resource/Robi_Domingo|http://dbpedia.org/resource/Sam_Concepcion|http://dbpedia.org/resource/Zanjoe_Marudo"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Philippine_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "151"}, "Description": {"type": "literal", "value": "Cinco (Five) is a 2010 Filipino psychological supernatural horror film produced and released by Star Cinema. The film consists of five different horror stories with various actors and directors. The film was released on July 14, 2010."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Star_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/13_Sins"}, "Title": {"type": "literal", "value": "13 Sins"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Daniel_Stamm"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Devon_Graye|http://dbpedia.org/resource/Mark_Webber_(actor)|http://dbpedia.org/resource/Pruitt_Taylor_Vince|http://dbpedia.org/resource/Ron_Perlman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:Criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "13 Sins (also known as 13: Game of Death) is a 2014 American horror thriller film directed by Daniel Stamm. The film is a remake of the 2006 Thai horror comedy film 13 Beloved. Mark Webber stars as Elliot, a meek salesman who accepts a series of increasingly disturbing and criminal challenges. It premiered at the 2014 SXSW film festival and was released theatrically in the United States on April 18, 2014."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Dimension_Films|http://dbpedia.org/resource/Entertainment_One"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Freddy_Got_Fingered"}, "Title": {"type": "literal", "value": "Freddy Got Fingered"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Tom_Green"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anthony_Michael_Hall|http://dbpedia.org/resource/Eddie_Kaye_Thomas|http://dbpedia.org/resource/Harland_Williams|http://dbpedia.org/resource/Julie_Hagerty|http://dbpedia.org/resource/Marisa_Coughlan|http://dbpedia.org/resource/Rip_Torn|http://dbpedia.org/resource/Tom_Green"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_black_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "Freddy Got Fingered is a 2001 American black comedy film directed, written by Tom Green and Derek Harvie and starring Tom Green. The film follows Green as a 28-year-old slacker who wishes to become a professional cartoonist. The film's plot resembles Green's struggles as a young man trying to get his TV series picked up, which would later become the popular MTV show The Tom Green Show. The film was critically panned at the time of its release, many considering it one of the worst films of all time. It won five Golden Raspberry Awards out of eight nominations, as well as a Dallas-Fort Worth Film Critics Association Award for Worst Picture. Despite this the film developed a cult following, and has also met with more positive praise over time, most notably from The New York Times, Metacritic, IFC.com and Splitsider. Despite a mediocre box office run, the film became a financial success by selling millions of copies on DVD."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Parental_Guidance_(film)"}, "Title": {"type": "literal", "value": "Parental Guidance"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Fickman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bailee_Madison|http://dbpedia.org/resource/Bette_Midler|http://dbpedia.org/resource/Billy_Crystal|http://dbpedia.org/resource/Joshua_Rush|http://dbpedia.org/resource/Kyle_Harrison_Breitkopf|http://dbpedia.org/resource/Marisa_Tomei|http://dbpedia.org/resource/Tom_Everett_Scott"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "Parental Guidance (previously titled Us & Them) is a 2012 American family-comedy film starring Billy Crystal, Bette Midler, Marisa Tomei and Tom Everett Scott and directed by Andy Fickman. The film was released on December 25, 2012. This movie was the last Dune Entertainment film to be distributed by 20th Century Fox. When Alice and Phil leave their three children with her parents while off on a short holiday, the children learn important life lessons from their grandparents."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/20th_Century_Fox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Four_Christmases"}, "Title": {"type": "literal", "value": "Four Christmases"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Seth_Gordon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Four Christmases (Four Holidays in Australia and New Zealand, Anywhere But Home in the Netherlands, Norway, United Arab Emirates and in South Africa) is a Christmas-themed romantic comedy film about a couple visiting all four of their divorced parents' homes on Christmas Day. The film is produced by Spyglass Entertainment released by New Line Cinema on November 26, 2008, the day before Thanksgiving, and distributed by Warner Bros. Pictures. It stars Vince Vaughn and Reese Witherspoon, with Sissy Spacek, Mary Steenburgen, Robert Duvall, Jon Voight, Jon Favreau, Tim McGraw, Dwight Yoakam, and Kristin Chenoweth as supporting cast. The film is director Seth Gordon's first studio feature film. The DVD and Blu-ray Disc was released on November 24, 2009."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/New_Line_Cinema"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/In_Search_of_a_Midnight_Kiss"}, "Title": {"type": "literal", "value": "In Search of a Midnight Kiss"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alex_Holdridge"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Brian_McGuire_(actor)|http://dbpedia.org/resource/Kathleen_Luong|http://dbpedia.org/resource/Robert_Murphy_(actor)|http://dbpedia.org/resource/Sara_Simmonds|http://dbpedia.org/resource/Scoot_McNairy|http://dbpedia.org/resource/Twink_Caplan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "In Search of a Midnight Kiss is a 2007 American independent romantic comedy film written and directed by Alex Holdridge. It is listed on the National Board of Review's Top 10 Independent Films of 2008, won the Independent Spirit John Cassavetes Award in 2009 as well as having earned awards at festivals around the world. It premiered at the Tribeca Film Festival in 2007 and since has played at festivals around the world from Mill Valley, Chicago and Los Angeles in the U.S. to Raindance (London), Edinburgh, Sarajevo, Istanbul, Bangkok, Krak\u00f3w, Thessaloniki and Melbourne outside the States. It has been released in theaters in the UK (Vertigo Films), the U.S. (IFC Films), Spain (Sherlock), Poland (Vivarto) and Greece (Seven Films). It was released in Australia on February 14, 2009."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Films|http://dbpedia.org/resource/Vertigo_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Seasons_Change_(film)"}, "Title": {"type": "literal", "value": "Seasons Change"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nithiwat_Tharathorn"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chutima_Teepanat|http://dbpedia.org/resource/Witawat_Singlampong|http://dbpedia.org/resource/Yuwanat_Arayanimisakul"}, "Published": {"type": "literal", "value": "2006-08-23"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "Seasons Change (Thai: \u0e40\u0e1e\u0e23\u0e32\u0e30\u0e2d\u0e32\u0e01\u0e32\u0e28\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e41\u0e1b\u0e25\u0e07\u0e1a\u0e48\u0e2d\u0e22, or Phror arkad plian plang boi) is 2006 Thai romantic comedy film directed by Nithiwat Tharathorn."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/GMM_Grammy"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Tellement_proches"}, "Title": {"type": "literal", "value": "Tellement proches"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Olivier_Nakache_&_\u00c9ric_Toledano"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Audrey_Dana|http://dbpedia.org/resource/Fran\u00e7ois-Xavier_Demaison|http://dbpedia.org/resource/Isabelle_Carr\u00e9|http://dbpedia.org/resource/Jos\u00e9phine_de_Meaux|http://dbpedia.org/resource/Omar_Sy|http://dbpedia.org/resource/Vincent_Elbaz"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "Tellement proches is a 2009 French film, directed and written by Olivier Nakache & \u00c9ric Toledano and starring Vincent Elbaz, Isabelle Carr\u00e9, Fran\u00e7ois-Xavier Demaison, Audrey Dana, Omar Sy and Jos\u00e9phine de Meaux."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bark!"}, "Title": {"type": "literal", "value": "Bark!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Katarzyna_Adamik"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Hank_Azaria|http://dbpedia.org/resource/Heather_Morgan|http://dbpedia.org/resource/Lee_Tergesen|http://dbpedia.org/resource/Lisa_Kudrow|http://dbpedia.org/resource/Vincent_D'Onofrio"}, "Published": {"type": "literal", "value": "2002-01-11"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "Bark! is a 2002 film written by Heather Morgan, directed by Katarzyna Adamik (the daughter of director Agnieszka Holland) and starring Morgan, Lee Tergesen, and Lisa Kudrow. The film debuted at the 2002 Sundance Film Festival, where it was nominated for a Grand Jury Prize. The \"extremely low-budget\" film, which had its origins in a 90-second comedy sketch, is about Lucy, a professional dogwalker (played by Morgan), who gradually assumes the identity of a dog. Tergesen plays Peter, her embarrassed husband, and Kudrow plays their veterinarian. Variety, reviewing the film after its Sundance screening, said it \"seems to be a throwback to the craziness-as-higher-expression-of-individuality school that was in vogue between The King of Hearts and Harold and Maude, noting \"Lucy's withdrawal doesn't seem to spring from anything \u2014 unless urban life's everyday rudeness and an overbearingly suburban-banal family background count \u2014 and scene by scene, Bark! builds no discernible rhythm, viewpoint or mood apart from a faint, rudderless, shaggy-joke tenor. The film was screened at several film festivals, including the Moscow International Film Festival, the Munich Film Festival, the Warsaw International Film Festival, and the Cleveland International Film Festival, but never received a theatrical release. The film was eventually released on DVD in 2003 by TVA International."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Our_Brand_Is_Crisis_(2015_film)"}, "Title": {"type": "literal", "value": "Our Brand Is Crisis"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/David_Gordon_Green"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ann_Dowd|http://dbpedia.org/resource/Anthony_Mackie|http://dbpedia.org/resource/Billy_Bob_Thornton|http://dbpedia.org/resource/Joaquim_de_Almeida|http://dbpedia.org/resource/Sandra_Bullock|http://dbpedia.org/resource/Scoot_McNairy|http://dbpedia.org/resource/Zoe_Kazan"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_political_comedy_films|http://dbpedia.org/resource/Category:Comedy_films_based_on_actual_events"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "Our Brand Is Crisis is a 2015 American comedy-drama film directed by David Gordon Green and written by Peter Straughan. Based on the 2005 documentary film of the same name by Rachel Boynton, it is a fictionalized account of the involvement of American political campaign strategists \"Greenberg Carville Shrum\" (GCS) in the 2002 Bolivian presidential election. The film stars Sandra Bullock, Scoot McNairy, Billy Bob Thornton, Anthony Mackie, Ann Dowd and Joaquim de Almeida. Principal photography began on September 29, 2014 in New Orleans, Louisiana. George Clooney and Grant Heslov produced. The film was screened in the Special Presentations section of the 2015 Toronto International Film Festival. It was theatrically released by Warner Bros. on October 30, 2015 to mixed reviews and was a box office disappointment, although since its release on home media, and on HBO cable outlets, it has started to develop both something of a cult following, as well as a critical reassessment. Part of its box office failure has been attributed to it being marketed as a comedy when in reality the finished product was far closer to a historically based drama, a confusion several critics commented on including Chris Thilk, who said that the film advertising \"campaign as a whole is a bit inconsistent and kind of confusing\"."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Participant_Media|http://dbpedia.org/resource/RatPac-Dune_Entertainment|http://dbpedia.org/resource/Smoke_House_Pictures"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/I_Hate_Luv_Storys"}, "Title": {"type": "literal", "value": "I Hate Luv Storys"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Punit_Malhotra"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bruna_Abdullah|http://dbpedia.org/resource/Imran_Khan_(Indian_actor)|http://dbpedia.org/resource/Sameer_Dattani|http://dbpedia.org/resource/Samir_Soni|http://dbpedia.org/resource/Sonam_Kapoor"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "135"}, "Description": {"type": "literal", "value": "I Hate Luv Storys is a 2010 Indian romantic drama film starring Sonam Kapoor and Imran Khan in the lead roles. It is written and directed by Punit Malhotra and produced under Karan Johar's Dharma Productions and Ronnie Screwvala's UTV Motion Pictures. The film was released on 2 July 2010 and went on to become a box office hit. I Hate Luv Storys was partly filmed in Queenstown, New Zealand."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Dharma_Productions|http://dbpedia.org/resource/UTV_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/West_Bank_Story"}, "Title": {"type": "literal", "value": "West Bank Story"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ari_Sandel"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/A.J._Tannen|http://dbpedia.org/resource/Ben_Newmark|http://dbpedia.org/resource/Joey_Naber|http://dbpedia.org/resource/Noureen_DeWulf"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_musical_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "21"}, "Description": {"type": "literal", "value": "West Bank Story is a comedy/musical short film, directed by Ari Sandel, co-written by Sandel and Kim Ray, produced by Pascal Vaguelsy, Amy Kim, Ashley Jordan, Ravi Malhotra, Bill Boland, and featuring choreography by Ramon Del Barrio. The film is a parody of the classic musical film West Side Story, which in turn is an adaptation of Romeo and Juliet. The film follows the romance between the relatives of the owners of rival falafel restaurants, one Israeli and the other Palestinian, respectively named the \"Kosher King\" and the \"Hummus Hut,\" in the West Bank. The film stars Ben Newmark as the IDF soldier, Noureen DeWulf as the Palestinian cashier, A.J. Tannen as the Israeli restaurant owner, and Joey Naber as his Palestinian rival. Filmed on a Santa Clarita ranch, the short premiered at the 2005 Sundance Film Festival, and was screened at numerous additional film festivals across the world, garnering several awards. In 2007, at the 79th Academy Awards, it won the Oscar in the category Best Live Action Short Film."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Chutney_Popcorn"}, "Title": {"type": "literal", "value": "Chutney Popcorn"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nisha_Ganatra"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Jill_Hennessy|http://dbpedia.org/resource/Madhur_Jaffrey|http://dbpedia.org/resource/Nisha_Ganatra|http://dbpedia.org/resource/Sakina_Jaffrey"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1990s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Chutney Popcorn is a 1999 comedy-drama film starring, directed and co-written by Nisha Ganatra. Ganatra plays a young lesbian Indian American woman called Reena. Jill Hennessy plays her girlfriend Lisa and Reena's mother and sister are played by real life mother and daughter Madhur Jaffrey and Sakina Jaffrey. The film explores the conflict between Reena's sexual and national identities as well as her mother Meenu's attempts to come to terms with the Western lives of both her daughters."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Two_Faces_of_My_Girlfriend"}, "Title": {"type": "literal", "value": "Two Faces of My Girlfriend"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lee_Seok-hoon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bong_Tae-gyu|http://dbpedia.org/resource/Jung_Ryeo-won"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "117"}, "Description": {"type": "literal", "value": "Two Faces of My Girlfriend (Hangul: \ub450 \uc5bc\uad74\uc758 \uc5ec\uce5c; RR: Du Eolkului Yeochin) is a 2007 South Korean romantic comedy film starring Bong Tae-gyu and Jung Ryeo-won. This was Jung's first big-screen leading role, for which she won Best New Actress at the 28th Blue Dragon Film Awards in 2007 and at the 4th Premiere Asia Rising Star Awards in 2008."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Showbox"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Si_accettano_miracoli"}, "Title": {"type": "literal", "value": "Si accettano miracoli"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alessandro_Siani"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alessandro_Siani|http://dbpedia.org/resource/Fabio_De_Luigi|http://dbpedia.org/resource/Serena_Autieri"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Italian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "Si accettano miracoli is a 2015 Italian comedy film directed by Alessandro Siani (it). The film was released on January 1, 2015 to generally positive reviews and favorable responses."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/01_Distribution"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Finishing_the_Game"}, "Title": {"type": "literal", "value": "Finishing the Game"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Justin_Lin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bella_Thorne|http://dbpedia.org/resource/Dustin_Nguyen|http://dbpedia.org/resource/James_Franco|http://dbpedia.org/resource/MC_Hammer|http://dbpedia.org/resource/Roger_Fan|http://dbpedia.org/resource/Ron_Jeremy|http://dbpedia.org/resource/Sung_Kang"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Finishing the Game is a 2007 mockumentary which focuses on Bruce Lee's final movie Game of Death. Lee died prior to finishing that movie, having shot only a few of the final fight scenes. However, the rest of the film was finished using a Bruce Lee double and a new script. Finishing the Game is a comedy which satirizes the production of Lee's final film while dealing with racial stereotypes on the Asian community. It was shot in a mere 18 days. The film was directed and produced by Justin Lin, the director of the films Better Luck Tomorrow, Annapolis, and The Fast and the Furious: Tokyo Drift. Finishing the Game stars Roger Fan, Sung Kang, Dustin Nguyen, McCaleb Burnett, James Franco, MC Hammer, Ron Jeremy and Parry Shen. Its world premiere took place at the 2007 Sundance Film Festival, where it was an Official Selection. It was also selected as the opening night film at the 25th San Francisco International Asian American Film Festival, the 23rd VC FilmFest aka Los Angeles Asian Pacific Film Festival in Los Angeles, the 30th Asian American International Film Festival in New York, the DisOrient Film Festival of Oregon, the Asian Film Festival of Dallas, the 2007 DC Asian Pacific American Film Festival, and the 11th Annual Vancouver Asian Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Films"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Autoerotic_(film)"}, "Title": {"type": "literal", "value": "Autoerotic"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Wingard|http://dbpedia.org/resource/Joe_Swanberg"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amy_Seimetz|http://dbpedia.org/resource/Kate_Lyn_Sheil|http://dbpedia.org/resource/Kris_Swanberg|http://dbpedia.org/resource/Lane_Hughes|http://dbpedia.org/resource/Ti_West"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:American_comedy-drama_films|http://dbpedia.org/resource/Category:American_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "73"}, "Description": {"type": "literal", "value": "Autoerotic is a 2011 comedy-drama film directed by Joe Swanberg and Adam Wingard, written by Swanberg, Wingard, and Simon Barrett, and starring Kate Lyn Sheil, Amy Seimetz, Lane Hughes, Kris Swanberg, Ti West, and Frank V. Ross. IFC Midnight released it to video on demand on July 22, 2011."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/IFC_Midnight"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Rosarigasinos"}, "Title": {"type": "literal", "value": "Rosarigasinos"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Rodrigo_Grande"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Federico_Luppi|http://dbpedia.org/resource/Ulises_Dumont"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Rosarigasinos (English: Gangs from Rosario) is a 2001 Argentine film, written and directed by Rodrigo Grande and starring Federico Luppi and Ulises Dumont. The film is also known as Presos del Olvido in Spain. The film was produced by Adolfo Aristarain, Jos\u00e9 Mart\u00ednez, and Jos\u00e9 A. Mart\u00ednez Su\u00e1rez; the associate producer was Alfredo Suaya and was partly funded by the INCAA."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/INCAA"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bastards_(2017_film)"}, "Title": {"type": "literal", "value": "Bastards"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lawrence_Sher"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ed_Helms|http://dbpedia.org/resource/Glenn_Close|http://dbpedia.org/resource/J._K._Simmons|http://dbpedia.org/resource/Katt_Williams|http://dbpedia.org/resource/Owen_Wilson|http://dbpedia.org/resource/Terry_Bradshaw|http://dbpedia.org/resource/Ving_Rhames"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:American_sports_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Bastards is an upcoming American comedy film directed by Lawrence Sher and written by Justin Malen. The film stars Owen Wilson, Ed Helms, J. K. Simmons, Ving Rhames, Katt Williams, Terry Bradshaw, and Glenn Close. Principal photography began on October 5, 2015 in Atlanta. The film is scheduled for an January 27, 2017 release. Sher is making his directorial debut with the film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": "http://dbpedia.org/resource/Alcon_Entertainment|http://dbpedia.org/resource/The_Montecito_Picture_Company"}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Game_Plan_(film)"}, "Title": {"type": "literal", "value": "The Game Plan"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Andy_Fickman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Brian_J._White|http://dbpedia.org/resource/Dwayne_Johnson|http://dbpedia.org/resource/Hayes_MacArthur|http://dbpedia.org/resource/Jamal_Duff|http://dbpedia.org/resource/Kyra_Sedgwick|http://dbpedia.org/resource/Madison_Pettis|http://dbpedia.org/resource/Morris_Chestnut|http://dbpedia.org/resource/Paige_Turco|http://dbpedia.org/resource/Roselyn_Sanchez"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Sports_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "The Game Plan is a 2007 American family sports comedy film directed by Andy Fickman and starring Dwayne \"The Rock\" Johnson. This movie was the last film in which Johnson uses his ring name \"The Rock\". The Game Plan was the last film to be distributed by Buena Vista Pictures, after Disney retired the Buena Vista moniker across their company's divisions in the same year."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Assassination_of_a_High_School_President"}, "Title": {"type": "literal", "value": "Assassination of a High School President"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Brett_Simon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bruce_Willis|http://dbpedia.org/resource/Josh_Pais|http://dbpedia.org/resource/Kathryn_Morris|http://dbpedia.org/resource/Michael_Rapaport|http://dbpedia.org/resource/Mischa_Barton|http://dbpedia.org/resource/Reece_Thompson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films|http://dbpedia.org/resource/Category:Direct-to-video_comedy_films|http://dbpedia.org/resource/Category:Teen_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Assassination of a High School President is a 2008 American neo noir comedy film, directed by Brett Simon, written by Tim Calpin and Kevin Jakubowski, and starring Reece Thompson, Bruce Willis, Mischa Barton and Michael Rapaport. It premiered at the 2008 Sundance Film Festival. The film had been scheduled for limited theatrical release on February 27, 2009, but that release was postponed indefinitely following the bankruptcy of its distributor, Yari Film Group's releasing division. It was released on DVD in the United States on October 6, 2009."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Yari_Film_Group"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Baker_(film)"}, "Title": {"type": "literal", "value": "The Baker"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Gareth_Lewis"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Annette_Badland|http://dbpedia.org/resource/Anthony_O'Donnell_(actor)|http://dbpedia.org/resource/Damian_Lewis|http://dbpedia.org/resource/Dyfan_Dwyfor|http://dbpedia.org/resource/Kate_Ashfield|http://dbpedia.org/resource/Nikolaj_Coster-Waldau|http://dbpedia.org/resource/Steve_Speirs"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:British_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "The Baker is a 2007 British comedy thriller film written and directed by Gareth Lewis and starring Damian Lewis, Kate Ashfield and Nikolaj Coster-Waldau. An ex-assassin retires to a small Welsh town and opens a cake shop but is unable to escape his former associates. It is also known by the alternative title Assassin In Love."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/2_Entertain"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Manny"}, "Title": {"type": "literal", "value": "The Manny"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Matthias_Schweigh\u00f6fer"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Arved_Friese|http://dbpedia.org/resource/Matthias_Schweigh\u00f6fer|http://dbpedia.org/resource/Milan_Peschel|http://dbpedia.org/resource/Paula_Hartmann"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:German_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "The Manny (German: Der Nanny) is a 2015 German comedy film directed and co-written by Matthias Schweigh\u00f6fer, starring himself as a greedy and super-busy real-estate developer, and Milan Peschel as a victim of his development who accidentally ends up babysitting his two children."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/SpongeBob's_Truth_or_Square"}, "Title": {"type": "literal", "value": "SpongeBob's Truth or Square"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alan_Smart|http://dbpedia.org/resource/Andrew_Overtoom|http://dbpedia.org/resource/Luke_Brookshier|http://dbpedia.org/resource/Nate_Cash|http://dbpedia.org/resource/Tom_Yasumi"}, "Author": {"type": "literal", "value": "http://dbpedia.org/resource/Luke_Brookshier|http://dbpedia.org/resource/Nate_Cash|http://dbpedia.org/resource/Paul_Tibbitt|http://dbpedia.org/resource/Steven_Banks"}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bill_Fagerbakke|http://dbpedia.org/resource/Carolyn_Lawrence|http://dbpedia.org/resource/Clancy_Brown|http://dbpedia.org/resource/Mr._Lawrence|http://dbpedia.org/resource/Rodger_Bumpass|http://dbpedia.org/resource/Tom_Kenny"}, "Published": {"type": "literal", "value": "2009-11-06"}, "Subject": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://dbpedia.org/resource/Comedy"}, "Duration": {"type": "literal", "value": "52"}, "Description": {"type": "literal", "value": "SpongeBob's Truth or Square is a 2009 made-for-television one-hour comedy special directed by Andrew Overtoom, Alan Smart, and Tom Yasumi. It stars Tom Kenny, Bill Fagerbakke, Rodger Bumpass, Clancy Brown, Carolyn Lawrence, and Mr. Lawrence. The special, marketed as a \"TV Movie\", originally aired on Nickelodeon in the United States on November 6, 2009, celebrating the tenth anniversary of the American animated television series SpongeBob SquarePants. The television series follows the adventures of the title character in the underwater city of Bikini Bottom. In the special, SpongeBob and his friends are accidentally locked inside the Krusty Krab on the day of its \"eleventy-seventh\" anniversary celebration. As they crawl through the ventilation system trying to escape, they look back on shared memories through flashback moments. SpongeBob's Truth or Square was written by Luke Brookshier, Nate Cash, Steven Banks, and Paul Tibbitt. Rosario Dawson, LeBron James, Tina Fey, Will Ferrell, Craig Ferguson, Robin Williams, and Ricky Gervais guest starred in the special as themselves. Upon release, the special attracted an estimated 7.7 million viewers, and met mixed reviews from critics."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Paramount_Home_Media_Distribution"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Welcome_2_Karachi"}, "Title": {"type": "literal", "value": "Welcome 2 Karachi"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ashish_R_Mohan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Adnan_Shah_Tipu|http://dbpedia.org/resource/Arshad_Warsi|http://dbpedia.org/resource/Jackky_Bhagnani|http://dbpedia.org/resource/Lauren_Gottlieb"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Indian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "131"}, "Description": {"type": "literal", "value": "Welcome 2 Karachi is an 2015 Indian comedy film, directed by Ashish R Mohan and produced by Vashu Bhagnani. The film stars Arshad Warsi and Jackky Bhagnani as pivotal leads. Music directors Jeet Ganguly and Rochak Kohli composed music for this film. The film was released on 28 May 2015."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Bluff_(film)"}, "Title": {"type": "literal", "value": "Bluff"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Marc-Andr\u00e9_Lavoie|http://dbpedia.org/resource/Simon_Olivier_Fecteau"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Emmanuel_Bilodeau|http://dbpedia.org/resource/Isabelle_Blais_(actress)|http://dbpedia.org/resource/Julie_Perreault|http://dbpedia.org/resource/Marie-Laurence_Moreau|http://dbpedia.org/resource/Pierre-Fran\u00e7ois_Legendre|http://dbpedia.org/resource/R\u00e9my_Girard"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "Bluff is a 2007 Canadian comedy film. It was directed, written and produced by Simon Olivier Fecteau and Marc-Andr\u00e9 Lavoie."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Seville_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Hatchet_(film)"}, "Title": {"type": "literal", "value": "Hatchet"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Adam_Green_(filmmaker)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Deon_Richmond|http://dbpedia.org/resource/Joel_Moore|http://dbpedia.org/resource/Joel_Murray|http://dbpedia.org/resource/Joshua_Leonard|http://dbpedia.org/resource/Kane_Hodder|http://dbpedia.org/resource/Mercedes_McNab|http://dbpedia.org/resource/Parry_Shen|http://dbpedia.org/resource/Patrika_Darbo|http://dbpedia.org/resource/Richard_Riehle|http://dbpedia.org/resource/Robert_Englund|http://dbpedia.org/resource/Tamara_Feldman|http://dbpedia.org/resource/Tony_Todd"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_horror_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "Hatchet is a 2006 American slasher horror film written and directed by Adam Green. The film has an ensemble cast, including Robert Englund, Kane Hodder, Mercedes McNab and Tony Todd."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Anchor_Bay_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/When_Larry_Met_Mary"}, "Title": {"type": "literal", "value": "When Larry Met Mary"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Wen_Zhang"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:Chinese_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "When Larry Met Mary is a 2016 Chinese romantic comedy film directed by Wen Zhang. It was released in China on July 15, 2016."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Khottabych"}, "Title": {"type": "literal", "value": "}{0\u0422\u0422@\u0411\u042c)\u0427 / Khottabych"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pyotr_Tochilin"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Julia_Paranova|http://dbpedia.org/resource/Liva_Kruminya|http://dbpedia.org/resource/Marius_Jampolskis|http://dbpedia.org/resource/Mark_Geykhman|http://dbpedia.org/resource/Vladimir_Tolokonnikov"}, "Published": {"type": "literal", "value": "2006-08-10"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Fantasy-comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Khottabych (Russian: \u0425\u043e\u0442\u0442\u0430\u0431\u044b\u0447 [}{0\u0422\u0422@\u0411\u042c)\u0427], Hottabych) is a 2006 Russian comedy folk-tale by STV Film Company. This film has little in common with the first film, except for some central elements. The film has the screen name K}{OTT@B\\)CH, underscoring the film's Internet motif. It is based on the novel The Copper Jar of Old Khottabych by Sergey Oblomov. It opened in theaters on August 10, 2006 at Karoprokat."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Melnitsa_Animation_Studio|http://dbpedia.org/resource/STV_Film_Company"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Oru_Kanniyum_Moonu_Kalavaanikalum"}, "Title": {"type": "literal", "value": "Oru Kanniyum Moonu Kalavaanikalum"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chimbu_Deven"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Arulnithi|http://dbpedia.org/resource/Bagavathi_Perumal|http://dbpedia.org/resource/Bindu_Madhavi"}, "Published": {"type": "literal", "value": "2014-04-04"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "135"}, "Description": {"type": "literal", "value": "Oru Kanniyum Moonu Kalavaanikalum (English: A virgin and three thieves) is a 2014 Tamil fantasy-comedy film directed by Chimbu Deven, and starring Arulnithi, Bindu Madhavi, and Bagavathi Perumal. The music comprises three tracks composed by Sankaran Natarajan, while S R Kathir handles the camera. The film was shot in Chennai, in and around Saidapet, Anna Nagar, Besant Nagar and Royapuram. The theme of this film is inspired by Run Lola Run which Chimbudevan acknowledges in the end credits. The film earned poor reviews and was an average grosser at the box office."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Young_People_Fucking"}, "Title": {"type": "literal", "value": "Young People Fucking"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Martin_Gero"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Callum_Blue|http://dbpedia.org/resource/Carly_Pope|http://dbpedia.org/resource/Diora_Baird|http://dbpedia.org/resource/Enis_Esmer|http://dbpedia.org/resource/Josh_Cooke|http://dbpedia.org/resource/Josh_Dean|http://dbpedia.org/resource/Kristin_Booth|http://dbpedia.org/resource/Natalie_Lisinska|http://dbpedia.org/resource/Peter_Oldring|http://dbpedia.org/resource/Sonja_Bennett"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy-drama_films|http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:Canadian_comedy-drama_films|http://dbpedia.org/resource/Category:Canadian_sex_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Young People Fucking, also called Y.P.F., is a 2007 Canadian comedy directed, written, and produced by Martin Gero and Aaron Abrams. It debuted at the 2007 Toronto International Film Festival."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Maple_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Break-Up"}, "Title": {"type": "literal", "value": "Break-Up"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Alexander_Tuschinski"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alexander_Tuschinski|http://dbpedia.org/resource/Dominic_R\u00f6del|http://dbpedia.org/resource/Jennifer_Pakosch|http://dbpedia.org/resource/Philipp_Metzler|http://dbpedia.org/resource/Sebastian_B"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Break-Up is an independent German experimental feature film comedy directed by Alexander Tuschinski. It received awards at international film-festivals and had its German premiere at Berlin Independent Film Festival 2015. Although it is not part of it, it is connected to Tuschinski's informal Trilogy of Rebellion by one main character and some references in the storyline."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Starsky_&_Hutch_(film)"}, "Title": {"type": "literal", "value": "Starsky & Hutch"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Todd_Phillips"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ben_Stiller|http://dbpedia.org/resource/Owen_Wilson|http://dbpedia.org/resource/Snoop_Dogg|http://dbpedia.org/resource/Vince_Vaughn"}, "Published": {"type": "literal", "value": "2004-03-05"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:American_criminal_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "Starsky & Hutch is a 2004 American crime-action buddy cop comedy film directed by Todd Phillips. The film stars Ben Stiller as David Starsky and Owen Wilson as Ken \"Hutch\" Hutchinson and is a film adaptation of the original television series of the same name from the 1970s. Two streetwise undercover cops in the fictional city of Bay City, California in the 1970s, bust drug criminals with the help of underworld boss, Huggy Bear. The film functions as a sort of prequel to the TV series, as it portrays when Starsky was first partnered with Hutchinson. The film also switches the personalities of the title characters. While in the TV show, Starsky was curious and streetwise, and Hutch was by-the-book, in the film, Starsky is the serious cop, and Hutch is laid-back. There are four Frat Pack members in this film, although not all are in major roles. The exterior of the Metropolitan Courthouse at 1945 S. Hill St. in Los Angeles was used as the Bay City Police Headquarters."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Miramax|http://dbpedia.org/resource/Warner_Bros."}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Babysitting_(film)"}, "Title": {"type": "literal", "value": "Babysitting"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Nicolas_Benamou|http://dbpedia.org/resource/Philippe_Lacheau"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Alice_David|http://dbpedia.org/resource/Philippe_Lacheau"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Babysitting is a 2014 French comedy film shot in the \"found footage\" style. It is directed by Nicolas Benamou and Philippe Lacheau. The film is also the directorial debut of Philippe Lacheau which he co-wrote and also starred in along with Alice David and Vincent Desagnat."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Universal_Pictures_International"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/People_Hold_On_(film)"}, "Title": {"type": "literal", "value": "People Hold On"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Michael_Seater"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Canadian_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "People Hold On is a 2015 Canadian independent film written by Michael Seater, who also directs, and Paula Brancati, who also stars. It was produced by the duo's production company, BrancSeater Productions. It was filmed throughout 2014 and 2015 and debuted on the film festival circuit in 2015, and was released to general cinemas and for digital download on May 31, 2016. The film stars several young Canadian stars, including Katie Boland, Ashley Leggat, Noah Reid, Al Mukadam and Chloe Rose."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Toxic_Avenger_Part_II"}, "Title": {"type": "literal", "value": "The Toxic Avenger Part II"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Lloyd_Kaufman|http://dbpedia.org/resource/Michael_Herz_(producer)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Phoebe_Legere|http://dbpedia.org/resource/Rikiya_Yasuoka"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:1980s_comedy_horror_films|http://dbpedia.org/resource/Category:American_comedy_horror_films|http://dbpedia.org/resource/Category:Superhero_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "103|96"}, "Description": {"type": "literal", "value": "The Toxic Avenger Part II is a 1989 comedy horror film released by Troma Entertainment. It was directed by Lloyd Kaufman and features The Toxic Avenger in an adventure to Japan to meet his father. The film has received cult status among a new audience almost a generation after it was first released. Go Nagai makes a cameo appearance and the film is also the debut of actor/martial artist Michael Jai White and musician/composer/performance artist Phoebe Legere."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Troma_Entertainment"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Let's_Eat!_(film)"}, "Title": {"type": "literal", "value": "Let's Eat!"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Chapman_To"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Aimee_Chan|http://dbpedia.org/resource/C-Kwan|http://dbpedia.org/resource/Lo_Hoi-pang|http://dbpedia.org/resource/Patricia_Mok"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Malaysian_comedy_films|http://dbpedia.org/resource/Category:Singaporean_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "Let's Eat! (Chinese: \u958b\u98ef\u5587) is a 2016 Singaporean-Malaysian comedy film directed by Chapman To in his directorial debut. It stars To as a traditionalist chef who comes into conflict with the restaurant owner's daughter, played by Aimee Chan. It was released on 4 February in Malaysia and in Singapore the next day, grossing a total of US$489,846 in both territories."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Maari_(film)"}, "Title": {"type": "literal", "value": "Maari"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Balaji_Mohan"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Dhanush|http://dbpedia.org/resource/Kajal_Aggarwal|http://dbpedia.org/resource/Robo_Shankar|http://dbpedia.org/resource/Vijay_Yesudas"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:Criminal_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "138"}, "Description": {"type": "literal", "value": "Maari is a 2015 Tamil gangster comedy film written and directed by Balaji Mohan starring Dhanush and Kajal Aggarwal. The film was jointly produced by Listin Stephen and Raadhika Sarathkumar's Magic Frames and Dhanush's Wunderbar Films. Anirudh Ravichander composed the film's soundtrack and score while Om Prakash undertook the film's cinematography. After being in pre-production phase since March 2014, principal photography began on 4 November 2014 and lasted till 15 March 2015. The film was shot in and around Chennai and Tuticorin. Maari was released on 17 July 2015."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Weather_Girl"}, "Title": {"type": "literal", "value": "Weather Girl"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Blayne_Weaver"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Enrico_Colantoni|http://dbpedia.org/resource/Jon_Cryer|http://dbpedia.org/resource/Marin_Hinkle|http://dbpedia.org/resource/Mark_Harmon|http://dbpedia.org/resource/Patrick_J._Adams|http://dbpedia.org/resource/Tricia_O'Kelley"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:American_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Weather Girl is a 2009 comedy film written and directed by Blayne Weaver. The film stars Tricia O'Kelley, Mark Harmon, Jon Cryer, and Enrico Colantoni."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lovesick_(2014_film)"}, "Title": {"type": "literal", "value": "Lovesick"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Luke_Matheny"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Ali_Larter|http://dbpedia.org/resource/Ashley_Williams_(actress)|http://dbpedia.org/resource/Chevy_Chase|http://dbpedia.org/resource/Kristen_Johnston|http://dbpedia.org/resource/Matt_LeBlanc|http://dbpedia.org/resource/Rachael_Harris"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "Lovesick is a 2014 American comedy film directed by Luke Matheny and written by Dean Young. The film stars Matt LeBlanc, Ali Larter, Rachael Harris, Chevy Chase, Ashley Williams and Kristen Johnston. The film was released on February 6, 2015, by Gravitas Ventures."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Gravitas_Ventures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Monsters_University"}, "Title": {"type": "literal", "value": "Monsters University"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Dan_Scanlon"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:American_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "Monsters University is a 2013 American 3D computer-animated comedy film produced by Pixar Animation Studios and released by Walt Disney Pictures. It was directed by Dan Scanlon and produced by Kori Rae, with John Lasseter, Pete Docter, Andrew Stanton and Lee Unkrich as executive producers. It is the fourteenth feature film produced by Pixar and is a prequel to 2001's Monsters, Inc., marking the first time Pixar has made a prequel film. Disney, as the rights holder, had plans for a sequel to Monsters, Inc. since 2005. Following disagreements with Pixar, Disney tasked its Circle 7 Animation unit to make the film. An early draft of the film was developed; however, Disney's purchase of Pixar in early 2006 led to the cancellation of Circle 7's version of the film. A Pixar-made sequel was confirmed in 2010, and in 2011, it was confirmed that the film would instead be a prequel titled Monsters University. Monsters University tells the story of two monsters, Mike and Sulley, and their time studying at college, where they start off as rivals, but slowly become best friends. John Goodman, Billy Crystal, Steve Buscemi, Bob Peterson, and John Ratzenberger reprise their roles as James P. Sullivan, Mike Wazowski, Randall Boggs, Roz, and the Abominable Snowman, respectively. Bonnie Hunt, who played Ms. Flint in the first film, voices Mike's grade school teacher Ms. Karen Graves. The music for the film is composed by Randy Newman, marking his seventh collaboration with Pixar. Monsters University premiered on June 5, 2013, at the BFI Southbank in London, United Kingdom and was released on June 21, 2013, in the United States. It was accompanied in theaters by a short film, The Blue Umbrella, directed by Saschka Unseld. The film grossed $744 million against its estimated budget of $200 million. An animated short film titled Party Central, which takes place shortly after the events of Monsters University, premiered in Fall 2013."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Walt_Disney_Studios_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Lost_and_Found_(2008_film)"}, "Title": {"type": "literal", "value": "Lost and Found"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ma_Liwen"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chen_Jin_(actor)|http://dbpedia.org/resource/Li_Qiang_(actor)|http://dbpedia.org/resource/Li_Yixiang|http://dbpedia.org/resource/Liu_Xinyi"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Black_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "Lost and Found (simplified Chinese: \u6211\u53eb\u5218\u8dc3\u8fdb; traditional Chinese: \u6211\u53eb\u5289\u8e8d\u9032; pinyin: W\u01d2 ji\u00e0o Li\u00f9 Y\u00f9ej\u00ecn) is a 2008 Chinese black comedy film and the third feature film directed by Ma Liwen. The film was based on the novel, I am Liu Yuejin by Liu Zhenyun and tells the story of a down-on-his-luck migrant cook who loses his life savings while in Beijing. The film is also known by the original Chinese title I am Liu Yuejin. The novel was published a mere three months before the film was released. The film received a domestic opening in China in January 2008 before making limited appearances at various film festivals and screening events. Lost and Found stars Li Yixiang, as the main role of Liu Yuejin though the film also boasts several cameos by Chinese filmmakers including Chen Daming (the director of Manhole) and Gao Qunshu (the director of The Tokyo Trial). It was partially produced by the state-subsidized China Film Group."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/China_Film_Promotion_International"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/When_Romance_Meets_Destiny"}, "Title": {"type": "literal", "value": "When Romance Meets Destiny"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Kim_Hyun-seok_(filmmaker)"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Bong_Tae-gyu|http://dbpedia.org/resource/Kim_Joo-hyuk"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:South_Korean_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "When Romance Meets Destiny (Hangul: \uad11\uc2dd\uc774 \ub3d9\uc0dd \uad11\ud0dc; RR: Gwangsiki dongsaeng gwangtae; lit. \"Gwang-sik's Younger Brother Gwang-tae\") is a 2005 South Korean romantic comedy about two brothers and their different approaches to love."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Foster_(film)"}, "Title": {"type": "literal", "value": "Foster"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jonathan_Newman"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anne_Reid|http://dbpedia.org/resource/Daisy_Beaumont|http://dbpedia.org/resource/Hayley_Mills|http://dbpedia.org/resource/Ioan_Gruffudd|http://dbpedia.org/resource/Richard_E._Grant|http://dbpedia.org/resource/Toni_Collette"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:British_comedy-drama_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "Foster (a.k.a. Angel in the House) is a 2011 British comedy-drama film written and directed by Jonathan Newman, based on his 2005 short film. Part of it was shot at Legoland Windsor in April 2010. The film stars Golden Globe winner Toni Collette, Ioan Gruffudd, Richard E. Grant, BAFTA Award winner Hayley Mills and Maurice Cole."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/The_Callback_Queen"}, "Title": {"type": "literal", "value": "The Callback Queen"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Graham_Cantwell"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amy-Joyce_Hastings|http://dbpedia.org/resource/Eoin_Macken|http://dbpedia.org/resource/Ger_Ryan|http://dbpedia.org/resource/Mark_Killeen|http://dbpedia.org/resource/Vicki_Michelle"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_romantic_comedy_films|http://dbpedia.org/resource/Category:British_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "The Callback Queen is a 2013 British romantic comedy independent film by Irish director Graham Cantwell, starring a largely British and Irish cast: Amy-Joyce Hastings, Mark Killeen, Se\u00e1n T. O'Meallaigh, Ger Ryan, Vicki Michelle and Eoin Macken."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Wake_Up_Sid"}, "Title": {"type": "literal", "value": "Wake Up Sid"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ayan_Mukerji"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Anupam_Kher|http://dbpedia.org/resource/Kashmira_Shah|http://dbpedia.org/resource/Konkana_Sen_Sharma|http://dbpedia.org/resource/Rahul_Khanna|http://dbpedia.org/resource/Ranbir_Kapoor|http://dbpedia.org/resource/Supriya_Pathak"}, "Published": {"type": "literal", "value": "2009-10-02"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:Indian_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "138"}, "Description": {"type": "literal", "value": "Wake Up Sid is a 2009 Indian coming of age drama film. Directed by Ayan Mukerji and produced by Karan Johar's Dharma Productions, the movie was distributed by UTV Motion Pictures, with visual effects contributed by the Prime Focus Group. The film takes place in contemporary Bombay and tells the story of spoiled, careless rich-kid Sid Mehra (Ranbir Kapoor), a college student who is taught the value of owning up to responsibility by Aisha (Konkona Sen Sharma), an aspiring writer from Calcutta. It was critically and commercially successful. Ranbir Kapoor won numerous awards for his performance, and the film's soundtrack was vastly popular."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Dharma_Productions|http://dbpedia.org/resource/UTV_Motion_Pictures"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Nick_Offerman:_American_Ham"}, "Title": {"type": "literal", "value": "Nick Offerman: American Ham"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Jordan_Vogt-Roberts"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Marc_Evan_Jackson|http://dbpedia.org/resource/Megan_Mullally|http://dbpedia.org/resource/Nick_Offerman"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "Nick Offerman: American Ham is a 2014 American stand-up comedy film, directed by Jordan Vogt-Roberts. It is written by American actor, writer, and carpenter, Nick Offerman. The film had its world premiere at 2014 Sundance Film Festival on January 23, 2014."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/Netflix"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Moon_and_Cherry"}, "Title": {"type": "literal", "value": "Moon and Cherry"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Yuki_Tanada"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_romantic_comedy_films|http://dbpedia.org/resource/Category:Japanese_romantic_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "Moon and Cherry (\u6708\u3068\u30c1\u30a7\u30ea\u30fc Tsuki to Cherii) is a 2004 Japanese romance youth comedy film directed by Yuki Tanada. It was released on December 25."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Ernest_&_Celestine"}, "Title": {"type": "literal", "value": "Ernest & Celestine"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Benjamin_Renner|http://dbpedia.org/resource/St\u00e9phane_Aubier|http://dbpedia.org/resource/Vincent_Patar"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Lambert_Wilson"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy-drama_films|http://dbpedia.org/resource/Category:Animated_comedy_films|http://dbpedia.org/resource/Category:Belgian_comedy_films|http://dbpedia.org/resource/Category:French_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "Ernest & Celestine (French: Ernest et C\u00e9lestine) is a 2012 animated comedy-drama film directed by St\u00e9phane Aubier, Vincent Patar and Benjamin Renner. The film is based on a series of children's books of the same name published by the Belgian author and illustrator Gabrielle Vincent. The film was selected to be screened in the Directors' Fortnight section at the 2012 Cannes Film Festival, as part of the TIFF Kids programme at the 2012 Toronto International Film Festival and at the 2013 Hong Kong International Film Festival. It was selected for the grand competition at feature film edition of the 2013 World festival of animated film Animafest Zagreb and was screened as the opening film. The film was released in the United States in 2013 by GKIDS. There is also an English dub that was released on 28 February 2014, with the voices of Forest Whitaker, Mackenzie Foy, Lauren Bacall, Paul Giamatti, William H. Macy, Megan Mullally, Nick Offerman and Jeffrey Wright. The film received widespread critical acclaim, and became the first animated film to win the Magritte Award for Best Film."}, "Distributor": {"type": "literal", "value": "http://dbpedia.org/resource/StudioCanal"}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Vulgaria_(film)"}, "Title": {"type": "literal", "value": "Vulgaria"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Pang_Ho-cheung"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Chapman_To|http://dbpedia.org/resource/Dada_Chan|http://dbpedia.org/resource/Fiona_Sit|http://dbpedia.org/resource/Ronald_Cheng"}, "Published": {"type": "literal", "value": ""}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2010s_comedy_films|http://dbpedia.org/resource/Category:Hong_Kong_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "Vulgaria ((traditional Chinese (HK)): \u4f4e\u4fd7\u559c\u5287) is a 2012 Hong Kong comedy film directed by Pang Ho-cheung. The film won Best Supporting Actor and Best Supporting Actress at the 32nd Hong Kong Film Award."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://dbpedia.org/resource/Saade_Maade_Teen"}, "Title": {"type": "literal", "value": "Saade Maade Teen"}, "Director": {"type": "literal", "value": "http://dbpedia.org/resource/Ankush_Choudhary"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://dbpedia.org/resource/Amruta_Khanvilkar|http://dbpedia.org/resource/Ashok_Saraf|http://dbpedia.org/resource/Bharat_Jadhav|http://dbpedia.org/resource/Makarand_Anaspure|http://dbpedia.org/resource/Siddharth_Jadhav"}, "Published": {"type": "literal", "value": "2007-11-23"}, "Subject": {"type": "literal", "value": "http://dbpedia.org/resource/Category:2000s_comedy_films|http://dbpedia.org/resource/Category:Indian_comedy_films"}, "Genre": {"type": "literal", "value": ""}, "Duration": {"type": "literal", "value": "125"}, "Description": {"type": "literal", "value": "Saade Maade Teen (Marathi: \u0938\u093e\u0921\u0947 \u092e\u093e\u0921\u0947 \u0924\u0940\u0928) is a 2006 Marathi comedy movie. It is one of the breakthrough movie for actor Bharat Jadhav. It has music given by Ajay-Atul.The movie was blockbuster in Marathi Box office.The movie is remake of popular Hindi movie Chalti Ka Naam Gaadi."}, "Distributor": {"type": "literal", "value": ""}, "ProductionCompanies": {"type": "literal", "value": ""}}]
\ No newline at end of file
diff --git a/static/wikidata_groundtruth.txt b/static/wikidata_groundtruth.txt
index acbeb3465b7021f477238a8f9a9ba141951e7d73..d9bbabf48947ea38c2f02c59f64ffa960c29a03e 100644
--- a/static/wikidata_groundtruth.txt
+++ b/static/wikidata_groundtruth.txt
@@ -1 +1 @@
-[{"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q798776"}, "Title": {"type": "literal", "value": "The Sitter"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2296698"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22681435"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18666096|http://www.wikidata.org/entity/Q16832285|http://www.wikidata.org/entity/Q15638494|http://www.wikidata.org/entity/Q13858351|http://www.wikidata.org/entity/Q3778264|http://www.wikidata.org/entity/Q3339792|http://www.wikidata.org/entity/Q3120105|http://www.wikidata.org/entity/Q2259590|http://www.wikidata.org/entity/Q1151457|http://www.wikidata.org/entity/Q980063|http://www.wikidata.org/entity/Q861156|http://www.wikidata.org/entity/Q729618|http://www.wikidata.org/entity/Q454494|http://www.wikidata.org/entity/Q442019|http://www.wikidata.org/entity/Q439163|http://www.wikidata.org/entity/Q316446|http://www.wikidata.org/entity/Q313388|http://www.wikidata.org/entity/Q298694|http://www.wikidata.org/entity/Q237259"}, "Published": {"type": "literal", "value": "2012|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "81"}, "Description": {"type": "literal", "value": "2011 film by David Gordon Green"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434841|http://www.wikidata.org/entity/Q17305126"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q655205"}, "Title": {"type": "literal", "value": "Deuce Bigalow: Male Gigolo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2507259"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192217|http://www.wikidata.org/entity/Q13559801"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q230203|http://www.wikidata.org/entity/Q192217|http://www.wikidata.org/entity/Q132952|http://www.wikidata.org/entity/Q127996|http://www.wikidata.org/entity/Q13590460|http://www.wikidata.org/entity/Q4905192|http://www.wikidata.org/entity/Q2939949|http://www.wikidata.org/entity/Q1889124|http://www.wikidata.org/entity/Q1713151|http://www.wikidata.org/entity/Q1614313|http://www.wikidata.org/entity/Q1371229|http://www.wikidata.org/entity/Q1189378|http://www.wikidata.org/entity/Q443063|http://www.wikidata.org/entity/Q441888|http://www.wikidata.org/entity/Q350255|http://www.wikidata.org/entity/Q272070|http://www.wikidata.org/entity/Q270743|http://www.wikidata.org/entity/Q242206"}, "Published": {"type": "literal", "value": "2000|1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q2991560|http://www.wikidata.org/entity/Q624771"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "1999 film by Mike Mitchell"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q497155|http://www.wikidata.org/entity/Q1584317"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q9019307"}, "Title": {"type": "literal", "value": "La gran familia espa\u00f1ola"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q740130"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q740130"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6066826|http://www.wikidata.org/entity/Q2790121|http://www.wikidata.org/entity/Q943980|http://www.wikidata.org/entity/Q456850"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2013 film directed by Daniel S\u00e1nchez Ar\u00e9valo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q858508"}, "Title": {"type": "literal", "value": "Sky High"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2507259"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4355997|http://www.wikidata.org/entity/Q25249134|http://www.wikidata.org/entity/Q4358044"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q853018|http://www.wikidata.org/entity/Q714133|http://www.wikidata.org/entity/Q607793|http://www.wikidata.org/entity/Q591785|http://www.wikidata.org/entity/Q438583|http://www.wikidata.org/entity/Q343564|http://www.wikidata.org/entity/Q317024|http://www.wikidata.org/entity/Q309932|http://www.wikidata.org/entity/Q299282|http://www.wikidata.org/entity/Q242903|http://www.wikidata.org/entity/Q236842|http://www.wikidata.org/entity/Q230461|http://www.wikidata.org/entity/Q230131|http://www.wikidata.org/entity/Q207873|http://www.wikidata.org/entity/Q200407|http://www.wikidata.org/entity/Q103157|http://www.wikidata.org/entity/Q6743649|http://www.wikidata.org/entity/Q6398901|http://www.wikidata.org/entity/Q3265830|http://www.wikidata.org/entity/Q1769264"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1535153|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2005 American superhero comedy film directed by Mike Mitchell"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191224|http://www.wikidata.org/entity/Q24843224"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q8990497"}, "Title": {"type": "literal", "value": "Geography Club"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5525025"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5339441|http://www.wikidata.org/entity/Q4961414"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2054113|http://www.wikidata.org/entity/Q926966|http://www.wikidata.org/entity/Q578403|http://www.wikidata.org/entity/Q311699|http://www.wikidata.org/entity/Q234438|http://www.wikidata.org/entity/Q230782|http://www.wikidata.org/entity/Q230395"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2013 film by Gary Entin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q52564463"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4189312"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4189312"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4494836|http://www.wikidata.org/entity/Q4283562|http://www.wikidata.org/entity/Q1393540|http://www.wikidata.org/entity/Q167243|http://www.wikidata.org/entity/Q27113807"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Alyona Zvantsova"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6116804"}, "Title": {"type": "literal", "value": "Jackpot"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14087086"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14087086"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14087085|http://www.wikidata.org/entity/Q2916869|http://www.wikidata.org/entity/Q2151597|http://www.wikidata.org/entity/Q1806098|http://www.wikidata.org/entity/Q1319770|http://www.wikidata.org/entity/Q910761|http://www.wikidata.org/entity/Q314924|http://www.wikidata.org/entity/Q312161|http://www.wikidata.org/entity/Q308792|http://www.wikidata.org/entity/Q250425|http://www.wikidata.org/entity/Q235305|http://www.wikidata.org/entity/Q207596"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 comedy-drama film directed by Michael Polish"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19363977"}, "Title": {"type": "literal", "value": "The Weight of Chains 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q893719"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q893719"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9049"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17013749|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "124"}, "Description": {"type": "literal", "value": "2014 film by Boris Malagurski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6052071"}, "Title": {"type": "literal", "value": "\u00c7akallarla Dans"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6064908"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6082607|http://www.wikidata.org/entity/Q3624103"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Murat \u015eeker"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55815650"}, "Title": {"type": "literal", "value": "Charlie's Angels"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q219373"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q219373"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q42119453|http://www.wikidata.org/entity/Q3877574|http://www.wikidata.org/entity/Q366833|http://www.wikidata.org/entity/Q298682|http://www.wikidata.org/entity/Q254894|http://www.wikidata.org/entity/Q219373|http://www.wikidata.org/entity/Q126599|http://www.wikidata.org/entity/Q16296"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 American film by Elizabeth Banks"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q186941"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28840410"}, "Title": {"type": "literal", "value": "Fighting with My Family"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23814"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23814"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q107730|http://www.wikidata.org/entity/Q23814|http://www.wikidata.org/entity/Q10738|http://www.wikidata.org/entity/Q22277803|http://www.wikidata.org/entity/Q6113745|http://www.wikidata.org/entity/Q651328|http://www.wikidata.org/entity/Q363400|http://www.wikidata.org/entity/Q289721|http://www.wikidata.org/entity/Q228789"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1339864|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q645928"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2019 film by Stephen Merchant"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1108255|http://www.wikidata.org/entity/Q1149935|http://www.wikidata.org/entity/Q60741212"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4233705"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4221284"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4133989"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4418864"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Aleksandr Kirienko"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2809972"}, "Title": {"type": "literal", "value": "\u00c9ramos pocos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8250879"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8250879"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20492727|http://www.wikidata.org/entity/Q251828|http://www.wikidata.org/entity/Q18406"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "16"}, "Description": {"type": "literal", "value": "2005 film by Borja Cobeaga"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18590634"}, "Title": {"type": "literal", "value": "Santiago Violenta"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5836844"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Ernesto D\u00edaz Espinoza"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3400630"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3194132"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3194132"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3591218|http://www.wikidata.org/entity/Q3438302|http://www.wikidata.org/entity/Q3334962|http://www.wikidata.org/entity/Q2776777|http://www.wikidata.org/entity/Q434060|http://www.wikidata.org/entity/Q241043|http://www.wikidata.org/entity/Q182991|http://www.wikidata.org/entity/Q130092"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film directed by Katia Lewkowicz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12049291"}, "Title": {"type": "literal", "value": "Revival"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3489129"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3489129"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22074668|http://www.wikidata.org/entity/Q17067219|http://www.wikidata.org/entity/Q13419794|http://www.wikidata.org/entity/Q12035527|http://www.wikidata.org/entity/Q12034183|http://www.wikidata.org/entity/Q12022821|http://www.wikidata.org/entity/Q12022294|http://www.wikidata.org/entity/Q11925857|http://www.wikidata.org/entity/Q6369300|http://www.wikidata.org/entity/Q4806455|http://www.wikidata.org/entity/Q4382501|http://www.wikidata.org/entity/Q676173|http://www.wikidata.org/entity/Q231189|http://www.wikidata.org/entity/Q32787"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Alice Nellis"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1964614"}, "Title": {"type": "literal", "value": "New Kids Turbo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1428901|http://www.wikidata.org/entity/Q943006"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q943006"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1428901|http://www.wikidata.org/entity/Q943006"}, "Published": {"type": "literal", "value": "2011|2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2010 film by Flip van der Kuil, Steffen Haars"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2565121"}, "Title": {"type": "literal", "value": "Kids in America"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6289410"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2275851|http://www.wikidata.org/entity/Q2233091|http://www.wikidata.org/entity/Q446112|http://www.wikidata.org/entity/Q414642|http://www.wikidata.org/entity/Q40248|http://www.wikidata.org/entity/Q18916"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2005 film by Josh Stolberg"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2579375"}, "Title": {"type": "literal", "value": "Suburban Mayhem"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2059818"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22277013"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5533077|http://www.wikidata.org/entity/Q3308158|http://www.wikidata.org/entity/Q3246722|http://www.wikidata.org/entity/Q274576|http://www.wikidata.org/entity/Q228865"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2006 film by Paul Goldman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1000094"}, "Title": {"type": "literal", "value": "You're Dead"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q526222"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q526222"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q215017|http://www.wikidata.org/entity/Q200405"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "1999 British dark comedy crime film directed by Andy Hurst"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19608810"}, "Title": {"type": "literal", "value": "Connasse, Princesse des coeurs"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19630141|http://www.wikidata.org/entity/Q21096073"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21096073|http://www.wikidata.org/entity/Q19630141"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2724026|http://www.wikidata.org/entity/Q983159|http://www.wikidata.org/entity/Q16535251|http://www.wikidata.org/entity/Q15260946|http://www.wikidata.org/entity/Q3247864|http://www.wikidata.org/entity/Q3142794"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q459435|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 French-Belgian comedy film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20795425"}, "Title": {"type": "literal", "value": "Coconut Hero"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1429627"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3414958|http://www.wikidata.org/entity/Q1770430|http://www.wikidata.org/entity/Q120283|http://www.wikidata.org/entity/Q77035"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2015 film by Florian Cossen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10698924"}, "Title": {"type": "literal", "value": "Tjocktjuven"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5716557"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5716557"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5928929"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Henrik Sylv\u00e9n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24905463"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16213906"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10989968"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Jaideep Chopra"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15103382"}, "Title": {"type": "literal", "value": "Fuga di cervelli"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3894444"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3894444"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2013 film by Paolo Ruffini"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1033136"}, "Title": {"type": "literal", "value": "La guerre est d\u00e9clar\u00e9e"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130092"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1351652|http://www.wikidata.org/entity/Q130092"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17145653|http://www.wikidata.org/entity/Q16534621|http://www.wikidata.org/entity/Q15621827|http://www.wikidata.org/entity/Q3553638|http://www.wikidata.org/entity/Q3479221|http://www.wikidata.org/entity/Q3430005|http://www.wikidata.org/entity/Q3379286|http://www.wikidata.org/entity/Q3345693|http://www.wikidata.org/entity/Q3311660|http://www.wikidata.org/entity/Q3293647|http://www.wikidata.org/entity/Q3292235|http://www.wikidata.org/entity/Q3219316|http://www.wikidata.org/entity/Q2087638|http://www.wikidata.org/entity/Q1807890|http://www.wikidata.org/entity/Q1351652|http://www.wikidata.org/entity/Q1338400|http://www.wikidata.org/entity/Q675471|http://www.wikidata.org/entity/Q555428|http://www.wikidata.org/entity/Q450694|http://www.wikidata.org/entity/Q448711|http://www.wikidata.org/entity/Q130092|http://www.wikidata.org/entity/Q3194132|http://www.wikidata.org/entity/Q3058860|http://www.wikidata.org/entity/Q3037215|http://www.wikidata.org/entity/Q2925490|http://www.wikidata.org/entity/Q2905980|http://www.wikidata.org/entity/Q2887704|http://www.wikidata.org/entity/Q2851174|http://www.wikidata.org/entity/Q2850978|http://www.wikidata.org/entity/Q2825115"}, "Published": {"type": "literal", "value": "2012|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2011 film by Val\u00e9rie Donzelli"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6074032"}, "Title": {"type": "literal", "value": "\u0b87\u0bb0\u0bc1\u0bae\u0bcd\u0baa\u0bc1\u0b95\u0bcd \u0b95\u0bcb\u0b9f\u0bcd\u0b9f\u0bc8 \u0bae\u0bc1\u0bb0\u0b9f\u0bcd\u0b9f\u0bc1 \u0b9a\u0bbf\u0b99\u0bcd\u0b95\u0bae\u0bcd"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5099316"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5099316"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7282937"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q172980|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Chimbu Deven"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4651702"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3025846"}, "Title": {"type": "literal", "value": "Hot Hot Hot"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2899811"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2899811"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3758475|http://www.wikidata.org/entity/Q3179659"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Beryl Koltz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4004310"}, "Title": {"type": "literal", "value": "Una notte blu cobalto"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1163729"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1163729"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4013187|http://www.wikidata.org/entity/Q4007672|http://www.wikidata.org/entity/Q3694222|http://www.wikidata.org/entity/Q3423484|http://www.wikidata.org/entity/Q556039"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2009 film by Daniele Gangemi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q47458957"}, "Title": {"type": "literal", "value": "R\u00fczgar"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6028787"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24068379|http://www.wikidata.org/entity/Q6849761"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Serkan Acar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5207601"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q332998"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q332998"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q491792|http://www.wikidata.org/entity/Q484787"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2297927|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 South Korean film directed by Ryu Seung-wan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q44679260"}, "Title": {"type": "literal", "value": "Eine Braut kommt selten allein"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q104744"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1593480"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17418173|http://www.wikidata.org/entity/Q2454222|http://www.wikidata.org/entity/Q2343282|http://www.wikidata.org/entity/Q2130280|http://www.wikidata.org/entity/Q1974009|http://www.wikidata.org/entity/Q1931135|http://www.wikidata.org/entity/Q1721422|http://www.wikidata.org/entity/Q1711632|http://www.wikidata.org/entity/Q213670|http://www.wikidata.org/entity/Q96084|http://www.wikidata.org/entity/Q75177"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "television film directed by Buket Alaku\u015f"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q648034"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16607610"}, "Title": {"type": "literal", "value": "Song'e Napule"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13600455|http://www.wikidata.org/entity/Q13600449|http://www.wikidata.org/entity/Q818736"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16578247"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3955856|http://www.wikidata.org/entity/Q3362666|http://www.wikidata.org/entity/Q1085895|http://www.wikidata.org/entity/Q334170"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "2013 film by Manetti brothers"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2841029"}, "Title": {"type": "literal", "value": "D\u00edas de cine"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5800361"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6038628|http://www.wikidata.org/entity/Q5936693|http://www.wikidata.org/entity/Q5800361|http://www.wikidata.org/entity/Q5673275|http://www.wikidata.org/entity/Q3329391|http://www.wikidata.org/entity/Q3326153|http://www.wikidata.org/entity/Q3324660|http://www.wikidata.org/entity/Q2849028|http://www.wikidata.org/entity/Q1220515|http://www.wikidata.org/entity/Q581617|http://www.wikidata.org/entity/Q349396|http://www.wikidata.org/entity/Q276652|http://www.wikidata.org/entity/Q269857|http://www.wikidata.org/entity/Q242410|http://www.wikidata.org/entity/Q18406|http://www.wikidata.org/entity/Q23675360|http://www.wikidata.org/entity/Q9032829"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by David Serrano de la Pe\u00f1a"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2300097"}, "Title": {"type": "literal", "value": "Under the Rainbow"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2632767"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2056518"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q310926|http://www.wikidata.org/entity/Q255630|http://www.wikidata.org/entity/Q187345|http://www.wikidata.org/entity/Q144669|http://www.wikidata.org/entity/Q108941|http://www.wikidata.org/entity/Q7858375|http://www.wikidata.org/entity/Q7329205|http://www.wikidata.org/entity/Q6688544|http://www.wikidata.org/entity/Q3177488|http://www.wikidata.org/entity/Q3087346|http://www.wikidata.org/entity/Q3020806|http://www.wikidata.org/entity/Q2056518|http://www.wikidata.org/entity/Q1406202|http://www.wikidata.org/entity/Q1374376|http://www.wikidata.org/entity/Q716319|http://www.wikidata.org/entity/Q589797|http://www.wikidata.org/entity/Q486408|http://www.wikidata.org/entity/Q370450|http://www.wikidata.org/entity/Q340213|http://www.wikidata.org/entity/Q323961|http://www.wikidata.org/entity/Q318885"}, "Published": {"type": "literal", "value": "1981"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1981 comedy movie directed by Steve Rash"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q891732"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q244931"}, "Title": {"type": "literal", "value": "In Bruges"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q372394"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q372394"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13646991|http://www.wikidata.org/entity/Q7781490|http://www.wikidata.org/entity/Q5362415|http://www.wikidata.org/entity/Q4767265|http://www.wikidata.org/entity/Q3591162|http://www.wikidata.org/entity/Q741080|http://www.wikidata.org/entity/Q549290|http://www.wikidata.org/entity/Q467729|http://www.wikidata.org/entity/Q382197|http://www.wikidata.org/entity/Q314892|http://www.wikidata.org/entity/Q312385|http://www.wikidata.org/entity/Q232868|http://www.wikidata.org/entity/Q206659|http://www.wikidata.org/entity/Q172035|http://www.wikidata.org/entity/Q28493"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q959790"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2008 British drama film directed by Martin McDonagh"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q649649|http://www.wikidata.org/entity/Q5448886"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19726893"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2225127"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3054299"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Kadir Balci"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21480365"}, "Title": {"type": "literal", "value": "The Steps"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4756738"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2408054|http://www.wikidata.org/entity/Q964607|http://www.wikidata.org/entity/Q441617|http://www.wikidata.org/entity/Q431362|http://www.wikidata.org/entity/Q315051|http://www.wikidata.org/entity/Q298173|http://www.wikidata.org/entity/Q232941"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Andrew Currie"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27975920"}, "Title": {"type": "literal", "value": "Weitertanzen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1457056"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1897105"}, "Published": {"type": "literal", "value": "2009|2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Friederike Jehn"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q50613414"}, "Title": {"type": "literal", "value": "Ein Sommer in Marrakesch"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1514520"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50380301"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q97510|http://www.wikidata.org/entity/Q95651"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Gero Weinreuter"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q50885996"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1684824"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film directed by Matthias Kiefersauer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5466990"}, "Title": {"type": "literal", "value": "For a Good Time, Call..."}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6147573"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3218835"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15665021|http://www.wikidata.org/entity/Q3498453|http://www.wikidata.org/entity/Q3218835|http://www.wikidata.org/entity/Q1378842|http://www.wikidata.org/entity/Q980143|http://www.wikidata.org/entity/Q507756|http://www.wikidata.org/entity/Q489831|http://www.wikidata.org/entity/Q454494|http://www.wikidata.org/entity/Q449141|http://www.wikidata.org/entity/Q298672|http://www.wikidata.org/entity/Q233054|http://www.wikidata.org/entity/Q220308|http://www.wikidata.org/entity/Q32335"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2012 film by Jamie Travis"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q649649"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q52926614"}, "Title": {"type": "literal", "value": "Oh, Hello On Broadway"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27037670|http://www.wikidata.org/entity/Q4717890"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6249723|http://www.wikidata.org/entity/Q4241574|http://www.wikidata.org/entity/Q28755|http://www.wikidata.org/entity/Q16473"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 recorded performance of the stage play Oh, Hello"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24278852"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24263560"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6550031"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Pan Anzi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25054226"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q8048073"}, "Title": {"type": "literal", "value": "\u092f\u092e\u0932\u093e \u092a\u0917\u0932\u093e \u0926\u0940\u0935\u093e\u0928\u093e"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7409513"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6443214|http://www.wikidata.org/entity/Q944546|http://www.wikidata.org/entity/Q560163|http://www.wikidata.org/entity/Q379157|http://www.wikidata.org/entity/Q48619"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 Hindi comedy drama film directed by Samir Karnik"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60737650"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2734356"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film by Corneliu Porumboiu"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12273025"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q441571"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12292445|http://www.wikidata.org/entity/Q12287114"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2000 film by Fani Ko\u0142arowa"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q38297"}, "Title": {"type": "literal", "value": "Abrir puertas y ventanas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3313842"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3313842"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28466624|http://www.wikidata.org/entity/Q6003470|http://www.wikidata.org/entity/Q5675253|http://www.wikidata.org/entity/Q5661221|http://www.wikidata.org/entity/Q3964011"}, "Published": {"type": "literal", "value": "2014|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99|98"}, "Description": {"type": "literal", "value": "2011 film directed by Milagros Mumenthaler"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1377566"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12359782|http://www.wikidata.org/entity/Q6014472|http://www.wikidata.org/entity/Q5756121|http://www.wikidata.org/entity/Q5212653|http://www.wikidata.org/entity/Q3216358|http://www.wikidata.org/entity/Q2443145|http://www.wikidata.org/entity/Q1396054|http://www.wikidata.org/entity/Q1084396|http://www.wikidata.org/entity/Q1056063|http://www.wikidata.org/entity/Q920040|http://www.wikidata.org/entity/Q709032|http://www.wikidata.org/entity/Q670399|http://www.wikidata.org/entity/Q525305|http://www.wikidata.org/entity/Q457170|http://www.wikidata.org/entity/Q440218|http://www.wikidata.org/entity/Q391277|http://www.wikidata.org/entity/Q381876|http://www.wikidata.org/entity/Q312944|http://www.wikidata.org/entity/Q276186|http://www.wikidata.org/entity/Q274265|http://www.wikidata.org/entity/Q205456|http://www.wikidata.org/entity/Q127481|http://www.wikidata.org/entity/Q78756|http://www.wikidata.org/entity/Q77061|http://www.wikidata.org/entity/Q55282"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6014472|http://www.wikidata.org/entity/Q276186|http://www.wikidata.org/entity/Q12359782|http://www.wikidata.org/entity/Q11778724|http://www.wikidata.org/entity/Q709032|http://www.wikidata.org/entity/Q77061|http://www.wikidata.org/entity/Q127481|http://www.wikidata.org/entity/Q55282"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1437173|http://www.wikidata.org/entity/Q1635020|http://www.wikidata.org/entity/Q13102115|http://www.wikidata.org/entity/Q2714385|http://www.wikidata.org/entity/Q75177|http://www.wikidata.org/entity/Q13102829"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "140"}, "Description": {"type": "literal", "value": "2004 anthology film by 25 European directors"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191158"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q621354"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7926434"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Victor Vu"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23785216"}, "Title": {"type": "literal", "value": "Prego"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7901922"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7901922"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 short film directed by Usher Morgan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q40115"}, "Title": {"type": "literal", "value": "Chasing Amy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q489831"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q489831"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22920856|http://www.wikidata.org/entity/Q22811239|http://www.wikidata.org/entity/Q7963966|http://www.wikidata.org/entity/Q7932003|http://www.wikidata.org/entity/Q6899972|http://www.wikidata.org/entity/Q5393625|http://www.wikidata.org/entity/Q5318153|http://www.wikidata.org/entity/Q4980184|http://www.wikidata.org/entity/Q4964545|http://www.wikidata.org/entity/Q4964261|http://www.wikidata.org/entity/Q3313196|http://www.wikidata.org/entity/Q2939610|http://www.wikidata.org/entity/Q2635391|http://www.wikidata.org/entity/Q2012197|http://www.wikidata.org/entity/Q723672|http://www.wikidata.org/entity/Q489831|http://www.wikidata.org/entity/Q483118|http://www.wikidata.org/entity/Q447584|http://www.wikidata.org/entity/Q354010|http://www.wikidata.org/entity/Q316627|http://www.wikidata.org/entity/Q314610|http://www.wikidata.org/entity/Q270730|http://www.wikidata.org/entity/Q269669|http://www.wikidata.org/entity/Q237115|http://www.wikidata.org/entity/Q175535|http://www.wikidata.org/entity/Q4960"}, "Published": {"type": "literal", "value": "1997"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q860626"}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "1997 American romantic comedy film written and directed by Kevin Smith"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2700070"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q33730566"}, "Title": {"type": "literal", "value": "Literally, Right Before Aaron"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q514020"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q514020"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Ryan Eggold"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4838875"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18345617"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3939264"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3123705|http://www.wikidata.org/entity/Q1612623|http://www.wikidata.org/entity/Q465826|http://www.wikidata.org/entity/Q262665"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Govind Menon"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17042694"}, "Title": {"type": "literal", "value": "Paul Blart: Mall Cop 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q525725"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q44561|http://www.wikidata.org/entity/Q584438"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q524369|http://www.wikidata.org/entity/Q445125|http://www.wikidata.org/entity/Q443063|http://www.wikidata.org/entity/Q356637|http://www.wikidata.org/entity/Q297128|http://www.wikidata.org/entity/Q19878370|http://www.wikidata.org/entity/Q18685723|http://www.wikidata.org/entity/Q16149090|http://www.wikidata.org/entity/Q12307991|http://www.wikidata.org/entity/Q6794529|http://www.wikidata.org/entity/Q5266844|http://www.wikidata.org/entity/Q3086608|http://www.wikidata.org/entity/Q2844979|http://www.wikidata.org/entity/Q2346249|http://www.wikidata.org/entity/Q2342292|http://www.wikidata.org/entity/Q1364933|http://www.wikidata.org/entity/Q1305094|http://www.wikidata.org/entity/Q1126809|http://www.wikidata.org/entity/Q987724|http://www.wikidata.org/entity/Q887857|http://www.wikidata.org/entity/Q704832|http://www.wikidata.org/entity/Q554159|http://www.wikidata.org/entity/Q269716|http://www.wikidata.org/entity/Q269686|http://www.wikidata.org/entity/Q260344|http://www.wikidata.org/entity/Q239145|http://www.wikidata.org/entity/Q238884|http://www.wikidata.org/entity/Q44561"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2678111|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2015 film by Andy Fickman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1584317"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43295376"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12403899"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12403899"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Alon Gur Arye"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18353472"}, "Title": {"type": "literal", "value": "Lazer Team"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6788826"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22121089|http://www.wikidata.org/entity/Q18344404|http://www.wikidata.org/entity/Q5528148|http://www.wikidata.org/entity/Q4999775|http://www.wikidata.org/entity/Q926963"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 comedy science fiction film directed by Matt Hullum"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7366534"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2665902"}, "Title": {"type": "literal", "value": "Achtste-groepers huilen niet"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2056676"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2939104|http://www.wikidata.org/entity/Q2906170"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8042910|http://www.wikidata.org/entity/Q1934702|http://www.wikidata.org/entity/Q447176"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2012 film by Dennis Bots"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13427188"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3784100"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3902918"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "78"}, "Description": {"type": "literal", "value": "2012 film by Hedy Krissane"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q639228"}, "Title": {"type": "literal", "value": "Hokkabaz"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q732915"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q732915"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6798489|http://www.wikidata.org/entity/Q732915|http://www.wikidata.org/entity/Q307942"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "122"}, "Description": {"type": "literal", "value": "2006 film by Cem Y\u0131lmaz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7747122"}, "Title": {"type": "literal", "value": "The Life Coach"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6289410"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20687396|http://www.wikidata.org/entity/Q15630234|http://www.wikidata.org/entity/Q3807883|http://www.wikidata.org/entity/Q3216930|http://www.wikidata.org/entity/Q729828|http://www.wikidata.org/entity/Q528126|http://www.wikidata.org/entity/Q349548|http://www.wikidata.org/entity/Q313049|http://www.wikidata.org/entity/Q235519|http://www.wikidata.org/entity/Q228871|http://www.wikidata.org/entity/Q228755|http://www.wikidata.org/entity/Q128830"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film directed by Josh Stolberg"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2368750"}, "Title": {"type": "literal", "value": "Surviving Sid"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2701677"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3177566"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "7"}, "Description": {"type": "literal", "value": "2008 film by Karen Disher"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q885885"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q126796"}, "Title": {"type": "literal", "value": "Brave"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1390504|http://www.wikidata.org/entity/Q429715|http://www.wikidata.org/entity/Q1408804"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1390504|http://www.wikidata.org/entity/Q429715|http://www.wikidata.org/entity/Q6069146|http://www.wikidata.org/entity/Q1408804"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q2975633"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2012 American computer-animated fantasy film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q127552"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1212139"}, "Title": {"type": "literal", "value": "Blades of Glory"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8003113|http://www.wikidata.org/entity/Q24204"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2870023|http://www.wikidata.org/entity/Q2178753|http://www.wikidata.org/entity/Q5451053|http://www.wikidata.org/entity/Q1378118|http://www.wikidata.org/entity/Q984077|http://www.wikidata.org/entity/Q924104|http://www.wikidata.org/entity/Q729950|http://www.wikidata.org/entity/Q546489|http://www.wikidata.org/entity/Q497851|http://www.wikidata.org/entity/Q450634|http://www.wikidata.org/entity/Q444390|http://www.wikidata.org/entity/Q392370|http://www.wikidata.org/entity/Q370181|http://www.wikidata.org/entity/Q355116|http://www.wikidata.org/entity/Q329807|http://www.wikidata.org/entity/Q238877|http://www.wikidata.org/entity/Q230203|http://www.wikidata.org/entity/Q220335|http://www.wikidata.org/entity/Q218503|http://www.wikidata.org/entity/Q107769"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2007 American comedy film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192557|http://www.wikidata.org/entity/Q1111024|http://www.wikidata.org/entity/Q7304367"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20950015"}, "Title": {"type": "literal", "value": "A Very Murray Christmas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q193628"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3859412|http://www.wikidata.org/entity/Q29250|http://www.wikidata.org/entity/Q193628"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2353921|http://www.wikidata.org/entity/Q540608|http://www.wikidata.org/entity/Q512916|http://www.wikidata.org/entity/Q435968|http://www.wikidata.org/entity/Q370155|http://www.wikidata.org/entity/Q313705|http://www.wikidata.org/entity/Q309555|http://www.wikidata.org/entity/Q269802|http://www.wikidata.org/entity/Q236527|http://www.wikidata.org/entity/Q230203|http://www.wikidata.org/entity/Q29250|http://www.wikidata.org/entity/Q23844|http://www.wikidata.org/entity/Q4235|http://www.wikidata.org/entity/Q4109|http://www.wikidata.org/entity/Q979166|http://www.wikidata.org/entity/Q963626"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "56"}, "Description": {"type": "literal", "value": "2015 film directed by Sofia Coppola"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3738189"}, "Title": {"type": "literal", "value": "Faccio un salto all'Avana"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3702559"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4013983|http://www.wikidata.org/entity/Q3893598|http://www.wikidata.org/entity/Q3802324|http://www.wikidata.org/entity/Q3775995|http://www.wikidata.org/entity/Q3695103|http://www.wikidata.org/entity/Q3629869|http://www.wikidata.org/entity/Q3619460|http://www.wikidata.org/entity/Q1343716|http://www.wikidata.org/entity/Q808664"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2011 film by Dario Baldi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3304113"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12106680"}, "Title": {"type": "literal", "value": "Cheap Thrills"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18921688"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23906829|http://www.wikidata.org/entity/Q7146682|http://www.wikidata.org/entity/Q3368538|http://www.wikidata.org/entity/Q453911|http://www.wikidata.org/entity/Q383064|http://www.wikidata.org/entity/Q231635|http://www.wikidata.org/entity/Q164328"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16950433|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2013 film by E. L. Katz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q890727"}, "Title": {"type": "literal", "value": "Boh Fett \u2013 Dei Mudder sei Gesicht 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2287702"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2001 film by Simon Mora"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14802842"}, "Title": {"type": "literal", "value": "Neighbors"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2624066"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3400399|http://www.wikidata.org/entity/Q2907990|http://www.wikidata.org/entity/Q1966357|http://www.wikidata.org/entity/Q978367|http://www.wikidata.org/entity/Q739062|http://www.wikidata.org/entity/Q513169|http://www.wikidata.org/entity/Q440956|http://www.wikidata.org/entity/Q432281|http://www.wikidata.org/entity/Q383930|http://www.wikidata.org/entity/Q314640|http://www.wikidata.org/entity/Q269924|http://www.wikidata.org/entity/Q228717|http://www.wikidata.org/entity/Q220308|http://www.wikidata.org/entity/Q216221|http://www.wikidata.org/entity/Q179041|http://www.wikidata.org/entity/Q171525|http://www.wikidata.org/entity/Q45229|http://www.wikidata.org/entity/Q27051018|http://www.wikidata.org/entity/Q20973967|http://www.wikidata.org/entity/Q5649155|http://www.wikidata.org/entity/Q4924324|http://www.wikidata.org/entity/Q4753814"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2014 American comedy film directed by Nicholas Stoller"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11510719"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7082710"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Shutaro Oku"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q962130"}, "Title": {"type": "literal", "value": "Nos jours heureux"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2778106|http://www.wikidata.org/entity/Q74428"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2778106|http://www.wikidata.org/entity/Q74428"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q74428|http://www.wikidata.org/entity/Q357387|http://www.wikidata.org/entity/Q201810|http://www.wikidata.org/entity/Q3187449|http://www.wikidata.org/entity/Q3168059|http://www.wikidata.org/entity/Q3158341|http://www.wikidata.org/entity/Q3148782|http://www.wikidata.org/entity/Q3085922|http://www.wikidata.org/entity/Q2941947|http://www.wikidata.org/entity/Q2865232|http://www.wikidata.org/entity/Q949391|http://www.wikidata.org/entity/Q511485|http://www.wikidata.org/entity/Q18326681|http://www.wikidata.org/entity/Q17597686|http://www.wikidata.org/entity/Q3574132|http://www.wikidata.org/entity/Q3295476|http://www.wikidata.org/entity/Q3242498|http://www.wikidata.org/entity/Q3217601|http://www.wikidata.org/entity/Q3190744|http://www.wikidata.org/entity/Q2778106|http://www.wikidata.org/entity/Q2413166|http://www.wikidata.org/entity/Q1685364|http://www.wikidata.org/entity/Q1500831|http://www.wikidata.org/entity/Q1341507"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2006 film by Olivier Nakache, \u00c9ric Toledano"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13625315"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2370267"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Riri Riza"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18151808"}, "Title": {"type": "literal", "value": "Little Boy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1609505"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1609505"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24681278|http://www.wikidata.org/entity/Q5031678|http://www.wikidata.org/entity/Q1176939|http://www.wikidata.org/entity/Q946117|http://www.wikidata.org/entity/Q447397|http://www.wikidata.org/entity/Q433520|http://www.wikidata.org/entity/Q381799|http://www.wikidata.org/entity/Q342252|http://www.wikidata.org/entity/Q329767|http://www.wikidata.org/entity/Q297128|http://www.wikidata.org/entity/Q292274|http://www.wikidata.org/entity/Q261953|http://www.wikidata.org/entity/Q229535|http://www.wikidata.org/entity/Q211322|http://www.wikidata.org/entity/Q44561"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2015 film by Alejandro Gomez Monteverde"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3899795"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q654110"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1154179"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2010 film by Kenta Fukasaku"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17450786"}, "Title": {"type": "literal", "value": "Bizum Hoca"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6028787"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17046545"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6103860"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Serkan Acar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15062988"}, "Title": {"type": "literal", "value": "Apenas o Fim"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27835287"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10291517"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2008 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17058120"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20814082"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20814082|http://www.wikidata.org/entity/Q437415"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Lola Bessis"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3985597"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6163789"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2040329"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2040329|http://www.wikidata.org/entity/Q262191"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "15"}, "Description": {"type": "literal", "value": "2005 film by Jason Winer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23838395"}, "Title": {"type": "literal", "value": "Toni Erdmann"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q91508"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q91508"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1929867|http://www.wikidata.org/entity/Q1653575|http://www.wikidata.org/entity/Q1619100|http://www.wikidata.org/entity/Q1300467|http://www.wikidata.org/entity/Q70003|http://www.wikidata.org/entity/Q28595281|http://www.wikidata.org/entity/Q15434360|http://www.wikidata.org/entity/Q12743413|http://www.wikidata.org/entity/Q11956074|http://www.wikidata.org/entity/Q6273945|http://www.wikidata.org/entity/Q3474434|http://www.wikidata.org/entity/Q2364218"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "162"}, "Description": {"type": "literal", "value": "2016 film by Maren Ade"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2552470"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15880642"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15880642"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Peter Vlemmix"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25491348"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21616242"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17354511"}, "Title": {"type": "literal", "value": "L'Ex de ma vie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3037215"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3037215"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q269310|http://www.wikidata.org/entity/Q3490875|http://www.wikidata.org/entity/Q3367364|http://www.wikidata.org/entity/Q3341044|http://www.wikidata.org/entity/Q541690|http://www.wikidata.org/entity/Q511833"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Doroth\u00e9e Sebbagh"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5396588"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q652149"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q652149"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1192750|http://www.wikidata.org/entity/Q1085037|http://www.wikidata.org/entity/Q983043|http://www.wikidata.org/entity/Q360927|http://www.wikidata.org/entity/Q292967|http://www.wikidata.org/entity/Q262665|http://www.wikidata.org/entity/Q233748|http://www.wikidata.org/entity/Q159166|http://www.wikidata.org/entity/Q48619"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 Indian romantic comedy film directed by Anees Bazmee"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5051991"}, "Title": {"type": "literal", "value": "Catfish in Black Bean Sauce"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2395964"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23898972|http://www.wikidata.org/entity/Q3546016|http://www.wikidata.org/entity/Q3101983|http://www.wikidata.org/entity/Q1320245|http://www.wikidata.org/entity/Q598178|http://www.wikidata.org/entity/Q344576|http://www.wikidata.org/entity/Q271051|http://www.wikidata.org/entity/Q241783|http://www.wikidata.org/entity/Q236569"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1999 film by Chi Muoi Lo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21009568"}, "Title": {"type": "literal", "value": "Les Ogres"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3270015"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3270015"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q31353"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by L\u00e9a Fehner"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18387392"}, "Title": {"type": "literal", "value": "Chocolate City"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6169127"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6169127"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6169127|http://www.wikidata.org/entity/Q5393446|http://www.wikidata.org/entity/Q738212|http://www.wikidata.org/entity/Q468012|http://www.wikidata.org/entity/Q248915|http://www.wikidata.org/entity/Q220396|http://www.wikidata.org/entity/Q185122"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2015 film by Jean-Claude La Marre"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7061216"}, "Title": {"type": "literal", "value": "Regel nr. 1"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12330191"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41340778|http://www.wikidata.org/entity/Q12330191"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q37491252|http://www.wikidata.org/entity/Q12337807|http://www.wikidata.org/entity/Q12334657|http://www.wikidata.org/entity/Q12327036|http://www.wikidata.org/entity/Q12326773|http://www.wikidata.org/entity/Q12325345|http://www.wikidata.org/entity/Q12321349|http://www.wikidata.org/entity/Q12321171|http://www.wikidata.org/entity/Q12301480|http://www.wikidata.org/entity/Q12301028|http://www.wikidata.org/entity/Q12006089|http://www.wikidata.org/entity/Q6816829|http://www.wikidata.org/entity/Q5565254|http://www.wikidata.org/entity/Q4968553|http://www.wikidata.org/entity/Q4938062|http://www.wikidata.org/entity/Q3822042|http://www.wikidata.org/entity/Q3617676|http://www.wikidata.org/entity/Q1957570|http://www.wikidata.org/entity/Q1797671|http://www.wikidata.org/entity/Q1452177|http://www.wikidata.org/entity/Q949680"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Oliver Ussing"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12125913"}, "Title": {"type": "literal", "value": "Lurking in Suburbia"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6881132"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17151194"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Mitchell Altieri"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1282904"}, "Title": {"type": "literal", "value": "Strange Planet"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5372704"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5442364|http://www.wikidata.org/entity/Q2646899|http://www.wikidata.org/entity/Q914432|http://www.wikidata.org/entity/Q447938|http://www.wikidata.org/entity/Q366168|http://www.wikidata.org/entity/Q302175|http://www.wikidata.org/entity/Q271926|http://www.wikidata.org/entity/Q187271|http://www.wikidata.org/entity/Q132616|http://www.wikidata.org/entity/Q42204"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "1999 film by Emma-Kate Croghan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1400099"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1123001"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2000 film by Zolt\u00e1n K\u00e1lm\u00e1nchelyi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17582660"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55650688"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13218066|http://www.wikidata.org/entity/Q4446365|http://www.wikidata.org/entity/Q4444774|http://www.wikidata.org/entity/Q2974837|http://www.wikidata.org/entity/Q1385036|http://www.wikidata.org/entity/Q397682|http://www.wikidata.org/entity/Q315181|http://www.wikidata.org/entity/Q235008"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2012 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27590164"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3719608"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Edoardo Leo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48672480"}, "Title": {"type": "literal", "value": "Volontaire"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q638129"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23926173|http://www.wikidata.org/entity/Q638129"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23774012|http://www.wikidata.org/entity/Q22962757|http://www.wikidata.org/entity/Q3372700|http://www.wikidata.org/entity/Q2848242|http://www.wikidata.org/entity/Q2832932|http://www.wikidata.org/entity/Q638129|http://www.wikidata.org/entity/Q437254|http://www.wikidata.org/entity/Q115735"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by H\u00e9l\u00e8ne Filli\u00e8res"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q913462|http://www.wikidata.org/entity/Q10498467"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13459735"}, "Title": {"type": "literal", "value": "Amiche da morire"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18202654"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18202654"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4013682|http://www.wikidata.org/entity/Q3944358|http://www.wikidata.org/entity/Q3848019|http://www.wikidata.org/entity/Q3838478|http://www.wikidata.org/entity/Q3694222|http://www.wikidata.org/entity/Q468793|http://www.wikidata.org/entity/Q455007|http://www.wikidata.org/entity/Q291413"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2013 film by Giorgia Farina"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q781684"}, "Title": {"type": "literal", "value": "Hvordan vi slipper af med de andre"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4753909"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4753909"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12338512|http://www.wikidata.org/entity/Q12332888|http://www.wikidata.org/entity/Q12326087|http://www.wikidata.org/entity/Q12324268|http://www.wikidata.org/entity/Q12321973|http://www.wikidata.org/entity/Q12006703|http://www.wikidata.org/entity/Q6688858|http://www.wikidata.org/entity/Q4982822|http://www.wikidata.org/entity/Q3822042|http://www.wikidata.org/entity/Q2106732|http://www.wikidata.org/entity/Q2033737|http://www.wikidata.org/entity/Q1912647|http://www.wikidata.org/entity/Q951902"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Anders R\u00f8nnow Klarlund"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q59610"}, "Title": {"type": "literal", "value": "Seven Psychopaths"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q372394"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q372394"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7329928|http://www.wikidata.org/entity/Q6555605|http://www.wikidata.org/entity/Q4088048|http://www.wikidata.org/entity/Q2745996|http://www.wikidata.org/entity/Q1334725|http://www.wikidata.org/entity/Q438445|http://www.wikidata.org/entity/Q382197|http://www.wikidata.org/entity/Q352540|http://www.wikidata.org/entity/Q316446|http://www.wikidata.org/entity/Q314290|http://www.wikidata.org/entity/Q241854|http://www.wikidata.org/entity/Q236097|http://www.wikidata.org/entity/Q230113|http://www.wikidata.org/entity/Q201279|http://www.wikidata.org/entity/Q28151585|http://www.wikidata.org/entity/Q12026921|http://www.wikidata.org/entity/Q185051|http://www.wikidata.org/entity/Q184805|http://www.wikidata.org/entity/Q172035|http://www.wikidata.org/entity/Q164730|http://www.wikidata.org/entity/Q28498"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q1200678|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "2012 film by Martin McDonagh"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5448886|http://www.wikidata.org/entity/Q260528"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5243444"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028745"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Noh Young-seok"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26720699"}, "Title": {"type": "literal", "value": "\u091b\u0915\u094d\u0915\u093e \u092a\u091e\u094d\u091c\u093e"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27656966"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27656966"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19679095|http://www.wikidata.org/entity/Q19678178|http://www.wikidata.org/entity/Q17517127|http://www.wikidata.org/entity/Q7246507|http://www.wikidata.org/entity/Q4662665"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 Nepali film by Deepa Shree Niraula"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7716742"}, "Title": {"type": "literal", "value": "The Best Man Holiday"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3843845"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3843845"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q536030|http://www.wikidata.org/entity/Q534006|http://www.wikidata.org/entity/Q529906|http://www.wikidata.org/entity/Q472053|http://www.wikidata.org/entity/Q355197|http://www.wikidata.org/entity/Q310551|http://www.wikidata.org/entity/Q296500|http://www.wikidata.org/entity/Q272956|http://www.wikidata.org/entity/Q241783|http://www.wikidata.org/entity/Q235141"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Malcolm D. Lee"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q511731|http://www.wikidata.org/entity/Q1138658|http://www.wikidata.org/entity/Q2702789"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25621394"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18011640"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18011640|http://www.wikidata.org/entity/Q7814774|http://www.wikidata.org/entity/Q7336478|http://www.wikidata.org/entity/Q7286597"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 Gujarati language film directed by Abhishek Jain"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26703733"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11696925"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3489129"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3489129"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q38257562|http://www.wikidata.org/entity/Q12058898|http://www.wikidata.org/entity/Q12049496|http://www.wikidata.org/entity/Q7938803|http://www.wikidata.org/entity/Q7178558|http://www.wikidata.org/entity/Q3490004|http://www.wikidata.org/entity/Q1820026|http://www.wikidata.org/entity/Q469601"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2000 film by Alice Nellis"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56479340"}, "Title": {"type": "literal", "value": "\u042f, \u0442\u0438, \u0432\u0456\u043d, \u0432\u043e\u043d\u0430"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3874799"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4536851"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16698229|http://www.wikidata.org/entity/Q16594046|http://www.wikidata.org/entity/Q4236976|http://www.wikidata.org/entity/Q3874799"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q40831"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "film directed by Vladimir Zelenskiy"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4444575"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23647111"}, "Title": {"type": "literal", "value": "Little Sister"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13305138"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13305138"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q353159"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Zach Clark"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17079694"}, "Title": {"type": "literal", "value": "Search Party"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2260642"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16239393|http://www.wikidata.org/entity/Q6163031|http://www.wikidata.org/entity/Q1148822|http://www.wikidata.org/entity/Q350589|http://www.wikidata.org/entity/Q322056|http://www.wikidata.org/entity/Q258793|http://www.wikidata.org/entity/Q235328|http://www.wikidata.org/entity/Q235323|http://www.wikidata.org/entity/Q6357"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film directed by Scot Armstrong"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61744918"}, "Title": {"type": "literal", "value": "Los Ajenos F\u00fatbol Club"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50358500"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61745615|http://www.wikidata.org/entity/Q6158851|http://www.wikidata.org/entity/Q3945956|http://www.wikidata.org/entity/Q1293416|http://www.wikidata.org/entity/Q825317"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Juan Camilo Pinz\u00f3n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q650460"}, "Title": {"type": "literal", "value": "Fanboys"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q901185"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3732112|http://www.wikidata.org/entity/Q4679027"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16297|http://www.wikidata.org/entity/Q108941|http://www.wikidata.org/entity/Q64560|http://www.wikidata.org/entity/Q1319744|http://www.wikidata.org/entity/Q926912|http://www.wikidata.org/entity/Q901185|http://www.wikidata.org/entity/Q708512|http://www.wikidata.org/entity/Q489831|http://www.wikidata.org/entity/Q452560|http://www.wikidata.org/entity/Q438499|http://www.wikidata.org/entity/Q422310|http://www.wikidata.org/entity/Q374263|http://www.wikidata.org/entity/Q361154|http://www.wikidata.org/entity/Q358345|http://www.wikidata.org/entity/Q355361|http://www.wikidata.org/entity/Q349857|http://www.wikidata.org/entity/Q336400|http://www.wikidata.org/entity/Q316756|http://www.wikidata.org/entity/Q316627|http://www.wikidata.org/entity/Q314610|http://www.wikidata.org/entity/Q233038|http://www.wikidata.org/entity/Q223830|http://www.wikidata.org/entity/Q220308|http://www.wikidata.org/entity/Q178882|http://www.wikidata.org/entity/Q152309"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2009 film by Kyle Newman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7841714"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21582233"}, "Title": {"type": "literal", "value": "The Spirit of Christmas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q44414|http://www.wikidata.org/entity/Q44410"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q44414|http://www.wikidata.org/entity/Q44410"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1995"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "5"}, "Description": {"type": "literal", "value": "1995 short film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4828094"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7619635"}, "Title": {"type": "literal", "value": "Stoogemania"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1089208"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3178803|http://www.wikidata.org/entity/Q1089208"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3379068|http://www.wikidata.org/entity/Q3246581|http://www.wikidata.org/entity/Q2748114|http://www.wikidata.org/entity/Q2006459|http://www.wikidata.org/entity/Q1708579|http://www.wikidata.org/entity/Q961297|http://www.wikidata.org/entity/Q555226|http://www.wikidata.org/entity/Q493077|http://www.wikidata.org/entity/Q46080"}, "Published": {"type": "literal", "value": "1986"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1986 film by Chuck Workman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q63383319"}, "Title": {"type": "literal", "value": "Fe de etarras"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8250879"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": ""}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20538730"}, "Title": {"type": "literal", "value": "Me Him Her"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3302192"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3302192"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q286745"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Max Landis"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6427858"}, "Title": {"type": "literal", "value": "Kolpa\u00e7ino"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4815792"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8082387"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8082387|http://www.wikidata.org/entity/Q6090661|http://www.wikidata.org/entity/Q6086791|http://www.wikidata.org/entity/Q6083790|http://www.wikidata.org/entity/Q6080532|http://www.wikidata.org/entity/Q6072016|http://www.wikidata.org/entity/Q6056101|http://www.wikidata.org/entity/Q2836358"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film directed by At\u0131l \u0130na\u00e7"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1353151"}, "Title": {"type": "literal", "value": "Catch That Kid"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q285856"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3856120|http://www.wikidata.org/entity/Q1200043"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1364747|http://www.wikidata.org/entity/Q1334830|http://www.wikidata.org/entity/Q707759|http://www.wikidata.org/entity/Q703723|http://www.wikidata.org/entity/Q683828|http://www.wikidata.org/entity/Q391445|http://www.wikidata.org/entity/Q291029|http://www.wikidata.org/entity/Q181229|http://www.wikidata.org/entity/Q126599|http://www.wikidata.org/entity/Q26091|http://www.wikidata.org/entity/Q4617"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q496523|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2004 film by Bart Freundlich"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17212643"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q908962"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11371873|http://www.wikidata.org/entity/Q1317466"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Nobuhiro Yamashita"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28667834"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4525700"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25391018"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q558666|http://www.wikidata.org/entity/Q2375843|http://www.wikidata.org/entity/Q921496"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q1361932"}, "Duration": {"type": "literal", "value": "75"}, "Description": {"type": "literal", "value": "2017 film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4403233|http://www.wikidata.org/entity/Q6813261"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26660266"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19295809"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19295809"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24073833|http://www.wikidata.org/entity/Q23958715|http://www.wikidata.org/entity/Q2522116|http://www.wikidata.org/entity/Q2091760|http://www.wikidata.org/entity/Q1600394|http://www.wikidata.org/entity/Q1489973|http://www.wikidata.org/entity/Q1231780|http://www.wikidata.org/entity/Q971376|http://www.wikidata.org/entity/Q498767|http://www.wikidata.org/entity/Q90820|http://www.wikidata.org/entity/Q89703"}, "Published": {"type": "literal", "value": "2017|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2016 film directed by Marie Kreutzer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23762921"}, "Title": {"type": "literal", "value": "\u0d12\u0d30\u0d41 \u0d2e\u0d41\u0d24\u0d4d\u0d24\u0d36\u0d4d\u0d36\u0d3f \u0d17\u0d26"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16222231"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16222231"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7285940|http://www.wikidata.org/entity/Q6480060|http://www.wikidata.org/entity/Q4699975|http://www.wikidata.org/entity/Q2051781|http://www.wikidata.org/entity/Q7313274"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Jude Anthany Joseph"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3926654"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30076174"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30076174"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3921852|http://www.wikidata.org/entity/Q3904256|http://www.wikidata.org/entity/Q3893979|http://www.wikidata.org/entity/Q3893633|http://www.wikidata.org/entity/Q3856776|http://www.wikidata.org/entity/Q3856480|http://www.wikidata.org/entity/Q3776661|http://www.wikidata.org/entity/Q3765371|http://www.wikidata.org/entity/Q2874899|http://www.wikidata.org/entity/Q1231066"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2011 film by Saverio Di Biagio"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26712567"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3210335"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q40831"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2016 film by Andrei Kureichik"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q48954781"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10438881"}, "Title": {"type": "literal", "value": "CKY4: The Latest & Greatest"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q297173"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q297173"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6209915|http://www.wikidata.org/entity/Q3239121|http://www.wikidata.org/entity/Q2394603|http://www.wikidata.org/entity/Q927638|http://www.wikidata.org/entity/Q919042|http://www.wikidata.org/entity/Q606523|http://www.wikidata.org/entity/Q316036|http://www.wikidata.org/entity/Q297173|http://www.wikidata.org/entity/Q295034|http://www.wikidata.org/entity/Q295020"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Bam Margera"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22683487"}, "Title": {"type": "literal", "value": "Baden Baden"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25873646"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25873646"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q33080292|http://www.wikidata.org/entity/Q3506431|http://www.wikidata.org/entity/Q3350901|http://www.wikidata.org/entity/Q1827804|http://www.wikidata.org/entity/Q280445|http://www.wikidata.org/entity/Q139052"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Rachel Lang"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1320997"}, "Title": {"type": "literal", "value": "Gulliver's Travels"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q428815"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4442602|http://www.wikidata.org/entity/Q2624066"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4353280|http://www.wikidata.org/entity/Q3076804|http://www.wikidata.org/entity/Q7334155|http://www.wikidata.org/entity/Q7088396|http://www.wikidata.org/entity/Q5240076|http://www.wikidata.org/entity/Q705522|http://www.wikidata.org/entity/Q483907|http://www.wikidata.org/entity/Q298838|http://www.wikidata.org/entity/Q254766|http://www.wikidata.org/entity/Q202304|http://www.wikidata.org/entity/Q193517|http://www.wikidata.org/entity/Q131332|http://www.wikidata.org/entity/Q1148822|http://www.wikidata.org/entity/Q933129|http://www.wikidata.org/entity/Q924104|http://www.wikidata.org/entity/Q767499|http://www.wikidata.org/entity/Q3052839"}, "Published": {"type": "literal", "value": "2011|2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2010 film by Rob Letterman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434841|http://www.wikidata.org/entity/Q2579492|http://www.wikidata.org/entity/Q3041294"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2060231"}, "Title": {"type": "literal", "value": "Just Buried"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5088666"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5088666"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q414047|http://www.wikidata.org/entity/Q316756|http://www.wikidata.org/entity/Q311169|http://www.wikidata.org/entity/Q255610|http://www.wikidata.org/entity/Q228717|http://www.wikidata.org/entity/Q441443|http://www.wikidata.org/entity/Q715606|http://www.wikidata.org/entity/Q185625"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2007 film by Chaz Thorne"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5412086"}, "Title": {"type": "literal", "value": "Lo contrario al amor"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6161380"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Vicente Villanueva"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q58814662"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16201909"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Michael Budd"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5947856"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7408556"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7408556"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5956887|http://www.wikidata.org/entity/Q1397191"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Saman Saloor"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1129365"}, "Title": {"type": "literal", "value": "The Convent"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1119064"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3304282|http://www.wikidata.org/entity/Q3018008|http://www.wikidata.org/entity/Q2838327|http://www.wikidata.org/entity/Q862342|http://www.wikidata.org/entity/Q310357|http://www.wikidata.org/entity/Q253561"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2137852|http://www.wikidata.org/entity/Q909586|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2000 film by Mike Mendez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55634878"}, "Title": {"type": "literal", "value": "Safari \u2013 Match me if you can"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24004489"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24004489"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18641914|http://www.wikidata.org/entity/Q1914028|http://www.wikidata.org/entity/Q1329659|http://www.wikidata.org/entity/Q561601|http://www.wikidata.org/entity/Q532198|http://www.wikidata.org/entity/Q111879|http://www.wikidata.org/entity/Q110710|http://www.wikidata.org/entity/Q109304|http://www.wikidata.org/entity/Q100506|http://www.wikidata.org/entity/Q98596|http://www.wikidata.org/entity/Q67917|http://www.wikidata.org/entity/Q63450|http://www.wikidata.org/entity/Q42306384|http://www.wikidata.org/entity/Q41450027|http://www.wikidata.org/entity/Q27980473|http://www.wikidata.org/entity/Q19843390"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "2018 film by Rudi Gaul"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1402681"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16993709"}, "Title": {"type": "literal", "value": "The Harry Hill Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2346846"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3127834"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3127834"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Steve Bendelack"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22338427"}, "Title": {"type": "literal", "value": "Der geilste Tag"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q87432"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q87432"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1452727|http://www.wikidata.org/entity/Q97010|http://www.wikidata.org/entity/Q87432|http://www.wikidata.org/entity/Q65106|http://www.wikidata.org/entity/Q64645|http://www.wikidata.org/entity/Q2395579|http://www.wikidata.org/entity/Q2158767|http://www.wikidata.org/entity/Q1731034"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q628165|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "113"}, "Description": {"type": "literal", "value": "2016 film directed by Florian David Fitz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q9653404"}, "Title": {"type": "literal", "value": "Teenage Mutant Ninja Turtles"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q953359"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q577234|http://www.wikidata.org/entity/Q4760014|http://www.wikidata.org/entity/Q5415355"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q355116|http://www.wikidata.org/entity/Q220335|http://www.wikidata.org/entity/Q80069|http://www.wikidata.org/entity/Q49001|http://www.wikidata.org/entity/Q960721|http://www.wikidata.org/entity/Q926963|http://www.wikidata.org/entity/Q2708237|http://www.wikidata.org/entity/Q2706805|http://www.wikidata.org/entity/Q1164810|http://www.wikidata.org/entity/Q18415482|http://www.wikidata.org/entity/Q16025030|http://www.wikidata.org/entity/Q6862756|http://www.wikidata.org/entity/Q6324129|http://www.wikidata.org/entity/Q3342656|http://www.wikidata.org/entity/Q24702631|http://www.wikidata.org/entity/Q22958021"}, "Published": {"type": "literal", "value": "2016|2014|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q761469|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q471839"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2014 US science fiction/martial arts film directed by Jonathan Liebesman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q682748|http://www.wikidata.org/entity/Q1785329"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q47004707"}, "Title": {"type": "literal", "value": "Lego DC Comics Super Heroes: The Flash"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3310104"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Ethan Spaulding"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6121898"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7920143"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7920143"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7709076|http://www.wikidata.org/entity/Q5454588|http://www.wikidata.org/entity/Q5268921|http://www.wikidata.org/entity/Q4724516|http://www.wikidata.org/entity/Q3765029"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Vennela Kishore"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5174356"}, "Title": {"type": "literal", "value": "Cosmopolitan"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1261154"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7396408"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7261659|http://www.wikidata.org/entity/Q2556603|http://www.wikidata.org/entity/Q235302|http://www.wikidata.org/entity/Q220536|http://www.wikidata.org/entity/Q32452"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Nisha Ganatra"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q633307"}, "Title": {"type": "literal", "value": "The Libertine"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q282127"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7609593"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2439560|http://www.wikidata.org/entity/Q1450759|http://www.wikidata.org/entity/Q944296|http://www.wikidata.org/entity/Q634365|http://www.wikidata.org/entity/Q436769|http://www.wikidata.org/entity/Q314659|http://www.wikidata.org/entity/Q312124|http://www.wikidata.org/entity/Q310930|http://www.wikidata.org/entity/Q274616|http://www.wikidata.org/entity/Q236167|http://www.wikidata.org/entity/Q230190|http://www.wikidata.org/entity/Q230004|http://www.wikidata.org/entity/Q172261|http://www.wikidata.org/entity/Q37175"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q645928|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "2004 British drama film by Laurence Dunmore"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1468196"}, "Title": {"type": "literal", "value": "Mr. Magorium's Wonder Emporium"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q139346"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q139346"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q37876|http://www.wikidata.org/entity/Q34939|http://www.wikidata.org/entity/Q23815354|http://www.wikidata.org/entity/Q21517127|http://www.wikidata.org/entity/Q4025858|http://www.wikidata.org/entity/Q3421719|http://www.wikidata.org/entity/Q284636|http://www.wikidata.org/entity/Q230465|http://www.wikidata.org/entity/Q42930"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q2143665"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2007 film by Zach Helm"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17335573|http://www.wikidata.org/entity/Q5368270"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3520940"}, "Title": {"type": "literal", "value": "The Foot Fist Way"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1691304"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q336400"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1691304|http://www.wikidata.org/entity/Q336400"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1033891|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Jody Hill"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1111024|http://www.wikidata.org/entity/Q3098606"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19057512"}, "Title": {"type": "literal", "value": "The Overnight"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20649365"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20649365"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "2015 film by Patrick Brice"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q164080"}, "Title": {"type": "literal", "value": "Gentlemen Broncos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2480656"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2480656"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q317024|http://www.wikidata.org/entity/Q316446|http://www.wikidata.org/entity/Q230278|http://www.wikidata.org/entity/Q5696733|http://www.wikidata.org/entity/Q11682757|http://www.wikidata.org/entity/Q2050378|http://www.wikidata.org/entity/Q1571684|http://www.wikidata.org/entity/Q1378351|http://www.wikidata.org/entity/Q1263314|http://www.wikidata.org/entity/Q725399|http://www.wikidata.org/entity/Q439315"}, "Published": {"type": "literal", "value": "2009|2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q1146335"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2009 film by Jared and Jerusha Hess, Jared Hess"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17343437"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22350784"}, "Title": {"type": "literal", "value": "Metalheads"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22004663"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22276865"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Gregory Cahill"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1137543"}, "Title": {"type": "literal", "value": "Jack Brooks: Monster Slayer"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3809865"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q310389|http://www.wikidata.org/entity/Q5233780|http://www.wikidata.org/entity/Q4979079|http://www.wikidata.org/entity/Q3998502|http://www.wikidata.org/entity/Q727988"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q1342372"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2007 film by Jon Knautz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q8989664"}, "Title": {"type": "literal", "value": "Buongiorno pap\u00e0"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3719608"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3785147"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3941283|http://www.wikidata.org/entity/Q3893633|http://www.wikidata.org/entity/Q3846163|http://www.wikidata.org/entity/Q3719608|http://www.wikidata.org/entity/Q1993073|http://www.wikidata.org/entity/Q472414|http://www.wikidata.org/entity/Q457841|http://www.wikidata.org/entity/Q381110"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "2013 Italian comedy film directed by Edoardo Leo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25136455"}, "Title": {"type": "literal", "value": "Frankie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17630965"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17630965"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55449303|http://www.wikidata.org/entity/Q17630965"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Francesco Mazza"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18693354"}, "Title": {"type": "literal", "value": "Kuningas Hidas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50384882"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2000 film directed by Saara Saarela"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17054494"}, "Title": {"type": "literal", "value": "This Is Sanlitun"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7386482"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by R\u00f3bert Ingi Douglas"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16248097"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17385584"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5276830"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Anurag Singh"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12183243"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12250381"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3571921"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Wael Ehsan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3242"}, "Title": {"type": "literal", "value": "A Fantastic Fear of Everything"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5106916|http://www.wikidata.org/entity/Q711920"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q711920"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16203916|http://www.wikidata.org/entity/Q16107301|http://www.wikidata.org/entity/Q3355676|http://www.wikidata.org/entity/Q1378684|http://www.wikidata.org/entity/Q822377|http://www.wikidata.org/entity/Q454790|http://www.wikidata.org/entity/Q274616|http://www.wikidata.org/entity/Q238464"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2012 film by Crispian Mills, Chris Hopewell"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3258801"}, "Title": {"type": "literal", "value": "LolliLove"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q238877"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q717015|http://www.wikidata.org/entity/Q238877"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q717015|http://www.wikidata.org/entity/Q238877|http://www.wikidata.org/entity/Q236189|http://www.wikidata.org/entity/Q234204|http://www.wikidata.org/entity/Q202304|http://www.wikidata.org/entity/Q183347"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Jenna Fischer"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q640786"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27590337"}, "Title": {"type": "literal", "value": "In guerra per amore"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3904894"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3904894"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3904894|http://www.wikidata.org/entity/Q1107120|http://www.wikidata.org/entity/Q676749"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2016 italian movie directed by Pif"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4019806"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3148586"}, "Title": {"type": "literal", "value": "Il \u00e9tait une fois dans l'Oued"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3032767"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3032767"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3591428|http://www.wikidata.org/entity/Q3483072|http://www.wikidata.org/entity/Q3350789|http://www.wikidata.org/entity/Q3302248|http://www.wikidata.org/entity/Q3196011|http://www.wikidata.org/entity/Q3193270|http://www.wikidata.org/entity/Q3189442|http://www.wikidata.org/entity/Q3082910|http://www.wikidata.org/entity/Q3018752|http://www.wikidata.org/entity/Q2869522|http://www.wikidata.org/entity/Q551873|http://www.wikidata.org/entity/Q274656|http://www.wikidata.org/entity/Q272113|http://www.wikidata.org/entity/Q201810"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Djamel Bensalah"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q662703"}, "Title": {"type": "literal", "value": "Hotel for Dogs"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q95657"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q460323|http://www.wikidata.org/entity/Q43799459|http://www.wikidata.org/entity/Q4358044|http://www.wikidata.org/entity/Q4355997"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q179041|http://www.wikidata.org/entity/Q130709|http://www.wikidata.org/entity/Q116636|http://www.wikidata.org/entity/Q1549708|http://www.wikidata.org/entity/Q1545414|http://www.wikidata.org/entity/Q960721|http://www.wikidata.org/entity/Q942860|http://www.wikidata.org/entity/Q517405|http://www.wikidata.org/entity/Q444344|http://www.wikidata.org/entity/Q439979|http://www.wikidata.org/entity/Q412643|http://www.wikidata.org/entity/Q312521|http://www.wikidata.org/entity/Q273166|http://www.wikidata.org/entity/Q272019|http://www.wikidata.org/entity/Q240366|http://www.wikidata.org/entity/Q228598|http://www.wikidata.org/entity/Q20630994|http://www.wikidata.org/entity/Q15834608|http://www.wikidata.org/entity/Q5174238|http://www.wikidata.org/entity/Q4273978"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2009 film by Thor Freudenthal"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192557|http://www.wikidata.org/entity/Q1785329|http://www.wikidata.org/entity/Q7752106"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28946448"}, "Title": {"type": "literal", "value": "Via Veneto"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1528398"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3713714|http://www.wikidata.org/entity/Q1262039|http://www.wikidata.org/entity/Q526943"}, "Published": {"type": "literal", "value": "1964"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1964 Italian comedy film directed by Giuseppe Lipartiti"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q31271935"}, "Title": {"type": "literal", "value": "Kormoranid ehk Nahkp\u00fckse ei pesta"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16407064|http://www.wikidata.org/entity/Q12359148"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16407521|http://www.wikidata.org/entity/Q16404598|http://www.wikidata.org/entity/Q12374189|http://www.wikidata.org/entity/Q12365870|http://www.wikidata.org/entity/Q12363117|http://www.wikidata.org/entity/Q3743341"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Andres Maimik, Rain Tolk"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18414539"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2832982"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Alex Lutz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21450446"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7544363"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5564076"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Smeep Kang"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q46996014"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1197861"}, "Title": {"type": "literal", "value": "Le Pr\u00e9nom"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2834188|http://www.wikidata.org/entity/Q3299877"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3299877|http://www.wikidata.org/entity/Q2834188"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3571575|http://www.wikidata.org/entity/Q3554229|http://www.wikidata.org/entity/Q3187992|http://www.wikidata.org/entity/Q2898368|http://www.wikidata.org/entity/Q928366|http://www.wikidata.org/entity/Q456668|http://www.wikidata.org/entity/Q287336|http://www.wikidata.org/entity/Q171530"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "2012 film by Alexandre de La Patelli\u00e8re, Matthieu Delaporte"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1881062"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3690716"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6360500"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7334360|http://www.wikidata.org/entity/Q5276736|http://www.wikidata.org/entity/Q4838101|http://www.wikidata.org/entity/Q3595207|http://www.wikidata.org/entity/Q3533784|http://www.wikidata.org/entity/Q2721855"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Thomson K. Thomas"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1417840"}, "Title": {"type": "literal", "value": "Jagdhunde"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15431038"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2007 film by Ann-Kristin Wecker"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30742364"}, "Title": {"type": "literal", "value": "Momo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3510330"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3510330|http://www.wikidata.org/entity/Q239033"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3510330|http://www.wikidata.org/entity/Q451776|http://www.wikidata.org/entity/Q310692|http://www.wikidata.org/entity/Q239033"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2017 film by S\u00e9bastien Thi\u00e9ry"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24928644"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3233474"}, "Title": {"type": "literal", "value": "Les Ka\u00efra"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3082139"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3082139"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17497021|http://www.wikidata.org/entity/Q16663967|http://www.wikidata.org/entity/Q3485227|http://www.wikidata.org/entity/Q3418669|http://www.wikidata.org/entity/Q3395911|http://www.wikidata.org/entity/Q3316975|http://www.wikidata.org/entity/Q3166616|http://www.wikidata.org/entity/Q3084132|http://www.wikidata.org/entity/Q3082139|http://www.wikidata.org/entity/Q3081522|http://www.wikidata.org/entity/Q3037894|http://www.wikidata.org/entity/Q2832982|http://www.wikidata.org/entity/Q2669628|http://www.wikidata.org/entity/Q2205546|http://www.wikidata.org/entity/Q1571613|http://www.wikidata.org/entity/Q1568465|http://www.wikidata.org/entity/Q1160865|http://www.wikidata.org/entity/Q681451|http://www.wikidata.org/entity/Q658664|http://www.wikidata.org/entity/Q540631|http://www.wikidata.org/entity/Q274656|http://www.wikidata.org/entity/Q170328|http://www.wikidata.org/entity/Q164976|http://www.wikidata.org/entity/Q56219|http://www.wikidata.org/entity/Q32608"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Franck Gastambide"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16675753"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55657429"}, "Title": {"type": "literal", "value": "\u0412\u043e\u043b\u043a\u0438 \u0438 \u041e\u0432\u0446\u044b: \u0425\u043e\u0434 \u0441\u0432\u0438\u043d\u044c\u0451\u0439"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18634674"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18634674"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q40831"}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "2019 film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4403233|http://www.wikidata.org/entity/Q8028786"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19305969"}, "Title": {"type": "literal", "value": "Banana"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3615794"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "2015 film by Andrea Jublin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q8051196"}, "Title": {"type": "literal", "value": "\u092f\u0947 \u091c\u0935\u093e\u0928\u0940 \u0939\u0948 \u0926\u0940\u0935\u093e\u0928\u0940"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4830910"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4830910"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7683939|http://www.wikidata.org/entity/Q4683087|http://www.wikidata.org/entity/Q3192216|http://www.wikidata.org/entity/Q1063412|http://www.wikidata.org/entity/Q232451|http://www.wikidata.org/entity/Q159178"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "159"}, "Description": {"type": "literal", "value": "2013 Hindi film directed by Ayan Mukerji"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1207592|http://www.wikidata.org/entity/Q5395348"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23054420"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4102539"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4536851"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4176078|http://www.wikidata.org/entity/Q3874799|http://www.wikidata.org/entity/Q2329850"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Marius Vaisbergas"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4504080"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q59391324"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18786068"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18786068"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18907601|http://www.wikidata.org/entity/Q4360641|http://www.wikidata.org/entity/Q4099923"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "film directed by Ilya Kulikov"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1975145"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4890518"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2694898"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Pieter Dirkx"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28497074"}, "Title": {"type": "literal", "value": "Le Grand Bain"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q552639"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2827567"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60720306|http://www.wikidata.org/entity/Q47091445|http://www.wikidata.org/entity/Q19544020|http://www.wikidata.org/entity/Q17453228|http://www.wikidata.org/entity/Q17350908|http://www.wikidata.org/entity/Q2671216|http://www.wikidata.org/entity/Q1393983|http://www.wikidata.org/entity/Q714765|http://www.wikidata.org/entity/Q690283|http://www.wikidata.org/entity/Q456360|http://www.wikidata.org/entity/Q446842|http://www.wikidata.org/entity/Q355835|http://www.wikidata.org/entity/Q314403|http://www.wikidata.org/entity/Q16150225|http://www.wikidata.org/entity/Q15831449|http://www.wikidata.org/entity/Q3588004|http://www.wikidata.org/entity/Q3560737|http://www.wikidata.org/entity/Q3560613|http://www.wikidata.org/entity/Q3183504|http://www.wikidata.org/entity/Q3171273|http://www.wikidata.org/entity/Q3147503|http://www.wikidata.org/entity/Q3130760|http://www.wikidata.org/entity/Q3092547|http://www.wikidata.org/entity/Q2975094|http://www.wikidata.org/entity/Q2830765"}, "Published": {"type": "literal", "value": "2019|2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "122"}, "Description": {"type": "literal", "value": "2018 film by Gilles Lellouche"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2450848"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42433143"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4102539"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4102539"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28496340|http://www.wikidata.org/entity/Q3561880|http://www.wikidata.org/entity/Q1383160|http://www.wikidata.org/entity/Q593332"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2018 film directed by Marius Vaisbergas"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q62670705"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52274376"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Niyi Akinmolayan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4289242"}, "Title": {"type": "literal", "value": "\u041c\u0435\u043a\u0441\u0438\u043a\u0430\u043d\u0441\u043a\u0438\u0439 \u0432\u043e\u044f\u0436 \u0421\u0442\u0435\u043f\u0430\u043d\u044b\u0447\u0430"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21092329|http://www.wikidata.org/entity/Q4125601"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4125601"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4172110|http://www.wikidata.org/entity/Q4154833|http://www.wikidata.org/entity/Q4148281|http://www.wikidata.org/entity/Q4148136|http://www.wikidata.org/entity/Q4113110|http://www.wikidata.org/entity/Q1970312|http://www.wikidata.org/entity/Q247846|http://www.wikidata.org/entity/Q25080"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2012 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q58378437"}, "Title": {"type": "literal", "value": "Rossz versek"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23304074"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23304074"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23304074|http://www.wikidata.org/entity/Q1178987|http://www.wikidata.org/entity/Q964873|http://www.wikidata.org/entity/Q779981"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by G\u00e1bor Reisz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q45260283"}, "Title": {"type": "literal", "value": "Hit Mom \u2013 M\u00f6rderische Weihnachten"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2262938"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1100080"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21747422|http://www.wikidata.org/entity/Q18169621|http://www.wikidata.org/entity/Q15433473|http://www.wikidata.org/entity/Q2803266|http://www.wikidata.org/entity/Q2526627|http://www.wikidata.org/entity/Q2225497|http://www.wikidata.org/entity/Q1897156|http://www.wikidata.org/entity/Q1721304|http://www.wikidata.org/entity/Q1717755|http://www.wikidata.org/entity/Q1598954|http://www.wikidata.org/entity/Q1379064|http://www.wikidata.org/entity/Q1097640|http://www.wikidata.org/entity/Q994483|http://www.wikidata.org/entity/Q125372"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2017 television film directed by Sebastian Marka"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23565"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27237522"}, "Title": {"type": "literal", "value": "The Square"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q211228"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q211228"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7704857|http://www.wikidata.org/entity/Q5565254|http://www.wikidata.org/entity/Q4952336|http://www.wikidata.org/entity/Q313020|http://www.wikidata.org/entity/Q233466|http://www.wikidata.org/entity/Q12306343"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q128758"}, "Duration": {"type": "literal", "value": "142"}, "Description": {"type": "literal", "value": "2017 Swedish film by Ruben \u00d6stlund"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1226343"}, "Title": {"type": "literal", "value": "Il suo nome era Pot"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1873491|http://www.wikidata.org/entity/Q348383"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1041544|http://www.wikidata.org/entity/Q867883|http://www.wikidata.org/entity/Q716602|http://www.wikidata.org/entity/Q451279|http://www.wikidata.org/entity/Q324143|http://www.wikidata.org/entity/Q182402"}, "Published": {"type": "literal", "value": "1971"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "1971 film by Demofilo Fidani, Lucio Giachin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7798459"}, "Title": {"type": "literal", "value": "Through the Glass"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q538774"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q538774"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q538774"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Stephanie Okereke"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4905813"}, "Title": {"type": "literal", "value": "Big Helium Dog"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4964545"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4964545"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4964545|http://www.wikidata.org/entity/Q3259437|http://www.wikidata.org/entity/Q1677945|http://www.wikidata.org/entity/Q1354149|http://www.wikidata.org/entity/Q967544|http://www.wikidata.org/entity/Q489831|http://www.wikidata.org/entity/Q439618|http://www.wikidata.org/entity/Q438583|http://www.wikidata.org/entity/Q256607"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1999 film by Brian Lynch"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4656879"}, "Title": {"type": "literal", "value": "A Fuchsia Elephant"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q228792"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6794682|http://www.wikidata.org/entity/Q5336101|http://www.wikidata.org/entity/Q383930|http://www.wikidata.org/entity/Q228792"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Dianna Agron"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17071279"}, "Title": {"type": "literal", "value": "LFO"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17089131"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17089131"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5901036"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Antonio Tubl\u00e9n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3965251"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3972432"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3972432"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3664104|http://www.wikidata.org/entity/Q1052746"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "12"}, "Description": {"type": "literal", "value": "2006 film by Stefano Chiodini"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2886119"}, "Title": {"type": "literal", "value": "Mi primera boda"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5704113"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27921932|http://www.wikidata.org/entity/Q9029922|http://www.wikidata.org/entity/Q8353654|http://www.wikidata.org/entity/Q7557537|http://www.wikidata.org/entity/Q6757896|http://www.wikidata.org/entity/Q6123030|http://www.wikidata.org/entity/Q6002829|http://www.wikidata.org/entity/Q5879998|http://www.wikidata.org/entity/Q5765507|http://www.wikidata.org/entity/Q5662293|http://www.wikidata.org/entity/Q5408666|http://www.wikidata.org/entity/Q5071640|http://www.wikidata.org/entity/Q3867408|http://www.wikidata.org/entity/Q2485621|http://www.wikidata.org/entity/Q2291421|http://www.wikidata.org/entity/Q2272014|http://www.wikidata.org/entity/Q377888|http://www.wikidata.org/entity/Q232458|http://www.wikidata.org/entity/Q28100227|http://www.wikidata.org/entity/Q27949845"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Ariel Winograd"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1548341"}, "Title": {"type": "literal", "value": "Stellungswechsel"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1884029"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1429745|http://www.wikidata.org/entity/Q1208893|http://www.wikidata.org/entity/Q566668|http://www.wikidata.org/entity/Q566626|http://www.wikidata.org/entity/Q374812|http://www.wikidata.org/entity/Q109304|http://www.wikidata.org/entity/Q107127|http://www.wikidata.org/entity/Q97153|http://www.wikidata.org/entity/Q78367|http://www.wikidata.org/entity/Q74143|http://www.wikidata.org/entity/Q72046|http://www.wikidata.org/entity/Q64823|http://www.wikidata.org/entity/Q22971900|http://www.wikidata.org/entity/Q1949229|http://www.wikidata.org/entity/Q1913382|http://www.wikidata.org/entity/Q1735915|http://www.wikidata.org/entity/Q1556252"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2007 film by Maggie Peren"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2608065"}, "Title": {"type": "literal", "value": "The Lego Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13638984|http://www.wikidata.org/entity/Q7182133|http://www.wikidata.org/entity/Q3378803"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7182133"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q218503"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21192427|http://www.wikidata.org/entity/Q20443008|http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2014 animated film by Phil Lord and Chris Miller"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q547341|http://www.wikidata.org/entity/Q622668|http://www.wikidata.org/entity/Q1063455|http://www.wikidata.org/entity/Q3041294|http://www.wikidata.org/entity/Q3556262|http://www.wikidata.org/entity/Q13416804"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25396404"}, "Title": {"type": "literal", "value": "Tout pour \u00eatre heureux"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3009001"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3009001"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3286702"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film directed by Cyril Gelblat"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4251624"}, "Title": {"type": "literal", "value": "\u041b\u041e\u043f\u0443\u0425\u0418: \u042d\u043f\u0438\u0437\u043e\u0434 \u043f\u0435\u0440\u0432\u044b\u0439"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4065391"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28368075"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4363590"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2009 film by Sarik Andreasyan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13034152"}, "Title": {"type": "literal", "value": "100 meter Leeuloop"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13034616|http://www.wikidata.org/entity/Q2844799"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13034880|http://www.wikidata.org/entity/Q13034715|http://www.wikidata.org/entity/Q2844799"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Diony Kempen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1763166"}, "Title": {"type": "literal", "value": "J\u00f8rgen + Anne = sant"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17107235"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22662113"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11997102|http://www.wikidata.org/entity/Q11989974|http://www.wikidata.org/entity/Q7820841|http://www.wikidata.org/entity/Q4981444"}, "Published": {"type": "literal", "value": "2012|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2011 Norwegian film directed by Anne Sewitsky"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23647172"}, "Title": {"type": "literal", "value": "Traceroute"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q90384"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q90384"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17013749|http://www.wikidata.org/entity/Q645928|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "2016 film by Johannes Grenzfurthner"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4016634"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4707732"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3272513|http://www.wikidata.org/entity/Q708456|http://www.wikidata.org/entity/Q698533"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Pang Ho-cheung"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14911940"}, "Title": {"type": "literal", "value": "L'arbitro"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q62655108"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3290121|http://www.wikidata.org/entity/Q808664|http://www.wikidata.org/entity/Q433565"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2013 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3384891"}, "Title": {"type": "literal", "value": "Parental Guidance"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q525725"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18933|http://www.wikidata.org/entity/Q19984992|http://www.wikidata.org/entity/Q19881758|http://www.wikidata.org/entity/Q18148980|http://www.wikidata.org/entity/Q16201760|http://www.wikidata.org/entity/Q16201714|http://www.wikidata.org/entity/Q7363638|http://www.wikidata.org/entity/Q6290172|http://www.wikidata.org/entity/Q5928392|http://www.wikidata.org/entity/Q3418235|http://www.wikidata.org/entity/Q3177046|http://www.wikidata.org/entity/Q2469336|http://www.wikidata.org/entity/Q529454|http://www.wikidata.org/entity/Q494393|http://www.wikidata.org/entity/Q295020|http://www.wikidata.org/entity/Q272176|http://www.wikidata.org/entity/Q241749|http://www.wikidata.org/entity/Q191828|http://www.wikidata.org/entity/Q190631|http://www.wikidata.org/entity/Q186485"}, "Published": {"type": "literal", "value": "2012|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2012 film by Andy Fickman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15069859|http://www.wikidata.org/entity/Q1637250"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15789889"}, "Title": {"type": "literal", "value": "Tr\u00e1iganme la cabeza de la mujer metralleta"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5836844"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5836844|http://www.wikidata.org/entity/Q4346796"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6006679|http://www.wikidata.org/entity/Q5864904|http://www.wikidata.org/entity/Q5858091|http://www.wikidata.org/entity/Q4346796|http://www.wikidata.org/entity/Q3488891"}, "Published": {"type": "literal", "value": "2013|2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "73"}, "Description": {"type": "literal", "value": "2013 film directed by Ernesto D\u00edaz Espinoza"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15859023"}, "Title": {"type": "literal", "value": "Im wei\u00dfen R\u00f6ssl \u2013 Wehe Du singst!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1082076"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q71567|http://www.wikidata.org/entity/Q1681609"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q537706|http://www.wikidata.org/entity/Q109299|http://www.wikidata.org/entity/Q88861|http://www.wikidata.org/entity/Q85841|http://www.wikidata.org/entity/Q76178|http://www.wikidata.org/entity/Q66027|http://www.wikidata.org/entity/Q1545055|http://www.wikidata.org/entity/Q1328973|http://www.wikidata.org/entity/Q816586"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2013 film by Christian Theede"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15268063"}, "Title": {"type": "literal", "value": "Fack ju G\u00f6hte"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q112352"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q112352"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q88514|http://www.wikidata.org/entity/Q78766|http://www.wikidata.org/entity/Q69669|http://www.wikidata.org/entity/Q62346|http://www.wikidata.org/entity/Q61099|http://www.wikidata.org/entity/Q23061509|http://www.wikidata.org/entity/Q21188721|http://www.wikidata.org/entity/Q19946410|http://www.wikidata.org/entity/Q19297324|http://www.wikidata.org/entity/Q19059989|http://www.wikidata.org/entity/Q17479630|http://www.wikidata.org/entity/Q17353105|http://www.wikidata.org/entity/Q15890988|http://www.wikidata.org/entity/Q2209828|http://www.wikidata.org/entity/Q1913731|http://www.wikidata.org/entity/Q1686699|http://www.wikidata.org/entity/Q1348711|http://www.wikidata.org/entity/Q1331348|http://www.wikidata.org/entity/Q1081259|http://www.wikidata.org/entity/Q824272|http://www.wikidata.org/entity/Q449665|http://www.wikidata.org/entity/Q215565|http://www.wikidata.org/entity/Q97835|http://www.wikidata.org/entity/Q89832"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "118"}, "Description": {"type": "literal", "value": "2013 film directed by Bora Da\u011ftekin"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q564960"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2614123"}, "Title": {"type": "literal", "value": "Les Infid\u00e8les"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15831449|http://www.wikidata.org/entity/Q3591218|http://www.wikidata.org/entity/Q3086808|http://www.wikidata.org/entity/Q716398|http://www.wikidata.org/entity/Q552639|http://www.wikidata.org/entity/Q272804|http://www.wikidata.org/entity/Q189422|http://www.wikidata.org/entity/Q28556"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q189422|http://www.wikidata.org/entity/Q552639"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3591260|http://www.wikidata.org/entity/Q3303214|http://www.wikidata.org/entity/Q3286702|http://www.wikidata.org/entity/Q3194132|http://www.wikidata.org/entity/Q3144860|http://www.wikidata.org/entity/Q262822|http://www.wikidata.org/entity/Q259193|http://www.wikidata.org/entity/Q189422|http://www.wikidata.org/entity/Q1341507|http://www.wikidata.org/entity/Q3141565|http://www.wikidata.org/entity/Q2975505|http://www.wikidata.org/entity/Q2887704|http://www.wikidata.org/entity/Q2852965|http://www.wikidata.org/entity/Q314403|http://www.wikidata.org/entity/Q3591418|http://www.wikidata.org/entity/Q2851282|http://www.wikidata.org/entity/Q981234|http://www.wikidata.org/entity/Q552639|http://www.wikidata.org/entity/Q541690|http://www.wikidata.org/entity/Q457268|http://www.wikidata.org/entity/Q452507"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "2012 anthology film directed by Emmanuelle Bercot and seven others"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2819546"}, "Title": {"type": "literal", "value": "ATL"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5107905"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15844896"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17402889|http://www.wikidata.org/entity/Q3163012|http://www.wikidata.org/entity/Q2394970|http://www.wikidata.org/entity/Q2344116|http://www.wikidata.org/entity/Q1057939|http://www.wikidata.org/entity/Q741555|http://www.wikidata.org/entity/Q538542|http://www.wikidata.org/entity/Q371202|http://www.wikidata.org/entity/Q370918|http://www.wikidata.org/entity/Q214227"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5897543|http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film directed by Chris Robinson"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2326925"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18736650"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6171067"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Jean Luc Herbulot"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q922193"}, "Title": {"type": "literal", "value": "Winnie the Pooh"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18921842|http://www.wikidata.org/entity/Q7609556"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16988950|http://www.wikidata.org/entity/Q7609556|http://www.wikidata.org/entity/Q29001895|http://www.wikidata.org/entity/Q29001894|http://www.wikidata.org/entity/Q29001893|http://www.wikidata.org/entity/Q29001864|http://www.wikidata.org/entity/Q28914158|http://www.wikidata.org/entity/Q18921842|http://www.wikidata.org/entity/Q2928589"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28968511|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "64"}, "Description": {"type": "literal", "value": "2011 American animated film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191224"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27959595"}, "Title": {"type": "literal", "value": "Down Under"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4666385"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4666385"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29868699|http://www.wikidata.org/entity/Q14902479|http://www.wikidata.org/entity/Q1607082|http://www.wikidata.org/entity/Q1093867|http://www.wikidata.org/entity/Q914432"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Abe Forsythe"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12190604"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12238850"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8721413"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Magdy Al Hawary"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q57496969"}, "Title": {"type": "literal", "value": "Cosas de la edad"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q314403"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Guillaume Canet"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2981321"}, "Title": {"type": "literal", "value": "Coco"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q318991"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2940066|http://www.wikidata.org/entity/Q318991"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3286702|http://www.wikidata.org/entity/Q1685364|http://www.wikidata.org/entity/Q318991|http://www.wikidata.org/entity/Q239033"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Gad Elmaleh"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7737199"}, "Title": {"type": "literal", "value": "The Good Dinosaur"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7177024"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19880918"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2015 American computer-animated adventure film directed by Peter Sohn"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q127552|http://www.wikidata.org/entity/Q191224"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28420034"}, "Title": {"type": "literal", "value": "Si j'\u00e9tais un homme"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q177840"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q177840"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15944854|http://www.wikidata.org/entity/Q2854016|http://www.wikidata.org/entity/Q310692|http://www.wikidata.org/entity/Q288180|http://www.wikidata.org/entity/Q177840|http://www.wikidata.org/entity/Q32608"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2017 film by Audrey Dana"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3071502"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q171600"}, "Title": {"type": "literal", "value": "Str\u00e1karnir okkar"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7386482"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2005 film by R\u00f3bert Ingi Douglas"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q8033127"}, "Title": {"type": "literal", "value": "Woodpecker"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5902748"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13571589"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q40995697"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192881"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6413063"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7283562"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7283562"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Rahsaan Islam"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3987061"}, "Title": {"type": "literal", "value": "The First Turn-On!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q944978|http://www.wikidata.org/entity/Q183347"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q944978|http://www.wikidata.org/entity/Q183347"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7493082|http://www.wikidata.org/entity/Q472746|http://www.wikidata.org/entity/Q320052"}, "Published": {"type": "literal", "value": "1984"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "1984 film by Michael Herz, Lloyd Kaufman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q640786"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3214173"}, "Title": {"type": "literal", "value": "La pecora nera"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2866345"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3852855|http://www.wikidata.org/entity/Q3840444|http://www.wikidata.org/entity/Q3839615|http://www.wikidata.org/entity/Q2866345|http://www.wikidata.org/entity/Q2249919|http://www.wikidata.org/entity/Q795628"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2010 film by Ascanio Celestini"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3221302"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3190825"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3190825"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3021861|http://www.wikidata.org/entity/Q2897553|http://www.wikidata.org/entity/Q2681916|http://www.wikidata.org/entity/Q275664|http://www.wikidata.org/entity/Q3554312|http://www.wikidata.org/entity/Q3479511|http://www.wikidata.org/entity/Q3336549|http://www.wikidata.org/entity/Q3287898|http://www.wikidata.org/entity/Q3141929|http://www.wikidata.org/entity/Q3118557|http://www.wikidata.org/entity/Q3073999|http://www.wikidata.org/entity/Q3073457"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by J\u00e9r\u00f4me Bonnell"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3278302"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130092"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3106385|http://www.wikidata.org/entity/Q1351652|http://www.wikidata.org/entity/Q130092"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23309170|http://www.wikidata.org/entity/Q16534621|http://www.wikidata.org/entity/Q16028738|http://www.wikidata.org/entity/Q15974180|http://www.wikidata.org/entity/Q3591218|http://www.wikidata.org/entity/Q3553638|http://www.wikidata.org/entity/Q3501929|http://www.wikidata.org/entity/Q3479221|http://www.wikidata.org/entity/Q3379286|http://www.wikidata.org/entity/Q3340006|http://www.wikidata.org/entity/Q3194132|http://www.wikidata.org/entity/Q3106385|http://www.wikidata.org/entity/Q3085730|http://www.wikidata.org/entity/Q3035323|http://www.wikidata.org/entity/Q2887704|http://www.wikidata.org/entity/Q2381285|http://www.wikidata.org/entity/Q2087638|http://www.wikidata.org/entity/Q1758568|http://www.wikidata.org/entity/Q1351652|http://www.wikidata.org/entity/Q703975|http://www.wikidata.org/entity/Q259940|http://www.wikidata.org/entity/Q130092"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Val\u00e9rie Donzelli"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22696372"}, "Title": {"type": "literal", "value": "\u5b87\u5b99\u30d1\u30c8\u30ed\u30fc\u30eb\u30eb\u30eb\u5b50"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3023829"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3023829"}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7696995|http://www.wikidata.org/entity/Q5366020"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "television anime directed by Hiroyuki Imaishi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2913693|http://www.wikidata.org/entity/Q10813424"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2464631"}, "Title": {"type": "literal", "value": "T\u00fcrkisch f\u00fcr Anf\u00e4nger"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q112352"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q112352"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q566708|http://www.wikidata.org/entity/Q563380|http://www.wikidata.org/entity/Q347051|http://www.wikidata.org/entity/Q120407|http://www.wikidata.org/entity/Q98326|http://www.wikidata.org/entity/Q97194|http://www.wikidata.org/entity/Q92078|http://www.wikidata.org/entity/Q78766|http://www.wikidata.org/entity/Q62346|http://www.wikidata.org/entity/Q50012|http://www.wikidata.org/entity/Q45338"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2012 film by Bora Da\u011ftekin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28975649"}, "Title": {"type": "literal", "value": "Naked"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21066677"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6988320|http://www.wikidata.org/entity/Q5173585|http://www.wikidata.org/entity/Q1153370|http://www.wikidata.org/entity/Q936507|http://www.wikidata.org/entity/Q455702|http://www.wikidata.org/entity/Q364822|http://www.wikidata.org/entity/Q350208|http://www.wikidata.org/entity/Q310785|http://www.wikidata.org/entity/Q257271|http://www.wikidata.org/entity/Q235141|http://www.wikidata.org/entity/Q232674"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2017 film by Michael Tiddes"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q37911452"}, "Title": {"type": "literal", "value": "Re-Emigrantes"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11118049"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by \u00d3scar Parra de Carrizosa"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1201141"}, "Title": {"type": "literal", "value": "Detention"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1363428"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1363428"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16335035|http://www.wikidata.org/entity/Q11233915|http://www.wikidata.org/entity/Q7965817|http://www.wikidata.org/entity/Q7488769|http://www.wikidata.org/entity/Q6772495|http://www.wikidata.org/entity/Q5387920|http://www.wikidata.org/entity/Q1939601|http://www.wikidata.org/entity/Q359969|http://www.wikidata.org/entity/Q238494|http://www.wikidata.org/entity/Q217004"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q853630|http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2011 film by Joseph Kahn"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q171582"}, "Title": {"type": "literal", "value": "11:14"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q323817"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q323817"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1344405|http://www.wikidata.org/entity/Q1143308|http://www.wikidata.org/entity/Q723027|http://www.wikidata.org/entity/Q506198|http://www.wikidata.org/entity/Q318134|http://www.wikidata.org/entity/Q311804|http://www.wikidata.org/entity/Q291029|http://www.wikidata.org/entity/Q232101|http://www.wikidata.org/entity/Q229042|http://www.wikidata.org/entity/Q202304|http://www.wikidata.org/entity/Q113206|http://www.wikidata.org/entity/Q93187|http://www.wikidata.org/entity/Q49004"}, "Published": {"type": "literal", "value": "2005|2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21401869|http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2003 American indie thriller film directed by Greg Marcks"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6805440"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q39046823"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7283562"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Rahsaan Islam"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3800722"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q59187965"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3899385|http://www.wikidata.org/entity/Q3763513|http://www.wikidata.org/entity/Q3763012"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2010 film by Paola Randi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60737548"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q365915"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Charlie Day"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20899746"}, "Title": {"type": "literal", "value": "Un jour mon prince!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3073457"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1634827"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Flavia Coste"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5504009"}, "Title": {"type": "literal", "value": "Friend Request Pending"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19345276"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5106314"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1273669|http://www.wikidata.org/entity/Q295803|http://www.wikidata.org/entity/Q28054"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Chris Foggin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12006689"}, "Title": {"type": "literal", "value": "Tomme T\u00f8nner 2 \u2013 Det brune gullet"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22344468|http://www.wikidata.org/entity/Q10729540"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10729540"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17107403|http://www.wikidata.org/entity/Q17057517|http://www.wikidata.org/entity/Q11982752|http://www.wikidata.org/entity/Q10729540|http://www.wikidata.org/entity/Q7710693|http://www.wikidata.org/entity/Q7710517|http://www.wikidata.org/entity/Q4584657|http://www.wikidata.org/entity/Q4569518|http://www.wikidata.org/entity/Q2022437|http://www.wikidata.org/entity/Q1769251|http://www.wikidata.org/entity/Q1190263|http://www.wikidata.org/entity/Q707827"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2011 Norwegian film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12005220"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21526331"}, "Title": {"type": "literal", "value": "Kara Bela"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6068775"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6068775"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6100684"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Burak Aksak"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6037357"}, "Title": {"type": "literal", "value": "Inseparable"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5243639"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5243639"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8048168|http://www.wikidata.org/entity/Q5581667|http://www.wikidata.org/entity/Q1140116|http://www.wikidata.org/entity/Q295148|http://www.wikidata.org/entity/Q277193|http://www.wikidata.org/entity/Q25144"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Dayyan Eng"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15853688"}, "Title": {"type": "literal", "value": "Was nicht passt, wird passend gemacht"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2078661|http://www.wikidata.org/entity/Q1487677"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1904817|http://www.wikidata.org/entity/Q2078661|http://www.wikidata.org/entity/Q1908448"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2577560|http://www.wikidata.org/entity/Q2078661|http://www.wikidata.org/entity/Q1487677|http://www.wikidata.org/entity/Q297500|http://www.wikidata.org/entity/Q111262|http://www.wikidata.org/entity/Q90041"}, "Published": {"type": "literal", "value": "1997"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "15"}, "Description": {"type": "literal", "value": "1997 film by Peter Thorwarth, Tim Trageser"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3343323"}, "Title": {"type": "literal", "value": "Non ma fille tu n'iras pas danser"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q551772"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q551772"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3189528|http://www.wikidata.org/entity/Q3086961|http://www.wikidata.org/entity/Q2836541|http://www.wikidata.org/entity/Q2682027|http://www.wikidata.org/entity/Q952106|http://www.wikidata.org/entity/Q551683|http://www.wikidata.org/entity/Q456360|http://www.wikidata.org/entity/Q382393|http://www.wikidata.org/entity/Q283317|http://www.wikidata.org/entity/Q239845"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film directed by Christophe Honor\u00e9"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3567885"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28129369"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q453691"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q453691"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434051"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Mr. Oizo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q230545"}, "Title": {"type": "literal", "value": "Masj\u00e4vlar"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1809801"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1809801"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6009529|http://www.wikidata.org/entity/Q5954227|http://www.wikidata.org/entity/Q5556457|http://www.wikidata.org/entity/Q4991061|http://www.wikidata.org/entity/Q4976329|http://www.wikidata.org/entity/Q4948570|http://www.wikidata.org/entity/Q4946665|http://www.wikidata.org/entity/Q462129|http://www.wikidata.org/entity/Q440773|http://www.wikidata.org/entity/Q272545"}, "Published": {"type": "literal", "value": "2006|2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2004 film by Maria Blom"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20686127"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23808678"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Jayatheertha"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3790249"}, "Title": {"type": "literal", "value": "Ist\u00e4llet f\u00f6r Abrakadabra"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5630110"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5630110"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5571781"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "22"}, "Description": {"type": "literal", "value": "2008 film by Patrik Eklund"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55597021"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3509936"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q541721"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by S\u00e9bastien Bailly"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3072241"}, "Title": {"type": "literal", "value": "Filth"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17232832"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17232832"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5907683|http://www.wikidata.org/entity/Q3336469|http://www.wikidata.org/entity/Q2165440|http://www.wikidata.org/entity/Q1335105|http://www.wikidata.org/entity/Q727752|http://www.wikidata.org/entity/Q528276|http://www.wikidata.org/entity/Q297071|http://www.wikidata.org/entity/Q237012|http://www.wikidata.org/entity/Q232889|http://www.wikidata.org/entity/Q212351|http://www.wikidata.org/entity/Q193659|http://www.wikidata.org/entity/Q185079|http://www.wikidata.org/entity/Q143223|http://www.wikidata.org/entity/Q113949|http://www.wikidata.org/entity/Q45647"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2013 film by Jon S. Baird"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4184572"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4201152"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4201152"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6124331"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Nia Dinata"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q665192"}, "Title": {"type": "literal", "value": "Six-String Samurai"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4280305"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4493815"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4493815"}, "Published": {"type": "literal", "value": "1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1341051|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q761469|http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "1998 film by Lance Mungia"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q500093"}, "Title": {"type": "literal", "value": "Legally Blonde"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q721107"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6416119|http://www.wikidata.org/entity/Q6369876"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q290370|http://www.wikidata.org/entity/Q270664|http://www.wikidata.org/entity/Q266525|http://www.wikidata.org/entity/Q264748|http://www.wikidata.org/entity/Q235198|http://www.wikidata.org/entity/Q234204|http://www.wikidata.org/entity/Q16731845|http://www.wikidata.org/entity/Q3386144|http://www.wikidata.org/entity/Q3050431|http://www.wikidata.org/entity/Q3050134|http://www.wikidata.org/entity/Q2830641|http://www.wikidata.org/entity/Q2683767|http://www.wikidata.org/entity/Q2627255|http://www.wikidata.org/entity/Q2421987|http://www.wikidata.org/entity/Q2166986|http://www.wikidata.org/entity/Q1379066|http://www.wikidata.org/entity/Q960467|http://www.wikidata.org/entity/Q919478|http://www.wikidata.org/entity/Q467908|http://www.wikidata.org/entity/Q462242|http://www.wikidata.org/entity/Q445878|http://www.wikidata.org/entity/Q360671|http://www.wikidata.org/entity/Q345032|http://www.wikidata.org/entity/Q230278|http://www.wikidata.org/entity/Q229545|http://www.wikidata.org/entity/Q201994|http://www.wikidata.org/entity/Q182931|http://www.wikidata.org/entity/Q107769|http://www.wikidata.org/entity/Q44063"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2001 film by Robert Luketic"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7860855|http://www.wikidata.org/entity/Q17417784"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60325239"}, "Title": {"type": "literal", "value": "Stuck in the 80's"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60229347"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60229347"}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6973971"}, "Title": {"type": "literal", "value": "National Lampoon's Golf Punks"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3128032"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q353755"}, "Published": {"type": "literal", "value": "1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q40831"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1998 film by Harvey Frost"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6076457"}, "Title": {"type": "literal", "value": "\u00c7alg\u0131 \u00c7engi"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6052251"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6052251"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6083959"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Sel\u00e7uk Aydemir"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7813253"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17180936"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8062169|http://www.wikidata.org/entity/Q7917177|http://www.wikidata.org/entity/Q4831766|http://www.wikidata.org/entity/Q1376396|http://www.wikidata.org/entity/Q158233"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Kedar Shinde"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23055715"}, "Title": {"type": "literal", "value": "Burn Burn Burn"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q47465812"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23767048"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3218669"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Chanya Button"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24053277"}, "Title": {"type": "literal", "value": "Three Billboards Outside Ebbing, Missouri"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q372394"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q372394"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q44560779|http://www.wikidata.org/entity/Q19667486|http://www.wikidata.org/entity/Q17488953|http://www.wikidata.org/entity/Q7408805|http://www.wikidata.org/entity/Q1095834|http://www.wikidata.org/entity/Q920607|http://www.wikidata.org/entity/Q459384|http://www.wikidata.org/entity/Q382197|http://www.wikidata.org/entity/Q330460|http://www.wikidata.org/entity/Q316446|http://www.wikidata.org/entity/Q310937|http://www.wikidata.org/entity/Q257625|http://www.wikidata.org/entity/Q236097|http://www.wikidata.org/entity/Q204299|http://www.wikidata.org/entity/Q201279|http://www.wikidata.org/entity/Q165625|http://www.wikidata.org/entity/Q28498"}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1200678|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q53094"}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "2017 film by Martin McDonagh"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q953040|http://www.wikidata.org/entity/Q5448886|http://www.wikidata.org/entity/Q17386859"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27536730"}, "Title": {"type": "literal", "value": "Nerdland"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4376392"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q505689"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7153461|http://www.wikidata.org/entity/Q5649155|http://www.wikidata.org/entity/Q2301339|http://www.wikidata.org/entity/Q522856|http://www.wikidata.org/entity/Q446290|http://www.wikidata.org/entity/Q434585|http://www.wikidata.org/entity/Q374065|http://www.wikidata.org/entity/Q276525|http://www.wikidata.org/entity/Q120406"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Chris Prynoski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q219315"}, "Title": {"type": "literal", "value": "The Hangover"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q362824"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7436898|http://www.wikidata.org/entity/Q3081957"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2978917|http://www.wikidata.org/entity/Q2566766|http://www.wikidata.org/entity/Q2395069|http://www.wikidata.org/entity/Q2278533|http://www.wikidata.org/entity/Q1616538|http://www.wikidata.org/entity/Q1189298|http://www.wikidata.org/entity/Q1139526|http://www.wikidata.org/entity/Q711015|http://www.wikidata.org/entity/Q559081|http://www.wikidata.org/entity/Q552806|http://www.wikidata.org/entity/Q440910|http://www.wikidata.org/entity/Q362824|http://www.wikidata.org/entity/Q328790|http://www.wikidata.org/entity/Q320204|http://www.wikidata.org/entity/Q311962|http://www.wikidata.org/entity/Q290370|http://www.wikidata.org/entity/Q267400|http://www.wikidata.org/entity/Q224026|http://www.wikidata.org/entity/Q205707|http://www.wikidata.org/entity/Q139325|http://www.wikidata.org/entity/Q110379|http://www.wikidata.org/entity/Q79031|http://www.wikidata.org/entity/Q3964712|http://www.wikidata.org/entity/Q3336580"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2009 film by Todd Phillips"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q621364"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q54487710"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3638268"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3638268|http://www.wikidata.org/entity/Q12058704"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12058704|http://www.wikidata.org/entity/Q12025154|http://www.wikidata.org/entity/Q23767040|http://www.wikidata.org/entity/Q19363321|http://www.wikidata.org/entity/Q17200928"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "film directed by Benjamin Tu\u010dek scheduled for September 2018 release"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22000078"}, "Title": {"type": "literal", "value": "D\u00e1 1 Tempo!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10278413"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2008 film by Evandro Berlesi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61782227"}, "Title": {"type": "literal", "value": "The Lovebirds"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2092899"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16208410|http://www.wikidata.org/entity/Q4661797|http://www.wikidata.org/entity/Q3295442"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13560267|http://www.wikidata.org/entity/Q6443390|http://www.wikidata.org/entity/Q1150316"}, "Published": {"type": "literal", "value": "2020"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2020 film directed by Michael Showalter"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2856187|http://www.wikidata.org/entity/Q22021534"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19848939"}, "Title": {"type": "literal", "value": "Der Bunker"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1990249"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1990249"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2097122|http://www.wikidata.org/entity/Q2024814|http://www.wikidata.org/entity/Q1160773|http://www.wikidata.org/entity/Q95890"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2015 film by Nikias Chryssos"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17444465"}, "Title": {"type": "literal", "value": "Panic je nanic"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56242148"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12043246|http://www.wikidata.org/entity/Q12022045|http://www.wikidata.org/entity/Q11752586|http://www.wikidata.org/entity/Q10857842|http://www.wikidata.org/entity/Q10856191|http://www.wikidata.org/entity/Q7938803|http://www.wikidata.org/entity/Q3061217|http://www.wikidata.org/entity/Q2356044|http://www.wikidata.org/entity/Q468276|http://www.wikidata.org/entity/Q159693"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2005 film directed by Ivo Machar\u00e1cek"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7960605"}, "Title": {"type": "literal", "value": "Esperando al Mes\u00edas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1160223"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1160223"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6812438|http://www.wikidata.org/entity/Q5724214|http://www.wikidata.org/entity/Q5379791|http://www.wikidata.org/entity/Q2963235|http://www.wikidata.org/entity/Q2576722|http://www.wikidata.org/entity/Q2485621|http://www.wikidata.org/entity/Q2272014|http://www.wikidata.org/entity/Q929860|http://www.wikidata.org/entity/Q238547"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2000 film by Daniel Burman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q33665391"}, "Title": {"type": "literal", "value": "\u0411\u0430\u0431\u0443\u0448\u043a\u0430 \u043b\u0451\u0433\u043a\u043e\u0433\u043e \u043f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u044f"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4102539"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4391645|http://www.wikidata.org/entity/Q4102539"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28496340|http://www.wikidata.org/entity/Q4482274|http://www.wikidata.org/entity/Q4459812|http://www.wikidata.org/entity/Q4391645|http://www.wikidata.org/entity/Q4137597|http://www.wikidata.org/entity/Q4103145|http://www.wikidata.org/entity/Q494596|http://www.wikidata.org/entity/Q35385"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2017 film by Marius Vaisbergas"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3163489"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2778106|http://www.wikidata.org/entity/Q74428"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2778106|http://www.wikidata.org/entity/Q74428"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18326681|http://www.wikidata.org/entity/Q17325002|http://www.wikidata.org/entity/Q16680413|http://www.wikidata.org/entity/Q16222125|http://www.wikidata.org/entity/Q16185204|http://www.wikidata.org/entity/Q11290936|http://www.wikidata.org/entity/Q3573721|http://www.wikidata.org/entity/Q3570819|http://www.wikidata.org/entity/Q3560719|http://www.wikidata.org/entity/Q3554229|http://www.wikidata.org/entity/Q3553660|http://www.wikidata.org/entity/Q2941947|http://www.wikidata.org/entity/Q2413166|http://www.wikidata.org/entity/Q1341507|http://www.wikidata.org/entity/Q949391|http://www.wikidata.org/entity/Q531482|http://www.wikidata.org/entity/Q106508|http://www.wikidata.org/entity/Q106443|http://www.wikidata.org/entity/Q3528538|http://www.wikidata.org/entity/Q3524285|http://www.wikidata.org/entity/Q3516045|http://www.wikidata.org/entity/Q3314602|http://www.wikidata.org/entity/Q3269757|http://www.wikidata.org/entity/Q3242498|http://www.wikidata.org/entity/Q3219419|http://www.wikidata.org/entity/Q3183404|http://www.wikidata.org/entity/Q3157806|http://www.wikidata.org/entity/Q3083941"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2005 film by Olivier Nakache, \u00c9ric Toledano"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5431513"}, "Title": {"type": "literal", "value": "Fakers"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7326825"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7815252|http://www.wikidata.org/entity/Q1250868|http://www.wikidata.org/entity/Q705644|http://www.wikidata.org/entity/Q509628|http://www.wikidata.org/entity/Q472411|http://www.wikidata.org/entity/Q342784"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Richard Janes"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3785226"}, "Title": {"type": "literal", "value": "Hermanitos, fratelli d'Italia"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3805939"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "52"}, "Description": {"type": "literal", "value": "2010 film by Jacopo Tartarone"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1708524"}, "Title": {"type": "literal", "value": "Josh and S.A.M."}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q863267"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4961428|http://www.wikidata.org/entity/Q2851685|http://www.wikidata.org/entity/Q2850389|http://www.wikidata.org/entity/Q2233929|http://www.wikidata.org/entity/Q1158873|http://www.wikidata.org/entity/Q1146351|http://www.wikidata.org/entity/Q1079204|http://www.wikidata.org/entity/Q951634|http://www.wikidata.org/entity/Q434244|http://www.wikidata.org/entity/Q376131|http://www.wikidata.org/entity/Q350724|http://www.wikidata.org/entity/Q297744|http://www.wikidata.org/entity/Q275803|http://www.wikidata.org/entity/Q267383|http://www.wikidata.org/entity/Q229305|http://www.wikidata.org/entity/Q133313|http://www.wikidata.org/entity/Q77035"}, "Published": {"type": "literal", "value": "1993"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "1993 film by Billy Weber"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q79202|http://www.wikidata.org/entity/Q622848"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21427302"}, "Title": {"type": "literal", "value": "Five"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19956191"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19956191"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3386444"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Igor Gotesman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3232650"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q54165988"}, "Title": {"type": "literal", "value": "Mon Ket"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q164976"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2443051|http://www.wikidata.org/entity/Q164976"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3516056|http://www.wikidata.org/entity/Q164976"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2018 film directed by Fran\u00e7ois Damiens"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q782059"}, "Title": {"type": "literal", "value": "The Mysteries of Pittsburgh"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2745616"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2745616"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q551596|http://www.wikidata.org/entity/Q315099|http://www.wikidata.org/entity/Q266231|http://www.wikidata.org/entity/Q223303|http://www.wikidata.org/entity/Q193458|http://www.wikidata.org/entity/Q188018"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Rawson Marshall Thurber"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3717600"}, "Title": {"type": "literal", "value": "E guardo il mondo da un obl\u00f2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3972409"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3972409"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3972409|http://www.wikidata.org/entity/Q3838277|http://www.wikidata.org/entity/Q3831992|http://www.wikidata.org/entity/Q3721398|http://www.wikidata.org/entity/Q696152"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2007 film by Stefano Calvagna"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28503654"}, "Title": {"type": "literal", "value": "Mam\u00e1 se fue de viaje"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5704113"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Ariel Winograd"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55464181"}, "Title": {"type": "literal", "value": "\u0413\u0435\u0440\u043e\u0439 \u043c\u043e\u0433\u043e \u0447\u0430\u0441\u0443"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55645018"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55107620|http://www.wikidata.org/entity/Q12173452|http://www.wikidata.org/entity/Q4492965"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2018 comedy film by Tonya Noyabrova"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19404566"}, "Title": {"type": "literal", "value": "Qocalar"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12849235"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5394052"}, "Title": {"type": "literal", "value": "Ernest and Bertram"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7177037"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1262695"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Peter Spears"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18971274"}, "Title": {"type": "literal", "value": "Non c'\u00e8 2 senza te"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23857049"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23857049"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2015 film by Massimo Cappelli"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1800384"}, "Title": {"type": "literal", "value": "Lago Mio"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55849622"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55849622|http://www.wikidata.org/entity/Q1650253"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2005 film by Jann Preuss"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7539880"}, "Title": {"type": "literal", "value": "Prensesin Uykusu"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q272718"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q272718"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7458088|http://www.wikidata.org/entity/Q6100158|http://www.wikidata.org/entity/Q6094662|http://www.wikidata.org/entity/Q6087265|http://www.wikidata.org/entity/Q6087059|http://www.wikidata.org/entity/Q6069816|http://www.wikidata.org/entity/Q5530907"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by \u00c7a\u011fan Irmak"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4101760"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4080580"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15070222|http://www.wikidata.org/entity/Q4530019|http://www.wikidata.org/entity/Q4497705|http://www.wikidata.org/entity/Q4458928|http://www.wikidata.org/entity/Q4445421|http://www.wikidata.org/entity/Q4400363|http://www.wikidata.org/entity/Q4380406|http://www.wikidata.org/entity/Q4275511|http://www.wikidata.org/entity/Q4242763|http://www.wikidata.org/entity/Q4189571|http://www.wikidata.org/entity/Q4176078|http://www.wikidata.org/entity/Q4165014|http://www.wikidata.org/entity/Q4104765|http://www.wikidata.org/entity/Q4093222|http://www.wikidata.org/entity/Q4069842|http://www.wikidata.org/entity/Q4067056|http://www.wikidata.org/entity/Q3856333|http://www.wikidata.org/entity/Q1879297"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Yevgeny Bedarev"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4044503"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13654907"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3112667|http://www.wikidata.org/entity/Q950283"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "12"}, "Description": {"type": "literal", "value": "2008 film directed by Hayden Schlossberg"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20119383"}, "Title": {"type": "literal", "value": "Zeit der Kannibalen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2370675"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1737653"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2262614|http://www.wikidata.org/entity/Q103544|http://www.wikidata.org/entity/Q86919"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2014 German drama film directed by Johannes Naber"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q52439180"}, "Title": {"type": "literal", "value": "De Rolling por Colombia"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16302557"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Harold Trompetero"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27959221"}, "Title": {"type": "literal", "value": "Damsel"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q63286189|http://www.wikidata.org/entity/Q18325889"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18325889|http://www.wikidata.org/entity/Q63286189"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q228865|http://www.wikidata.org/entity/Q36767|http://www.wikidata.org/entity/Q18325889"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q172980"}, "Duration": {"type": "literal", "value": "113"}, "Description": {"type": "literal", "value": "2018 film by David Zellner"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q57587716"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4015113"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film directed by Vito Palmieri"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q782955"}, "Title": {"type": "literal", "value": "Old School"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q362824"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q362824|http://www.wikidata.org/entity/Q2260642"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319585|http://www.wikidata.org/entity/Q315107|http://www.wikidata.org/entity/Q315083|http://www.wikidata.org/entity/Q299297|http://www.wikidata.org/entity/Q271637|http://www.wikidata.org/entity/Q265516|http://www.wikidata.org/entity/Q242580|http://www.wikidata.org/entity/Q230530|http://www.wikidata.org/entity/Q230523|http://www.wikidata.org/entity/Q218503|http://www.wikidata.org/entity/Q215849|http://www.wikidata.org/entity/Q193212|http://www.wikidata.org/entity/Q188500|http://www.wikidata.org/entity/Q6096|http://www.wikidata.org/entity/Q3342658|http://www.wikidata.org/entity/Q3336580|http://www.wikidata.org/entity/Q3045844|http://www.wikidata.org/entity/Q2278533|http://www.wikidata.org/entity/Q1778919|http://www.wikidata.org/entity/Q1395333|http://www.wikidata.org/entity/Q423141|http://www.wikidata.org/entity/Q367094|http://www.wikidata.org/entity/Q362824|http://www.wikidata.org/entity/Q107769|http://www.wikidata.org/entity/Q107730|http://www.wikidata.org/entity/Q1387836|http://www.wikidata.org/entity/Q1378118|http://www.wikidata.org/entity/Q1370072|http://www.wikidata.org/entity/Q1281204|http://www.wikidata.org/entity/Q1139526|http://www.wikidata.org/entity/Q978367|http://www.wikidata.org/entity/Q928592|http://www.wikidata.org/entity/Q720671|http://www.wikidata.org/entity/Q712452|http://www.wikidata.org/entity/Q644565|http://www.wikidata.org/entity/Q534915|http://www.wikidata.org/entity/Q477819|http://www.wikidata.org/entity/Q444429"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2003 film by Todd Phillips"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7752106"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q79503"}, "Title": {"type": "literal", "value": "Juno"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q314502"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q230795"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5416168|http://www.wikidata.org/entity/Q3052393|http://www.wikidata.org/entity/Q663741|http://www.wikidata.org/entity/Q452019|http://www.wikidata.org/entity/Q349548|http://www.wikidata.org/entity/Q309555|http://www.wikidata.org/entity/Q284636|http://www.wikidata.org/entity/Q242842|http://www.wikidata.org/entity/Q242550|http://www.wikidata.org/entity/Q229487|http://www.wikidata.org/entity/Q173399|http://www.wikidata.org/entity/Q172044|http://www.wikidata.org/entity/Q150482|http://www.wikidata.org/entity/Q39574"}, "Published": {"type": "literal", "value": "2008|2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q2975633"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2007 American comedy-drama film directed by Jason Reitman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5368270|http://www.wikidata.org/entity/Q922453|http://www.wikidata.org/entity/Q953040"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q35705830"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6090416"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 Turkish movie directed by Sermiyan Midyat"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4921485"}, "Title": {"type": "literal", "value": "Black Pond"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7816474"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5107190|http://www.wikidata.org/entity/Q978769"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Tom Kingsley"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4378280"}, "Title": {"type": "literal", "value": "Promoci\u00f3n fantasma"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5928180"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11681419|http://www.wikidata.org/entity/Q4133904|http://www.wikidata.org/entity/Q3329791|http://www.wikidata.org/entity/Q3266852|http://www.wikidata.org/entity/Q2833293|http://www.wikidata.org/entity/Q2687792|http://www.wikidata.org/entity/Q2655070|http://www.wikidata.org/entity/Q2454646|http://www.wikidata.org/entity/Q175333|http://www.wikidata.org/entity/Q129501"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2012 film by Javier Ruiz Caldera"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2646034"}, "Title": {"type": "literal", "value": "\u041c\u0430\u0440\u0441"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4289477"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4289477"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4177153"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192881"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Anna Melikian"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1504740"}, "Title": {"type": "literal", "value": "Johnny Be Good"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2927491"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16659530|http://www.wikidata.org/entity/Q1689159|http://www.wikidata.org/entity/Q972381|http://www.wikidata.org/entity/Q961431|http://www.wikidata.org/entity/Q741572|http://www.wikidata.org/entity/Q708153|http://www.wikidata.org/entity/Q679987|http://www.wikidata.org/entity/Q587102|http://www.wikidata.org/entity/Q537252|http://www.wikidata.org/entity/Q495549|http://www.wikidata.org/entity/Q459384|http://www.wikidata.org/entity/Q361215|http://www.wikidata.org/entity/Q165219|http://www.wikidata.org/entity/Q125017"}, "Published": {"type": "literal", "value": "1988"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1339864|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "1988 film by Bud S. Smith"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q891732"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17620299"}, "Title": {"type": "literal", "value": "1987"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3430333"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3430333"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q786347"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Ricardo Trogi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48861117"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11779170"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17703451"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Micha\u0142 Rogalski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6382504"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12179122"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q591801"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Ahmed Nader Galal"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17985812"}, "Title": {"type": "literal", "value": "Before I Disappear"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11903371"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11903371"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27656678|http://www.wikidata.org/entity/Q11903371|http://www.wikidata.org/entity/Q5511410|http://www.wikidata.org/entity/Q2934962|http://www.wikidata.org/entity/Q2240987|http://www.wikidata.org/entity/Q355209|http://www.wikidata.org/entity/Q270149|http://www.wikidata.org/entity/Q220698|http://www.wikidata.org/entity/Q195807|http://www.wikidata.org/entity/Q35912"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Shawn Christensen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18155457"}, "Title": {"type": "literal", "value": "Vacation"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q342636|http://www.wikidata.org/entity/Q6273224"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q342636|http://www.wikidata.org/entity/Q6273224"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q528126|http://www.wikidata.org/entity/Q503545|http://www.wikidata.org/entity/Q4241574|http://www.wikidata.org/entity/Q3453757|http://www.wikidata.org/entity/Q1190692|http://www.wikidata.org/entity/Q943613|http://www.wikidata.org/entity/Q229011|http://www.wikidata.org/entity/Q188280|http://www.wikidata.org/entity/Q118763|http://www.wikidata.org/entity/Q54314|http://www.wikidata.org/entity/Q365915|http://www.wikidata.org/entity/Q359488|http://www.wikidata.org/entity/Q342636|http://www.wikidata.org/entity/Q328790|http://www.wikidata.org/entity/Q318134|http://www.wikidata.org/entity/Q310926|http://www.wikidata.org/entity/Q290094|http://www.wikidata.org/entity/Q235141|http://www.wikidata.org/entity/Q234551|http://www.wikidata.org/entity/Q230209|http://www.wikidata.org/entity/Q22676450|http://www.wikidata.org/entity/Q21998813|http://www.wikidata.org/entity/Q7803640|http://www.wikidata.org/entity/Q6382703|http://www.wikidata.org/entity/Q6273224|http://www.wikidata.org/entity/Q5648816"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2015 American family comedy film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20874104|http://www.wikidata.org/entity/Q79202"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4228790"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21092329"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2365826"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q352828"}, "Title": {"type": "literal", "value": "Addams Family Reunion"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q918487"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q361106"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7147722|http://www.wikidata.org/entity/Q6184097|http://www.wikidata.org/entity/Q5112492|http://www.wikidata.org/entity/Q3369884|http://www.wikidata.org/entity/Q2437264|http://www.wikidata.org/entity/Q692800|http://www.wikidata.org/entity/Q496503|http://www.wikidata.org/entity/Q464425|http://www.wikidata.org/entity/Q384273|http://www.wikidata.org/entity/Q326217|http://www.wikidata.org/entity/Q281404|http://www.wikidata.org/entity/Q272935|http://www.wikidata.org/entity/Q272719|http://www.wikidata.org/entity/Q229038|http://www.wikidata.org/entity/Q207596|http://www.wikidata.org/entity/Q52392"}, "Published": {"type": "literal", "value": "1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "1998 television film directed by Dave Payne"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2719775"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28667809"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4330970|http://www.wikidata.org/entity/Q4137998|http://www.wikidata.org/entity/Q4382647"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4147975|http://www.wikidata.org/entity/Q4105674|http://www.wikidata.org/entity/Q4057207|http://www.wikidata.org/entity/Q21183528|http://www.wikidata.org/entity/Q14491922|http://www.wikidata.org/entity/Q6860580|http://www.wikidata.org/entity/Q4519628|http://www.wikidata.org/entity/Q4516120|http://www.wikidata.org/entity/Q4248489|http://www.wikidata.org/entity/Q2622206|http://www.wikidata.org/entity/Q447069"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q1919632"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2015 anthology film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28179983|http://www.wikidata.org/entity/Q1754271"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15985067"}, "Title": {"type": "literal", "value": "Men, Women & Children"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q314502"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5389127|http://www.wikidata.org/entity/Q314502"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168724|http://www.wikidata.org/entity/Q150482|http://www.wikidata.org/entity/Q132952|http://www.wikidata.org/entity/Q350208|http://www.wikidata.org/entity/Q236956|http://www.wikidata.org/entity/Q236189|http://www.wikidata.org/entity/Q172044|http://www.wikidata.org/entity/Q64560|http://www.wikidata.org/entity/Q19877770|http://www.wikidata.org/entity/Q19832503|http://www.wikidata.org/entity/Q15837493|http://www.wikidata.org/entity/Q13426679|http://www.wikidata.org/entity/Q6162394|http://www.wikidata.org/entity/Q519784|http://www.wikidata.org/entity/Q432385|http://www.wikidata.org/entity/Q356541"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "2014 film by Jason Reitman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q159846"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1747296"}, "Title": {"type": "literal", "value": "More American Graffiti"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q684771"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1383657|http://www.wikidata.org/entity/Q684771|http://www.wikidata.org/entity/Q133631|http://www.wikidata.org/entity/Q38222"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3335570|http://www.wikidata.org/entity/Q3246911|http://www.wikidata.org/entity/Q2060901|http://www.wikidata.org/entity/Q1319770|http://www.wikidata.org/entity/Q869427|http://www.wikidata.org/entity/Q730100|http://www.wikidata.org/entity/Q728617|http://www.wikidata.org/entity/Q466409|http://www.wikidata.org/entity/Q452475|http://www.wikidata.org/entity/Q448688|http://www.wikidata.org/entity/Q362559|http://www.wikidata.org/entity/Q358421|http://www.wikidata.org/entity/Q266820|http://www.wikidata.org/entity/Q238924|http://www.wikidata.org/entity/Q114179|http://www.wikidata.org/entity/Q109232|http://www.wikidata.org/entity/Q103646|http://www.wikidata.org/entity/Q81328|http://www.wikidata.org/entity/Q40067"}, "Published": {"type": "literal", "value": "1979"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "1979 film by Bill L. Norton"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q242446"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3414809"}, "Title": {"type": "literal", "value": "Qu\u00e9bec-Montr\u00e9al"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3430333"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3531726|http://www.wikidata.org/entity/Q3501635|http://www.wikidata.org/entity/Q3383044|http://www.wikidata.org/entity/Q3369021|http://www.wikidata.org/entity/Q3291851|http://www.wikidata.org/entity/Q2896539|http://www.wikidata.org/entity/Q2371603|http://www.wikidata.org/entity/Q746193|http://www.wikidata.org/entity/Q533225"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Ricardo Trogi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q31837434"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1246111"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1246111"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2017 film directed by Doron Wisotzky"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7548954"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11898462"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q255434"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q33435887|http://www.wikidata.org/entity/Q12036810|http://www.wikidata.org/entity/Q12022294|http://www.wikidata.org/entity/Q11985642|http://www.wikidata.org/entity/Q11985151|http://www.wikidata.org/entity/Q10861574|http://www.wikidata.org/entity/Q7922503|http://www.wikidata.org/entity/Q4806455|http://www.wikidata.org/entity/Q3566396|http://www.wikidata.org/entity/Q741577"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Viktor Tau\u0161"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3079763"}, "Title": {"type": "literal", "value": "Madly in Love"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q561754"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q45769929|http://www.wikidata.org/entity/Q42415373"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Anna Luif"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42947871"}, "Title": {"type": "literal", "value": "Newly Single"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4678850"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4678850"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Adam Christian Clark"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20850854"}, "Title": {"type": "literal", "value": "Miss Sixty"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20172369"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2014 film by Sigrid Hoerner"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15867260"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15055560"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15055560"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "10"}, "Description": {"type": "literal", "value": "2013 film by Gianpiero Alicchio"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1218039"}, "Title": {"type": "literal", "value": "Larger than Life"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3141551"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1395333|http://www.wikidata.org/entity/Q1366460|http://www.wikidata.org/entity/Q456156|http://www.wikidata.org/entity/Q370918|http://www.wikidata.org/entity/Q315083|http://www.wikidata.org/entity/Q204393|http://www.wikidata.org/entity/Q188955|http://www.wikidata.org/entity/Q165283|http://www.wikidata.org/entity/Q40143|http://www.wikidata.org/entity/Q29250"}, "Published": {"type": "literal", "value": "1997|1996"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "1996 film by Howard Franklin"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q179200"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3050651"}, "Title": {"type": "literal", "value": "Elektra Luxx"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3476873"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3476873"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3480359|http://www.wikidata.org/entity/Q1889482|http://www.wikidata.org/entity/Q561324|http://www.wikidata.org/entity/Q457851|http://www.wikidata.org/entity/Q445116|http://www.wikidata.org/entity/Q309835|http://www.wikidata.org/entity/Q298173|http://www.wikidata.org/entity/Q272176|http://www.wikidata.org/entity/Q262278|http://www.wikidata.org/entity/Q261579|http://www.wikidata.org/entity/Q236696|http://www.wikidata.org/entity/Q235072|http://www.wikidata.org/entity/Q229669|http://www.wikidata.org/entity/Q228871|http://www.wikidata.org/entity/Q177311|http://www.wikidata.org/entity/Q80405|http://www.wikidata.org/entity/Q41396"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2010 film by Sebastian Gutierrez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29313"}, "Title": {"type": "literal", "value": "The Watch"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q419466"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3061320|http://www.wikidata.org/entity/Q220308"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q419466|http://www.wikidata.org/entity/Q353978|http://www.wikidata.org/entity/Q314640|http://www.wikidata.org/entity/Q313650|http://www.wikidata.org/entity/Q313388|http://www.wikidata.org/entity/Q236956|http://www.wikidata.org/entity/Q107730|http://www.wikidata.org/entity/Q47100|http://www.wikidata.org/entity/Q28717|http://www.wikidata.org/entity/Q16236368|http://www.wikidata.org/entity/Q6285847|http://www.wikidata.org/entity/Q3808676|http://www.wikidata.org/entity/Q3731797|http://www.wikidata.org/entity/Q1333118|http://www.wikidata.org/entity/Q1319744|http://www.wikidata.org/entity/Q714133|http://www.wikidata.org/entity/Q545634|http://www.wikidata.org/entity/Q461309"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q761469|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2012 science fiction comedy film directed by Akiva Schaffer"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434841"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20745334"}, "Title": {"type": "literal", "value": "Regular Show: The Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q918083"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "70"}, "Description": {"type": "literal", "value": "2015 American animated film directed by J.G. Quintel"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19826602"}, "Title": {"type": "literal", "value": "C\u00f3mo sobrevivir a una despedida"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30900879"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16298722|http://www.wikidata.org/entity/Q3321329|http://www.wikidata.org/entity/Q2632981|http://www.wikidata.org/entity/Q219878"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Manuela Burl\u00f3 Moreno"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5868848"}, "Title": {"type": "literal", "value": "Fray D\u00f3lar"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1410660"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21451841|http://www.wikidata.org/entity/Q7918859|http://www.wikidata.org/entity/Q6108014|http://www.wikidata.org/entity/Q1764339|http://www.wikidata.org/entity/Q235398"}, "Published": {"type": "literal", "value": "1970"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "1970 film by Ra\u00fal Pe\u00f1a"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21680742"}, "Title": {"type": "literal", "value": "Das Flo\u00df!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23197743"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15224603"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Julia C. Kaiser"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1385258"}, "Title": {"type": "literal", "value": "\u0420\u0443\u0441\u0430\u043b\u043a\u0430"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4289477"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4289477"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4519628"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Anna Melikian"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11682483"}, "Title": {"type": "literal", "value": "La Cage Dor\u00e9e"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3446459"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3446459|http://www.wikidata.org/entity/Q3163696|http://www.wikidata.org/entity/Q139735"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3009779|http://www.wikidata.org/entity/Q2956299|http://www.wikidata.org/entity/Q2883915|http://www.wikidata.org/entity/Q1775644|http://www.wikidata.org/entity/Q1232804|http://www.wikidata.org/entity/Q595946|http://www.wikidata.org/entity/Q469208|http://www.wikidata.org/entity/Q440305|http://www.wikidata.org/entity/Q289748|http://www.wikidata.org/entity/Q218165|http://www.wikidata.org/entity/Q188432|http://www.wikidata.org/entity/Q18744719|http://www.wikidata.org/entity/Q16526117|http://www.wikidata.org/entity/Q10326114|http://www.wikidata.org/entity/Q5265033|http://www.wikidata.org/entity/Q3446459|http://www.wikidata.org/entity/Q3440076|http://www.wikidata.org/entity/Q3368997|http://www.wikidata.org/entity/Q3261799|http://www.wikidata.org/entity/Q3217601|http://www.wikidata.org/entity/Q3186054"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2013 film by Ruben Alves"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1544011|http://www.wikidata.org/entity/Q2412906|http://www.wikidata.org/entity/Q2595367|http://www.wikidata.org/entity/Q2663746"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q784284"}, "Title": {"type": "literal", "value": "Virgil"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q989586"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q989586"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 French film directed by Mabrouk El Mechri"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7045304"}, "Title": {"type": "literal", "value": "Noah's Arc: Jumping the Broom"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7147898"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7356876|http://www.wikidata.org/entity/Q6179923|http://www.wikidata.org/entity/Q5300924|http://www.wikidata.org/entity/Q5110244|http://www.wikidata.org/entity/Q934999"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2008 film by Patrik-Ian Polk"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q32362276"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4301044"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4301044"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16272350|http://www.wikidata.org/entity/Q6860580|http://www.wikidata.org/entity/Q4396438|http://www.wikidata.org/entity/Q4203655|http://www.wikidata.org/entity/Q4107927|http://www.wikidata.org/entity/Q2299195|http://www.wikidata.org/entity/Q473580|http://www.wikidata.org/entity/Q442830|http://www.wikidata.org/entity/Q167243"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Aleksandr Molochnikov"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5887032"}, "Title": {"type": "literal", "value": "Holyman Undercover"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2253352"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q262738|http://www.wikidata.org/entity/Q3776459|http://www.wikidata.org/entity/Q2253352|http://www.wikidata.org/entity/Q1101612|http://www.wikidata.org/entity/Q449521|http://www.wikidata.org/entity/Q434707|http://www.wikidata.org/entity/Q293042|http://www.wikidata.org/entity/Q286642"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2010 film by David A. R. White"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7261086"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15641052"}, "Title": {"type": "literal", "value": "Facet"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24845007"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11737014"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1150515"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15073893"}, "Title": {"type": "literal", "value": "Feuchtgebiete"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1177226"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1177226"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17537213|http://www.wikidata.org/entity/Q14906908|http://www.wikidata.org/entity/Q1085410|http://www.wikidata.org/entity/Q109492|http://www.wikidata.org/entity/Q101149|http://www.wikidata.org/entity/Q91742|http://www.wikidata.org/entity/Q65511"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "2013 film directed by David Wnendt"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10355917"}, "Title": {"type": "literal", "value": "Quarta B"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10325104"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2005 film by Marcelo Galv\u00e3o"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19473346"}, "Title": {"type": "literal", "value": "Bana Masal Anlatma"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6068775"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6068775"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6030798|http://www.wikidata.org/entity/Q5385183|http://www.wikidata.org/entity/Q1264350|http://www.wikidata.org/entity/Q735511|http://www.wikidata.org/entity/Q6220872|http://www.wikidata.org/entity/Q6100684|http://www.wikidata.org/entity/Q6093188|http://www.wikidata.org/entity/Q6086507|http://www.wikidata.org/entity/Q6038823"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Burak Aksak"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2579741"}, "Title": {"type": "literal", "value": "10 Years"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6147125"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6147125"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q454494|http://www.wikidata.org/entity/Q360426|http://www.wikidata.org/entity/Q336788|http://www.wikidata.org/entity/Q313039|http://www.wikidata.org/entity/Q302930|http://www.wikidata.org/entity/Q298672|http://www.wikidata.org/entity/Q233237|http://www.wikidata.org/entity/Q232708|http://www.wikidata.org/entity/Q231249|http://www.wikidata.org/entity/Q228692|http://www.wikidata.org/entity/Q212064|http://www.wikidata.org/entity/Q210547|http://www.wikidata.org/entity/Q1334777|http://www.wikidata.org/entity/Q723067|http://www.wikidata.org/entity/Q528126|http://www.wikidata.org/entity/Q511554|http://www.wikidata.org/entity/Q503706|http://www.wikidata.org/entity/Q460563"}, "Published": {"type": "literal", "value": "2015|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2011 film by Jamie Linden"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17300077"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28495104"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2874774"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q462376"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Axelle Ropert"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q9369567"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9138174"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9138174"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Abelard Giza"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4818963"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4802465"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q707381"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2010 film by Arvin Chen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28497075"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3423028"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3501866"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3423028"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2017 film by Reem Kherici"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16662670"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20161473"}, "Title": {"type": "literal", "value": "Zum Teufel mit der Wahrheit"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16891732"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60056788"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2015 film by Granz Henman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19601592"}, "Title": {"type": "literal", "value": "Ma che bella sorpresa"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3610041"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1009050|http://www.wikidata.org/entity/Q239002|http://www.wikidata.org/entity/Q4007701|http://www.wikidata.org/entity/Q3757463|http://www.wikidata.org/entity/Q3750262|http://www.wikidata.org/entity/Q3667463|http://www.wikidata.org/entity/Q3617651|http://www.wikidata.org/entity/Q1179412"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2015 film by Alessandro Genovesi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3304113|http://www.wikidata.org/entity/Q3683611"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17634960"}, "Title": {"type": "literal", "value": "May in the Summer"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5091954"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q315763|http://www.wikidata.org/entity/Q311165|http://www.wikidata.org/entity/Q177993|http://www.wikidata.org/entity/Q5091954|http://www.wikidata.org/entity/Q466051"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2013 film directed by Cherien Dabis"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q303678"}, "Title": {"type": "literal", "value": "Alvin and the Chipmunks: Chipwrecked"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2507259"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1176607|http://www.wikidata.org/entity/Q16643813|http://www.wikidata.org/entity/Q3161959"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q612512|http://www.wikidata.org/entity/Q508280|http://www.wikidata.org/entity/Q362332|http://www.wikidata.org/entity/Q313501|http://www.wikidata.org/entity/Q298672|http://www.wikidata.org/entity/Q230203|http://www.wikidata.org/entity/Q191842|http://www.wikidata.org/entity/Q188280|http://www.wikidata.org/entity/Q4960|http://www.wikidata.org/entity/Q4491|http://www.wikidata.org/entity/Q16208587|http://www.wikidata.org/entity/Q15070009|http://www.wikidata.org/entity/Q14174854|http://www.wikidata.org/entity/Q1189585|http://www.wikidata.org/entity/Q744166"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2011 film by Mike Mitchell"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434841|http://www.wikidata.org/entity/Q466459|http://www.wikidata.org/entity/Q4841523|http://www.wikidata.org/entity/Q3041294"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55378466"}, "Title": {"type": "literal", "value": "Feierabendbier"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61641287"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61641287"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50073235|http://www.wikidata.org/entity/Q41962363|http://www.wikidata.org/entity/Q19287013|http://www.wikidata.org/entity/Q409563|http://www.wikidata.org/entity/Q109673|http://www.wikidata.org/entity/Q89703|http://www.wikidata.org/entity/Q76149|http://www.wikidata.org/entity/Q70808|http://www.wikidata.org/entity/Q26734"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Ben Brummer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4181603"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13218078"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4290811"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4189669"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film directed by Marija Makhanko"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1616729"}, "Title": {"type": "literal", "value": "Love Liza"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2438469"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1538140"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16657861|http://www.wikidata.org/entity/Q15489819|http://www.wikidata.org/entity/Q3182044|http://www.wikidata.org/entity/Q3157229|http://www.wikidata.org/entity/Q1676307|http://www.wikidata.org/entity/Q708059|http://www.wikidata.org/entity/Q544465|http://www.wikidata.org/entity/Q376131|http://www.wikidata.org/entity/Q291628|http://www.wikidata.org/entity/Q264996|http://www.wikidata.org/entity/Q198684|http://www.wikidata.org/entity/Q180560"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Todd Louiso"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q544879"}, "Title": {"type": "literal", "value": "Haggard: The Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q297173"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q297173"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q606523|http://www.wikidata.org/entity/Q590152|http://www.wikidata.org/entity/Q509441|http://www.wikidata.org/entity/Q316036|http://www.wikidata.org/entity/Q297173|http://www.wikidata.org/entity/Q295020|http://www.wikidata.org/entity/Q25378|http://www.wikidata.org/entity/Q3239121|http://www.wikidata.org/entity/Q919042|http://www.wikidata.org/entity/Q711024"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2003 film by Bam Margera"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16495484"}, "Title": {"type": "literal", "value": "Avassaladoras"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10324869"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2002 film directed by Mara Mour\u00e3o"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q465739"}, "Title": {"type": "literal", "value": "Cyrus"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6166571|http://www.wikidata.org/entity/Q3273787"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3273787|http://www.wikidata.org/entity/Q6166571"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q313388|http://www.wikidata.org/entity/Q230378|http://www.wikidata.org/entity/Q223110|http://www.wikidata.org/entity/Q191828|http://www.wikidata.org/entity/Q23883683|http://www.wikidata.org/entity/Q6377395|http://www.wikidata.org/entity/Q5405327|http://www.wikidata.org/entity/Q5338029|http://www.wikidata.org/entity/Q2278533|http://www.wikidata.org/entity/Q788586"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2010 film by Mark Duplass, Jay Duplass"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3476213"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q781534"}, "Title": {"type": "literal", "value": "King of California"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q704287"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q704287"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7001282|http://www.wikidata.org/entity/Q3103867|http://www.wikidata.org/entity/Q1726175|http://www.wikidata.org/entity/Q233404|http://www.wikidata.org/entity/Q229230|http://www.wikidata.org/entity/Q189992|http://www.wikidata.org/entity/Q119798|http://www.wikidata.org/entity/Q63304"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22981906|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2007 film by Mike Cahill"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3879177|http://www.wikidata.org/entity/Q11882864"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3958739"}, "Title": {"type": "literal", "value": "Sgt. Kabukiman N.Y.P.D."}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q944978|http://www.wikidata.org/entity/Q183347"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q183347"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3901579"}, "Published": {"type": "literal", "value": "1991"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1535153|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "1991 film by Michael Herz, Lloyd Kaufman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q640786"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3632934"}, "Title": {"type": "literal", "value": "Bagnomaria"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3765649"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3765649|http://www.wikidata.org/entity/Q1357559|http://www.wikidata.org/entity/Q1134748"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13460338|http://www.wikidata.org/entity/Q13460329|http://www.wikidata.org/entity/Q4002860|http://www.wikidata.org/entity/Q3903885|http://www.wikidata.org/entity/Q3813936|http://www.wikidata.org/entity/Q3765649|http://www.wikidata.org/entity/Q3763387|http://www.wikidata.org/entity/Q3615563|http://www.wikidata.org/entity/Q3611085|http://www.wikidata.org/entity/Q1038920|http://www.wikidata.org/entity/Q356654"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "1999 film by Giorgio Panariello"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3664077"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10518419"}, "Title": {"type": "literal", "value": "Hassel \u2013 Privatspanarna"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6000280"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6000280|http://www.wikidata.org/entity/Q327838"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5743928|http://www.wikidata.org/entity/Q5734874|http://www.wikidata.org/entity/Q5556993|http://www.wikidata.org/entity/Q3124558|http://www.wikidata.org/entity/Q283133|http://www.wikidata.org/entity/Q43326"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by M\u00e5ns M\u00e5nsson"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10410032"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16252753"}, "Title": {"type": "literal", "value": "Lucky Them"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15434666"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4749378|http://www.wikidata.org/entity/Q4069179|http://www.wikidata.org/entity/Q2827706|http://www.wikidata.org/entity/Q1111542|http://www.wikidata.org/entity/Q514020|http://www.wikidata.org/entity/Q420041|http://www.wikidata.org/entity/Q343510|http://www.wikidata.org/entity/Q311615|http://www.wikidata.org/entity/Q229291|http://www.wikidata.org/entity/Q37175"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Megan Griffiths"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q610508"}, "Title": {"type": "literal", "value": "The Lifeguard"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6660324"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6660324"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4717780|http://www.wikidata.org/entity/Q2702964|http://www.wikidata.org/entity/Q1700068|http://www.wikidata.org/entity/Q902656|http://www.wikidata.org/entity/Q716343|http://www.wikidata.org/entity/Q242555|http://www.wikidata.org/entity/Q235219|http://www.wikidata.org/entity/Q178882|http://www.wikidata.org/entity/Q32481"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2013 film by Liz W. Garcia"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42947827"}, "Title": {"type": "literal", "value": "The Beach Bum"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q528949"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q528949"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q726071|http://www.wikidata.org/entity/Q313388|http://www.wikidata.org/entity/Q228638|http://www.wikidata.org/entity/Q188955|http://www.wikidata.org/entity/Q183542|http://www.wikidata.org/entity/Q45229|http://www.wikidata.org/entity/Q6096"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Harmony Korine"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q567633|http://www.wikidata.org/entity/Q17592311"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28497206"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q239897"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q239897"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q310692"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Joann Sfar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q51845269"}, "Title": {"type": "literal", "value": "Matti und Sami und die drei gr\u00f6\u00dften Fehler des Universums"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2337900"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Stefan Westerwelle"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2925981"}, "Title": {"type": "literal", "value": "Broken English"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2381374"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2381374"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q289068|http://www.wikidata.org/entity/Q232965|http://www.wikidata.org/entity/Q229258|http://www.wikidata.org/entity/Q204586|http://www.wikidata.org/entity/Q158250|http://www.wikidata.org/entity/Q41583866|http://www.wikidata.org/entity/Q3571886|http://www.wikidata.org/entity/Q3524303|http://www.wikidata.org/entity/Q3168686|http://www.wikidata.org/entity/Q2454742|http://www.wikidata.org/entity/Q1339485|http://www.wikidata.org/entity/Q1281723|http://www.wikidata.org/entity/Q1026018|http://www.wikidata.org/entity/Q788586|http://www.wikidata.org/entity/Q719556|http://www.wikidata.org/entity/Q713193|http://www.wikidata.org/entity/Q641352|http://www.wikidata.org/entity/Q439105|http://www.wikidata.org/entity/Q316596"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Zoe Cassavetes"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12144078"}, "Title": {"type": "literal", "value": "La Cr\u00e8me de la cr\u00e8me"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3196691"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3196691"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16526117|http://www.wikidata.org/entity/Q15973762|http://www.wikidata.org/entity/Q15845538|http://www.wikidata.org/entity/Q15069947|http://www.wikidata.org/entity/Q3570835|http://www.wikidata.org/entity/Q3382828|http://www.wikidata.org/entity/Q3325897|http://www.wikidata.org/entity/Q3183342|http://www.wikidata.org/entity/Q3164195|http://www.wikidata.org/entity/Q3098765|http://www.wikidata.org/entity/Q2833272|http://www.wikidata.org/entity/Q959087|http://www.wikidata.org/entity/Q273342"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 French comedy-drama film directed by Kim Chapiron"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3568109"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2179018"}, "Title": {"type": "literal", "value": "R\u00e9siste \u2013 Aufstand der Praktikanten"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1702949"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1702949"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2009 film by Jonas Grosch"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4461441"}, "Title": {"type": "literal", "value": "\u0422\u043e\u0442 \u0435\u0449\u0451 \u041a\u0430\u0440\u043b\u043e\u0441\u043e\u043d!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4065391"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4065391"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4333716|http://www.wikidata.org/entity/Q4107927|http://www.wikidata.org/entity/Q2029106|http://www.wikidata.org/entity/Q1385036|http://www.wikidata.org/entity/Q1074254|http://www.wikidata.org/entity/Q466139"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q132311"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2012 film by Sarik Andreasyan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4038074"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q908556"}, "Title": {"type": "literal", "value": "Horrible Bosses"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q524897"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6832534|http://www.wikidata.org/entity/Q6273224|http://www.wikidata.org/entity/Q342636"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12200303|http://www.wikidata.org/entity/Q5536595|http://www.wikidata.org/entity/Q3441473|http://www.wikidata.org/entity/Q3304418|http://www.wikidata.org/entity/Q2885767|http://www.wikidata.org/entity/Q936507|http://www.wikidata.org/entity/Q727730|http://www.wikidata.org/entity/Q718078|http://www.wikidata.org/entity/Q524897|http://www.wikidata.org/entity/Q469914|http://www.wikidata.org/entity/Q365915|http://www.wikidata.org/entity/Q342636|http://www.wikidata.org/entity/Q32522|http://www.wikidata.org/entity/Q25144|http://www.wikidata.org/entity/Q14539|http://www.wikidata.org/entity/Q17386547|http://www.wikidata.org/entity/Q295974|http://www.wikidata.org/entity/Q284636|http://www.wikidata.org/entity/Q172035|http://www.wikidata.org/entity/Q171905|http://www.wikidata.org/entity/Q103784|http://www.wikidata.org/entity/Q40470|http://www.wikidata.org/entity/Q40248"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2011 American black comedy film directed by Seth Gordon"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q79202"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60847317"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q451813"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Romane Bohringer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6025860"}, "Title": {"type": "literal", "value": "Muertos de susto"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16302557"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Harold Trompetero"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q303040"}, "Title": {"type": "literal", "value": "American Reunion"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3112667|http://www.wikidata.org/entity/Q950283"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3112667|http://www.wikidata.org/entity/Q950283"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q211082|http://www.wikidata.org/entity/Q199927|http://www.wikidata.org/entity/Q193212|http://www.wikidata.org/entity/Q485310|http://www.wikidata.org/entity/Q471833|http://www.wikidata.org/entity/Q442298|http://www.wikidata.org/entity/Q362236|http://www.wikidata.org/entity/Q352696|http://www.wikidata.org/entity/Q350811|http://www.wikidata.org/entity/Q343453|http://www.wikidata.org/entity/Q314421|http://www.wikidata.org/entity/Q312705|http://www.wikidata.org/entity/Q312129|http://www.wikidata.org/entity/Q269924|http://www.wikidata.org/entity/Q256884|http://www.wikidata.org/entity/Q236472|http://www.wikidata.org/entity/Q234207|http://www.wikidata.org/entity/Q232851|http://www.wikidata.org/entity/Q230960|http://www.wikidata.org/entity/Q230278|http://www.wikidata.org/entity/Q228882|http://www.wikidata.org/entity/Q223303|http://www.wikidata.org/entity/Q2483172|http://www.wikidata.org/entity/Q1139296|http://www.wikidata.org/entity/Q973437|http://www.wikidata.org/entity/Q900426|http://www.wikidata.org/entity/Q34219060|http://www.wikidata.org/entity/Q16149506"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "113"}, "Description": {"type": "literal", "value": "2012 US comedy film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383|http://www.wikidata.org/entity/Q2702789|http://www.wikidata.org/entity/Q8071490"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24287549"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11763135"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Lubomyr Levytskyi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18289415"}, "Title": {"type": "literal", "value": "Ett \u00f6ga r\u00f6tt"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6230804"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16497172"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6179712"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2007 film by Daniel Wallentin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15695586"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3286702"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3440698|http://www.wikidata.org/entity/Q3340672|http://www.wikidata.org/entity/Q3286702"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3501471|http://www.wikidata.org/entity/Q3440698|http://www.wikidata.org/entity/Q3379789|http://www.wikidata.org/entity/Q3369121|http://www.wikidata.org/entity/Q3367364|http://www.wikidata.org/entity/Q3286702|http://www.wikidata.org/entity/Q3165518|http://www.wikidata.org/entity/Q2834044|http://www.wikidata.org/entity/Q434051|http://www.wikidata.org/entity/Q298173"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Manu Payet"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3264200"}, "Title": {"type": "literal", "value": "The Love Punch"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q595112"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q595112"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5365035|http://www.wikidata.org/entity/Q3554532|http://www.wikidata.org/entity/Q3350901|http://www.wikidata.org/entity/Q3219319|http://www.wikidata.org/entity/Q3166616|http://www.wikidata.org/entity/Q2460289|http://www.wikidata.org/entity/Q1325733|http://www.wikidata.org/entity/Q515374|http://www.wikidata.org/entity/Q467502|http://www.wikidata.org/entity/Q434523|http://www.wikidata.org/entity/Q287824|http://www.wikidata.org/entity/Q285419|http://www.wikidata.org/entity/Q269873|http://www.wikidata.org/entity/Q168724|http://www.wikidata.org/entity/Q117300|http://www.wikidata.org/entity/Q81520"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2013 film by Joel Hopkins"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3285728"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3560613"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 television film directed by Julia Ducournau and Virgile Bramly"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3204319"}, "Title": {"type": "literal", "value": "A Nyomoz\u00f3"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1010438"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1010438"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24279346|http://www.wikidata.org/entity/Q22105136|http://www.wikidata.org/entity/Q21752620|http://www.wikidata.org/entity/Q18961112|http://www.wikidata.org/entity/Q6468610|http://www.wikidata.org/entity/Q1462078|http://www.wikidata.org/entity/Q1318134|http://www.wikidata.org/entity/Q1288631|http://www.wikidata.org/entity/Q1248715|http://www.wikidata.org/entity/Q1107287|http://www.wikidata.org/entity/Q1105174|http://www.wikidata.org/entity/Q1101919|http://www.wikidata.org/entity/Q1002358|http://www.wikidata.org/entity/Q804373|http://www.wikidata.org/entity/Q769509"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Attila Gigor"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3213713"}, "Title": {"type": "literal", "value": "La Vie secr\u00e8te des gens heureux"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7630008"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3105869|http://www.wikidata.org/entity/Q2514109"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by St\u00e9phane Lapointe"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3230389"}, "Title": {"type": "literal", "value": "Les Adopt\u00e9s"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q234581"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q234581"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1647279|http://www.wikidata.org/entity/Q967764|http://www.wikidata.org/entity/Q759001|http://www.wikidata.org/entity/Q511848|http://www.wikidata.org/entity/Q234581"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by M\u00e9lanie Laurent"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60848523"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18744856"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Anthony Marciano"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27442159"}, "Title": {"type": "literal", "value": "Schwester Wei\u00df"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1189562"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1189562"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q58435299|http://www.wikidata.org/entity/Q58431245|http://www.wikidata.org/entity/Q23061734|http://www.wikidata.org/entity/Q4263266|http://www.wikidata.org/entity/Q1570556|http://www.wikidata.org/entity/Q1379064|http://www.wikidata.org/entity/Q813263|http://www.wikidata.org/entity/Q91772"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Dennis Todorovi\u0107"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4830743"}, "Title": {"type": "literal", "value": "Ay Lav Yu"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6090416"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6090416"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8189010|http://www.wikidata.org/entity/Q1575584|http://www.wikidata.org/entity/Q318685|http://www.wikidata.org/entity/Q234101"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Sermiyan Midyat"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6017691"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2641549"}, "Title": {"type": "literal", "value": "Alex und der L\u00f6we"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2601941"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q101303"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q110086|http://www.wikidata.org/entity/Q101303|http://www.wikidata.org/entity/Q63688"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2010 film by Yuri G\u00e1rate"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18290460"}, "Title": {"type": "literal", "value": "Hall\u00e5hall\u00e5"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1809801"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1809801"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22932291|http://www.wikidata.org/entity/Q15918074|http://www.wikidata.org/entity/Q5940845|http://www.wikidata.org/entity/Q4946214|http://www.wikidata.org/entity/Q4410921|http://www.wikidata.org/entity/Q440773|http://www.wikidata.org/entity/Q201685"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2014 film by Maria Blom"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5914115"}, "Title": {"type": "literal", "value": "Ilusiones \u00f3pticas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5791600"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5791600|http://www.wikidata.org/entity/Q4523200"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20015770|http://www.wikidata.org/entity/Q20011239|http://www.wikidata.org/entity/Q5791600|http://www.wikidata.org/entity/Q260909"}, "Published": {"type": "literal", "value": "2010|2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Cristi\u00e1n Jim\u00e9nez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3894723"}, "Title": {"type": "literal", "value": "Paper Soldiers"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q344384"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q559074"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7090186|http://www.wikidata.org/entity/Q618352|http://www.wikidata.org/entity/Q516716|http://www.wikidata.org/entity/Q454328|http://www.wikidata.org/entity/Q342252|http://www.wikidata.org/entity/Q129747|http://www.wikidata.org/entity/Q62766"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5897543|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2002 film by Damon Dash"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3401848"}, "Title": {"type": "literal", "value": "Premium"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7171893"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7171893"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q190162|http://www.wikidata.org/entity/Q152542|http://www.wikidata.org/entity/Q943589|http://www.wikidata.org/entity/Q476760|http://www.wikidata.org/entity/Q463536|http://www.wikidata.org/entity/Q269485"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Pete Chatmon"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q624124"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18223455"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4132779|http://www.wikidata.org/entity/Q490402|http://www.wikidata.org/entity/Q485773|http://www.wikidata.org/entity/Q483517"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q1339864|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Lee Hae-jun"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55818686"}, "Title": {"type": "literal", "value": "The Breaker Upperers"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55070734|http://www.wikidata.org/entity/Q6726935"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55070734|http://www.wikidata.org/entity/Q6726935"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q133112"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2018 New Zealand film by Madeleine Sami and Jackie van Beek"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4160180"}, "Title": {"type": "literal", "value": "\u0414\u0436\u0435\u043d\u0442\u043b\u044c\u043c\u0435\u043d\u044b, \u0443\u0434\u0430\u0447\u0438!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4222061|http://www.wikidata.org/entity/Q4077720"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4422831"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1385036|http://www.wikidata.org/entity/Q473580"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1200678|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2012 film by Aleksandr Baranov"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2892410"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17112933"}, "Title": {"type": "literal", "value": "Scouts vs. Zombies"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3675834"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24988951|http://www.wikidata.org/entity/Q3675834"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22958132|http://www.wikidata.org/entity/Q20819867|http://www.wikidata.org/entity/Q13643654|http://www.wikidata.org/entity/Q7822415|http://www.wikidata.org/entity/Q6181315|http://www.wikidata.org/entity/Q4924324|http://www.wikidata.org/entity/Q918917|http://www.wikidata.org/entity/Q901541|http://www.wikidata.org/entity/Q760896|http://www.wikidata.org/entity/Q513169|http://www.wikidata.org/entity/Q230131|http://www.wikidata.org/entity/Q164328|http://www.wikidata.org/entity/Q128828"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1747837|http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2015 film by Christopher B. Landon"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q159846"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56261070"}, "Title": {"type": "literal", "value": "Game Over Club"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19618406"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19618406"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1293524|http://www.wikidata.org/entity/Q1122946|http://www.wikidata.org/entity/Q1005938|http://www.wikidata.org/entity/Q781617|http://www.wikidata.org/entity/Q280007|http://www.wikidata.org/entity/Q28736479|http://www.wikidata.org/entity/Q19598315|http://www.wikidata.org/entity/Q16522080"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film in development in 2018 directed by D\u00e1vid G\u00e9czy"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60177501"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3084424"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q983159"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Fran\u00e7ois Desagnat"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3791170"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3938128"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3938128"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3956224|http://www.wikidata.org/entity/Q3701809|http://www.wikidata.org/entity/Q959138"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2011 film by Roan Johnson"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16586658"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61813629"}, "Title": {"type": "literal", "value": "Rate Your Date"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61989867"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61989867|http://www.wikidata.org/entity/Q59657338"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27947502|http://www.wikidata.org/entity/Q23817046|http://www.wikidata.org/entity/Q21880688|http://www.wikidata.org/entity/Q11912904|http://www.wikidata.org/entity/Q1827705|http://www.wikidata.org/entity/Q1310400|http://www.wikidata.org/entity/Q1254834|http://www.wikidata.org/entity/Q87438"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film by David Dietl"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2413068"}, "Title": {"type": "literal", "value": "The New Tenants"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1689960"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q491314"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3237662|http://www.wikidata.org/entity/Q1334725|http://www.wikidata.org/entity/Q320052"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "12"}, "Description": {"type": "literal", "value": "2009 film by Joachim Back"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60999962"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6512491"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Diogo Morgado"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30880865"}, "Title": {"type": "literal", "value": "I peggiori"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4013079"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4013079"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2017 film by Vincenzo Alfieri"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q126399"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18389602"}, "Title": {"type": "literal", "value": "The Duff"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q653911"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18149711"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24045551|http://www.wikidata.org/entity/Q19787204|http://www.wikidata.org/entity/Q13560463|http://www.wikidata.org/entity/Q7027085|http://www.wikidata.org/entity/Q5108532|http://www.wikidata.org/entity/Q926420|http://www.wikidata.org/entity/Q924104|http://www.wikidata.org/entity/Q440910|http://www.wikidata.org/entity/Q269671|http://www.wikidata.org/entity/Q232307|http://www.wikidata.org/entity/Q229487|http://www.wikidata.org/entity/Q208117"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2015 film by Ari Sandel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q51077958"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q59311592"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2018 film by Alessandro Aronadio"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3804257"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18152484"}, "Title": {"type": "literal", "value": "Hello, My Name Is Doris"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2092899"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2092899"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17305622|http://www.wikidata.org/entity/Q16223299|http://www.wikidata.org/entity/Q1150569|http://www.wikidata.org/entity/Q515717|http://www.wikidata.org/entity/Q508404|http://www.wikidata.org/entity/Q464320|http://www.wikidata.org/entity/Q309900|http://www.wikidata.org/entity/Q264306|http://www.wikidata.org/entity/Q255651|http://www.wikidata.org/entity/Q234207|http://www.wikidata.org/entity/Q187033|http://www.wikidata.org/entity/Q165296|http://www.wikidata.org/entity/Q60802"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2015 film by Michael Showalter"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q481606"}, "Title": {"type": "literal", "value": "Wickie auf gro\u00dfer Fahrt"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q104373"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q723525|http://www.wikidata.org/entity/Q104373"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q45338|http://www.wikidata.org/entity/Q1933281|http://www.wikidata.org/entity/Q1921390|http://www.wikidata.org/entity/Q1078759|http://www.wikidata.org/entity/Q102709|http://www.wikidata.org/entity/Q98299|http://www.wikidata.org/entity/Q95311|http://www.wikidata.org/entity/Q89284|http://www.wikidata.org/entity/Q77991|http://www.wikidata.org/entity/Q76644"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2011 German 3D adventure film directed by Christian Ditter"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4445945"}, "Title": {"type": "literal", "value": "\u0421\u0443\u043c\u0430\u0441\u0448\u0435\u0434\u0448\u0430\u044f \u043f\u043e\u043c\u043e\u0449\u044c|Sumasshedshaya Pomoshch"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4231887"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4231887"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4539768|http://www.wikidata.org/entity/Q4513343|http://www.wikidata.org/entity/Q4297949|http://www.wikidata.org/entity/Q4251347|http://www.wikidata.org/entity/Q4175516|http://www.wikidata.org/entity/Q4150268|http://www.wikidata.org/entity/Q4099923|http://www.wikidata.org/entity/Q3955911"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Boris Khlebnikov"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21186122"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1039164"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2015 film by Sergio Assisi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17128232"}, "Title": {"type": "literal", "value": "We Are the Freaks"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6317549"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6317549"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6834458"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Justin Edgar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18338805"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11327551"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Bakarhythm"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56348078"}, "Title": {"type": "literal", "value": "\u305f\u307e\u3048\u306e\u30b9\u30fc\u30d1\u30fc\u306f\u3089\u308f\u305f"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55447315"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55447315"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56349566|http://www.wikidata.org/entity/Q56253699|http://www.wikidata.org/entity/Q28692831|http://www.wikidata.org/entity/Q11628977|http://www.wikidata.org/entity/Q11551681|http://www.wikidata.org/entity/Q11523498|http://www.wikidata.org/entity/Q11310149|http://www.wikidata.org/entity/Q10867324|http://www.wikidata.org/entity/Q4830950"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "46"}, "Description": {"type": "literal", "value": "2018 film short film directed by Shinichiro Ueda"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11281134"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20747821"}, "Title": {"type": "literal", "value": "Io e lei"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3847526"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3804677"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q201617"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2015 film by Maria Sole Tognazzi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q54957850"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30302507"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q47464786|http://www.wikidata.org/entity/Q42199740|http://www.wikidata.org/entity/Q19678178|http://www.wikidata.org/entity/Q19364588|http://www.wikidata.org/entity/Q17517127|http://www.wikidata.org/entity/Q8022982|http://www.wikidata.org/entity/Q54957886|http://www.wikidata.org/entity/Q54957869|http://www.wikidata.org/entity/Q54957863|http://www.wikidata.org/entity/Q54855137"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q188473"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 Nepalese film directed by Sudarshan Thapa"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11435883"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11520663"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Ry\u016bichi Honda"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20639726"}, "Title": {"type": "literal", "value": "Le badanti"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q63396784"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2015 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28671047"}, "Title": {"type": "literal", "value": "La mia famiglia a soqquadro"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28857109"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2017 film by Max Nardari"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6502164"}, "Title": {"type": "literal", "value": "Lava"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6212732"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6212732"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6136182|http://www.wikidata.org/entity/Q3244119|http://www.wikidata.org/entity/Q1217820|http://www.wikidata.org/entity/Q615309"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 film by Joe Tucker"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27888455"}, "Title": {"type": "literal", "value": "Chocolate City : Vegas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6169127"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6169127"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q220396"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Jean-Claude La Marre"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q745690"}, "Title": {"type": "literal", "value": "Les Beaux Gosses"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3430005"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15170433|http://www.wikidata.org/entity/Q3430005"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q440609|http://www.wikidata.org/entity/Q241043|http://www.wikidata.org/entity/Q230710|http://www.wikidata.org/entity/Q230659|http://www.wikidata.org/entity/Q126633|http://www.wikidata.org/entity/Q16832022|http://www.wikidata.org/entity/Q3559693|http://www.wikidata.org/entity/Q3430005|http://www.wikidata.org/entity/Q3340587|http://www.wikidata.org/entity/Q3086913|http://www.wikidata.org/entity/Q2940609|http://www.wikidata.org/entity/Q2852965|http://www.wikidata.org/entity/Q721397"}, "Published": {"type": "literal", "value": "2010|2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2009 film by Riad Sattouf"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1544011"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5965935"}, "Title": {"type": "literal", "value": "La caja"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2918319"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9027916|http://www.wikidata.org/entity/Q5830112|http://www.wikidata.org/entity/Q5613853|http://www.wikidata.org/entity/Q5483802|http://www.wikidata.org/entity/Q5265033|http://www.wikidata.org/entity/Q4255126|http://www.wikidata.org/entity/Q2388148|http://www.wikidata.org/entity/Q2356576|http://www.wikidata.org/entity/Q510950|http://www.wikidata.org/entity/Q106791"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192881"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Juan Carlos Falc\u00f3n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30139493"}, "Title": {"type": "literal", "value": "Le sens de la f\u00eate"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q74428|http://www.wikidata.org/entity/Q2778106"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2778106|http://www.wikidata.org/entity/Q74428"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3559719|http://www.wikidata.org/entity/Q3505931|http://www.wikidata.org/entity/Q3470502|http://www.wikidata.org/entity/Q3187987|http://www.wikidata.org/entity/Q3144876|http://www.wikidata.org/entity/Q3118434|http://www.wikidata.org/entity/Q1758568|http://www.wikidata.org/entity/Q981203|http://www.wikidata.org/entity/Q949391|http://www.wikidata.org/entity/Q552639|http://www.wikidata.org/entity/Q22248002|http://www.wikidata.org/entity/Q20723802|http://www.wikidata.org/entity/Q18179055|http://www.wikidata.org/entity/Q11282528|http://www.wikidata.org/entity/Q3568783"}, "Published": {"type": "literal", "value": "2017|2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "2017 film by Olivier Nakache and \u00c9ric Toledano"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q553901"}, "Title": {"type": "literal", "value": "\u0e25\u0e38\u0e07\u0e1a\u0e38\u0e0d\u0e21\u0e35\u0e23\u0e30\u0e25\u0e36\u0e01\u0e0a\u0e32\u0e15\u0e34|Lung Bunmi Raluek Chat"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q445198"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q445198"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23773991"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "113"}, "Description": {"type": "literal", "value": "2010 film by Apichatpong Weerasethakul"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1257200"}, "Title": {"type": "literal", "value": "Three for the Road"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q684771"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3528671|http://www.wikidata.org/entity/Q1246867"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1359938|http://www.wikidata.org/entity/Q827443|http://www.wikidata.org/entity/Q778812|http://www.wikidata.org/entity/Q498263|http://www.wikidata.org/entity/Q493077|http://www.wikidata.org/entity/Q448579|http://www.wikidata.org/entity/Q440617|http://www.wikidata.org/entity/Q266391|http://www.wikidata.org/entity/Q103939|http://www.wikidata.org/entity/Q2905749"}, "Published": {"type": "literal", "value": "1987"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "1987 film by Bill L. Norton"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18334696"}, "Title": {"type": "literal", "value": "Villa Thalassa \u2013 helgen vecka 48"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16633203"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6041763"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Robert Lillhonga"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18703102"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5642632"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1321777|http://www.wikidata.org/entity/Q1136373|http://www.wikidata.org/entity/Q1078548|http://www.wikidata.org/entity/Q872110"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Takeshi Furusawa"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18851368"}, "Title": {"type": "literal", "value": "About a Girl"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27586818"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27586818"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18630023|http://www.wikidata.org/entity/Q17353072|http://www.wikidata.org/entity/Q2221251|http://www.wikidata.org/entity/Q1735996|http://www.wikidata.org/entity/Q1683837|http://www.wikidata.org/entity/Q1303948|http://www.wikidata.org/entity/Q1246296|http://www.wikidata.org/entity/Q1148701|http://www.wikidata.org/entity/Q461732|http://www.wikidata.org/entity/Q110988|http://www.wikidata.org/entity/Q107753|http://www.wikidata.org/entity/Q107144|http://www.wikidata.org/entity/Q87333|http://www.wikidata.org/entity/Q62510"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2014 film by Mark Monheim"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16676428"}, "Title": {"type": "literal", "value": "Sequoia"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18664583"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q445697|http://www.wikidata.org/entity/Q319725|http://www.wikidata.org/entity/Q286745|http://www.wikidata.org/entity/Q237115|http://www.wikidata.org/entity/Q236075|http://www.wikidata.org/entity/Q39977|http://www.wikidata.org/entity/Q717951"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Andy Landen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q62165528"}, "Title": {"type": "literal", "value": "Mike & Fred vs the Dead"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28147789"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61067460|http://www.wikidata.org/entity/Q30071045|http://www.wikidata.org/entity/Q28140026|http://www.wikidata.org/entity/Q27656034"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4177577"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2833792"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q593332"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 film by Alexander Kott"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4403233"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3344957"}, "Title": {"type": "literal", "value": "Nous York"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3134600|http://www.wikidata.org/entity/Q541690"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3134600|http://www.wikidata.org/entity/Q541690"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24008552|http://www.wikidata.org/entity/Q17581497|http://www.wikidata.org/entity/Q1273327|http://www.wikidata.org/entity/Q1083729|http://www.wikidata.org/entity/Q541690|http://www.wikidata.org/entity/Q445905|http://www.wikidata.org/entity/Q193458|http://www.wikidata.org/entity/Q3334837|http://www.wikidata.org/entity/Q3295220|http://www.wikidata.org/entity/Q3286702|http://www.wikidata.org/entity/Q2883665|http://www.wikidata.org/entity/Q2671216"}, "Published": {"type": "literal", "value": "2014|2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by G\u00e9raldine Nakache"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55831729"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q57399408"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2018 film by Valerio Attanasio"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4019806"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1017397"}, "Title": {"type": "literal", "value": "Buschpiloten k\u00fcsst man nicht"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1082076"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2011 television film directed by Christian Theede"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7852701"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2857813"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3053437|http://www.wikidata.org/entity/Q560163|http://www.wikidata.org/entity/Q466080"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Anurag Basu"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q57618710"}, "Title": {"type": "literal", "value": "El Rat\u00f3n P\u00e9rez 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q36480689"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q132311"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2008 animated film by Andr\u00e9s G. Schaer"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3392176|http://www.wikidata.org/entity/Q7144163|t1434699621"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18355659"}, "Title": {"type": "literal", "value": "Saving Christmas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16155829"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2014 film by Darren Doane"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1452656"}, "Title": {"type": "literal", "value": "Freddy Got Fingered"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q315826"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3023725|http://www.wikidata.org/entity/Q315826"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15707390|http://www.wikidata.org/entity/Q6379219|http://www.wikidata.org/entity/Q3342656|http://www.wikidata.org/entity/Q1920467|http://www.wikidata.org/entity/Q1275214|http://www.wikidata.org/entity/Q930117|http://www.wikidata.org/entity/Q676094|http://www.wikidata.org/entity/Q376131|http://www.wikidata.org/entity/Q361215|http://www.wikidata.org/entity/Q350811|http://www.wikidata.org/entity/Q315826|http://www.wikidata.org/entity/Q313522|http://www.wikidata.org/entity/Q271440|http://www.wikidata.org/entity/Q169452|http://www.wikidata.org/entity/Q135903"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2001 film by Tom Green"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q466459"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6787823"}, "Title": {"type": "literal", "value": "Matrimonium"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7778251"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7416449"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Michael Akers"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7928497"}, "Title": {"type": "literal", "value": "\u0bb5\u0bbf\u0baf\u0b9f\u0bcd\u0ba8\u0bbe\u0bae\u0bcd \u0b95\u0bbe\u0bb2\u0ba9\u0bbf"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7420144"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5183212"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7932417|http://www.wikidata.org/entity/Q3522069|http://www.wikidata.org/entity/Q1470413|http://www.wikidata.org/entity/Q277665"}, "Published": {"type": "literal", "value": "1994"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1994 film by Santhana Bharathi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q32760029"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1599672"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1599672"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15622307|http://www.wikidata.org/entity/Q1599672|http://www.wikidata.org/entity/Q431362|http://www.wikidata.org/entity/Q233038"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Marianna Palka"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27996422"}, "Title": {"type": "literal", "value": "Ma\u00f1ana"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5611300"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5611300"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1442212"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Manuel Concha"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13012296"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13020286"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13016846"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1015952"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Poj Arnon"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27134690"}, "Title": {"type": "literal", "value": "Volltreffer"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16891732"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2016 film by Granz Henman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q685516"}, "Title": {"type": "literal", "value": "The Game Plan"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q525725"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25080918|http://www.wikidata.org/entity/Q25080651"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q268046|http://www.wikidata.org/entity/Q234633|http://www.wikidata.org/entity/Q229572|http://www.wikidata.org/entity/Q73352|http://www.wikidata.org/entity/Q10738|http://www.wikidata.org/entity/Q11221289|http://www.wikidata.org/entity/Q5362564|http://www.wikidata.org/entity/Q3434248|http://www.wikidata.org/entity/Q2603410|http://www.wikidata.org/entity/Q2040329|http://www.wikidata.org/entity/Q1762270|http://www.wikidata.org/entity/Q1328715|http://www.wikidata.org/entity/Q1278420|http://www.wikidata.org/entity/Q472053|http://www.wikidata.org/entity/Q451551|http://www.wikidata.org/entity/Q272176"}, "Published": {"type": "literal", "value": "2008|2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "2007 film by Andy Fickman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191224|http://www.wikidata.org/entity/Q24806916"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23564823"}, "Title": {"type": "literal", "value": "Mein Schwiegervater, der Stinkstiefel"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2370977"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2015 television film directed by Sven Bohse"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55975737"}, "Title": {"type": "literal", "value": "Sue\u00f1o Florian\u00f3polis"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5673824"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Ana Katz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29962132"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30345590"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 animated cartoon"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4362796"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6943957"}, "Title": {"type": "literal", "value": "Mutiny on the Buses"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5667433"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2471996|http://www.wikidata.org/entity/Q2171085|http://www.wikidata.org/entity/Q2052248|http://www.wikidata.org/entity/Q1914884|http://www.wikidata.org/entity/Q679983|http://www.wikidata.org/entity/Q518175"}, "Published": {"type": "literal", "value": "1972"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1972 film by Harry Booth"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3599231"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3768032|http://www.wikidata.org/entity/Q3837102"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3837102|http://www.wikidata.org/entity/Q3768032|http://www.wikidata.org/entity/Q3615555"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3851381|http://www.wikidata.org/entity/Q3845172|http://www.wikidata.org/entity/Q3763397|http://www.wikidata.org/entity/Q3660524|http://www.wikidata.org/entity/Q3639426|http://www.wikidata.org/entity/Q3615555|http://www.wikidata.org/entity/Q1179560|http://www.wikidata.org/entity/Q4010211|http://www.wikidata.org/entity/Q4002784|http://www.wikidata.org/entity/Q3940278|http://www.wikidata.org/entity/Q3939549|http://www.wikidata.org/entity/Q547406|http://www.wikidata.org/entity/Q278440|http://www.wikidata.org/entity/Q1125124|http://www.wikidata.org/entity/Q706134|http://www.wikidata.org/entity/Q551820"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2001 film by Giovanni Robbiano, Lorenzo Vignolo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7850100"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1279855"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q724787"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Keisuke Yoshida"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17049095"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21066307"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21066307"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Master Anand"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27590249"}, "Title": {"type": "literal", "value": "Prima di luned\u00ec"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23857049"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23857049"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q62566638"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2016 film by Massimo Cappelli"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18709330"}, "Title": {"type": "literal", "value": "El club de los incomprendidos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12385366"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Carlos Sedes"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19579844"}, "Title": {"type": "literal", "value": "36 \u0bb5\u0baf\u0ba4\u0bbf\u0ba9\u0bbf\u0bb2\u0bc7"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13114425"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4934704"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2749279"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "2015 film by Rosshan Andrrews"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22916734"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30077950"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26436296"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25620685"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q54847534|http://www.wikidata.org/entity/Q54847501|http://www.wikidata.org/entity/Q54847497|http://www.wikidata.org/entity/Q54847449|http://www.wikidata.org/entity/Q54847438|http://www.wikidata.org/entity/Q54847387|http://www.wikidata.org/entity/Q54847381|http://www.wikidata.org/entity/Q54847337|http://www.wikidata.org/entity/Q25620685"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 Nepali film by Dipendra K Khanal"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25462762"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12250381"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18572618"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Wael Ehsan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13806537"}, "Title": {"type": "literal", "value": "Inherent Vice"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25132"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25132"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q921518|http://www.wikidata.org/entity/Q726130|http://www.wikidata.org/entity/Q721195|http://www.wikidata.org/entity/Q527771|http://www.wikidata.org/entity/Q466957|http://www.wikidata.org/entity/Q442907|http://www.wikidata.org/entity/Q439972|http://www.wikidata.org/entity/Q382094|http://www.wikidata.org/entity/Q329744|http://www.wikidata.org/entity/Q238712|http://www.wikidata.org/entity/Q236527|http://www.wikidata.org/entity/Q233368|http://www.wikidata.org/entity/Q233061|http://www.wikidata.org/entity/Q231665|http://www.wikidata.org/entity/Q207969|http://www.wikidata.org/entity/Q193668|http://www.wikidata.org/entity/Q185140|http://www.wikidata.org/entity/Q161916|http://www.wikidata.org/entity/Q44063|http://www.wikidata.org/entity/Q41396|http://www.wikidata.org/entity/Q9588|http://www.wikidata.org/entity/Q2094005|http://www.wikidata.org/entity/Q1253621|http://www.wikidata.org/entity/Q19595519|http://www.wikidata.org/entity/Q16226409|http://www.wikidata.org/entity/Q16198576|http://www.wikidata.org/entity/Q15222780|http://www.wikidata.org/entity/Q11305090|http://www.wikidata.org/entity/Q7488848|http://www.wikidata.org/entity/Q6175538|http://www.wikidata.org/entity/Q5372783|http://www.wikidata.org/entity/Q5353301|http://www.wikidata.org/entity/Q4753814|http://www.wikidata.org/entity/Q4749184|http://www.wikidata.org/entity/Q3499302|http://www.wikidata.org/entity/Q2617121"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q959790"}, "Duration": {"type": "literal", "value": "149"}, "Description": {"type": "literal", "value": "2014 American crime comedy-drama film directed by Paul Thomas Anderson"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q974846"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11016687"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12178530"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4164801"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Ahmed El Guindi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23562834"}, "Title": {"type": "literal", "value": "Auf der Suche nach dem G-Punkt"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2277288"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2009 film by Sharon von Wietersheim"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q623336"}, "Title": {"type": "literal", "value": "\u0915\u0941\u091b \u0915\u0941\u091b \u0939\u094b\u0924\u093e \u0939\u0948"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q468442"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q468442"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3785692|http://www.wikidata.org/entity/Q2341578|http://www.wikidata.org/entity/Q2220177|http://www.wikidata.org/entity/Q983571|http://www.wikidata.org/entity/Q560163|http://www.wikidata.org/entity/Q485557|http://www.wikidata.org/entity/Q157803|http://www.wikidata.org/entity/Q147395|http://www.wikidata.org/entity/Q9543|http://www.wikidata.org/entity/Q9535"}, "Published": {"type": "literal", "value": "1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "178"}, "Description": {"type": "literal", "value": "1998 film by Karan Johar"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1207592"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12308214"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12326312"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12326312|http://www.wikidata.org/entity/Q41743395"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4982822|http://www.wikidata.org/entity/Q1797681|http://www.wikidata.org/entity/Q1783323|http://www.wikidata.org/entity/Q1662462|http://www.wikidata.org/entity/Q1045502|http://www.wikidata.org/entity/Q443361|http://www.wikidata.org/entity/Q264696|http://www.wikidata.org/entity/Q12343372|http://www.wikidata.org/entity/Q12339234|http://www.wikidata.org/entity/Q12338548|http://www.wikidata.org/entity/Q12324627|http://www.wikidata.org/entity/Q12321576|http://www.wikidata.org/entity/Q12303108|http://www.wikidata.org/entity/Q6491701|http://www.wikidata.org/entity/Q5251626"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Martin Strange-Hansen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4812357"}, "Title": {"type": "literal", "value": "At Last... Bullamakanka: The Motion Picture"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18686637"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15627760|http://www.wikidata.org/entity/Q7537759|http://www.wikidata.org/entity/Q6204312|http://www.wikidata.org/entity/Q5296695|http://www.wikidata.org/entity/Q1540822|http://www.wikidata.org/entity/Q327356|http://www.wikidata.org/entity/Q22072"}, "Published": {"type": "literal", "value": "1983"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1983 film by Simon Heath"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q74671"}, "Title": {"type": "literal", "value": "Diary of a Wimpy Kid"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q95657"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3176515|http://www.wikidata.org/entity/Q3093508|http://www.wikidata.org/entity/Q311704"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15456399|http://www.wikidata.org/entity/Q7001736|http://www.wikidata.org/entity/Q2834731|http://www.wikidata.org/entity/Q1321271|http://www.wikidata.org/entity/Q1139898|http://www.wikidata.org/entity/Q637063|http://www.wikidata.org/entity/Q552896|http://www.wikidata.org/entity/Q491775|http://www.wikidata.org/entity/Q267400|http://www.wikidata.org/entity/Q234299|http://www.wikidata.org/entity/Q139611|http://www.wikidata.org/entity/Q74689|http://www.wikidata.org/entity/Q74671|http://www.wikidata.org/entity/Q4509"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2010 animated film directed by Thor Freudenthal"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3041294|http://www.wikidata.org/entity/Q5148553"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2421682"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q628832"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q628832"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q485557|http://www.wikidata.org/entity/Q263819|http://www.wikidata.org/entity/Q258820|http://www.wikidata.org/entity/Q252290"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "145"}, "Description": {"type": "literal", "value": "2008 film by Kunal Kohli"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14917495"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17410948"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17410948|http://www.wikidata.org/entity/Q12498974"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6163146|http://www.wikidata.org/entity/Q4199406|http://www.wikidata.org/entity/Q4199390"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Rako Prijanto"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14474500"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18630627"}, "Title": {"type": "literal", "value": "Schweizer Helden"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3376726"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3376726|http://www.wikidata.org/entity/Q1717401"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22312572|http://www.wikidata.org/entity/Q19278419|http://www.wikidata.org/entity/Q2504949|http://www.wikidata.org/entity/Q1745866|http://www.wikidata.org/entity/Q1723059|http://www.wikidata.org/entity/Q1370054|http://www.wikidata.org/entity/Q1361834"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2014 film dircted by Peter Luisi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7548533"}, "Title": {"type": "literal", "value": "Snowboar\u010f\u00e1ci"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12028282"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12028282"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2036667|http://www.wikidata.org/entity/Q1159229|http://www.wikidata.org/entity/Q807860|http://www.wikidata.org/entity/Q17311827|http://www.wikidata.org/entity/Q16938120|http://www.wikidata.org/entity/Q15639976|http://www.wikidata.org/entity/Q12044960|http://www.wikidata.org/entity/Q12044365|http://www.wikidata.org/entity/Q12036616|http://www.wikidata.org/entity/Q12035847|http://www.wikidata.org/entity/Q12025330|http://www.wikidata.org/entity/Q11985809|http://www.wikidata.org/entity/Q11926027|http://www.wikidata.org/entity/Q11881121|http://www.wikidata.org/entity/Q11873890|http://www.wikidata.org/entity/Q11218422|http://www.wikidata.org/entity/Q7922503|http://www.wikidata.org/entity/Q6776420|http://www.wikidata.org/entity/Q3565126|http://www.wikidata.org/entity/Q2569624|http://www.wikidata.org/entity/Q2064639"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1339864|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2004 film by Karel Jan\u00e1k"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16254653"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41794758"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41794758"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6749891"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Abhishek Sharma"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6883285"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8062226"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8062226"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1188856|http://www.wikidata.org/entity/Q271886"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Yuya Ishii"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16249801"}, "Title": {"type": "literal", "value": "Dear Secret Santa"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7177181"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q240541"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 television film directed by Peter Sullivan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q8053079"}, "Title": {"type": "literal", "value": "\u0c0e\u0c35\u0c21\u0c41"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16252723"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7909020"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3765047|http://www.wikidata.org/entity/Q2121695|http://www.wikidata.org/entity/Q642827|http://www.wikidata.org/entity/Q331155|http://www.wikidata.org/entity/Q224962|http://www.wikidata.org/entity/Q7283589"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "165"}, "Description": {"type": "literal", "value": "2014 Telugu film directed by Vamsi Paidipally"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7586324"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q246283"}, "Title": {"type": "literal", "value": "Frozen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5929198|http://www.wikidata.org/entity/Q156596"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5929198"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q28968258|http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2013 American computer animated film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1047410"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q8048074"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7417923"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6438210|http://www.wikidata.org/entity/Q944546|http://www.wikidata.org/entity/Q863745|http://www.wikidata.org/entity/Q379157|http://www.wikidata.org/entity/Q48619"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Sangeeth Sivan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q794034"}, "Title": {"type": "literal", "value": "Sigade revolutsioon"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12373856"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12373856"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Ren\u00e9 Reinum\u00e4gi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16677629"}, "Title": {"type": "literal", "value": "Sous les jupes des filles"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q177840"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028663|http://www.wikidata.org/entity/Q177840|http://www.wikidata.org/entity/Q23926222"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3438302|http://www.wikidata.org/entity/Q3367400|http://www.wikidata.org/entity/Q3340143|http://www.wikidata.org/entity/Q3218747|http://www.wikidata.org/entity/Q3084132|http://www.wikidata.org/entity/Q2832982|http://www.wikidata.org/entity/Q966378|http://www.wikidata.org/entity/Q951025|http://www.wikidata.org/entity/Q553904|http://www.wikidata.org/entity/Q541690|http://www.wikidata.org/entity/Q533768|http://www.wikidata.org/entity/Q3570989|http://www.wikidata.org/entity/Q457089|http://www.wikidata.org/entity/Q292760|http://www.wikidata.org/entity/Q265232|http://www.wikidata.org/entity/Q242526|http://www.wikidata.org/entity/Q207578|http://www.wikidata.org/entity/Q177840|http://www.wikidata.org/entity/Q106383|http://www.wikidata.org/entity/Q51023|http://www.wikidata.org/entity/Q32608"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "2014 film by Audrey Dana"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3071502"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18811633"}, "Title": {"type": "literal", "value": "Shooting Clerks"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18685787"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q316627|http://www.wikidata.org/entity/Q723672|http://www.wikidata.org/entity/Q489831|http://www.wikidata.org/entity/Q354010"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q645928|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Christopher Downie"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19622572"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1528398"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1961"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "1961 film by Giuseppe Lipartiti"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20445488"}, "Title": {"type": "literal", "value": "\uce5c\uc808\ud55c \uac00\uc815\ubd80"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18141469"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 South Korean comedy and pink film directed by No Zin-soo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18170190"}, "Title": {"type": "literal", "value": "Lelaki harapan dunia"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6544490"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6544490"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Liew Seng Tat"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q51870515"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2001430"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Robert Coppola Schwartzman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23899982"}, "Title": {"type": "literal", "value": "W\u015bciek\u0142e pi\u0119\u015bci W\u0119\u017ca"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9166187"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9390232"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6087802"}, "Title": {"type": "literal", "value": "Promedio rojo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3876520"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Nicol\u00e1s L\u00f3pez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56277242"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q62007448"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2039467"}, "Title": {"type": "literal", "value": "A Very Christmas Story"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2721147"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2721147"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55380"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2000 film by Dariusz Zawi\u015blak"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16250697"}, "Title": {"type": "literal", "value": "Get Hard"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q925413"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q925413"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q329807|http://www.wikidata.org/entity/Q235328|http://www.wikidata.org/entity/Q218503|http://www.wikidata.org/entity/Q215215|http://www.wikidata.org/entity/Q214227|http://www.wikidata.org/entity/Q17489623|http://www.wikidata.org/entity/Q17166317|http://www.wikidata.org/entity/Q7668352|http://www.wikidata.org/entity/Q6791316|http://www.wikidata.org/entity/Q5525698|http://www.wikidata.org/entity/Q5229634|http://www.wikidata.org/entity/Q5213110|http://www.wikidata.org/entity/Q3847681|http://www.wikidata.org/entity/Q2278533|http://www.wikidata.org/entity/Q1138783|http://www.wikidata.org/entity/Q746337|http://www.wikidata.org/entity/Q740511|http://www.wikidata.org/entity/Q618352|http://www.wikidata.org/entity/Q335680"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2015 film by Etan Cohen"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3098606"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5764423"}, "Title": {"type": "literal", "value": "Chance: los trapos sucios se lavan en casa"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5647972"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5715340"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Abner Benaim"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q39055712"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28173592"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Vishal Mishra"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10438880"}, "Title": {"type": "literal", "value": "CKY 3"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q297173"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q297173"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6209915|http://www.wikidata.org/entity/Q3390959|http://www.wikidata.org/entity/Q3239121|http://www.wikidata.org/entity/Q919042|http://www.wikidata.org/entity/Q606523|http://www.wikidata.org/entity/Q445440|http://www.wikidata.org/entity/Q316036|http://www.wikidata.org/entity/Q297173|http://www.wikidata.org/entity/Q295034|http://www.wikidata.org/entity/Q295020|http://www.wikidata.org/entity/Q25378"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 film by Bam Margera"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17099381"}, "Title": {"type": "literal", "value": "Listen Up Philip"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4717719"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4717719"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3701661|http://www.wikidata.org/entity/Q3073777|http://www.wikidata.org/entity/Q2646925|http://www.wikidata.org/entity/Q1083729|http://www.wikidata.org/entity/Q509777|http://www.wikidata.org/entity/Q352708|http://www.wikidata.org/entity/Q313705|http://www.wikidata.org/entity/Q312702|http://www.wikidata.org/entity/Q258793|http://www.wikidata.org/entity/Q233466"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2014 film by Alex Ross Perry"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23563857"}, "Title": {"type": "literal", "value": "Einmal Hans mit scharfer So\u00dfe"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q104744"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1588908"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2013 film by Buket Alaku\u015f"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48747119"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3525440"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Thomas N'Gijol"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2447577"}, "Title": {"type": "literal", "value": "Young People Fucking"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3295442"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7561895|http://www.wikidata.org/entity/Q6968200|http://www.wikidata.org/entity/Q1998264|http://www.wikidata.org/entity/Q1319577|http://www.wikidata.org/entity/Q556121|http://www.wikidata.org/entity/Q447165|http://www.wikidata.org/entity/Q385995|http://www.wikidata.org/entity/Q373594|http://www.wikidata.org/entity/Q283504|http://www.wikidata.org/entity/Q260241"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2007 film by Martin Gero"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18285698"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q40995697"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2098106"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Michiel ten Horn"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55598789"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q314403"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q600051"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Guillaume Canet"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6928443"}, "Title": {"type": "literal", "value": "Mr. Bill's Real Life Adventures"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6194719"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1740243"}, "Published": {"type": "literal", "value": "1986"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1986 film by Jim Drake"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15804357"}, "Title": {"type": "literal", "value": "Da geht noch was"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1624514"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q87432"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23067905|http://www.wikidata.org/entity/Q21188721|http://www.wikidata.org/entity/Q19297324|http://www.wikidata.org/entity/Q6451869|http://www.wikidata.org/entity/Q1963332|http://www.wikidata.org/entity/Q1902027|http://www.wikidata.org/entity/Q1892543|http://www.wikidata.org/entity/Q1820801|http://www.wikidata.org/entity/Q1429616|http://www.wikidata.org/entity/Q467729|http://www.wikidata.org/entity/Q160305|http://www.wikidata.org/entity/Q123431|http://www.wikidata.org/entity/Q87432"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2013 film by Holger Haase"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27663881"}, "Title": {"type": "literal", "value": "Killing Gunther"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2706805"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2706805"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q460665|http://www.wikidata.org/entity/Q302930|http://www.wikidata.org/entity/Q200566|http://www.wikidata.org/entity/Q2685|http://www.wikidata.org/entity/Q16821316|http://www.wikidata.org/entity/Q3900877|http://www.wikidata.org/entity/Q2907990|http://www.wikidata.org/entity/Q2706805|http://www.wikidata.org/entity/Q2702252|http://www.wikidata.org/entity/Q2038188"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q40831"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2017 action comedy film by Taran Killam"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21711225"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11998626"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11998626"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1780001|http://www.wikidata.org/entity/Q17194694|http://www.wikidata.org/entity/Q4015946"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Rune Denstad Langlo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20388011"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12250381"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3571921"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Wael Ehsan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1659521"}, "Title": {"type": "literal", "value": "I rymden finns inga k\u00e4nslor"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6256680"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16633429|http://www.wikidata.org/entity/Q6256680"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5555780|http://www.wikidata.org/entity/Q4982677|http://www.wikidata.org/entity/Q4982258|http://www.wikidata.org/entity/Q4952336|http://www.wikidata.org/entity/Q4948570|http://www.wikidata.org/entity/Q862460|http://www.wikidata.org/entity/Q16633429|http://www.wikidata.org/entity/Q6256680|http://www.wikidata.org/entity/Q6231549|http://www.wikidata.org/entity/Q6060051|http://www.wikidata.org/entity/Q5572427"}, "Published": {"type": "literal", "value": "2010|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2010 film by Andreas \u00d6hman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20650889"}, "Title": {"type": "literal", "value": "7\uacf5\uc8fc \ub300\ub9ac\uc6b4\uc804"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6782159"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film directed by Lee Phillip"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5853088"}, "Title": {"type": "literal", "value": "Excursiones"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q43955769"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29400998|http://www.wikidata.org/entity/Q6121085|http://www.wikidata.org/entity/Q6002829|http://www.wikidata.org/entity/Q5997811|http://www.wikidata.org/entity/Q5913527|http://www.wikidata.org/entity/Q5675253"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "2009 film by Ezequiel Acu\u00f1a"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19868144"}, "Title": {"type": "literal", "value": "Don Peyote"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q374263"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Dan Fogler"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3156624"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2364234"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2364234"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q289040|http://www.wikidata.org/entity/Q3470502|http://www.wikidata.org/entity/Q3083941|http://www.wikidata.org/entity/Q2493753|http://www.wikidata.org/entity/Q1861797|http://www.wikidata.org/entity/Q373034|http://www.wikidata.org/entity/Q346102"}, "Published": {"type": "literal", "value": "1995"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1995 film by Xavier Giannoli"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16056774"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16215189"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7377514"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 Bengali film directed by Birsa Dasgupta"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5717804"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5953208"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1720918"}, "Title": {"type": "literal", "value": "Kaddisch f\u00fcr einen Freund"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1818632"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1818632"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22971900|http://www.wikidata.org/entity/Q21209197|http://www.wikidata.org/entity/Q19513524|http://www.wikidata.org/entity/Q17537133|http://www.wikidata.org/entity/Q15843938|http://www.wikidata.org/entity/Q1665644|http://www.wikidata.org/entity/Q1601103|http://www.wikidata.org/entity/Q1543555|http://www.wikidata.org/entity/Q1468043|http://www.wikidata.org/entity/Q1386519|http://www.wikidata.org/entity/Q1292000|http://www.wikidata.org/entity/Q559891|http://www.wikidata.org/entity/Q106661|http://www.wikidata.org/entity/Q106438"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2012 film by Leo Khasin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1189690"}, "Title": {"type": "literal", "value": "De l'autre c\u00f4t\u00e9 du lit"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3367704"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3440076|http://www.wikidata.org/entity/Q3086023|http://www.wikidata.org/entity/Q2864476|http://www.wikidata.org/entity/Q2863156|http://www.wikidata.org/entity/Q1712292|http://www.wikidata.org/entity/Q681451|http://www.wikidata.org/entity/Q600823|http://www.wikidata.org/entity/Q586054|http://www.wikidata.org/entity/Q468190|http://www.wikidata.org/entity/Q449640|http://www.wikidata.org/entity/Q162753"}, "Published": {"type": "literal", "value": "2010|2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2008 film by Pascale Pouzadoux"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q39485944"}, "Title": {"type": "literal", "value": "Bin ich sexy?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q39486667"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q865142|http://www.wikidata.org/entity/Q105283|http://www.wikidata.org/entity/Q102678"}, "Published": {"type": "literal", "value": "2005|2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2004 film by Katinka Feistl"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19776419"}, "Title": {"type": "literal", "value": "Tavarataivas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19967991"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 documentary film directed by Petri Luukkainen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43408"}, "Title": {"type": "literal", "value": "A Very Harold & Kumar 3D Christmas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19868225"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3112667|http://www.wikidata.org/entity/Q950283"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4746531|http://www.wikidata.org/entity/Q1889124|http://www.wikidata.org/entity/Q1319539|http://www.wikidata.org/entity/Q984397|http://www.wikidata.org/entity/Q485310|http://www.wikidata.org/entity/Q433149|http://www.wikidata.org/entity/Q379808|http://www.wikidata.org/entity/Q374065|http://www.wikidata.org/entity/Q356086|http://www.wikidata.org/entity/Q350811|http://www.wikidata.org/entity/Q312705|http://www.wikidata.org/entity/Q242778|http://www.wikidata.org/entity/Q230176|http://www.wikidata.org/entity/Q223830|http://www.wikidata.org/entity/Q220536|http://www.wikidata.org/entity/Q171525|http://www.wikidata.org/entity/Q52447"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2011 film by Todd Strauss-Schulson"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5368270"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4636443"}, "Title": {"type": "literal", "value": "3"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3302146"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "2012 film by Pablo Stoll"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3684206"}, "Title": {"type": "literal", "value": "Come tu mi vuoi"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4016123"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4016123"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3934602|http://www.wikidata.org/entity/Q3875894|http://www.wikidata.org/entity/Q3846129|http://www.wikidata.org/entity/Q1044618|http://www.wikidata.org/entity/Q945318|http://www.wikidata.org/entity/Q544401|http://www.wikidata.org/entity/Q518369|http://www.wikidata.org/entity/Q291413"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "2007 film by Volfango De Biasi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3304113"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14830727"}, "Title": {"type": "literal", "value": "Tirez la langue, mademoiselle"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2874774"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2874774"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3479221|http://www.wikidata.org/entity/Q3219528|http://www.wikidata.org/entity/Q3106251|http://www.wikidata.org/entity/Q1150229|http://www.wikidata.org/entity/Q1097651|http://www.wikidata.org/entity/Q269873"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Axelle Ropert"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3232641"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q607363"}, "Title": {"type": "literal", "value": "This Is the End"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3061320|http://www.wikidata.org/entity/Q220308"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q220308|http://www.wikidata.org/entity/Q3061320"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15732460|http://www.wikidata.org/entity/Q3390313|http://www.wikidata.org/entity/Q3061320|http://www.wikidata.org/entity/Q2939851|http://www.wikidata.org/entity/Q19405928|http://www.wikidata.org/entity/Q23815604|http://www.wikidata.org/entity/Q618352|http://www.wikidata.org/entity/Q926912|http://www.wikidata.org/entity/Q716343|http://www.wikidata.org/entity/Q539917|http://www.wikidata.org/entity/Q440956|http://www.wikidata.org/entity/Q309555|http://www.wikidata.org/entity/Q306403|http://www.wikidata.org/entity/Q276525|http://www.wikidata.org/entity/Q220308|http://www.wikidata.org/entity/Q212064|http://www.wikidata.org/entity/Q202304|http://www.wikidata.org/entity/Q39476|http://www.wikidata.org/entity/Q36844|http://www.wikidata.org/entity/Q369482|http://www.wikidata.org/entity/Q356086|http://www.wikidata.org/entity/Q336400|http://www.wikidata.org/entity/Q316756|http://www.wikidata.org/entity/Q313388"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q846544|http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "2013 film directed by Seth Rogen and Evan Goldberg"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5368270|http://www.wikidata.org/entity/Q822314"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2710284"}, "Title": {"type": "literal", "value": "The Myth of Fingerprints"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q285856"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q285856"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1334830|http://www.wikidata.org/entity/Q1189378|http://www.wikidata.org/entity/Q662186|http://www.wikidata.org/entity/Q315208|http://www.wikidata.org/entity/Q270660|http://www.wikidata.org/entity/Q236399|http://www.wikidata.org/entity/Q235593|http://www.wikidata.org/entity/Q216569|http://www.wikidata.org/entity/Q80405|http://www.wikidata.org/entity/Q40064"}, "Published": {"type": "literal", "value": "1997"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "1997 film by Bart Freundlich"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5582745"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4401755"}, "Title": {"type": "literal", "value": "\u0420\u044b\u0436\u0430\u044f \u0438 \u0441\u043d\u0435\u0433"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4274156"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4274156"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21010853|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "51"}, "Description": {"type": "literal", "value": "2007 film by Amet-Khan Magomedov"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5437219"}, "Title": {"type": "literal", "value": "Fat Pizza"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7150609"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7675494|http://www.wikidata.org/entity/Q7150609"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16215446|http://www.wikidata.org/entity/Q7675494|http://www.wikidata.org/entity/Q7150609|http://www.wikidata.org/entity/Q6222734|http://www.wikidata.org/entity/Q6110025|http://www.wikidata.org/entity/Q519321|http://www.wikidata.org/entity/Q442897"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Paul Fenech"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15710490"}, "Title": {"type": "literal", "value": "Mr Hublot"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15710740|http://www.wikidata.org/entity/Q15710493"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15710493"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q132311"}, "Duration": {"type": "literal", "value": "11"}, "Description": {"type": "literal", "value": "2013 animated short film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5267264"}, "Title": {"type": "literal", "value": "Diablo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24960799"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27890585|http://www.wikidata.org/entity/Q16274750|http://www.wikidata.org/entity/Q11934240|http://www.wikidata.org/entity/Q6456277|http://www.wikidata.org/entity/Q6277892|http://www.wikidata.org/entity/Q6122946|http://www.wikidata.org/entity/Q5984494|http://www.wikidata.org/entity/Q5552305"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2011 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q58444856"}, "Title": {"type": "literal", "value": "Reise nach Jerusalem"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3838444"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3838444"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26760327|http://www.wikidata.org/entity/Q90374"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Lucia Chiarla"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56999748"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1150170"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q314403"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by C\u00e9dric Anger"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19999869"}, "Title": {"type": "literal", "value": "Superpai"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10347309"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "123"}, "Description": {"type": "literal", "value": "2015 film by Pedro Amorim"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q847646"}, "Title": {"type": "literal", "value": "Starsky & Hutch"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q362824"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3498993|http://www.wikidata.org/entity/Q2260642|http://www.wikidata.org/entity/Q1701277|http://www.wikidata.org/entity/Q362824"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1452569|http://www.wikidata.org/entity/Q1377218|http://www.wikidata.org/entity/Q727752|http://www.wikidata.org/entity/Q527306|http://www.wikidata.org/entity/Q374065|http://www.wikidata.org/entity/Q297744|http://www.wikidata.org/entity/Q284636|http://www.wikidata.org/entity/Q271464|http://www.wikidata.org/entity/Q268311|http://www.wikidata.org/entity/Q3045427|http://www.wikidata.org/entity/Q2278533|http://www.wikidata.org/entity/Q2260913|http://www.wikidata.org/entity/Q267400|http://www.wikidata.org/entity/Q236537|http://www.wikidata.org/entity/Q185122|http://www.wikidata.org/entity/Q161916|http://www.wikidata.org/entity/Q107730|http://www.wikidata.org/entity/Q71130|http://www.wikidata.org/entity/Q47100|http://www.wikidata.org/entity/Q6096|http://www.wikidata.org/entity/Q235272|http://www.wikidata.org/entity/Q230523|http://www.wikidata.org/entity/Q218503"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q4984974|http://www.wikidata.org/entity/Q663106"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2004 film by Todd Phillips"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7304367"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17051888"}, "Title": {"type": "literal", "value": "\u0926\u093f\u0932 \u0927\u0921\u093c\u0915\u0928\u0947 \u0926\u094b"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3070885"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3070885"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7492560|http://www.wikidata.org/entity/Q3595441|http://www.wikidata.org/entity/Q2004189|http://www.wikidata.org/entity/Q902879|http://www.wikidata.org/entity/Q590853|http://www.wikidata.org/entity/Q465815|http://www.wikidata.org/entity/Q335238|http://www.wikidata.org/entity/Q313956|http://www.wikidata.org/entity/Q158957"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "164"}, "Description": {"type": "literal", "value": "2015 film by Zoya Akhtar"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5419397"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7053629"}, "Title": {"type": "literal", "value": "Nord"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11998626"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q278285"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1780001"}, "Published": {"type": "literal", "value": "2010|2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "2009 Norwegian film by Rune Denstad Langlo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q641760"}, "Title": {"type": "literal", "value": "Ted"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188492"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188492|http://www.wikidata.org/entity/Q6241864|http://www.wikidata.org/entity/Q4714271"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4172513|http://www.wikidata.org/entity/Q3605920|http://www.wikidata.org/entity/Q16233268|http://www.wikidata.org/entity/Q2278533|http://www.wikidata.org/entity/Q1498498|http://www.wikidata.org/entity/Q1374532|http://www.wikidata.org/entity/Q1187274|http://www.wikidata.org/entity/Q1164639|http://www.wikidata.org/entity/Q862481|http://www.wikidata.org/entity/Q549981|http://www.wikidata.org/entity/Q381203|http://www.wikidata.org/entity/Q343564|http://www.wikidata.org/entity/Q320093|http://www.wikidata.org/entity/Q311993|http://www.wikidata.org/entity/Q231496|http://www.wikidata.org/entity/Q231401|http://www.wikidata.org/entity/Q224081|http://www.wikidata.org/entity/Q220836|http://www.wikidata.org/entity/Q192682|http://www.wikidata.org/entity/Q188492|http://www.wikidata.org/entity/Q164119|http://www.wikidata.org/entity/Q116219|http://www.wikidata.org/entity/Q37628|http://www.wikidata.org/entity/Q16296"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2012 American fantasy comedy film directed by Seth MacFarlane"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383|http://www.wikidata.org/entity/Q1475707|http://www.wikidata.org/entity/Q2856187"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11288285"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6389380"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Kenji Uchida"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q50280874"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16268668"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16268668"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2017 film directed by Alessandro Pondi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3796982"}, "Title": {"type": "literal", "value": "Impotenti esistenziali"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q42850278"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3763594|http://www.wikidata.org/entity/Q3616767|http://www.wikidata.org/entity/Q1054525|http://www.wikidata.org/entity/Q546643|http://www.wikidata.org/entity/Q312472|http://www.wikidata.org/entity/Q291915|http://www.wikidata.org/entity/Q219131"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2009 film by Giuseppe Cirillo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26912634"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26912642|http://www.wikidata.org/entity/Q26912640"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "15"}, "Description": {"type": "literal", "value": "2016 documentary film directed by Axel Danielson and Maximilien van Aertryck"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17112826"}, "Title": {"type": "literal", "value": "Pudsey: The Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3876026"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7153321"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q359665"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film directed by Nick Moore"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2755989"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q303213"}, "Title": {"type": "literal", "value": "Whip It"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q676094"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7491023"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q379811|http://www.wikidata.org/entity/Q335680|http://www.wikidata.org/entity/Q239464|http://www.wikidata.org/entity/Q231382|http://www.wikidata.org/entity/Q230523|http://www.wikidata.org/entity/Q228931|http://www.wikidata.org/entity/Q227123|http://www.wikidata.org/entity/Q173399|http://www.wikidata.org/entity/Q19948176|http://www.wikidata.org/entity/Q15778512|http://www.wikidata.org/entity/Q2469007|http://www.wikidata.org/entity/Q676094|http://www.wikidata.org/entity/Q466051|http://www.wikidata.org/entity/Q454494"}, "Published": {"type": "literal", "value": "2009|2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q52162262"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2009 film by Drew Barrymore"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5368270|http://www.wikidata.org/entity/Q644711"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q470585"}, "Title": {"type": "literal", "value": "Lammbock \u2013 Alles in Handarbeit"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1082448"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1082448"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1778862|http://www.wikidata.org/entity/Q58603"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2001 film by Christian Z\u00fcbert"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29995990"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13020286"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4120951"}, "Title": {"type": "literal", "value": "Muppets Most Wanted"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5925685"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5925685|http://www.wikidata.org/entity/Q2624066"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q312124|http://www.wikidata.org/entity/Q310944|http://www.wikidata.org/entity/Q296729|http://www.wikidata.org/entity/Q295803|http://www.wikidata.org/entity/Q248179|http://www.wikidata.org/entity/Q228603|http://www.wikidata.org/entity/Q223830|http://www.wikidata.org/entity/Q223117|http://www.wikidata.org/entity/Q218083|http://www.wikidata.org/entity/Q216936|http://www.wikidata.org/entity/Q211280|http://www.wikidata.org/entity/Q193659|http://www.wikidata.org/entity/Q165911|http://www.wikidata.org/entity/Q155775|http://www.wikidata.org/entity/Q139325|http://www.wikidata.org/entity/Q125106|http://www.wikidata.org/entity/Q76819|http://www.wikidata.org/entity/Q57391|http://www.wikidata.org/entity/Q23517|http://www.wikidata.org/entity/Q19848|http://www.wikidata.org/entity/Q14540|http://www.wikidata.org/entity/Q5105|http://www.wikidata.org/entity/Q4509|http://www.wikidata.org/entity/Q716998|http://www.wikidata.org/entity/Q455827|http://www.wikidata.org/entity/Q342419"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1200678|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q496523|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "2014 film by James Bobin"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191224|http://www.wikidata.org/entity/Q3285496"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27990695"}, "Title": {"type": "literal", "value": "Natale a Londra - Dio salvi la regina"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4016123"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2016 film by Volfango De Biasi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3745440"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21674485"}, "Title": {"type": "literal", "value": "\u0a9b\u0ac7\u0ab2\u0acd\u0ab2\u0acb \u0aa6\u0abf\u0ab5\u0ab8"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q62007448"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 Gujarati film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1029548"}, "Title": {"type": "literal", "value": "Chak De! India"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3482121"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6123531"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17198387|http://www.wikidata.org/entity/Q9154912|http://www.wikidata.org/entity/Q7937536|http://www.wikidata.org/entity/Q7924596|http://www.wikidata.org/entity/Q7683966|http://www.wikidata.org/entity/Q7496769|http://www.wikidata.org/entity/Q7445859|http://www.wikidata.org/entity/Q7416320|http://www.wikidata.org/entity/Q7399061|http://www.wikidata.org/entity/Q6165311|http://www.wikidata.org/entity/Q5102359|http://www.wikidata.org/entity/Q4750943|http://www.wikidata.org/entity/Q4739795|http://www.wikidata.org/entity/Q2917376|http://www.wikidata.org/entity/Q1018699|http://www.wikidata.org/entity/Q9535"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q1339864|http://www.wikidata.org/entity/Q1150666|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q93196"}, "Duration": {"type": "literal", "value": "152"}, "Description": {"type": "literal", "value": "2007 Hindi-language Indian sports drama film directed by Shimit Amin"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1696916"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6682932"}, "Title": {"type": "literal", "value": "Los Marziano"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5673824"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26156425|http://www.wikidata.org/entity/Q6457187|http://www.wikidata.org/entity/Q6109125|http://www.wikidata.org/entity/Q5996654|http://www.wikidata.org/entity/Q5661917|http://www.wikidata.org/entity/Q4801782|http://www.wikidata.org/entity/Q3306307|http://www.wikidata.org/entity/Q3277882|http://www.wikidata.org/entity/Q2272014"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "2010 film by Ana Katz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19824742"}, "Title": {"type": "literal", "value": "\u0915\u092a\u0942\u0930 \u090f\u0923\u094d\u0921 \u0938\u0928\u094d\u0938"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7487091"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3483111"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Shakun Batra"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1207592"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2902182"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3032767"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3471319|http://www.wikidata.org/entity/Q3386401|http://www.wikidata.org/entity/Q3350789|http://www.wikidata.org/entity/Q3286446|http://www.wikidata.org/entity/Q3190744|http://www.wikidata.org/entity/Q3189498|http://www.wikidata.org/entity/Q3189442|http://www.wikidata.org/entity/Q3047356|http://www.wikidata.org/entity/Q3013205|http://www.wikidata.org/entity/Q2874727|http://www.wikidata.org/entity/Q2869522|http://www.wikidata.org/entity/Q2865970|http://www.wikidata.org/entity/Q2856989|http://www.wikidata.org/entity/Q1713457|http://www.wikidata.org/entity/Q447709|http://www.wikidata.org/entity/Q188441"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2007 film by Djamel Bensalah"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q33284310"}, "Title": {"type": "literal", "value": "Movie Lovers"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q33281968"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q33281968"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q33283704|http://www.wikidata.org/entity/Q28528756"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 short film directed by Justin Burquist"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7050726"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1260345"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12412075"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film directed by Dror Shaul"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5672624"}, "Title": {"type": "literal", "value": "Amigos de Jes\u00fas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5699176"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Antonio Mu\u00f1oz de Mesa"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24451142"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24451145"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24451145|http://www.wikidata.org/entity/Q23008344"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28132648|http://www.wikidata.org/entity/Q16957126|http://www.wikidata.org/entity/Q12045139|http://www.wikidata.org/entity/Q12042686|http://www.wikidata.org/entity/Q11878902|http://www.wikidata.org/entity/Q10861544|http://www.wikidata.org/entity/Q8080321|http://www.wikidata.org/entity/Q4127206|http://www.wikidata.org/entity/Q3566452|http://www.wikidata.org/entity/Q3506639|http://www.wikidata.org/entity/Q3490854|http://www.wikidata.org/entity/Q3373190|http://www.wikidata.org/entity/Q1954437|http://www.wikidata.org/entity/Q1930601|http://www.wikidata.org/entity/Q525497|http://www.wikidata.org/entity/Q299394"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Marta Ferencov\u00e1"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42327749"}, "Title": {"type": "literal", "value": "Kein Herz f\u00fcr Inder"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27929944"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q59348643"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Viviane Andereggen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15953020"}, "Title": {"type": "literal", "value": "Kule kidz gr\u00e5ter ikke"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22344527"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q2143665"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 Norwegian drama film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q696163"}, "Title": {"type": "literal", "value": "Made Men"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1871869"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1074029|http://www.wikidata.org/entity/Q622651"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2308892|http://www.wikidata.org/entity/Q1320615|http://www.wikidata.org/entity/Q1126809|http://www.wikidata.org/entity/Q587641|http://www.wikidata.org/entity/Q549961|http://www.wikidata.org/entity/Q268271|http://www.wikidata.org/entity/Q204395|http://www.wikidata.org/entity/Q107933|http://www.wikidata.org/entity/Q41233"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "1999 film by Louis Morneau"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7715362"}, "Title": {"type": "literal", "value": "The Baker"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5522893"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5522893"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q342533"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Gareth Lewis"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q604889"}, "Title": {"type": "literal", "value": "Bachelorette"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13563071"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13563071"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3723465|http://www.wikidata.org/entity/Q2558129|http://www.wikidata.org/entity/Q2115130|http://www.wikidata.org/entity/Q2040329|http://www.wikidata.org/entity/Q1713263|http://www.wikidata.org/entity/Q921470|http://www.wikidata.org/entity/Q560516|http://www.wikidata.org/entity/Q485901|http://www.wikidata.org/entity/Q442897|http://www.wikidata.org/entity/Q236578|http://www.wikidata.org/entity/Q228638|http://www.wikidata.org/entity/Q201842|http://www.wikidata.org/entity/Q76478|http://www.wikidata.org/entity/Q336824"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100|87"}, "Description": {"type": "literal", "value": "2012 film by Leslye Headland"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3098606"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18165705"}, "Title": {"type": "literal", "value": "Kill Me Three Times"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6438600"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q234516|http://www.wikidata.org/entity/Q230903|http://www.wikidata.org/entity/Q7636430|http://www.wikidata.org/entity/Q1877051|http://www.wikidata.org/entity/Q932490|http://www.wikidata.org/entity/Q363659|http://www.wikidata.org/entity/Q238464"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2421031|http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2014 film by Kriv Stenders"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5765406"}, "Title": {"type": "literal", "value": "\u0939\u093f\u092e\u094d\u092e\u0924\u0935\u093e\u0932\u093e"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3469329"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3469329"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3595441|http://www.wikidata.org/entity/Q3595198|http://www.wikidata.org/entity/Q3123705|http://www.wikidata.org/entity/Q3089275|http://www.wikidata.org/entity/Q151798|http://www.wikidata.org/entity/Q146929"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2678111|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "150"}, "Description": {"type": "literal", "value": "2013 film by Sajid Khan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q372631"}, "Title": {"type": "literal", "value": "\u7d14\u55ab\u8336\u78ef\u8fba"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1279855"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1347933|http://www.wikidata.org/entity/Q1154140|http://www.wikidata.org/entity/Q850958|http://www.wikidata.org/entity/Q271886"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Keisuke Yoshida"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17426169"}, "Title": {"type": "literal", "value": "The Hooligan Factory"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7027598"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6163057"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1339864|http://www.wikidata.org/entity/Q622548|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film directed by Nick Nevern"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3212207"}, "Title": {"type": "literal", "value": "La Reine des pommes"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130092"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3037215|http://www.wikidata.org/entity/Q130092"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23309170|http://www.wikidata.org/entity/Q16534621|http://www.wikidata.org/entity/Q15974180|http://www.wikidata.org/entity/Q3554548|http://www.wikidata.org/entity/Q3479221|http://www.wikidata.org/entity/Q3379286|http://www.wikidata.org/entity/Q3106385|http://www.wikidata.org/entity/Q1807890|http://www.wikidata.org/entity/Q1351652|http://www.wikidata.org/entity/Q722352|http://www.wikidata.org/entity/Q675471|http://www.wikidata.org/entity/Q130092"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Val\u00e9rie Donzelli"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10547354"}, "Title": {"type": "literal", "value": "Kommissarie Sp\u00e4ck"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5767882"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5899407"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5974094|http://www.wikidata.org/entity/Q5795483|http://www.wikidata.org/entity/Q5653804|http://www.wikidata.org/entity/Q4949043|http://www.wikidata.org/entity/Q4569429|http://www.wikidata.org/entity/Q4567447|http://www.wikidata.org/entity/Q4348368|http://www.wikidata.org/entity/Q3323998|http://www.wikidata.org/entity/Q1317100|http://www.wikidata.org/entity/Q582603|http://www.wikidata.org/entity/Q512721"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q622548|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Fredde Granberg"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1687806"}, "Title": {"type": "literal", "value": "Jerry Cotton"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1001184|http://www.wikidata.org/entity/Q1148737"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q77991|http://www.wikidata.org/entity/Q76149|http://www.wikidata.org/entity/Q74143|http://www.wikidata.org/entity/Q69108|http://www.wikidata.org/entity/Q64008|http://www.wikidata.org/entity/Q58603|http://www.wikidata.org/entity/Q45338|http://www.wikidata.org/entity/Q237152"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q622548|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2010 film by Cyrill Boss"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1462822"}, "Title": {"type": "literal", "value": "Nick and Norah's Infinite Playlist"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3376892"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3259437"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7383107|http://www.wikidata.org/entity/Q3574528|http://www.wikidata.org/entity/Q3259437|http://www.wikidata.org/entity/Q3181186|http://www.wikidata.org/entity/Q1334725|http://www.wikidata.org/entity/Q983230|http://www.wikidata.org/entity/Q943589|http://www.wikidata.org/entity/Q454494|http://www.wikidata.org/entity/Q350811|http://www.wikidata.org/entity/Q316756|http://www.wikidata.org/entity/Q314640|http://www.wikidata.org/entity/Q312705|http://www.wikidata.org/entity/Q309555|http://www.wikidata.org/entity/Q302930|http://www.wikidata.org/entity/Q241867|http://www.wikidata.org/entity/Q231751|http://www.wikidata.org/entity/Q223443|http://www.wikidata.org/entity/Q14536"}, "Published": {"type": "literal", "value": "2009|2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2008 film by Peter Sollett"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5368270"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55616601"}, "Title": {"type": "literal", "value": "Late Night"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1261154"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q539917"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26921822|http://www.wikidata.org/entity/Q16241504|http://www.wikidata.org/entity/Q2139900|http://www.wikidata.org/entity/Q629696|http://www.wikidata.org/entity/Q539917|http://www.wikidata.org/entity/Q438065|http://www.wikidata.org/entity/Q368913|http://www.wikidata.org/entity/Q314603|http://www.wikidata.org/entity/Q311271|http://www.wikidata.org/entity/Q231203|http://www.wikidata.org/entity/Q168724"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film by Nisha Ganatra"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5448895|http://www.wikidata.org/entity/Q17295709|http://www.wikidata.org/entity/Q61864271"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1644593"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4023328"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4023328"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5752628|http://www.wikidata.org/entity/Q1645932|http://www.wikidata.org/entity/Q1138316"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3072049|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2003 film by Y\u016bdai Yamaguchi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60846397"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3215940"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 French comedy drama film directed by Ladislas Chollat"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18788491"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1582781"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1582781"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1042876"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Naoko Ogigami"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q650808"}, "Title": {"type": "literal", "value": "21 and Over"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7436898|http://www.wikidata.org/entity/Q3081957"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3081957"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2046436|http://www.wikidata.org/entity/Q555559|http://www.wikidata.org/entity/Q438540|http://www.wikidata.org/entity/Q269137|http://www.wikidata.org/entity/Q267330|http://www.wikidata.org/entity/Q236086|http://www.wikidata.org/entity/Q13560473|http://www.wikidata.org/entity/Q6273549"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2013 film by Jon Lucas, Scott Moore"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7933978|http://www.wikidata.org/entity/Q3285496"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q41449782"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22279032"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22279032"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6167686"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Midhun Manuel Thomas"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q40219954"}, "Title": {"type": "literal", "value": "Verpiss dich, Schneewittchen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15804185"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q77760"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by C\u00fcneyt Kaya"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q564960"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29960474"}, "Title": {"type": "literal", "value": "Salur Kazan: Zoraki Kahraman"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6068775"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6097730|http://www.wikidata.org/entity/Q6086507|http://www.wikidata.org/entity/Q6082302"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Burak Aksak"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3638348"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29516666"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3827828|http://www.wikidata.org/entity/Q3764111|http://www.wikidata.org/entity/Q1121806"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "2008 film by Michele Coppini"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q934763"}, "Title": {"type": "literal", "value": "Recep \u0130vedik 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7813033"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q388027"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q388027"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "2009 film by Togan G\u00f6kbakar"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6043913"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1654891"}, "Title": {"type": "literal", "value": "Waking Up in Reno"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3810017|http://www.wikidata.org/entity/Q6276394"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q909704"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q80046|http://www.wikidata.org/entity/Q49004|http://www.wikidata.org/entity/Q39666|http://www.wikidata.org/entity/Q5089830|http://www.wikidata.org/entity/Q2978917|http://www.wikidata.org/entity/Q909704|http://www.wikidata.org/entity/Q327217|http://www.wikidata.org/entity/Q212545|http://www.wikidata.org/entity/Q202735|http://www.wikidata.org/entity/Q164328"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q628165|http://www.wikidata.org/entity/Q860626"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2002 film by Jordan Brady"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q465449"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3738714"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3678160"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3678160"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3938515|http://www.wikidata.org/entity/Q3762248|http://www.wikidata.org/entity/Q3678160|http://www.wikidata.org/entity/Q3610432|http://www.wikidata.org/entity/Q1116895|http://www.wikidata.org/entity/Q1035295|http://www.wikidata.org/entity/Q264120"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2012 film by Ciro Ceruti"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29455469"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2825052"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12720038"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Adrian Sitaru"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5645457"}, "Title": {"type": "literal", "value": "Hamlet A.D.D."}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4934855|http://www.wikidata.org/entity/Q4758679"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4758679"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7413148|http://www.wikidata.org/entity/Q6766784|http://www.wikidata.org/entity/Q5239101|http://www.wikidata.org/entity/Q4499081|http://www.wikidata.org/entity/Q3294184|http://www.wikidata.org/entity/Q3116296|http://www.wikidata.org/entity/Q2793721|http://www.wikidata.org/entity/Q2633253|http://www.wikidata.org/entity/Q2594562|http://www.wikidata.org/entity/Q973475|http://www.wikidata.org/entity/Q232917|http://www.wikidata.org/entity/Q55449"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Bobby Ciraldo, Andrew Swant"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15691475"}, "Title": {"type": "literal", "value": "Un attimo sospesi"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3900890"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2008 film by Peter Marcias"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q616385"}, "Title": {"type": "literal", "value": "The Actors"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q734207"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q734207"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7518602|http://www.wikidata.org/entity/Q6832667|http://www.wikidata.org/entity/Q816568|http://www.wikidata.org/entity/Q381685|http://www.wikidata.org/entity/Q229241|http://www.wikidata.org/entity/Q228789|http://www.wikidata.org/entity/Q203545|http://www.wikidata.org/entity/Q174315|http://www.wikidata.org/entity/Q123351"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2003 film by Conor McPherson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q867294"}, "Title": {"type": "literal", "value": "Scary Movie 5"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3843845"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q452794|http://www.wikidata.org/entity/Q263607"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19956342|http://www.wikidata.org/entity/Q5387851|http://www.wikidata.org/entity/Q2755894|http://www.wikidata.org/entity/Q719310|http://www.wikidata.org/entity/Q618352|http://www.wikidata.org/entity/Q557948|http://www.wikidata.org/entity/Q452794|http://www.wikidata.org/entity/Q448141|http://www.wikidata.org/entity/Q378672|http://www.wikidata.org/entity/Q377424|http://www.wikidata.org/entity/Q337557|http://www.wikidata.org/entity/Q324753|http://www.wikidata.org/entity/Q324726|http://www.wikidata.org/entity/Q312173|http://www.wikidata.org/entity/Q271464|http://www.wikidata.org/entity/Q241660|http://www.wikidata.org/entity/Q239595|http://www.wikidata.org/entity/Q239145|http://www.wikidata.org/entity/Q236472|http://www.wikidata.org/entity/Q233085|http://www.wikidata.org/entity/Q233022|http://www.wikidata.org/entity/Q231744|http://www.wikidata.org/entity/Q229979|http://www.wikidata.org/entity/Q229749|http://www.wikidata.org/entity/Q175305|http://www.wikidata.org/entity/Q165911|http://www.wikidata.org/entity/Q127471|http://www.wikidata.org/entity/Q103939|http://www.wikidata.org/entity/Q79031|http://www.wikidata.org/entity/Q44903|http://www.wikidata.org/entity/Q6096"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q200092"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2013 film by Malcolm D. Lee"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q633631|http://www.wikidata.org/entity/Q908662"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30132086"}, "Title": {"type": "literal", "value": "Maria Mafiosi"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q101267"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q101267"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22295349|http://www.wikidata.org/entity/Q11977865|http://www.wikidata.org/entity/Q3992834|http://www.wikidata.org/entity/Q2273737|http://www.wikidata.org/entity/Q1698423|http://www.wikidata.org/entity/Q1044192|http://www.wikidata.org/entity/Q455007|http://www.wikidata.org/entity/Q125894|http://www.wikidata.org/entity/Q106390|http://www.wikidata.org/entity/Q97153|http://www.wikidata.org/entity/Q87676"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Jule Ronstedt"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7379521"}, "Title": {"type": "literal", "value": "Run Ronnie Run"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3541033"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q362332"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1769264|http://www.wikidata.org/entity/Q483907|http://www.wikidata.org/entity/Q164328|http://www.wikidata.org/entity/Q47100"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Troy Miller"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7678491"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56027154"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56027154"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3490004|http://www.wikidata.org/entity/Q1675647|http://www.wikidata.org/entity/Q730137|http://www.wikidata.org/entity/Q12038578|http://www.wikidata.org/entity/Q12035724|http://www.wikidata.org/entity/Q12035516|http://www.wikidata.org/entity/Q12023617|http://www.wikidata.org/entity/Q12021140|http://www.wikidata.org/entity/Q11240059|http://www.wikidata.org/entity/Q10379775|http://www.wikidata.org/entity/Q10379771|http://www.wikidata.org/entity/Q9368204|http://www.wikidata.org/entity/Q8082902|http://www.wikidata.org/entity/Q8080321|http://www.wikidata.org/entity/Q6438505|http://www.wikidata.org/entity/Q4278011|http://www.wikidata.org/entity/Q3565126"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film directed by Patrik Hartl"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42416706"}, "Title": {"type": "literal", "value": "Ummah \u2013 Unter Freunden"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15804185"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by C\u00fcneyt Kaya"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17450844"}, "Title": {"type": "literal", "value": "Limonata"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6093781"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6084312|http://www.wikidata.org/entity/Q6093781"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6073889|http://www.wikidata.org/entity/Q12809611|http://www.wikidata.org/entity/Q6101399|http://www.wikidata.org/entity/Q6084312"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Ali Atay"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16488907"}, "Title": {"type": "literal", "value": "Al\u00f4?!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10324869"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "1998 film directed by Mara Mour\u00e3o"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29963333"}, "Title": {"type": "literal", "value": "Estiu 1993"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q31158071"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q31158071"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23728778|http://www.wikidata.org/entity/Q17036678|http://www.wikidata.org/entity/Q11940610"}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2017 film by Carla Sim\u00f3n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12213315"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12247381|http://www.wikidata.org/entity/Q12179122"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2732233|http://www.wikidata.org/entity/Q353690"}, "Published": {"type": "literal", "value": "1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1998 film by Ahmed Nader Galal, Nader Galal"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25546596"}, "Title": {"type": "literal", "value": "V\u0259kil han\u0131?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16377112"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60852127"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q139735"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Hugo G\u00e9lin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26831002"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17386022"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "68"}, "Description": {"type": "literal", "value": "2016 film by Ian Harris"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18170211"}, "Title": {"type": "literal", "value": "Esperando a M\u00edster Kaplan"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2118367"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11682762|http://www.wikidata.org/entity/Q91337"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by \u00c1lvaro Brechner"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7037936"}, "Title": {"type": "literal", "value": "Nina Frisk"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1809801"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1809801"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3373068|http://www.wikidata.org/entity/Q756765|http://www.wikidata.org/entity/Q527059|http://www.wikidata.org/entity/Q272545|http://www.wikidata.org/entity/Q201685"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Maria Blom"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1103927"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1011297"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23821621|http://www.wikidata.org/entity/Q1011297"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Krisztina Goda"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27990625"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27990623"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27990623"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q536524|http://www.wikidata.org/entity/Q500404"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "film directed by Klim Shipenko"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4504080"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23999906"}, "Title": {"type": "literal", "value": "Ni\u00f1os envueltos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1160223"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27924800|http://www.wikidata.org/entity/Q5699996"}, "Published": {"type": "literal", "value": "1995"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "11"}, "Description": {"type": "literal", "value": "1995 film directed by Daniel Burman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23899238"}, "Title": {"type": "literal", "value": "Demain tout commence"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q139735"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3163696|http://www.wikidata.org/entity/Q139735|http://www.wikidata.org/entity/Q28121357|http://www.wikidata.org/entity/Q19956191|http://www.wikidata.org/entity/Q3304492"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3446459|http://www.wikidata.org/entity/Q3368997|http://www.wikidata.org/entity/Q3345725|http://www.wikidata.org/entity/Q3119707|http://www.wikidata.org/entity/Q2854016|http://www.wikidata.org/entity/Q2853678|http://www.wikidata.org/entity/Q2836561|http://www.wikidata.org/entity/Q1232804|http://www.wikidata.org/entity/Q954478|http://www.wikidata.org/entity/Q726074|http://www.wikidata.org/entity/Q511848|http://www.wikidata.org/entity/Q357387|http://www.wikidata.org/entity/Q232868|http://www.wikidata.org/entity/Q28121357|http://www.wikidata.org/entity/Q16665050|http://www.wikidata.org/entity/Q7294433|http://www.wikidata.org/entity/Q3489539"}, "Published": {"type": "literal", "value": "2016|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q1361932"}, "Duration": {"type": "literal", "value": "118|115"}, "Description": {"type": "literal", "value": "2016 film by Hugo G\u00e9lin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q54759834"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2874769"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2874769"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Axelle Laffont"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3409692"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4714852|http://www.wikidata.org/entity/Q3397037"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12908937"}, "Published": {"type": "literal", "value": "1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1998 film by Darko Mitrevski, Aleksandar Popovski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42593756"}, "Title": {"type": "literal", "value": "Daddy Cool"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19629665"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q721337"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Maxime Govare"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20800557"}, "Title": {"type": "literal", "value": "Mutual Friends"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6789494"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20630818|http://www.wikidata.org/entity/Q19958261|http://www.wikidata.org/entity/Q18387943|http://www.wikidata.org/entity/Q3649957|http://www.wikidata.org/entity/Q3554552|http://www.wikidata.org/entity/Q1189407|http://www.wikidata.org/entity/Q935217|http://www.wikidata.org/entity/Q679387"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Matt Watts"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15838346"}, "Title": {"type": "literal", "value": "\u0160\u0165astn\u00e1"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27866144"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27866144"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61043052|http://www.wikidata.org/entity/Q12033752|http://www.wikidata.org/entity/Q11774363|http://www.wikidata.org/entity/Q10823043|http://www.wikidata.org/entity/Q1159229|http://www.wikidata.org/entity/Q546367"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Eva Toulov\u00e1"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q33451765"}, "Title": {"type": "literal", "value": "Magical Mystery oder: Die R\u00fcckkehr des Karl Schmidt"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q692308"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q73909"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22687458|http://www.wikidata.org/entity/Q20243329|http://www.wikidata.org/entity/Q11918901|http://www.wikidata.org/entity/Q1892651|http://www.wikidata.org/entity/Q1528097|http://www.wikidata.org/entity/Q1067500|http://www.wikidata.org/entity/Q879361|http://www.wikidata.org/entity/Q91504|http://www.wikidata.org/entity/Q69092"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "2017 film by Arne Feldhusen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60675637"}, "Title": {"type": "literal", "value": "Eu Sou Mais Eu"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10347309"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19703078|http://www.wikidata.org/entity/Q18708005|http://www.wikidata.org/entity/Q15986735"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2019 film by Pedro Amorim"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3502474"}, "Title": {"type": "literal", "value": "Bobule"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12059167"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12059167|http://www.wikidata.org/entity/Q12050215"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q530954|http://www.wikidata.org/entity/Q61043065|http://www.wikidata.org/entity/Q33436049|http://www.wikidata.org/entity/Q20852640|http://www.wikidata.org/entity/Q12059167|http://www.wikidata.org/entity/Q12049496|http://www.wikidata.org/entity/Q12035359|http://www.wikidata.org/entity/Q12034156|http://www.wikidata.org/entity/Q12023093|http://www.wikidata.org/entity/Q11985792|http://www.wikidata.org/entity/Q11773741|http://www.wikidata.org/entity/Q7820613|http://www.wikidata.org/entity/Q6695529|http://www.wikidata.org/entity/Q5825305|http://www.wikidata.org/entity/Q3858922"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2008 film by Tom\u00e1\u0161 Ba\u0159ina"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q547517"}, "Title": {"type": "literal", "value": "The Animal"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q322842"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2376327|http://www.wikidata.org/entity/Q192217"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3308100|http://www.wikidata.org/entity/Q3193969|http://www.wikidata.org/entity/Q2925059|http://www.wikidata.org/entity/Q2244897|http://www.wikidata.org/entity/Q1371229|http://www.wikidata.org/entity/Q982866|http://www.wikidata.org/entity/Q948751|http://www.wikidata.org/entity/Q718135|http://www.wikidata.org/entity/Q316032|http://www.wikidata.org/entity/Q192217|http://www.wikidata.org/entity/Q154421|http://www.wikidata.org/entity/Q132952"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2001 film by Luke Greenfield"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1584317|http://www.wikidata.org/entity/Q1160868"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22137260"}, "Title": {"type": "literal", "value": "Other People"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22338525"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16241504|http://www.wikidata.org/entity/Q16147452|http://www.wikidata.org/entity/Q13560481|http://www.wikidata.org/entity/Q8063863|http://www.wikidata.org/entity/Q3291828|http://www.wikidata.org/entity/Q1138674|http://www.wikidata.org/entity/Q352180|http://www.wikidata.org/entity/Q239145|http://www.wikidata.org/entity/Q19958195"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2016 film by Chris Kelly"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55634129"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3308160"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6443390|http://www.wikidata.org/entity/Q2350460|http://www.wikidata.org/entity/Q212026|http://www.wikidata.org/entity/Q44158"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Michael Dowse"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q580716"}, "Title": {"type": "literal", "value": "Punch-Drunk Love"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25132"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25132"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15665021|http://www.wikidata.org/entity/Q779151|http://www.wikidata.org/entity/Q347395|http://www.wikidata.org/entity/Q230510|http://www.wikidata.org/entity/Q229535|http://www.wikidata.org/entity/Q180560|http://www.wikidata.org/entity/Q132952"}, "Published": {"type": "literal", "value": "2003|2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2002 film by Paul Thomas Anderson"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q79202|http://www.wikidata.org/entity/Q1160868"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3410898"}, "Title": {"type": "literal", "value": "Puppe, Icke & der Dicke"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17537044"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17537044"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15638375|http://www.wikidata.org/entity/Q2646866|http://www.wikidata.org/entity/Q1910274|http://www.wikidata.org/entity/Q1594698|http://www.wikidata.org/entity/Q1535172|http://www.wikidata.org/entity/Q1416947|http://www.wikidata.org/entity/Q1085198"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q628165|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2012 film by Felix Stienz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4352968"}, "Title": {"type": "literal", "value": "The Sex and Violence Family Hour"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3128032"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1980"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1980 film by Harvey Frost"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1087225"}, "Title": {"type": "literal", "value": "Taxidermia"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q507813"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q163190|http://www.wikidata.org/entity/Q507813"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q969122|http://www.wikidata.org/entity/Q86767|http://www.wikidata.org/entity/Q1645755"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q53094|http://www.wikidata.org/entity/Q1135802"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2006 film by Gy\u00f6rgy P\u00e1lfi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15729023"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q710314"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q710314"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "2014 film by Fernando Eimbcke"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1326153"}, "Title": {"type": "literal", "value": "Kommand\u00f8r Treholt & Ninjatroppen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3428903"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3428903"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21885936|http://www.wikidata.org/entity/Q17195240|http://www.wikidata.org/entity/Q17098885|http://www.wikidata.org/entity/Q16633119|http://www.wikidata.org/entity/Q12005557|http://www.wikidata.org/entity/Q11975059|http://www.wikidata.org/entity/Q11964980|http://www.wikidata.org/entity/Q7845435|http://www.wikidata.org/entity/Q6728713|http://www.wikidata.org/entity/Q6271813|http://www.wikidata.org/entity/Q4967637|http://www.wikidata.org/entity/Q4571413|http://www.wikidata.org/entity/Q29875"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2010 film by Thomas Cappelen Malling"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12006943"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5967568"}, "Title": {"type": "literal", "value": "La noche que dej\u00f3 de llover"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12382782"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12382782"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2757345|http://www.wikidata.org/entity/Q1224788|http://www.wikidata.org/entity/Q930148|http://www.wikidata.org/entity/Q649887|http://www.wikidata.org/entity/Q63228"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film directed by Alfonso Zarauza"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1211239"}, "Title": {"type": "literal", "value": "\u05d1\u05d9\u05e7\u05d5\u05e8 \u05d4\u05ea\u05d6\u05de\u05d5\u05e8\u05ea|Bikur Ha-Tizmoret|\u0627\u0644\u0644\u0642\u0627\u0621 \u0627\u0644\u0623\u062e\u064a\u0631"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2916255"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2916255"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3515717|http://www.wikidata.org/entity/Q3196024|http://www.wikidata.org/entity/Q3148852|http://www.wikidata.org/entity/Q2901028|http://www.wikidata.org/entity/Q1359402|http://www.wikidata.org/entity/Q554606|http://www.wikidata.org/entity/Q455824|http://www.wikidata.org/entity/Q16129621|http://www.wikidata.org/entity/Q12406576|http://www.wikidata.org/entity/Q12406574|http://www.wikidata.org/entity/Q7061145|http://www.wikidata.org/entity/Q7036809|http://www.wikidata.org/entity/Q7024180"}, "Published": {"type": "literal", "value": "2007|2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2007 film by Eran Kolirin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4000787"}, "Title": {"type": "literal", "value": "Tutti al mare"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3852100"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3852100|http://www.wikidata.org/entity/Q1334704"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3956119|http://www.wikidata.org/entity/Q3939968|http://www.wikidata.org/entity/Q3846163|http://www.wikidata.org/entity/Q3765504|http://www.wikidata.org/entity/Q3750319|http://www.wikidata.org/entity/Q3750318|http://www.wikidata.org/entity/Q3679896|http://www.wikidata.org/entity/Q1334704|http://www.wikidata.org/entity/Q1052746|http://www.wikidata.org/entity/Q1006624|http://www.wikidata.org/entity/Q697188|http://www.wikidata.org/entity/Q555190|http://www.wikidata.org/entity/Q450442|http://www.wikidata.org/entity/Q437455|http://www.wikidata.org/entity/Q435763|http://www.wikidata.org/entity/Q372481|http://www.wikidata.org/entity/Q50896"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2011 film by Matteo Cerami"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q569941"}, "Title": {"type": "literal", "value": "Due Date"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q362824"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q362824"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q229112|http://www.wikidata.org/entity/Q171905|http://www.wikidata.org/entity/Q165219|http://www.wikidata.org/entity/Q139325|http://www.wikidata.org/entity/Q103939|http://www.wikidata.org/entity/Q52447|http://www.wikidata.org/entity/Q26202699|http://www.wikidata.org/entity/Q16935021|http://www.wikidata.org/entity/Q6382703|http://www.wikidata.org/entity/Q3336580|http://www.wikidata.org/entity/Q2820073|http://www.wikidata.org/entity/Q2278533|http://www.wikidata.org/entity/Q434661|http://www.wikidata.org/entity/Q362824|http://www.wikidata.org/entity/Q336400|http://www.wikidata.org/entity/Q310367|http://www.wikidata.org/entity/Q230523"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q628165|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q663106"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2010 American comedy road film directed by Todd Phillips"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q621364|http://www.wikidata.org/entity/Q126399"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28667216"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4171916"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4525520"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17351038|http://www.wikidata.org/entity/Q16594250|http://www.wikidata.org/entity/Q4415625|http://www.wikidata.org/entity/Q4172505|http://www.wikidata.org/entity/Q4099923|http://www.wikidata.org/entity/Q1350195|http://www.wikidata.org/entity/Q631058|http://www.wikidata.org/entity/Q466169"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "2017 Russian comedy fantasy film by Dmitry Dyachenko"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191224|http://www.wikidata.org/entity/Q622668|http://www.wikidata.org/entity/Q28179983"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20078138"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6111034"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6165439|http://www.wikidata.org/entity/Q6111034"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Roger Gual"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19850724"}, "Title": {"type": "literal", "value": "Victory's Short"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3313116"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "15"}, "Description": {"type": "literal", "value": "2014 film by Mika'ela Fisher"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18280998"}, "Title": {"type": "literal", "value": "Telefona-me!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10285770"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "15"}, "Description": {"type": "literal", "value": "2000 film by Frederico Corado"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12754352"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5252708"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12957129|http://www.wikidata.org/entity/Q12756079|http://www.wikidata.org/entity/Q12754953|http://www.wikidata.org/entity/Q12752151|http://www.wikidata.org/entity/Q12751628|http://www.wikidata.org/entity/Q12749309|http://www.wikidata.org/entity/Q12748218|http://www.wikidata.org/entity/Q11141512|http://www.wikidata.org/entity/Q2444480|http://www.wikidata.org/entity/Q1749786|http://www.wikidata.org/entity/Q1266719|http://www.wikidata.org/entity/Q1260865|http://www.wikidata.org/entity/Q948201"}, "Published": {"type": "literal", "value": "1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1998 film by Dejan Ze\u010devi\u0107"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55598788"}, "Title": {"type": "literal", "value": "Nos batailles"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20978738"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23926222"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19677216|http://www.wikidata.org/entity/Q3218747|http://www.wikidata.org/entity/Q441272"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Guillaume Senez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4184223"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3136157"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12498974"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7809983|http://www.wikidata.org/entity/Q6410397|http://www.wikidata.org/entity/Q5318090"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Rudy Soedjarwo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1428027"}, "Title": {"type": "literal", "value": "Le Juge"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1400447|http://www.wikidata.org/entity/Q945904"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3697532|http://www.wikidata.org/entity/Q3547802|http://www.wikidata.org/entity/Q2651925|http://www.wikidata.org/entity/Q2093776|http://www.wikidata.org/entity/Q1294547|http://www.wikidata.org/entity/Q696152|http://www.wikidata.org/entity/Q435962|http://www.wikidata.org/entity/Q376261|http://www.wikidata.org/entity/Q375290|http://www.wikidata.org/entity/Q276361"}, "Published": {"type": "literal", "value": "1971"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "1971 film by Jean Girault, Federico Chentrens"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28793040"}, "Title": {"type": "literal", "value": "The Upside"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q706300"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2031292"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q618352|http://www.wikidata.org/entity/Q37459|http://www.wikidata.org/entity/Q23547"}, "Published": {"type": "literal", "value": "2019|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "118"}, "Description": {"type": "literal", "value": "2018 film by Neil Burger"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q369786"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48810933"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20971246"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3707170"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2017 film directed by Alessio Maria Federici"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17514772"}, "Title": {"type": "literal", "value": "\u0c2c\u0c02\u0c26\u0c3f\u0c2a\u0c4b\u0c1f\u0c41"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6893545"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4731165"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Mohan Krishna Indraganti"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4004415"}, "Title": {"type": "literal", "value": "Una storia malata"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3741879"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2195744"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "1999 film by Federico Rizzo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26304735"}, "Title": {"type": "literal", "value": "Zipi y Zape y la isla del capit\u00e1n"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17274824"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by \u00d3skar Santos"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41594791"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6401607"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4805156"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6933443|http://www.wikidata.org/entity/Q3595480|http://www.wikidata.org/entity/Q1395430|http://www.wikidata.org/entity/Q470226|http://www.wikidata.org/entity/Q379604|http://www.wikidata.org/entity/Q233748"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Ashish R Mohan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5657167"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17414104"}, "Title": {"type": "literal", "value": "Hjelp, vi er i filmbransjen!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22338571|http://www.wikidata.org/entity/Q17106851"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17113457|http://www.wikidata.org/entity/Q17111851|http://www.wikidata.org/entity/Q12002889|http://www.wikidata.org/entity/Q11988474|http://www.wikidata.org/entity/Q7710693|http://www.wikidata.org/entity/Q7710517|http://www.wikidata.org/entity/Q7077298|http://www.wikidata.org/entity/Q5416504|http://www.wikidata.org/entity/Q4569518|http://www.wikidata.org/entity/Q3655880|http://www.wikidata.org/entity/Q1937154"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 Norwegian film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12005220"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56244016"}, "Title": {"type": "literal", "value": "Metti una notte"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56244180"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15110818|http://www.wikidata.org/entity/Q3956047|http://www.wikidata.org/entity/Q3290121|http://www.wikidata.org/entity/Q678076|http://www.wikidata.org/entity/Q454010|http://www.wikidata.org/entity/Q291413"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2017 Italian film directed by Cosimo Messeri"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28136396"}, "Title": {"type": "literal", "value": "Luca tanzt leise"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1502798"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1502798"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28136483|http://www.wikidata.org/entity/Q17537123"}, "Published": {"type": "literal", "value": "2017|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "81"}, "Description": {"type": "literal", "value": "2016 film by Philipp Eichholtz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43639467"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q43601624"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q43601624"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24289096|http://www.wikidata.org/entity/Q23681162"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 Film directed by Zakariya Mohammed"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5359728"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8062226"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8062225"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q266376"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Yuya Ishii"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1648869"}, "Title": {"type": "literal", "value": "Charlie & Boots"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19872804"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7488108|http://www.wikidata.org/entity/Q7372577|http://www.wikidata.org/entity/Q296641|http://www.wikidata.org/entity/Q241895"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2009 film by Dean Murphy"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4730105"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6105225"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7293689|http://www.wikidata.org/entity/Q6810525|http://www.wikidata.org/entity/Q6433821|http://www.wikidata.org/entity/Q6105225"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 Telugu film directed by J. D. Chakravarthy"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28841509"}, "Title": {"type": "literal", "value": "\u00c7akallarla Dans 4"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6064908"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6082607|http://www.wikidata.org/entity/Q3624103"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Murat \u015eeker"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20742872"}, "Title": {"type": "literal", "value": "Das Zimmerm\u00e4dchen Lynn"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1663125"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1793679|http://www.wikidata.org/entity/Q1663125"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11896382|http://www.wikidata.org/entity/Q2522116|http://www.wikidata.org/entity/Q2338717|http://www.wikidata.org/entity/Q1416433|http://www.wikidata.org/entity/Q1133306|http://www.wikidata.org/entity/Q1123974|http://www.wikidata.org/entity/Q1083779|http://www.wikidata.org/entity/Q825931|http://www.wikidata.org/entity/Q104377"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2015 German film drama directed by Ingo Haeb"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7576963"}, "Title": {"type": "literal", "value": "Spicy Mac Project"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11312662"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q877948"}, "Title": {"type": "literal", "value": "Knallharte Jungs"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16891732"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16891732"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2080400|http://www.wikidata.org/entity/Q1985803|http://www.wikidata.org/entity/Q1944699|http://www.wikidata.org/entity/Q1478871|http://www.wikidata.org/entity/Q1043589|http://www.wikidata.org/entity/Q586772|http://www.wikidata.org/entity/Q108942|http://www.wikidata.org/entity/Q104665|http://www.wikidata.org/entity/Q102672|http://www.wikidata.org/entity/Q101149|http://www.wikidata.org/entity/Q87395|http://www.wikidata.org/entity/Q66027|http://www.wikidata.org/entity/Q45572|http://www.wikidata.org/entity/Q45292"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2002 German teen comedy film by Granz Henman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q564960"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23013169"}, "Title": {"type": "literal", "value": "The Lego Batman Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20676250"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q311591"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1535153|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2017 film directed by Chris McKay"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q126399"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4239358"}, "Title": {"type": "literal", "value": "Red Doors"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5547577"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5547577"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6827158|http://www.wikidata.org/entity/Q3442834|http://www.wikidata.org/entity/Q3050393|http://www.wikidata.org/entity/Q1684394|http://www.wikidata.org/entity/Q598178|http://www.wikidata.org/entity/Q455898|http://www.wikidata.org/entity/Q276468|http://www.wikidata.org/entity/Q60355"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Georgia Lee"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q442387"}, "Title": {"type": "literal", "value": "Almanya \u2013 Willkommen in Deutschland"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q90892"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q120534"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q125750|http://www.wikidata.org/entity/Q114624|http://www.wikidata.org/entity/Q109299|http://www.wikidata.org/entity/Q96084|http://www.wikidata.org/entity/Q75187"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2011 German comedy film directed by Yasemin \u015eamdereli"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26085011"}, "Title": {"type": "literal", "value": "Madame"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2841048"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2841048"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6834458|http://www.wikidata.org/entity/Q4961067|http://www.wikidata.org/entity/Q2861211|http://www.wikidata.org/entity/Q2833045|http://www.wikidata.org/entity/Q1986254|http://www.wikidata.org/entity/Q1394368|http://www.wikidata.org/entity/Q644911|http://www.wikidata.org/entity/Q509777|http://www.wikidata.org/entity/Q266626|http://www.wikidata.org/entity/Q229291|http://www.wikidata.org/entity/Q191132"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1919632|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2017 film by Amanda Sthers"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3206016|http://www.wikidata.org/entity/Q2450848"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1463907"}, "Title": {"type": "literal", "value": "H\u00e4rtetest"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1682638"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1682638"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20829652|http://www.wikidata.org/entity/Q2262963|http://www.wikidata.org/entity/Q2020120|http://www.wikidata.org/entity/Q1894569|http://www.wikidata.org/entity/Q1892651|http://www.wikidata.org/entity/Q1736478|http://www.wikidata.org/entity/Q1682638|http://www.wikidata.org/entity/Q1584617|http://www.wikidata.org/entity/Q1390108|http://www.wikidata.org/entity/Q1315719|http://www.wikidata.org/entity/Q1288837|http://www.wikidata.org/entity/Q978425|http://www.wikidata.org/entity/Q119560|http://www.wikidata.org/entity/Q111267|http://www.wikidata.org/entity/Q91772|http://www.wikidata.org/entity/Q71698|http://www.wikidata.org/entity/Q64823|http://www.wikidata.org/entity/Q28152"}, "Published": {"type": "literal", "value": "1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "1998 film by Janek Rieke"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17486221"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18011640"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20788175|http://www.wikidata.org/entity/Q12445334|http://www.wikidata.org/entity/Q6379241|http://www.wikidata.org/entity/Q5225529"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 Gujarati language film from India directed by Abhishek Jain"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26703733"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16139206"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1015952"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Poj Arnon"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q848836"}, "Title": {"type": "literal", "value": "Christmas Caper"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1177219"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4781998"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1530515|http://www.wikidata.org/entity/Q552972|http://www.wikidata.org/entity/Q207598"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 television film directed by David Winkler"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5453219"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q39059139"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5099316"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Chimbu Deven"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7395369"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q52562222"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21154379"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4396438|http://www.wikidata.org/entity/Q4163746|http://www.wikidata.org/entity/Q2390125"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Eduard Parri"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q587921"}, "Title": {"type": "literal", "value": "Garfield: A Tail of Two Kitties"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2037657"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3397612"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2269990|http://www.wikidata.org/entity/Q1806985|http://www.wikidata.org/entity/Q1750774|http://www.wikidata.org/entity/Q1332872|http://www.wikidata.org/entity/Q380856|http://www.wikidata.org/entity/Q360674|http://www.wikidata.org/entity/Q298838|http://www.wikidata.org/entity/Q296822|http://www.wikidata.org/entity/Q239558|http://www.wikidata.org/entity/Q237178|http://www.wikidata.org/entity/Q215017|http://www.wikidata.org/entity/Q211283|http://www.wikidata.org/entity/Q175104|http://www.wikidata.org/entity/Q52392"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2006 film by Tim Hill"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434841|http://www.wikidata.org/entity/Q2579492"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7772525"}, "Title": {"type": "literal", "value": "The Vicious Kind"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6515302"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6515302"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q715646|http://www.wikidata.org/entity/Q229975|http://www.wikidata.org/entity/Q201842|http://www.wikidata.org/entity/Q150482"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Lee Toland Krieger"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6121386"}, "Title": {"type": "literal", "value": "Santos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3876520"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3876520"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7071460|http://www.wikidata.org/entity/Q5704066|http://www.wikidata.org/entity/Q3329391|http://www.wikidata.org/entity/Q1189379|http://www.wikidata.org/entity/Q533571|http://www.wikidata.org/entity/Q230123"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Nicol\u00e1s L\u00f3pez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18150704"}, "Title": {"type": "literal", "value": "The Hollars"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q313039"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3806481"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7291588|http://www.wikidata.org/entity/Q512353|http://www.wikidata.org/entity/Q365915|http://www.wikidata.org/entity/Q313043|http://www.wikidata.org/entity/Q313039|http://www.wikidata.org/entity/Q257317|http://www.wikidata.org/entity/Q238924|http://www.wikidata.org/entity/Q218083|http://www.wikidata.org/entity/Q207873|http://www.wikidata.org/entity/Q67701"}, "Published": {"type": "literal", "value": "2017|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2016 film by John Krasinski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7422770"}, "Title": {"type": "literal", "value": "Sarah Silverman: Jesus Is Magic"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1372139"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q229013"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6499434|http://www.wikidata.org/entity/Q912938|http://www.wikidata.org/entity/Q888178|http://www.wikidata.org/entity/Q229013"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Liam Lynch"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23589"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5417777"}, "Title": {"type": "literal", "value": "Toat\u0103 lumea din familia noastr\u0103"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1248032"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1248032"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14500720|http://www.wikidata.org/entity/Q4721094"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "2012 film by Radu Jude"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7764639"}, "Title": {"type": "literal", "value": "The Skinny"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7147898"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7147898"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6315685"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Patrik-Ian Polk"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2575316"}, "Title": {"type": "literal", "value": "Soul Plane"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6187942"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q271464|http://www.wikidata.org/entity/Q233786|http://www.wikidata.org/entity/Q231928|http://www.wikidata.org/entity/Q231911|http://www.wikidata.org/entity/Q229169|http://www.wikidata.org/entity/Q6096|http://www.wikidata.org/entity/Q6463299|http://www.wikidata.org/entity/Q5107905|http://www.wikidata.org/entity/Q4347722|http://www.wikidata.org/entity/Q3616845|http://www.wikidata.org/entity/Q3023394|http://www.wikidata.org/entity/Q1702204|http://www.wikidata.org/entity/Q1305094|http://www.wikidata.org/entity/Q1268429|http://www.wikidata.org/entity/Q618352|http://www.wikidata.org/entity/Q549562|http://www.wikidata.org/entity/Q536308|http://www.wikidata.org/entity/Q460513|http://www.wikidata.org/entity/Q376031|http://www.wikidata.org/entity/Q374181|http://www.wikidata.org/entity/Q353755|http://www.wikidata.org/entity/Q298694"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2004 film by Jessy Terrero"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q179200"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27988104"}, "Title": {"type": "literal", "value": "\u041f\u0435\u0442\u0435\u0440\u0431\u0443\u0440\u0433. \u0422\u043e\u043b\u044c\u043a\u043e \u043f\u043e \u043b\u044e\u0431\u0432\u0438"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21183509|http://www.wikidata.org/entity/Q4424796|http://www.wikidata.org/entity/Q4312204|http://www.wikidata.org/entity/Q4101320|http://www.wikidata.org/entity/Q2627377"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4312204|http://www.wikidata.org/entity/Q21183509|http://www.wikidata.org/entity/Q4424796|http://www.wikidata.org/entity/Q4101320|http://www.wikidata.org/entity/Q2627377"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2627377|http://www.wikidata.org/entity/Q13218087|http://www.wikidata.org/entity/Q4297949|http://www.wikidata.org/entity/Q4281965"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "2016 film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4403233|http://www.wikidata.org/entity/Q158478"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23016495"}, "Title": {"type": "literal", "value": "Baywatch"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q524897"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30327831|http://www.wikidata.org/entity/Q26460510|http://www.wikidata.org/entity/Q3038036"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q36685840|http://www.wikidata.org/entity/Q29349693|http://www.wikidata.org/entity/Q28655334|http://www.wikidata.org/entity/Q24699898|http://www.wikidata.org/entity/Q21997695|http://www.wikidata.org/entity/Q19571502|http://www.wikidata.org/entity/Q7520267|http://www.wikidata.org/entity/Q5649155|http://www.wikidata.org/entity/Q1972672|http://www.wikidata.org/entity/Q232769|http://www.wikidata.org/entity/Q232514|http://www.wikidata.org/entity/Q231556|http://www.wikidata.org/entity/Q201927|http://www.wikidata.org/entity/Q180301|http://www.wikidata.org/entity/Q158957|http://www.wikidata.org/entity/Q83325|http://www.wikidata.org/entity/Q45229|http://www.wikidata.org/entity/Q10738|http://www.wikidata.org/entity/Q524897"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "119"}, "Description": {"type": "literal", "value": "2017 film by Seth Gordon"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q159846"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4017692"}, "Title": {"type": "literal", "value": "Waitress!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q944978|http://www.wikidata.org/entity/Q183347"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21403123|http://www.wikidata.org/entity/Q3476328|http://www.wikidata.org/entity/Q3051238|http://www.wikidata.org/entity/Q983418|http://www.wikidata.org/entity/Q573423|http://www.wikidata.org/entity/Q336185"}, "Published": {"type": "literal", "value": "1981"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "1981 film by Michael Herz, Lloyd Kaufman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q640786"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q601100"}, "Title": {"type": "literal", "value": "Strange Bedfellows"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19872804"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3814774|http://www.wikidata.org/entity/Q3308100|http://www.wikidata.org/entity/Q296641|http://www.wikidata.org/entity/Q217137"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2004 film by Dean Murphy"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q239827"}, "Title": {"type": "literal", "value": "The Last Drop"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5145613"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5145613"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6698313|http://www.wikidata.org/entity/Q5673372|http://www.wikidata.org/entity/Q3499384|http://www.wikidata.org/entity/Q1428289|http://www.wikidata.org/entity/Q1377608|http://www.wikidata.org/entity/Q1190134|http://www.wikidata.org/entity/Q1189353|http://www.wikidata.org/entity/Q1139301|http://www.wikidata.org/entity/Q594265|http://www.wikidata.org/entity/Q463683|http://www.wikidata.org/entity/Q391310|http://www.wikidata.org/entity/Q310637|http://www.wikidata.org/entity/Q220584|http://www.wikidata.org/entity/Q205435|http://www.wikidata.org/entity/Q134133|http://www.wikidata.org/entity/Q42601"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q369747|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2006 film by Colin Teague"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6407453"}, "Title": {"type": "literal", "value": "Killer Bud"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6805567"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q313712"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 film by Media Whore"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5450364"}, "Title": {"type": "literal", "value": "Finishing the Game"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q551876"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1267727|http://www.wikidata.org/entity/Q503013|http://www.wikidata.org/entity/Q317563|http://www.wikidata.org/entity/Q306403|http://www.wikidata.org/entity/Q295923|http://www.wikidata.org/entity/Q208117"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2007 film by Justin Lin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15886159"}, "Title": {"type": "literal", "value": "\u09aa\u09bf\u0981\u09aa\u09a1\u09bc\u09be\u09ac\u09bf\u09a6\u09cd\u09af\u09be"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6916984"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6916984"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7492374"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Mostofa Sarwar Farooki"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11263846"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11461833"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Sh\u014dtar\u014d Kobayashi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7758712"}, "Title": {"type": "literal", "value": "The Puffy Chair"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6166571|http://www.wikidata.org/entity/Q3273787"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6377395|http://www.wikidata.org/entity/Q3273787"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Mark Duplass, Jay Duplass"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q907311"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10277951"}, "Title": {"type": "literal", "value": "Eu odeio o Orkut"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10278413"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "129"}, "Description": {"type": "literal", "value": "2011 film by Evandro Berlesi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3040434"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2938811"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16832010|http://www.wikidata.org/entity/Q3134621|http://www.wikidata.org/entity/Q3051727|http://www.wikidata.org/entity/Q2965328|http://www.wikidata.org/entity/Q2925088|http://www.wikidata.org/entity/Q1711059|http://www.wikidata.org/entity/Q1187592|http://www.wikidata.org/entity/Q289032|http://www.wikidata.org/entity/Q240521|http://www.wikidata.org/entity/Q203840"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Carine Tardieu"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28331179"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3509959"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3524924"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by S\u00e9bastien Betbeder"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q776952"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1470086"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1286036|http://www.wikidata.org/entity/Q1120300|http://www.wikidata.org/entity/Q1031644"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Attila \u00c1rpa"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1193109"}, "Title": {"type": "literal", "value": "Der Eisb\u00e4r"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q57391|http://www.wikidata.org/entity/Q16891732"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16891732"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q86655|http://www.wikidata.org/entity/Q78121|http://www.wikidata.org/entity/Q69640|http://www.wikidata.org/entity/Q64823|http://www.wikidata.org/entity/Q60687|http://www.wikidata.org/entity/Q57391|http://www.wikidata.org/entity/Q16891732|http://www.wikidata.org/entity/Q2577560|http://www.wikidata.org/entity/Q2337883|http://www.wikidata.org/entity/Q2159077|http://www.wikidata.org/entity/Q1937361|http://www.wikidata.org/entity/Q1747632|http://www.wikidata.org/entity/Q1736475|http://www.wikidata.org/entity/Q1717755|http://www.wikidata.org/entity/Q546535|http://www.wikidata.org/entity/Q531287|http://www.wikidata.org/entity/Q109133|http://www.wikidata.org/entity/Q100312|http://www.wikidata.org/entity/Q97423|http://www.wikidata.org/entity/Q90041|http://www.wikidata.org/entity/Q88583"}, "Published": {"type": "literal", "value": "1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "1998 film by Til Schweiger"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28127570"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2726196"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q944546"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Shreyas Talpade"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15098103"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q490410"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6312637"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 South Korean comedy film directed by Ha Jung-woo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1537404"}, "Title": {"type": "literal", "value": "Shanghai Kiss"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5238982"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5238982"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q312051|http://www.wikidata.org/entity/Q231116|http://www.wikidata.org/entity/Q171571"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by David Ren"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1219034"}, "Title": {"type": "literal", "value": "Maskeli Be\u015fler \u0130ntikam Pe\u015finde"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3328043"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3328043"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8082387|http://www.wikidata.org/entity/Q7666744|http://www.wikidata.org/entity/Q6812382|http://www.wikidata.org/entity/Q5058838|http://www.wikidata.org/entity/Q382106"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2005 film by Murat Aslan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q718996"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q278774"}, "Title": {"type": "literal", "value": "Surfer, Dude"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19364349"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2644079|http://www.wikidata.org/entity/Q1465235|http://www.wikidata.org/entity/Q967248|http://www.wikidata.org/entity/Q206112|http://www.wikidata.org/entity/Q201279|http://www.wikidata.org/entity/Q188955|http://www.wikidata.org/entity/Q139610|http://www.wikidata.org/entity/Q114179"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "2008 film by S. R. Bindler"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1626895"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7539939"}, "Title": {"type": "literal", "value": "Sleepwalk with Me"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5576465"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5576465|http://www.wikidata.org/entity/Q1672322"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5902748|http://www.wikidata.org/entity/Q5726977|http://www.wikidata.org/entity/Q5649155|http://www.wikidata.org/entity/Q5605949|http://www.wikidata.org/entity/Q5576465|http://www.wikidata.org/entity/Q5186320|http://www.wikidata.org/entity/Q4830761|http://www.wikidata.org/entity/Q4749380|http://www.wikidata.org/entity/Q3288246|http://www.wikidata.org/entity/Q1672322|http://www.wikidata.org/entity/Q980277|http://www.wikidata.org/entity/Q952419|http://www.wikidata.org/entity/Q726140|http://www.wikidata.org/entity/Q561133|http://www.wikidata.org/entity/Q509953|http://www.wikidata.org/entity/Q460503|http://www.wikidata.org/entity/Q437752|http://www.wikidata.org/entity/Q272927|http://www.wikidata.org/entity/Q235302|http://www.wikidata.org/entity/Q232098|http://www.wikidata.org/entity/Q11832588|http://www.wikidata.org/entity/Q6187045"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2012 film by Mike Birbiglia"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7947099"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12221980"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12178530"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4164801"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Ahmed El Guindi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1130343"}, "Title": {"type": "literal", "value": "\u0930\u092c \u0928\u0947 \u092c\u0928\u093e \u0926\u0940 \u091c\u094b\u0921\u093c\u0940"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q357608"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q357608"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188671|http://www.wikidata.org/entity/Q158214|http://www.wikidata.org/entity/Q147395|http://www.wikidata.org/entity/Q32452|http://www.wikidata.org/entity/Q9535|http://www.wikidata.org/entity/Q15215273|http://www.wikidata.org/entity/Q7937536|http://www.wikidata.org/entity/Q7500361|http://www.wikidata.org/entity/Q6750645|http://www.wikidata.org/entity/Q6368402|http://www.wikidata.org/entity/Q3522712|http://www.wikidata.org/entity/Q929422|http://www.wikidata.org/entity/Q485557|http://www.wikidata.org/entity/Q465815|http://www.wikidata.org/entity/Q290438"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "167"}, "Description": {"type": "literal", "value": "2008 film by Aditya Chopra"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1696916"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5799948"}, "Title": {"type": "literal", "value": "Mi gente linda, mi gente bella"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16302557"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5562040"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1563876"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2012 film by Harold Trompetero"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10967433"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4164801"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12178651|http://www.wikidata.org/entity/Q2827647"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Ahmed Mekky"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15046541"}, "Title": {"type": "literal", "value": "Danny Collins"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5213495"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5213495"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2803741|http://www.wikidata.org/entity/Q1985488|http://www.wikidata.org/entity/Q1351441|http://www.wikidata.org/entity/Q1141130|http://www.wikidata.org/entity/Q499028|http://www.wikidata.org/entity/Q428819|http://www.wikidata.org/entity/Q311779|http://www.wikidata.org/entity/Q303192|http://www.wikidata.org/entity/Q190602|http://www.wikidata.org/entity/Q190523|http://www.wikidata.org/entity/Q172044|http://www.wikidata.org/entity/Q46677|http://www.wikidata.org/entity/Q41163"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2015 film by Dan Fogelman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30389361"}, "Title": {"type": "literal", "value": "Min b\u00f6rda"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16595666"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16595666"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "15"}, "Description": {"type": "literal", "value": "2017 animated film by Niki Lindroth von Bahr"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17513016"}, "Title": {"type": "literal", "value": "Buzzard"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16734657"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16734657"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q703676"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Joel Potrykus"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21027544"}, "Title": {"type": "literal", "value": "Le Mirage"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3430333"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3262749"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Ricardo Trogi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60852749"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2080043"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by R\u00e9mi Bezan\u00e7on"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1507221"}, "Title": {"type": "literal", "value": "Bring It On: In It to Win It"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2632767"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2043952|http://www.wikidata.org/entity/Q561324|http://www.wikidata.org/entity/Q233419|http://www.wikidata.org/entity/Q230609|http://www.wikidata.org/entity/Q162035|http://www.wikidata.org/entity/Q127471"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2007 film by Steve Rash"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1753580"}, "Title": {"type": "literal", "value": "What the Bleep Do We Know!?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q832252|http://www.wikidata.org/entity/Q16148751|http://www.wikidata.org/entity/Q1900489"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16148751|http://www.wikidata.org/entity/Q1900489|http://www.wikidata.org/entity/Q832252"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q271620|http://www.wikidata.org/entity/Q213287|http://www.wikidata.org/entity/Q353101|http://www.wikidata.org/entity/Q3827125|http://www.wikidata.org/entity/Q3809587|http://www.wikidata.org/entity/Q3434590|http://www.wikidata.org/entity/Q705352"}, "Published": {"type": "literal", "value": "2005|2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2004 film by William Arntz"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3010012"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3794198"}, "Title": {"type": "literal", "value": "Il giorno + bello"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23857049"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2708170|http://www.wikidata.org/entity/Q1041563|http://www.wikidata.org/entity/Q818736|http://www.wikidata.org/entity/Q455945|http://www.wikidata.org/entity/Q3959331|http://www.wikidata.org/entity/Q3956096|http://www.wikidata.org/entity/Q3897825|http://www.wikidata.org/entity/Q3850996|http://www.wikidata.org/entity/Q3846167|http://www.wikidata.org/entity/Q3765371|http://www.wikidata.org/entity/Q3737860|http://www.wikidata.org/entity/Q3726049|http://www.wikidata.org/entity/Q3679896|http://www.wikidata.org/entity/Q2861255"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2006 film by Massimo Cappelli"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6669858"}, "Title": {"type": "literal", "value": "London Betty"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7789275"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7789275"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7381226|http://www.wikidata.org/entity/Q1163293"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Thomas Edward Seymour"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3985371"}, "Title": {"type": "literal", "value": "Texas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q344075"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q344075"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5260783|http://www.wikidata.org/entity/Q4007861|http://www.wikidata.org/entity/Q344075|http://www.wikidata.org/entity/Q230710|http://www.wikidata.org/entity/Q133787"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2005 film by Fausto Paravidino"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3304113"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20720688"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7635089"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6444213"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film directed by Sugeeth"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1982655"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1428901|http://www.wikidata.org/entity/Q943006"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1428901|http://www.wikidata.org/entity/Q943006"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2434026"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "74"}, "Description": {"type": "literal", "value": "2012 film by Flip van der Kuil, Steffen Haars"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56311084"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q344854|http://www.wikidata.org/entity/Q55650688|http://www.wikidata.org/entity/Q21183509|http://www.wikidata.org/entity/Q2833792"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16857528|http://www.wikidata.org/entity/Q4317349"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q442830|http://www.wikidata.org/entity/Q3479732|http://www.wikidata.org/entity/Q3033167|http://www.wikidata.org/entity/Q2329850|http://www.wikidata.org/entity/Q466169"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2018 film directed by Timur Bekmambetov"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2892410"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q41754947"}, "Title": {"type": "literal", "value": "Harri Pinter, Drecksau"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60189101"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56632080|http://www.wikidata.org/entity/Q56631778"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q43369921|http://www.wikidata.org/entity/Q31960833|http://www.wikidata.org/entity/Q28465786|http://www.wikidata.org/entity/Q18626702|http://www.wikidata.org/entity/Q15850960|http://www.wikidata.org/entity/Q1630325|http://www.wikidata.org/entity/Q499354|http://www.wikidata.org/entity/Q85841"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2017 film by Andreas Schmied"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61050129"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5829245"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Elena Trap\u00e9"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16250885"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7544363"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7544363"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5564076"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Smeep Kang"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4661678"}, "Title": {"type": "literal", "value": "\u0b86\u0bb0\u0ba3\u0bcd\u0baf \u0b95\u0bbe\u0ba3\u0bcd\u0b9f\u0bae\u0bcd"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7783816"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7783816"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7410100|http://www.wikidata.org/entity/Q7296637|http://www.wikidata.org/entity/Q560178"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2421031|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q188473"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Thiagarajan Kumararaja"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6893771"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7831216"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7831216"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "62"}, "Description": {"type": "literal", "value": "2005 film by Tracey Deer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1443690"}, "Title": {"type": "literal", "value": "Polska Love Serenade"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1944553"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "75"}, "Description": {"type": "literal", "value": "2008 film by Monika Anna Wojtyllo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5257031"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6265621"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by John de Rantau"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23042678"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2400575"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12720640|http://www.wikidata.org/entity/Q12720629|http://www.wikidata.org/entity/Q5297701|http://www.wikidata.org/entity/Q3860822|http://www.wikidata.org/entity/Q3437193|http://www.wikidata.org/entity/Q1684856"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Tudor Giurgiu"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3809340"}, "Title": {"type": "literal", "value": "7\ubc88\ubc29\uc758 \uc120\ubb3c"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16262094"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15073945|http://www.wikidata.org/entity/Q12615563|http://www.wikidata.org/entity/Q12582610|http://www.wikidata.org/entity/Q7138143|http://www.wikidata.org/entity/Q6678668|http://www.wikidata.org/entity/Q4120056|http://www.wikidata.org/entity/Q625572|http://www.wikidata.org/entity/Q497785|http://www.wikidata.org/entity/Q483575"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q586250|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "127"}, "Description": {"type": "literal", "value": "2013 film by Lee Hwan-kyung"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7732900"}, "Title": {"type": "literal", "value": "The Extreme Adventures of Super Dave"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q933856"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2051128"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2051128"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2000 film by Peter MacDonald"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q179200"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7993509"}, "Title": {"type": "literal", "value": "Wherever You Are"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7340338"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7340338"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2050378|http://www.wikidata.org/entity/Q1638065|http://www.wikidata.org/entity/Q459007|http://www.wikidata.org/entity/Q442019|http://www.wikidata.org/entity/Q436360"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Rob Margolies"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1232340"}, "Title": {"type": "literal", "value": "Heiter bis wolkig"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1893857"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18679286|http://www.wikidata.org/entity/Q15809470|http://www.wikidata.org/entity/Q2343553|http://www.wikidata.org/entity/Q2019755|http://www.wikidata.org/entity/Q1711811|http://www.wikidata.org/entity/Q1698276|http://www.wikidata.org/entity/Q1696765|http://www.wikidata.org/entity/Q1222900|http://www.wikidata.org/entity/Q99913|http://www.wikidata.org/entity/Q78766|http://www.wikidata.org/entity/Q76172|http://www.wikidata.org/entity/Q71673"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2012 film by Marco Petry"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15046523"}, "Title": {"type": "literal", "value": "Free the Nipple"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2655318"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Lina Esco"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1744313"}, "Title": {"type": "literal", "value": "Schwere Jungs"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q96164"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15445444"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2006 film by Marcus H. Rosenm\u00fcller"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18400498"}, "Title": {"type": "literal", "value": "Les Gorilles"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3539613"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q762906"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Tristan Aurouet"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15730414"}, "Title": {"type": "literal", "value": "Le Quepa sur la vilni !"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15415483"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15415483"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15973592|http://www.wikidata.org/entity/Q3012804|http://www.wikidata.org/entity/Q1086279|http://www.wikidata.org/entity/Q336694|http://www.wikidata.org/entity/Q109255"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Yann Le Quellec"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28001090"}, "Title": {"type": "literal", "value": "Alibi.com"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3380121"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3380121"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q983159|http://www.wikidata.org/entity/Q291392|http://www.wikidata.org/entity/Q106573|http://www.wikidata.org/entity/Q17175096|http://www.wikidata.org/entity/Q16663967|http://www.wikidata.org/entity/Q3588002|http://www.wikidata.org/entity/Q3559579|http://www.wikidata.org/entity/Q3380121|http://www.wikidata.org/entity/Q3379789|http://www.wikidata.org/entity/Q1210511"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Philippe Lacheau"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4901655"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7399012"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7489427"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6380219|http://www.wikidata.org/entity/Q4747497|http://www.wikidata.org/entity/Q3527168|http://www.wikidata.org/entity/Q929422|http://www.wikidata.org/entity/Q365007"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Sagar Ballary"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7311024"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2078445"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18225395"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18225395"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q340552"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Kees van Nieuwkerk"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2870286"}, "Title": {"type": "literal", "value": "Au bonheur des ogres"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3340065"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3479315|http://www.wikidata.org/entity/Q3340065"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q287336|http://www.wikidata.org/entity/Q106365|http://www.wikidata.org/entity/Q94882|http://www.wikidata.org/entity/Q28487|http://www.wikidata.org/entity/Q16069975|http://www.wikidata.org/entity/Q6531360|http://www.wikidata.org/entity/Q3572937|http://www.wikidata.org/entity/Q3490824|http://www.wikidata.org/entity/Q3302248|http://www.wikidata.org/entity/Q3190737|http://www.wikidata.org/entity/Q3189060|http://www.wikidata.org/entity/Q3166616|http://www.wikidata.org/entity/Q3106169|http://www.wikidata.org/entity/Q3105513|http://www.wikidata.org/entity/Q2724026|http://www.wikidata.org/entity/Q1695127|http://www.wikidata.org/entity/Q1384312|http://www.wikidata.org/entity/Q928975|http://www.wikidata.org/entity/Q562852|http://www.wikidata.org/entity/Q462376"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2013 film by Nicolas Bary"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4690917"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17180936"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7418465|http://www.wikidata.org/entity/Q5276810"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Kedar Shinde"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16069551"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2663764"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3392598|http://www.wikidata.org/entity/Q2768812|http://www.wikidata.org/entity/Q2747880|http://www.wikidata.org/entity/Q2664924|http://www.wikidata.org/entity/Q2558742|http://www.wikidata.org/entity/Q2436718|http://www.wikidata.org/entity/Q2130507|http://www.wikidata.org/entity/Q2127029|http://www.wikidata.org/entity/Q2037957|http://www.wikidata.org/entity/Q1848089|http://www.wikidata.org/entity/Q514769"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192881"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Geoffrey Enthoven"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q47530501"}, "Title": {"type": "literal", "value": "S\u00f3lo por hoy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q659288"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q659288"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16274750|http://www.wikidata.org/entity/Q6762366|http://www.wikidata.org/entity/Q28070847|http://www.wikidata.org/entity/Q17566611"}, "Published": {"type": "literal", "value": "2004|2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2001 film by Ariel Rotter"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21112567"}, "Title": {"type": "literal", "value": "Macho Man"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17253608"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1948016"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3896343|http://www.wikidata.org/entity/Q2643664|http://www.wikidata.org/entity/Q2529359|http://www.wikidata.org/entity/Q2511663|http://www.wikidata.org/entity/Q2077604|http://www.wikidata.org/entity/Q1824918|http://www.wikidata.org/entity/Q1527740|http://www.wikidata.org/entity/Q444659|http://www.wikidata.org/entity/Q134976|http://www.wikidata.org/entity/Q125750|http://www.wikidata.org/entity/Q108942|http://www.wikidata.org/entity/Q108590|http://www.wikidata.org/entity/Q106781|http://www.wikidata.org/entity/Q103394|http://www.wikidata.org/entity/Q97335|http://www.wikidata.org/entity/Q77991|http://www.wikidata.org/entity/Q66548|http://www.wikidata.org/entity/Q63228"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2015 film by Christof Wahl"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q764472"}, "Title": {"type": "literal", "value": "Vampires Suck"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q936338|http://www.wikidata.org/entity/Q302690"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q936338|http://www.wikidata.org/entity/Q302690"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7027085|http://www.wikidata.org/entity/Q1077703|http://www.wikidata.org/entity/Q739062|http://www.wikidata.org/entity/Q607793|http://www.wikidata.org/entity/Q449947|http://www.wikidata.org/entity/Q443488|http://www.wikidata.org/entity/Q440910|http://www.wikidata.org/entity/Q312535|http://www.wikidata.org/entity/Q233697|http://www.wikidata.org/entity/Q231928"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2137852|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2010 film by Aaron Seltzer, Jason Friedberg"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q466459"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16619265"}, "Title": {"type": "literal", "value": "Pitch Perfect 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q219373"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4251124"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q76|http://www.wikidata.org/entity/Q20002394|http://www.wikidata.org/entity/Q19938372|http://www.wikidata.org/entity/Q19668395|http://www.wikidata.org/entity/Q16548392|http://www.wikidata.org/entity/Q16236455|http://www.wikidata.org/entity/Q16203864|http://www.wikidata.org/entity/Q15739824|http://www.wikidata.org/entity/Q15074184|http://www.wikidata.org/entity/Q6498858|http://www.wikidata.org/entity/Q6395392|http://www.wikidata.org/entity/Q6382703|http://www.wikidata.org/entity/Q4678957|http://www.wikidata.org/entity/Q4251124|http://www.wikidata.org/entity/Q3423441|http://www.wikidata.org/entity/Q3374926|http://www.wikidata.org/entity/Q2617927|http://www.wikidata.org/entity/Q2156744|http://www.wikidata.org/entity/Q2046436|http://www.wikidata.org/entity/Q2041541|http://www.wikidata.org/entity/Q1255263|http://www.wikidata.org/entity/Q1150316|http://www.wikidata.org/entity/Q967130|http://www.wikidata.org/entity/Q716936|http://www.wikidata.org/entity/Q449013|http://www.wikidata.org/entity/Q442897|http://www.wikidata.org/entity/Q362332|http://www.wikidata.org/entity/Q329372|http://www.wikidata.org/entity/Q272929|http://www.wikidata.org/entity/Q271119|http://www.wikidata.org/entity/Q260134|http://www.wikidata.org/entity/Q242329|http://www.wikidata.org/entity/Q234076|http://www.wikidata.org/entity/Q231726|http://www.wikidata.org/entity/Q229975|http://www.wikidata.org/entity/Q229244|http://www.wikidata.org/entity/Q219631|http://www.wikidata.org/entity/Q219373|http://www.wikidata.org/entity/Q115988|http://www.wikidata.org/entity/Q94831|http://www.wikidata.org/entity/Q67701|http://www.wikidata.org/entity/Q41594|http://www.wikidata.org/entity/Q14313|http://www.wikidata.org/entity/Q13133|http://www.wikidata.org/entity/Q6096|http://www.wikidata.org/entity/Q4914"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "2015 American film directed by Elizabeth Banks"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383|http://www.wikidata.org/entity/Q3109988"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5202125"}, "Title": {"type": "literal", "value": "On the Edge"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q233428|http://www.wikidata.org/entity/Q1682531|http://www.wikidata.org/entity/Q234610"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5186054|http://www.wikidata.org/entity/Q4977667|http://www.wikidata.org/entity/Q724395|http://www.wikidata.org/entity/Q234610|http://www.wikidata.org/entity/Q233428"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q336144|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 anthology film by 3 different directors: Mary Stuart Masterson, Anne Heche, Jana Sue Memel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21612100"}, "Title": {"type": "literal", "value": "Ich bin dann mal weg"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15450497"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q98512"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22032529|http://www.wikidata.org/entity/Q21188721|http://www.wikidata.org/entity/Q18625516|http://www.wikidata.org/entity/Q18169576|http://www.wikidata.org/entity/Q2173227|http://www.wikidata.org/entity/Q1594698|http://www.wikidata.org/entity/Q1539481|http://www.wikidata.org/entity/Q1450182|http://www.wikidata.org/entity/Q1416947|http://www.wikidata.org/entity/Q758220|http://www.wikidata.org/entity/Q566566|http://www.wikidata.org/entity/Q563380|http://www.wikidata.org/entity/Q444659|http://www.wikidata.org/entity/Q364986|http://www.wikidata.org/entity/Q86919|http://www.wikidata.org/entity/Q69640|http://www.wikidata.org/entity/Q65111|http://www.wikidata.org/entity/Q25839"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2015 film by Julia Heinz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7259568"}, "Title": {"type": "literal", "value": "Pulp"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14945715"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1701933"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 British comedy film best known for being released exclusively on Xbox Live directed by Adam Hamdy"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21009167"}, "Title": {"type": "literal", "value": "Je suis \u00e0 vous tout de suite"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2892185"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3310148|http://www.wikidata.org/entity/Q2892185"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21294786|http://www.wikidata.org/entity/Q3570989|http://www.wikidata.org/entity/Q3559331|http://www.wikidata.org/entity/Q3418669|http://www.wikidata.org/entity/Q3340076|http://www.wikidata.org/entity/Q3310148|http://www.wikidata.org/entity/Q3269248|http://www.wikidata.org/entity/Q3190701|http://www.wikidata.org/entity/Q2978439|http://www.wikidata.org/entity/Q1044296|http://www.wikidata.org/entity/Q993671|http://www.wikidata.org/entity/Q467957|http://www.wikidata.org/entity/Q449240|http://www.wikidata.org/entity/Q240521|http://www.wikidata.org/entity/Q204394|http://www.wikidata.org/entity/Q169394"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Baya Kasmi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3193645"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15039835"}, "Title": {"type": "literal", "value": "Annie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2576503"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168724|http://www.wikidata.org/entity/Q2576503|http://www.wikidata.org/entity/Q511934"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2907990|http://www.wikidata.org/entity/Q1651742|http://www.wikidata.org/entity/Q504706|http://www.wikidata.org/entity/Q476760|http://www.wikidata.org/entity/Q439438|http://www.wikidata.org/entity/Q428819|http://www.wikidata.org/entity/Q395274|http://www.wikidata.org/entity/Q294586|http://www.wikidata.org/entity/Q270665|http://www.wikidata.org/entity/Q241160|http://www.wikidata.org/entity/Q229268|http://www.wikidata.org/entity/Q228717|http://www.wikidata.org/entity/Q20968446|http://www.wikidata.org/entity/Q20880732|http://www.wikidata.org/entity/Q16204431|http://www.wikidata.org/entity/Q12859354|http://www.wikidata.org/entity/Q6537943|http://www.wikidata.org/entity/Q6192987|http://www.wikidata.org/entity/Q5576465|http://www.wikidata.org/entity/Q5262974|http://www.wikidata.org/entity/Q5217155|http://www.wikidata.org/entity/Q3110905|http://www.wikidata.org/entity/Q36844|http://www.wikidata.org/entity/Q37628|http://www.wikidata.org/entity/Q44380|http://www.wikidata.org/entity/Q164782|http://www.wikidata.org/entity/Q171905|http://www.wikidata.org/entity/Q181484"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "118"}, "Description": {"type": "literal", "value": "2014 musical comedy-drama film by Will Gluck"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q622668|http://www.wikidata.org/entity/Q2326925"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q708831"}, "Title": {"type": "literal", "value": "Son of Rambow"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q598683"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q598683"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q37266874|http://www.wikidata.org/entity/Q37266281|http://www.wikidata.org/entity/Q4678812|http://www.wikidata.org/entity/Q3588844|http://www.wikidata.org/entity/Q3160984|http://www.wikidata.org/entity/Q2583177|http://www.wikidata.org/entity/Q2352199|http://www.wikidata.org/entity/Q2079451|http://www.wikidata.org/entity/Q1319882|http://www.wikidata.org/entity/Q1060758|http://www.wikidata.org/entity/Q902800|http://www.wikidata.org/entity/Q522057|http://www.wikidata.org/entity/Q457702|http://www.wikidata.org/entity/Q318607|http://www.wikidata.org/entity/Q313545|http://www.wikidata.org/entity/Q312524|http://www.wikidata.org/entity/Q297198|http://www.wikidata.org/entity/Q259679|http://www.wikidata.org/entity/Q40026"}, "Published": {"type": "literal", "value": "2008|2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2007 film by Garth Jennings"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16482211"}, "Title": {"type": "literal", "value": "A los 40"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5734480"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9095740|http://www.wikidata.org/entity/Q6131272|http://www.wikidata.org/entity/Q6105615|http://www.wikidata.org/entity/Q6066567|http://www.wikidata.org/entity/Q5749962|http://www.wikidata.org/entity/Q5676200|http://www.wikidata.org/entity/Q5558094|http://www.wikidata.org/entity/Q5483505|http://www.wikidata.org/entity/Q466762"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Bruno Ascenzo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18290865"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6172133"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6172133"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6064444"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Jonas Selberg Augusts\u00e9n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15983504"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15983467"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15983467"}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Hamza Ali Abbasi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3645258"}, "Title": {"type": "literal", "value": "Brokers - Eroi per gioco"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27481672"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3846936|http://www.wikidata.org/entity/Q3738110|http://www.wikidata.org/entity/Q3707153|http://www.wikidata.org/entity/Q3617915|http://www.wikidata.org/entity/Q1135477"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "2009 film by Emiliano Cribari"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16312683"}, "Title": {"type": "literal", "value": "\u0baa\u0bb2\u0bc7 \u0baa\u0bbe\u0ba3\u0bcd\u0b9f\u0bbf\u0baf\u0bbe"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7508098"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7508098"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7935988|http://www.wikidata.org/entity/Q3595284"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Siddharth Chandrasekhar"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4651702"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3206655"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3525578|http://www.wikidata.org/entity/Q3084424"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1712292"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16185740|http://www.wikidata.org/entity/Q3559579|http://www.wikidata.org/entity/Q3280631|http://www.wikidata.org/entity/Q3165613|http://www.wikidata.org/entity/Q2896175|http://www.wikidata.org/entity/Q2832932|http://www.wikidata.org/entity/Q1341507|http://www.wikidata.org/entity/Q1146107|http://www.wikidata.org/entity/Q983159|http://www.wikidata.org/entity/Q737676|http://www.wikidata.org/entity/Q357387|http://www.wikidata.org/entity/Q318991|http://www.wikidata.org/entity/Q246518|http://www.wikidata.org/entity/Q227097"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Thomas Sorriaux, Fran\u00e7ois Desagnat"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15221574"}, "Title": {"type": "literal", "value": "Cine Holli\u00fady"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18275574"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10363255|http://www.wikidata.org/entity/Q9033575|http://www.wikidata.org/entity/Q5480918|http://www.wikidata.org/entity/Q3724582"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2012 film by Halder Gomes"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19321900"}, "Title": {"type": "literal", "value": "\u0b8e\u0bb2\u0bbf"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8062165"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8062165"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q967495"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Yuvaraj Dhayalan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4804116"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22928635"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q591801"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Khaled Marei"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3842328"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3703148"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "7"}, "Description": {"type": "literal", "value": "2009 film by David Constantin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16673195"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4717890"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Alex Timbers"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q940139"}, "Title": {"type": "literal", "value": "Get Him to the Greek"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2624066"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2624066"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q228717|http://www.wikidata.org/entity/Q216936|http://www.wikidata.org/entity/Q178882|http://www.wikidata.org/entity/Q171525|http://www.wikidata.org/entity/Q160009|http://www.wikidata.org/entity/Q131112|http://www.wikidata.org/entity/Q106193|http://www.wikidata.org/entity/Q105682|http://www.wikidata.org/entity/Q72077|http://www.wikidata.org/entity/Q41594|http://www.wikidata.org/entity/Q14313|http://www.wikidata.org/entity/Q313671|http://www.wikidata.org/entity/Q313388|http://www.wikidata.org/entity/Q303751|http://www.wikidata.org/entity/Q296609|http://www.wikidata.org/entity/Q272927|http://www.wikidata.org/entity/Q233466|http://www.wikidata.org/entity/Q18638566|http://www.wikidata.org/entity/Q6554671|http://www.wikidata.org/entity/Q6372303|http://www.wikidata.org/entity/Q4817144|http://www.wikidata.org/entity/Q4241574|http://www.wikidata.org/entity/Q3806811|http://www.wikidata.org/entity/Q3304418|http://www.wikidata.org/entity/Q2903607|http://www.wikidata.org/entity/Q1322677|http://www.wikidata.org/entity/Q1148822|http://www.wikidata.org/entity/Q863042|http://www.wikidata.org/entity/Q531195|http://www.wikidata.org/entity/Q434497|http://www.wikidata.org/entity/Q432281|http://www.wikidata.org/entity/Q372559|http://www.wikidata.org/entity/Q369482|http://www.wikidata.org/entity/Q366044"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "2010 film by Nicholas Stoller"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383|http://www.wikidata.org/entity/Q512858|http://www.wikidata.org/entity/Q618091|http://www.wikidata.org/entity/Q2702789"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20969852"}, "Title": {"type": "literal", "value": "La solita commedia - Inferno"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3850245|http://www.wikidata.org/entity/Q3737951|http://www.wikidata.org/entity/Q532126"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2015 italian film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61919365"}, "Title": {"type": "literal", "value": "Die Hummel"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29014731"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29014731"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q95932|http://www.wikidata.org/entity/Q109720"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2010 film by Sebastian Stern"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30936573"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10309289"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2016 film by Jos\u00e9 Eduardo Belmonte"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28051209"}, "Title": {"type": "literal", "value": "I Don't Feel at Home in This World Anymore"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23834468"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23834468"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23834468|http://www.wikidata.org/entity/Q3807417|http://www.wikidata.org/entity/Q2083106|http://www.wikidata.org/entity/Q704184|http://www.wikidata.org/entity/Q616982|http://www.wikidata.org/entity/Q483771|http://www.wikidata.org/entity/Q452618|http://www.wikidata.org/entity/Q376031|http://www.wikidata.org/entity/Q290156|http://www.wikidata.org/entity/Q235905"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19367312|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2017 film by Macon Blair"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6090332"}, "Title": {"type": "literal", "value": "\u00c7akallarla Dans 2:Hastas\u0131y\u0131z Dede"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6064908"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6064908"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6082607|http://www.wikidata.org/entity/Q3624103"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Murat \u015eeker"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21856438"}, "Title": {"type": "literal", "value": "Hallo bungalow"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21856656"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21856656|http://www.wikidata.org/entity/Q1819488"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3531870|http://www.wikidata.org/entity/Q2753095|http://www.wikidata.org/entity/Q2339126|http://www.wikidata.org/entity/Q2288122|http://www.wikidata.org/entity/Q2235321|http://www.wikidata.org/entity/Q2170702|http://www.wikidata.org/entity/Q2006928|http://www.wikidata.org/entity/Q1925101|http://www.wikidata.org/entity/Q1639373|http://www.wikidata.org/entity/Q958994|http://www.wikidata.org/entity/Q540524"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Anne de Clercq"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21856660"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19473492"}, "Title": {"type": "literal", "value": "\u00c7akallarla Dans 3: S\u0131f\u0131r S\u0131k\u0131nt\u0131"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6064908"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6064908"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6082607|http://www.wikidata.org/entity/Q3624103"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Murat \u015eeker"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4003624"}, "Title": {"type": "literal", "value": "Un altr'anno e poi cresco"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3741699"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3879056|http://www.wikidata.org/entity/Q3838468|http://www.wikidata.org/entity/Q3756624|http://www.wikidata.org/entity/Q3741699|http://www.wikidata.org/entity/Q3681203|http://www.wikidata.org/entity/Q1042721"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2000 film by Federico Di Cicilia"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3706935"}, "Title": {"type": "literal", "value": "Diciotto anni dopo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3719608"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3845969|http://www.wikidata.org/entity/Q3719608"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4013682|http://www.wikidata.org/entity/Q3944358|http://www.wikidata.org/entity/Q3853059|http://www.wikidata.org/entity/Q3845969|http://www.wikidata.org/entity/Q3840444|http://www.wikidata.org/entity/Q3762891|http://www.wikidata.org/entity/Q3734264|http://www.wikidata.org/entity/Q3719608|http://www.wikidata.org/entity/Q3660170|http://www.wikidata.org/entity/Q555379"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2010 film by Edoardo Leo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20506836"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21572795"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28597204|http://www.wikidata.org/entity/Q27910500|http://www.wikidata.org/entity/Q23887684|http://www.wikidata.org/entity/Q20508545|http://www.wikidata.org/entity/Q16398433|http://www.wikidata.org/entity/Q6875613|http://www.wikidata.org/entity/Q4530743|http://www.wikidata.org/entity/Q3648587"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2012 film by David Babakhanyan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3211481"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3021834"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3021834"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q557272"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Delphine Gleize"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4527119"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21092329"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4441794"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2000 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43079134"}, "Title": {"type": "literal", "value": "Welcome to Acapulco"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18223669"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21067398|http://www.wikidata.org/entity/Q18223669|http://www.wikidata.org/entity/Q4532402|http://www.wikidata.org/entity/Q3643523|http://www.wikidata.org/entity/Q2734431|http://www.wikidata.org/entity/Q698094|http://www.wikidata.org/entity/Q313546|http://www.wikidata.org/entity/Q220584"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Guillermo Iv\u00e1n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q51756444"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26721163"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26721163"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27449526|http://www.wikidata.org/entity/Q454249"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2018 film directed by Augustine Frizzell"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q317921"}, "Title": {"type": "literal", "value": "Goldene Zeiten"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2078661"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1577922|http://www.wikidata.org/entity/Q1517525|http://www.wikidata.org/entity/Q471006|http://www.wikidata.org/entity/Q103918|http://www.wikidata.org/entity/Q95316|http://www.wikidata.org/entity/Q90041|http://www.wikidata.org/entity/Q89793|http://www.wikidata.org/entity/Q77758|http://www.wikidata.org/entity/Q74258"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "129"}, "Description": {"type": "literal", "value": "2006 film by Peter Thorwarth"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6489030"}, "Title": {"type": "literal", "value": "Large"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6317549"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 feature film directed by Justin Edgar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5826055"}, "Title": {"type": "literal", "value": "El paseo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16302557"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2939936"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Harold Trompetero"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3234648"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2778106|http://www.wikidata.org/entity/Q74428"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q74428|http://www.wikidata.org/entity/Q2778106"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q312661|http://www.wikidata.org/entity/Q2869522|http://www.wikidata.org/entity/Q3491010|http://www.wikidata.org/entity/Q3026948|http://www.wikidata.org/entity/Q2874769|http://www.wikidata.org/entity/Q1265121|http://www.wikidata.org/entity/Q391974|http://www.wikidata.org/entity/Q318991"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1999 film by Olivier Nakache, \u00c9ric Toledano"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61912659"}, "Title": {"type": "literal", "value": "Notes from Melanie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q53820435"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q53820435"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61912702|http://www.wikidata.org/entity/Q61912694|http://www.wikidata.org/entity/Q58391956"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "20"}, "Description": {"type": "literal", "value": "2019 film by Chris Stuckmann"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6153364"}, "Title": {"type": "literal", "value": "Truco"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5401729"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Andr\u00e9s Borghi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1543028"}, "Title": {"type": "literal", "value": "Grandma's Boy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7026507"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1713151|http://www.wikidata.org/entity/Q984077"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16935140|http://www.wikidata.org/entity/Q16832020|http://www.wikidata.org/entity/Q7291478|http://www.wikidata.org/entity/Q6386759|http://www.wikidata.org/entity/Q5617048|http://www.wikidata.org/entity/Q3110318|http://www.wikidata.org/entity/Q2640506|http://www.wikidata.org/entity/Q1713151|http://www.wikidata.org/entity/Q984077|http://www.wikidata.org/entity/Q547811|http://www.wikidata.org/entity/Q449531|http://www.wikidata.org/entity/Q371786|http://www.wikidata.org/entity/Q313388|http://www.wikidata.org/entity/Q298658|http://www.wikidata.org/entity/Q280793|http://www.wikidata.org/entity/Q238884|http://www.wikidata.org/entity/Q234204|http://www.wikidata.org/entity/Q232959|http://www.wikidata.org/entity/Q230218|http://www.wikidata.org/entity/Q192217"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2006 American comedy directed by Nicholaus Goossen"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434841|http://www.wikidata.org/entity/Q1584317|http://www.wikidata.org/entity/Q6535000"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7756140"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2107090"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Yin Lichuan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18610820"}, "Title": {"type": "literal", "value": "Babysitting 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3380121|http://www.wikidata.org/entity/Q3340086"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3380121"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3559579|http://www.wikidata.org/entity/Q3380121|http://www.wikidata.org/entity/Q2836561"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3272147|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2015 French film by Nicolas Benamou and Philippe Lacheau"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5160042"}, "Title": {"type": "literal", "value": "Confessions of an Action Star"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4954108"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q548163|http://www.wikidata.org/entity/Q471018|http://www.wikidata.org/entity/Q462354|http://www.wikidata.org/entity/Q449822|http://www.wikidata.org/entity/Q437449|http://www.wikidata.org/entity/Q371786|http://www.wikidata.org/entity/Q327217|http://www.wikidata.org/entity/Q263501|http://www.wikidata.org/entity/Q207969|http://www.wikidata.org/entity/Q206890|http://www.wikidata.org/entity/Q47100|http://www.wikidata.org/entity/Q42204|http://www.wikidata.org/entity/Q13909|http://www.wikidata.org/entity/Q16185735|http://www.wikidata.org/entity/Q5236475|http://www.wikidata.org/entity/Q2082056|http://www.wikidata.org/entity/Q1963814|http://www.wikidata.org/entity/Q1396357|http://www.wikidata.org/entity/Q1321014|http://www.wikidata.org/entity/Q1319770|http://www.wikidata.org/entity/Q711898"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Brad Martin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5222196"}, "Title": {"type": "literal", "value": "Todas las azafatas van al cielo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1160223"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1160223"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29418768|http://www.wikidata.org/entity/Q28008966|http://www.wikidata.org/entity/Q7910849|http://www.wikidata.org/entity/Q6983286|http://www.wikidata.org/entity/Q6160727|http://www.wikidata.org/entity/Q6110584|http://www.wikidata.org/entity/Q5371858|http://www.wikidata.org/entity/Q4723737|http://www.wikidata.org/entity/Q2393638|http://www.wikidata.org/entity/Q2272014|http://www.wikidata.org/entity/Q240136"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2002 film by Daniel Burman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q884293"}, "Title": {"type": "literal", "value": "Blindflug"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q816653"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "63"}, "Description": {"type": "literal", "value": "2007 film by Ben von Grafenstein"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28065109"}, "Title": {"type": "literal", "value": "Die Migrantigen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28064800"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q51765860|http://www.wikidata.org/entity/Q51762590|http://www.wikidata.org/entity/Q28064800"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q167090|http://www.wikidata.org/entity/Q22351143|http://www.wikidata.org/entity/Q5219252|http://www.wikidata.org/entity/Q1895135|http://www.wikidata.org/entity/Q1711858|http://www.wikidata.org/entity/Q1554211|http://www.wikidata.org/entity/Q1231780|http://www.wikidata.org/entity/Q1228093|http://www.wikidata.org/entity/Q916436|http://www.wikidata.org/entity/Q51765860|http://www.wikidata.org/entity/Q51762590"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2017 film by Arman T. Riahi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19370813"}, "Title": {"type": "literal", "value": "Der Nanny"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q64645"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1953755|http://www.wikidata.org/entity/Q64645"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19816547|http://www.wikidata.org/entity/Q2647101|http://www.wikidata.org/entity/Q2502302|http://www.wikidata.org/entity/Q2080205|http://www.wikidata.org/entity/Q1929298|http://www.wikidata.org/entity/Q1702610|http://www.wikidata.org/entity/Q1527740|http://www.wikidata.org/entity/Q1497350|http://www.wikidata.org/entity/Q1494512|http://www.wikidata.org/entity/Q1260674|http://www.wikidata.org/entity/Q1251322|http://www.wikidata.org/entity/Q469574|http://www.wikidata.org/entity/Q103918|http://www.wikidata.org/entity/Q91031|http://www.wikidata.org/entity/Q90771|http://www.wikidata.org/entity/Q64645|http://www.wikidata.org/entity/Q63059"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Matthias Schweigh\u00f6fer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2065911"}, "Title": {"type": "literal", "value": "Chutney Popcorn"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1261154"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3469385|http://www.wikidata.org/entity/Q2556603|http://www.wikidata.org/entity/Q1261154|http://www.wikidata.org/entity/Q723014|http://www.wikidata.org/entity/Q412643|http://www.wikidata.org/entity/Q289540|http://www.wikidata.org/entity/Q237925"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "1999 film by Nisha Ganatra"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q623072"}, "Title": {"type": "literal", "value": "Aquamarine"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4062581"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3177645"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1394456|http://www.wikidata.org/entity/Q704314|http://www.wikidata.org/entity/Q549948|http://www.wikidata.org/entity/Q439895|http://www.wikidata.org/entity/Q271926|http://www.wikidata.org/entity/Q242204|http://www.wikidata.org/entity/Q231928|http://www.wikidata.org/entity/Q231635|http://www.wikidata.org/entity/Q228598|http://www.wikidata.org/entity/Q215219"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q5442753|http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2006 Australian-American teen fantasy comedy film directed by Elizabeth Allen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q536811"}, "Title": {"type": "literal", "value": "Dance Flick"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q517362"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q310785"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1990727|http://www.wikidata.org/entity/Q1508008|http://www.wikidata.org/entity/Q1158726|http://www.wikidata.org/entity/Q522981|http://www.wikidata.org/entity/Q456199|http://www.wikidata.org/entity/Q370102|http://www.wikidata.org/entity/Q323201|http://www.wikidata.org/entity/Q310785|http://www.wikidata.org/entity/Q261812"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q622548|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2009 film by Damien Dante Wayans"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1111024"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56884483"}, "Title": {"type": "literal", "value": "Polvo carnavalero"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50358500"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Juan Camilo Pinz\u00f3n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q637169"}, "Title": {"type": "literal", "value": "Cloudy with a Chance of Meatballs"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7182133|http://www.wikidata.org/entity/Q3378803|http://www.wikidata.org/entity/Q13638984"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7363505|http://www.wikidata.org/entity/Q7340167|http://www.wikidata.org/entity/Q3378803|http://www.wikidata.org/entity/Q13638984|http://www.wikidata.org/entity/Q3810978"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009|2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q846544|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q21401869|http://www.wikidata.org/entity/Q2143665"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2009 animated film by Christopher Miller and Phil Lord"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1416835"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3878962"}, "Title": {"type": "literal", "value": "Notturno bus"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3703572"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3762536"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6096246|http://www.wikidata.org/entity/Q3893835|http://www.wikidata.org/entity/Q3849040|http://www.wikidata.org/entity/Q3845634|http://www.wikidata.org/entity/Q3791451|http://www.wikidata.org/entity/Q3611690|http://www.wikidata.org/entity/Q2717287|http://www.wikidata.org/entity/Q1052746|http://www.wikidata.org/entity/Q1042623|http://www.wikidata.org/entity/Q1042185|http://www.wikidata.org/entity/Q808664|http://www.wikidata.org/entity/Q555190|http://www.wikidata.org/entity/Q49026"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2421031|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2007 film by Davide Marengo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q54862508"}, "Title": {"type": "literal", "value": "Jojo Rabbit"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2388576"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2388576"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28935124|http://www.wikidata.org/entity/Q2388576|http://www.wikidata.org/entity/Q442897|http://www.wikidata.org/entity/Q316446|http://www.wikidata.org/entity/Q34436"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Taika Waititi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q953040"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7208673"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7943974"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2721855"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film directed by Vyshakh"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q595"}, "Title": {"type": "literal", "value": "Intouchables"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2778106|http://www.wikidata.org/entity/Q74428"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q74428|http://www.wikidata.org/entity/Q2778106"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3380569|http://www.wikidata.org/entity/Q3191017|http://www.wikidata.org/entity/Q3165518|http://www.wikidata.org/entity/Q3118485|http://www.wikidata.org/entity/Q3084174|http://www.wikidata.org/entity/Q3084132|http://www.wikidata.org/entity/Q3009038|http://www.wikidata.org/entity/Q2979699|http://www.wikidata.org/entity/Q2851174|http://www.wikidata.org/entity/Q2830742|http://www.wikidata.org/entity/Q1044462|http://www.wikidata.org/entity/Q600051|http://www.wikidata.org/entity/Q511485|http://www.wikidata.org/entity/Q457089|http://www.wikidata.org/entity/Q357387|http://www.wikidata.org/entity/Q20723802|http://www.wikidata.org/entity/Q18326681|http://www.wikidata.org/entity/Q17352673|http://www.wikidata.org/entity/Q16685232|http://www.wikidata.org/entity/Q15146875|http://www.wikidata.org/entity/Q15069878|http://www.wikidata.org/entity/Q3525573"}, "Published": {"type": "literal", "value": "2012|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q645928|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "2011 French film directed by Olivier Nakache and \u00c9ric Toledano"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q214683|http://www.wikidata.org/entity/Q913462"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18393245"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19894394"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19894394"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3595178"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Dileesh Nair"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16653874"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3084424"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3380215"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3380215|http://www.wikidata.org/entity/Q3017572|http://www.wikidata.org/entity/Q1609167|http://www.wikidata.org/entity/Q447419"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film directed by Fran\u00e7ois Desagnat"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1375196"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q719937"}, "Title": {"type": "literal", "value": "Hasta la Vista!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2663764"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20870076|http://www.wikidata.org/entity/Q4810494"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2103868|http://www.wikidata.org/entity/Q1813504|http://www.wikidata.org/entity/Q514769|http://www.wikidata.org/entity/Q16069975|http://www.wikidata.org/entity/Q14639747|http://www.wikidata.org/entity/Q4810494|http://www.wikidata.org/entity/Q4725827|http://www.wikidata.org/entity/Q2961022|http://www.wikidata.org/entity/Q2914122|http://www.wikidata.org/entity/Q2791063|http://www.wikidata.org/entity/Q2784372|http://www.wikidata.org/entity/Q2773568|http://www.wikidata.org/entity/Q2768812|http://www.wikidata.org/entity/Q2735917|http://www.wikidata.org/entity/Q2443087|http://www.wikidata.org/entity/Q2436718|http://www.wikidata.org/entity/Q2431878|http://www.wikidata.org/entity/Q2306338|http://www.wikidata.org/entity/Q2278795"}, "Published": {"type": "literal", "value": "2011|2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q1257444"}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "2011 film by Geoffrey Enthoven"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3535865"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3367704"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17521664|http://www.wikidata.org/entity/Q3141565|http://www.wikidata.org/entity/Q2934960|http://www.wikidata.org/entity/Q2884036|http://www.wikidata.org/entity/Q2865970|http://www.wikidata.org/entity/Q2863229|http://www.wikidata.org/entity/Q746932|http://www.wikidata.org/entity/Q681451|http://www.wikidata.org/entity/Q586054|http://www.wikidata.org/entity/Q239033|http://www.wikidata.org/entity/Q189422"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Pascale Pouzadoux"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3758274"}, "Title": {"type": "literal", "value": "Gardener of Eden"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q359331"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4678605"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20815413|http://www.wikidata.org/entity/Q19668406|http://www.wikidata.org/entity/Q15257250|http://www.wikidata.org/entity/Q3827889|http://www.wikidata.org/entity/Q2846601|http://www.wikidata.org/entity/Q2558129|http://www.wikidata.org/entity/Q1268936|http://www.wikidata.org/entity/Q1189169|http://www.wikidata.org/entity/Q532169|http://www.wikidata.org/entity/Q234564|http://www.wikidata.org/entity/Q224081|http://www.wikidata.org/entity/Q210076|http://www.wikidata.org/entity/Q190972|http://www.wikidata.org/entity/Q4293"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2007 film by Kevin Connolly"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14071865"}, "Title": {"type": "literal", "value": "Meet Me in Montenegro"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4717191"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7858375|http://www.wikidata.org/entity/Q742498|http://www.wikidata.org/entity/Q314659|http://www.wikidata.org/entity/Q232990|http://www.wikidata.org/entity/Q76188"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Alex Holdridge"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q57610049"}, "Title": {"type": "literal", "value": "\u041f\u0440\u0430\u0437\u0434\u043d\u0438\u043a"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29167705"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29167705"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q58096889|http://www.wikidata.org/entity/Q50840112|http://www.wikidata.org/entity/Q19859531|http://www.wikidata.org/entity/Q4503115|http://www.wikidata.org/entity/Q4462945|http://www.wikidata.org/entity/Q4074272"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "73"}, "Description": {"type": "literal", "value": "film directed by Alexey Gennadievich Krasovsky"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61672481"}, "Title": {"type": "literal", "value": "Matwetwe"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24885607"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24885607"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2017 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20899742"}, "Title": {"type": "literal", "value": "Neighbors 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2624066"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2624066|http://www.wikidata.org/entity/Q220308|http://www.wikidata.org/entity/Q3061320"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q196560|http://www.wikidata.org/entity/Q179041|http://www.wikidata.org/entity/Q83287|http://www.wikidata.org/entity/Q45229|http://www.wikidata.org/entity/Q4509|http://www.wikidata.org/entity/Q432281|http://www.wikidata.org/entity/Q383930|http://www.wikidata.org/entity/Q272915|http://www.wikidata.org/entity/Q228717|http://www.wikidata.org/entity/Q220308|http://www.wikidata.org/entity/Q16210963|http://www.wikidata.org/entity/Q15306031|http://www.wikidata.org/entity/Q5649155|http://www.wikidata.org/entity/Q4912515|http://www.wikidata.org/entity/Q4132067|http://www.wikidata.org/entity/Q739062|http://www.wikidata.org/entity/Q440956"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2016 film by Nicholas Stoller"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7973063"}, "Title": {"type": "literal", "value": "Watch Out"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7611855"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7611855"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6789241"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Steve Balderson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3695198"}, "Title": {"type": "literal", "value": "Cosmonauta"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3978256"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3984277|http://www.wikidata.org/entity/Q3978256"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6423720|http://www.wikidata.org/entity/Q4007739|http://www.wikidata.org/entity/Q3978256|http://www.wikidata.org/entity/Q3838709|http://www.wikidata.org/entity/Q3679866|http://www.wikidata.org/entity/Q697816"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2009 Italian coming-of-age film directed by Susanna Nicchiarelli"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3739211|http://www.wikidata.org/entity/Q3929491"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1228413"}, "Title": {"type": "literal", "value": "Kein Bund f\u00fcr\u2019s Leben"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16891732"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16891732|http://www.wikidata.org/entity/Q2020663"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23019131|http://www.wikidata.org/entity/Q2940433|http://www.wikidata.org/entity/Q2165705|http://www.wikidata.org/entity/Q2087712|http://www.wikidata.org/entity/Q2024805|http://www.wikidata.org/entity/Q1927038|http://www.wikidata.org/entity/Q1721422|http://www.wikidata.org/entity/Q1707681|http://www.wikidata.org/entity/Q1247316|http://www.wikidata.org/entity/Q692590|http://www.wikidata.org/entity/Q108942|http://www.wikidata.org/entity/Q108302|http://www.wikidata.org/entity/Q101840|http://www.wikidata.org/entity/Q64823"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Granz Henman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7580397"}, "Title": {"type": "literal", "value": "Spring Break '83"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1902549|http://www.wikidata.org/entity/Q965826"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1902549"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q355133"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Scott Spiegel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q725842"}, "Title": {"type": "literal", "value": "Monster House"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1523831"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7340535|http://www.wikidata.org/entity/Q2150289"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2006 film by Gil Kenan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q186941|http://www.wikidata.org/entity/Q457893|http://www.wikidata.org/entity/Q2405352|http://www.wikidata.org/entity/Q2702789"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20762680"}, "Title": {"type": "literal", "value": "Jumanji"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1678831"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5107425|http://www.wikidata.org/entity/Q3476302|http://www.wikidata.org/entity/Q3267145|http://www.wikidata.org/entity/Q139346"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q483907|http://www.wikidata.org/entity/Q428819|http://www.wikidata.org/entity/Q318134|http://www.wikidata.org/entity/Q234438|http://www.wikidata.org/entity/Q233786|http://www.wikidata.org/entity/Q231237|http://www.wikidata.org/entity/Q201656|http://www.wikidata.org/entity/Q10738|http://www.wikidata.org/entity/Q25999313|http://www.wikidata.org/entity/Q6755544|http://www.wikidata.org/entity/Q1806933|http://www.wikidata.org/entity/Q712457|http://www.wikidata.org/entity/Q618352"}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2973181|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "119"}, "Description": {"type": "literal", "value": "2017 American action adventure comedy film directed by Jake Kasdan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q186941|http://www.wikidata.org/entity/Q17335679"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2500842"}, "Title": {"type": "literal", "value": "Urlaub vom Leben"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1974092"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1974092|http://www.wikidata.org/entity/Q102418"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1686658|http://www.wikidata.org/entity/Q1606331|http://www.wikidata.org/entity/Q1556252|http://www.wikidata.org/entity/Q1288624|http://www.wikidata.org/entity/Q15429213|http://www.wikidata.org/entity/Q13548622|http://www.wikidata.org/entity/Q2512085|http://www.wikidata.org/entity/Q2503708|http://www.wikidata.org/entity/Q2080400|http://www.wikidata.org/entity/Q2080258|http://www.wikidata.org/entity/Q2020430|http://www.wikidata.org/entity/Q1806325|http://www.wikidata.org/entity/Q559891|http://www.wikidata.org/entity/Q122041|http://www.wikidata.org/entity/Q118053|http://www.wikidata.org/entity/Q65511"}, "Published": {"type": "literal", "value": "2006|2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2005 film by Neele Vollmar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1199301"}, "Title": {"type": "literal", "value": "The Powerpuff Girls Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q655250"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q655250|http://www.wikidata.org/entity/Q262510"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "72"}, "Description": {"type": "literal", "value": "2002 film by Craig McCracken"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q858803|http://www.wikidata.org/entity/Q2701255"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43371364"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q43371305"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q43371305"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60448463|http://www.wikidata.org/entity/Q60448456|http://www.wikidata.org/entity/Q60372117|http://www.wikidata.org/entity/Q33438653|http://www.wikidata.org/entity/Q21685705|http://www.wikidata.org/entity/Q12023459|http://www.wikidata.org/entity/Q12022667|http://www.wikidata.org/entity/Q11985642|http://www.wikidata.org/entity/Q11881121|http://www.wikidata.org/entity/Q11774418|http://www.wikidata.org/entity/Q10861544|http://www.wikidata.org/entity/Q5825305|http://www.wikidata.org/entity/Q1675647"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "77"}, "Description": {"type": "literal", "value": "2018 film by Tom\u00e1\u0161 Pavl\u00ed\u010dek"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28868136"}, "Title": {"type": "literal", "value": "\u0643\u0644\u0628 \u0628\u0644\u062f\u064a"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12243777"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22928869|http://www.wikidata.org/entity/Q18594203|http://www.wikidata.org/entity/Q22931475"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q919135"}, "Title": {"type": "literal", "value": "Cashback"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3476723"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3476723"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q798174|http://www.wikidata.org/entity/Q785482|http://www.wikidata.org/entity/Q447218|http://www.wikidata.org/entity/Q362228|http://www.wikidata.org/entity/Q236431|http://www.wikidata.org/entity/Q233707|http://www.wikidata.org/entity/Q213257"}, "Published": {"type": "literal", "value": "2006|2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2006 feature film by Sean Ellis"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2756503"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q186873"}, "Title": {"type": "literal", "value": "13 Semester"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1328470"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2020663|http://www.wikidata.org/entity/Q1328470"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19946588|http://www.wikidata.org/entity/Q2263101|http://www.wikidata.org/entity/Q2157388|http://www.wikidata.org/entity/Q1896401|http://www.wikidata.org/entity/Q1698467|http://www.wikidata.org/entity/Q1354323|http://www.wikidata.org/entity/Q1163254|http://www.wikidata.org/entity/Q1097434|http://www.wikidata.org/entity/Q817579|http://www.wikidata.org/entity/Q96660|http://www.wikidata.org/entity/Q90820|http://www.wikidata.org/entity/Q90293|http://www.wikidata.org/entity/Q76172"}, "Published": {"type": "literal", "value": "2010|2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2009 film by Frieder Wittich"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1217944"}, "Title": {"type": "literal", "value": "Die blaue Grenze"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2433403"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2433403"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2005 film by Till Franzen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q45232327"}, "Title": {"type": "literal", "value": "Verano no miente"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q45232266"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q45232266"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17364489|http://www.wikidata.org/entity/Q2884177"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "125"}, "Description": {"type": "literal", "value": "2018 film directed by Ernesto Santisteban"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15699342"}, "Title": {"type": "literal", "value": "The Muslims Are Coming!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6987345"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5246387"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Negin Farsad"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q52565044"}, "Title": {"type": "literal", "value": "Comme des rois"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3570535"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3570535"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q40675861|http://www.wikidata.org/entity/Q20240962|http://www.wikidata.org/entity/Q3265253|http://www.wikidata.org/entity/Q3191724|http://www.wikidata.org/entity/Q983159|http://www.wikidata.org/entity/Q242526"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Xabi Molia"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q631377"}, "Title": {"type": "literal", "value": "Napapiirin sankarit"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2665374"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5411720"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6303995|http://www.wikidata.org/entity/Q3742950|http://www.wikidata.org/entity/Q3742931|http://www.wikidata.org/entity/Q1378023|http://www.wikidata.org/entity/Q468517"}, "Published": {"type": "literal", "value": "2012|2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2010 Finnish comedy film directed by Dome Karukoski"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18688791"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30731066"}, "Title": {"type": "literal", "value": "Patients"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q738880"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q738880"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28967602|http://www.wikidata.org/entity/Q2411736"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Grand Corps Malade"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q913462|http://www.wikidata.org/entity/Q16662670"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q815425"}, "Title": {"type": "literal", "value": "Wer fr\u00fcher stirbt ist l\u00e4nger tot"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q96164"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15794221|http://www.wikidata.org/entity/Q96164"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q88861|http://www.wikidata.org/entity/Q43766528|http://www.wikidata.org/entity/Q109720|http://www.wikidata.org/entity/Q91813"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q304538"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2006 film comedy directed by Marcus H. Rosenm\u00fcller"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16973734"}, "Title": {"type": "literal", "value": "The Diary of a Teenage Girl"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21032133"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21032133"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4881743|http://www.wikidata.org/entity/Q3499302|http://www.wikidata.org/entity/Q3017888|http://www.wikidata.org/entity/Q380095|http://www.wikidata.org/entity/Q310637|http://www.wikidata.org/entity/Q240206|http://www.wikidata.org/entity/Q231382|http://www.wikidata.org/entity/Q19938372|http://www.wikidata.org/entity/Q11781641|http://www.wikidata.org/entity/Q7859798|http://www.wikidata.org/entity/Q6289066"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2015 American comedy-drama film directed by Marielle Heller"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28211219"}, "Title": {"type": "literal", "value": "Os Penetras 2 \u2013 Quem D\u00e1 Mais?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4759560"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2017 film by Andrucha Waddington"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3635593"}, "Title": {"type": "literal", "value": "Basette"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3756624"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3876239"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3846163|http://www.wikidata.org/entity/Q1144984|http://www.wikidata.org/entity/Q1052746|http://www.wikidata.org/entity/Q980037|http://www.wikidata.org/entity/Q82887"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "17"}, "Description": {"type": "literal", "value": "2008 film by Gabriele Mainetti"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28773369"}, "Title": {"type": "literal", "value": "Pieles"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3626210"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3626210"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q63120044|http://www.wikidata.org/entity/Q5044778|http://www.wikidata.org/entity/Q2757345|http://www.wikidata.org/entity/Q716527|http://www.wikidata.org/entity/Q275932|http://www.wikidata.org/entity/Q250382"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q53094"}, "Duration": {"type": "literal", "value": "77"}, "Description": {"type": "literal", "value": "2017 film by Eduardo Casanova"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29514872"}, "Title": {"type": "literal", "value": "The Florida Project"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7441419"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7441419|http://www.wikidata.org/entity/Q27230886"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q47006108|http://www.wikidata.org/entity/Q42302437|http://www.wikidata.org/entity/Q23834468|http://www.wikidata.org/entity/Q920607|http://www.wikidata.org/entity/Q188772"}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "2017 American drama film by Sean Baker"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28873425"}, "Title": {"type": "literal", "value": "De plus belle"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28872958"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28872958"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16666759|http://www.wikidata.org/entity/Q3375576|http://www.wikidata.org/entity/Q3186632|http://www.wikidata.org/entity/Q3183342|http://www.wikidata.org/entity/Q2625575|http://www.wikidata.org/entity/Q1857676|http://www.wikidata.org/entity/Q491766|http://www.wikidata.org/entity/Q434060"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Anne-Ga\u00eblle Daval"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2917130"}, "Title": {"type": "literal", "value": "Casa de Mi Padre"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6789190"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2846739"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q179576"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q622548|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2012 film by Matt Piedmont"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6952279|http://www.wikidata.org/entity/Q3098606"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42048434"}, "Title": {"type": "literal", "value": "Bodied"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1363428"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6404556"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17385846|http://www.wikidata.org/entity/Q17141311|http://www.wikidata.org/entity/Q16223951|http://www.wikidata.org/entity/Q16203002|http://www.wikidata.org/entity/Q11233915|http://www.wikidata.org/entity/Q7965817|http://www.wikidata.org/entity/Q6116482|http://www.wikidata.org/entity/Q2934421|http://www.wikidata.org/entity/Q361215|http://www.wikidata.org/entity/Q194032"}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "121"}, "Description": {"type": "literal", "value": "2017 film directed by Joseph Kahn"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19204752"}, "Title": {"type": "literal", "value": "The Boss"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2082056"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2082056|http://www.wikidata.org/entity/Q229048"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18921335|http://www.wikidata.org/entity/Q16226409|http://www.wikidata.org/entity/Q5056524|http://www.wikidata.org/entity/Q4419294|http://www.wikidata.org/entity/Q4355538|http://www.wikidata.org/entity/Q3938395|http://www.wikidata.org/entity/Q2943801|http://www.wikidata.org/entity/Q2754439|http://www.wikidata.org/entity/Q2082056|http://www.wikidata.org/entity/Q934467|http://www.wikidata.org/entity/Q544465|http://www.wikidata.org/entity/Q462354|http://www.wikidata.org/entity/Q310937|http://www.wikidata.org/entity/Q272927|http://www.wikidata.org/entity/Q257317|http://www.wikidata.org/entity/Q229048|http://www.wikidata.org/entity/Q221155|http://www.wikidata.org/entity/Q178882|http://www.wikidata.org/entity/Q44158"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2016 film by Ben Falcone"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q550558"}, "Title": {"type": "literal", "value": "The Muppets"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5925685"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2624066|http://www.wikidata.org/entity/Q202304"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q229013|http://www.wikidata.org/entity/Q223830|http://www.wikidata.org/entity/Q202304|http://www.wikidata.org/entity/Q193517|http://www.wikidata.org/entity/Q190972|http://www.wikidata.org/entity/Q186485|http://www.wikidata.org/entity/Q139325|http://www.wikidata.org/entity/Q108283|http://www.wikidata.org/entity/Q104081|http://www.wikidata.org/entity/Q83287|http://www.wikidata.org/entity/Q49001|http://www.wikidata.org/entity/Q23517|http://www.wikidata.org/entity/Q12006|http://www.wikidata.org/entity/Q540608|http://www.wikidata.org/entity/Q485310|http://www.wikidata.org/entity/Q483907|http://www.wikidata.org/entity/Q481832|http://www.wikidata.org/entity/Q440910|http://www.wikidata.org/entity/Q432437|http://www.wikidata.org/entity/Q365023|http://www.wikidata.org/entity/Q313039|http://www.wikidata.org/entity/Q273208|http://www.wikidata.org/entity/Q272927|http://www.wikidata.org/entity/Q237194|http://www.wikidata.org/entity/Q6391089|http://www.wikidata.org/entity/Q3116185|http://www.wikidata.org/entity/Q1378118|http://www.wikidata.org/entity/Q1239933|http://www.wikidata.org/entity/Q862028|http://www.wikidata.org/entity/Q552090"}, "Published": {"type": "literal", "value": "2011|2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2011 film by James Bobin"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191224"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2995658"}, "Title": {"type": "literal", "value": "Continental, un film sans fusil"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3501883"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3501883"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28806573|http://www.wikidata.org/entity/Q3454390|http://www.wikidata.org/entity/Q3372741|http://www.wikidata.org/entity/Q3292400|http://www.wikidata.org/entity/Q3291851|http://www.wikidata.org/entity/Q3105869|http://www.wikidata.org/entity/Q3098516|http://www.wikidata.org/entity/Q3066473|http://www.wikidata.org/entity/Q3035411|http://www.wikidata.org/entity/Q2910037"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2007 film by St\u00e9phane Lafleur"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2964928"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24931663"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4065391"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28368075"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2035141"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2015 film by Sarik Andreasyan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22074948"}, "Title": {"type": "literal", "value": "Bad Moms"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3081957|http://www.wikidata.org/entity/Q7436898"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3081957|http://www.wikidata.org/entity/Q7436898"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q37628|http://www.wikidata.org/entity/Q33605|http://www.wikidata.org/entity/Q18581762|http://www.wikidata.org/entity/Q17403226|http://www.wikidata.org/entity/Q17270160|http://www.wikidata.org/entity/Q5407903|http://www.wikidata.org/entity/Q2754439|http://www.wikidata.org/entity/Q1153513|http://www.wikidata.org/entity/Q1097511|http://www.wikidata.org/entity/Q727730|http://www.wikidata.org/entity/Q533655|http://www.wikidata.org/entity/Q512818|http://www.wikidata.org/entity/Q271986|http://www.wikidata.org/entity/Q237194|http://www.wikidata.org/entity/Q234606|http://www.wikidata.org/entity/Q228787|http://www.wikidata.org/entity/Q188280|http://www.wikidata.org/entity/Q178882"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2016 film by Jon Lucas, Scott Moore"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19868261"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3494885"}, "Title": {"type": "literal", "value": "Tout ce qui brille"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q541690|http://www.wikidata.org/entity/Q3134600"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3134600|http://www.wikidata.org/entity/Q541690"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q292756|http://www.wikidata.org/entity/Q234683|http://www.wikidata.org/entity/Q15136777|http://www.wikidata.org/entity/Q3509994|http://www.wikidata.org/entity/Q3484224|http://www.wikidata.org/entity/Q3367364|http://www.wikidata.org/entity/Q3335761|http://www.wikidata.org/entity/Q3334837|http://www.wikidata.org/entity/Q3286702|http://www.wikidata.org/entity/Q3265253|http://www.wikidata.org/entity/Q3176042|http://www.wikidata.org/entity/Q2866088|http://www.wikidata.org/entity/Q2671216|http://www.wikidata.org/entity/Q1835077|http://www.wikidata.org/entity/Q759001|http://www.wikidata.org/entity/Q541690|http://www.wikidata.org/entity/Q436888"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2010 film by G\u00e9raldine Nakache"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q62067070"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3610041"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2019 Italian film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3304113"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2032336"}, "Title": {"type": "literal", "value": "Welcome Home Roscoe Jenkins"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3843845"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3843845"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q267422|http://www.wikidata.org/entity/Q261796|http://www.wikidata.org/entity/Q229169|http://www.wikidata.org/entity/Q203960|http://www.wikidata.org/entity/Q183542|http://www.wikidata.org/entity/Q15079|http://www.wikidata.org/entity/Q4974455|http://www.wikidata.org/entity/Q492327|http://www.wikidata.org/entity/Q483148|http://www.wikidata.org/entity/Q433692|http://www.wikidata.org/entity/Q311962|http://www.wikidata.org/entity/Q271846"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "2008 film by Malcolm D. Lee"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q512858"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43295375"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7079736"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film directed by Ofir Lobel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16734019"}, "Title": {"type": "literal", "value": "Phone Swap"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15981681"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24852501"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014|2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Kunle Afolayan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q426828"}, "Title": {"type": "literal", "value": "Donnie Darko"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q711022"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q711022"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q127471|http://www.wikidata.org/entity/Q117500|http://www.wikidata.org/entity/Q49004|http://www.wikidata.org/entity/Q26935179|http://www.wikidata.org/entity/Q18340454|http://www.wikidata.org/entity/Q6269911|http://www.wikidata.org/entity/Q3624322|http://www.wikidata.org/entity/Q3500836|http://www.wikidata.org/entity/Q2240987|http://www.wikidata.org/entity/Q964783|http://www.wikidata.org/entity/Q676094|http://www.wikidata.org/entity/Q589849|http://www.wikidata.org/entity/Q546115|http://www.wikidata.org/entity/Q349928|http://www.wikidata.org/entity/Q327217|http://www.wikidata.org/entity/Q315208|http://www.wikidata.org/entity/Q271635|http://www.wikidata.org/entity/Q237774|http://www.wikidata.org/entity/Q233368|http://www.wikidata.org/entity/Q232837|http://www.wikidata.org/entity/Q220308|http://www.wikidata.org/entity/Q202381|http://www.wikidata.org/entity/Q133313"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "134|113"}, "Description": {"type": "literal", "value": "2001 film by Richard Kelly"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q644711"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5932659"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3418411"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Rambod Javan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q33284986"}, "Title": {"type": "literal", "value": "A Quint-mas Carol"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q33281968"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q33283086"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q33283086"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 short film by Justin Burquist"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10438882"}, "Title": {"type": "literal", "value": "Landspeed presents: CKY"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q297173"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q297173"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3390959|http://www.wikidata.org/entity/Q919042|http://www.wikidata.org/entity/Q316036|http://www.wikidata.org/entity/Q297173"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1999 film by Bam Margera"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11733137"}, "Title": {"type": "literal", "value": "\u0915\u093e\u092c\u0941\u0932 \u090f\u0915\u094d\u0938\u092a\u094d\u0930\u0947\u0938"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6344216"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6344216"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7405419|http://www.wikidata.org/entity/Q6551383|http://www.wikidata.org/entity/Q704859|http://www.wikidata.org/entity/Q313025|http://www.wikidata.org/entity/Q32452"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q628165|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q93196"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2006 Bollywood film directed by Kabir Khan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1696916"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17639852"}, "Title": {"type": "literal", "value": "The Editor"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4202035"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q272633|http://www.wikidata.org/entity/Q77035"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Matthew Kennedy"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4811599"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21639973"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21092329"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16236684"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5289192|http://www.wikidata.org/entity/Q4444277|http://www.wikidata.org/entity/Q4441999|http://www.wikidata.org/entity/Q4163864|http://www.wikidata.org/entity/Q1944158|http://www.wikidata.org/entity/Q487157"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2014 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3055062"}, "Title": {"type": "literal", "value": "\u5927\u4f6c\u611b\u7f8e\u9e97"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q996607"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q996607"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5238052|http://www.wikidata.org/entity/Q1059865|http://www.wikidata.org/entity/Q996607|http://www.wikidata.org/entity/Q912505|http://www.wikidata.org/entity/Q716027|http://www.wikidata.org/entity/Q704041|http://www.wikidata.org/entity/Q701039|http://www.wikidata.org/entity/Q380579|http://www.wikidata.org/entity/Q319364|http://www.wikidata.org/entity/Q277193|http://www.wikidata.org/entity/Q36970"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Stephen Fung"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26882438"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23760919"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "55"}, "Description": {"type": "literal", "value": "2016 film by Rueben Wood"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21819857"}, "Title": {"type": "literal", "value": "Sing Street"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3181205"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3181205"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23759119|http://www.wikidata.org/entity/Q9024781|http://www.wikidata.org/entity/Q2791895|http://www.wikidata.org/entity/Q444616|http://www.wikidata.org/entity/Q358032"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q842256"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2016 musical comedy-drama film directed by John Carney"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3818777"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21191123|http://www.wikidata.org/entity/Q21191121|http://www.wikidata.org/entity/Q5526897"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q33791454|http://www.wikidata.org/entity/Q28065303|http://www.wikidata.org/entity/Q21191123|http://www.wikidata.org/entity/Q21191121|http://www.wikidata.org/entity/Q5902375|http://www.wikidata.org/entity/Q5653560|http://www.wikidata.org/entity/Q2831782|http://www.wikidata.org/entity/Q763107|http://www.wikidata.org/entity/Q324030"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2008 film by Gast\u00f3n Duprat & Mariano Cohn"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21925075"}, "Title": {"type": "literal", "value": "The Edge of Seventeen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26908000"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26908000"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q229572|http://www.wikidata.org/entity/Q201279|http://www.wikidata.org/entity/Q40638|http://www.wikidata.org/entity/Q16236978|http://www.wikidata.org/entity/Q4718501|http://www.wikidata.org/entity/Q3731491|http://www.wikidata.org/entity/Q452347|http://www.wikidata.org/entity/Q242629|http://www.wikidata.org/entity/Q231726"}, "Published": {"type": "literal", "value": "2017|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2016 film by Kelly Fremon Craig"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1506909"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q579261"}, "Title": {"type": "literal", "value": "Mundo gr\u00faa"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2562608"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2562608"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28070847|http://www.wikidata.org/entity/Q6700790|http://www.wikidata.org/entity/Q6111340|http://www.wikidata.org/entity/Q5591498|http://www.wikidata.org/entity/Q5218961|http://www.wikidata.org/entity/Q2887161"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "1999 film by Pablo Trapero"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17539570"}, "Title": {"type": "literal", "value": "Doktorspiele"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1893857"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1893857"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2019755|http://www.wikidata.org/entity/Q1913731|http://www.wikidata.org/entity/Q1683505|http://www.wikidata.org/entity/Q1682918|http://www.wikidata.org/entity/Q1251037|http://www.wikidata.org/entity/Q559888|http://www.wikidata.org/entity/Q95311|http://www.wikidata.org/entity/Q69108|http://www.wikidata.org/entity/Q2020358"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2014 film by Marco Petry"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18352782"}, "Title": {"type": "literal", "value": "\u0b9a\u0b95\u0bb2\u0b95\u0bb2\u0bbe \u0bb5\u0bb2\u0bcd\u0bb2\u0bb5\u0ba9\u0bcd"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7645322"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q469886"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film directed by Suraj"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3521782"}, "Title": {"type": "literal", "value": "The Marc Pease Experience"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2438469"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2438469"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5516062|http://www.wikidata.org/entity/Q3574528|http://www.wikidata.org/entity/Q3299416|http://www.wikidata.org/entity/Q3163247|http://www.wikidata.org/entity/Q3007115|http://www.wikidata.org/entity/Q1279993|http://www.wikidata.org/entity/Q313705|http://www.wikidata.org/entity/Q67701|http://www.wikidata.org/entity/Q47100"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2009 film by Todd Louiso"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q208131"}, "Title": {"type": "literal", "value": "Shrek Forever After"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2507259"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q552255"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21401869|http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2010 animated comedy film directed by Mike Mitchell"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q500088"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q753605"}, "Title": {"type": "literal", "value": "Hop"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2037657"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24262189|http://www.wikidata.org/entity/Q24261987|http://www.wikidata.org/entity/Q4964545"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q262502|http://www.wikidata.org/entity/Q232047|http://www.wikidata.org/entity/Q202056|http://www.wikidata.org/entity/Q201927|http://www.wikidata.org/entity/Q49017|http://www.wikidata.org/entity/Q16759|http://www.wikidata.org/entity/Q485901|http://www.wikidata.org/entity/Q315864|http://www.wikidata.org/entity/Q296609"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2011 film by Tim Hill"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1189512|http://www.wikidata.org/entity/Q2702789"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7997639"}, "Title": {"type": "literal", "value": "Whore"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q369292"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q58327634|http://www.wikidata.org/entity/Q5525025|http://www.wikidata.org/entity/Q5339441|http://www.wikidata.org/entity/Q2603410|http://www.wikidata.org/entity/Q733691|http://www.wikidata.org/entity/Q713634|http://www.wikidata.org/entity/Q513432|http://www.wikidata.org/entity/Q503013|http://www.wikidata.org/entity/Q369292|http://www.wikidata.org/entity/Q234566|http://www.wikidata.org/entity/Q228789|http://www.wikidata.org/entity/Q80069|http://www.wikidata.org/entity/Q2597"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Thomas Dekker"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18703892"}, "Title": {"type": "literal", "value": "Youth"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q374678"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q374678"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q343616|http://www.wikidata.org/entity/Q268575|http://www.wikidata.org/entity/Q4717408|http://www.wikidata.org/entity/Q3836804|http://www.wikidata.org/entity/Q3827760|http://www.wikidata.org/entity/Q3756510|http://www.wikidata.org/entity/Q3609301|http://www.wikidata.org/entity/Q2806299|http://www.wikidata.org/entity/Q2590605|http://www.wikidata.org/entity/Q2158797|http://www.wikidata.org/entity/Q2020161|http://www.wikidata.org/entity/Q1594336|http://www.wikidata.org/entity/Q871004|http://www.wikidata.org/entity/Q719083|http://www.wikidata.org/entity/Q468387|http://www.wikidata.org/entity/Q240324|http://www.wikidata.org/entity/Q235200|http://www.wikidata.org/entity/Q191132|http://www.wikidata.org/entity/Q134077|http://www.wikidata.org/entity/Q123351|http://www.wikidata.org/entity/Q119721|http://www.wikidata.org/entity/Q41142|http://www.wikidata.org/entity/Q19406724|http://www.wikidata.org/entity/Q18223845|http://www.wikidata.org/entity/Q18030614|http://www.wikidata.org/entity/Q16730400|http://www.wikidata.org/entity/Q7231806|http://www.wikidata.org/entity/Q7149393"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "118"}, "Description": {"type": "literal", "value": "2015 film directed by Paolo Sorrentino"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16321327"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3631232"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1528398"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q973528"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4021766|http://www.wikidata.org/entity/Q3771825|http://www.wikidata.org/entity/Q3616769|http://www.wikidata.org/entity/Q3574220|http://www.wikidata.org/entity/Q1662519|http://www.wikidata.org/entity/Q1522638|http://www.wikidata.org/entity/Q1042540|http://www.wikidata.org/entity/Q935640|http://www.wikidata.org/entity/Q751973|http://www.wikidata.org/entity/Q503919|http://www.wikidata.org/entity/Q493352|http://www.wikidata.org/entity/Q472419|http://www.wikidata.org/entity/Q433856|http://www.wikidata.org/entity/Q433515"}, "Published": {"type": "literal", "value": "1958"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "1958 film by Giuseppe Lipartiti"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23565133"}, "Title": {"type": "literal", "value": "Pl\u00f6tzlich fett!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1624514"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16320787"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24039539|http://www.wikidata.org/entity/Q2285325|http://www.wikidata.org/entity/Q1712069|http://www.wikidata.org/entity/Q1600394|http://www.wikidata.org/entity/Q1133888|http://www.wikidata.org/entity/Q89424|http://www.wikidata.org/entity/Q87606|http://www.wikidata.org/entity/Q66027"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2011 film by Holger Haase"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19359134"}, "Title": {"type": "literal", "value": "Acn\u00e9"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19960535"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2008 Uruguayan film directed by Federico Veiroj"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3472803"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5650180"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5650180|http://www.wikidata.org/entity/Q5257870|http://www.wikidata.org/entity/Q4830060|http://www.wikidata.org/entity/Q4688834"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Hans Isaac"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28736862"}, "Title": {"type": "literal", "value": "Konrad & Katharina"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1450153"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q111498"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 German-Austrian TV film directed by Franziska Meletzky"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21964532"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4919568"}, "Title": {"type": "literal", "value": "Bjarnfre\u00f0arson"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3446294"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q445921"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "2009 film by Ragnar Bragason"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q9644367"}, "Title": {"type": "literal", "value": "Balas & Bolinhos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1670730"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "62"}, "Description": {"type": "literal", "value": "2001 film by Lu\u00eds Ismael"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16982089"}, "Title": {"type": "literal", "value": "Mississippi Grind"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3453777|http://www.wikidata.org/entity/Q4766862"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3453777|http://www.wikidata.org/entity/Q4766862"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192682|http://www.wikidata.org/entity/Q646261|http://www.wikidata.org/entity/Q526620|http://www.wikidata.org/entity/Q456480|http://www.wikidata.org/entity/Q238843|http://www.wikidata.org/entity/Q193458|http://www.wikidata.org/entity/Q6773512|http://www.wikidata.org/entity/Q6152556|http://www.wikidata.org/entity/Q2358416|http://www.wikidata.org/entity/Q1387412|http://www.wikidata.org/entity/Q816565|http://www.wikidata.org/entity/Q16253434"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q663106"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Anna Boden"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q851825"}, "Title": {"type": "literal", "value": "Mannen som elsket Yngve"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9345832"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2031514"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1190263|http://www.wikidata.org/entity/Q973271|http://www.wikidata.org/entity/Q273315|http://www.wikidata.org/entity/Q22093709|http://www.wikidata.org/entity/Q17103752|http://www.wikidata.org/entity/Q13582646|http://www.wikidata.org/entity/Q11993577|http://www.wikidata.org/entity/Q11980640|http://www.wikidata.org/entity/Q11967809|http://www.wikidata.org/entity/Q4940710|http://www.wikidata.org/entity/Q4578840|http://www.wikidata.org/entity/Q3924580|http://www.wikidata.org/entity/Q2022437"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q1257444|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2008 Norwegian film directed by Stian Kristiansen"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3657087"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4450043"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21092329|http://www.wikidata.org/entity/Q4125601"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21092329|http://www.wikidata.org/entity/Q4125601|http://www.wikidata.org/entity/Q25080"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13218109|http://www.wikidata.org/entity/Q4424669|http://www.wikidata.org/entity/Q4237373|http://www.wikidata.org/entity/Q4235710|http://www.wikidata.org/entity/Q4224524|http://www.wikidata.org/entity/Q4172110|http://www.wikidata.org/entity/Q4148281|http://www.wikidata.org/entity/Q4125601|http://www.wikidata.org/entity/Q4113110|http://www.wikidata.org/entity/Q2398970|http://www.wikidata.org/entity/Q287110|http://www.wikidata.org/entity/Q25080"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1436734|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2005 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1107739"}, "Title": {"type": "literal", "value": "Coldblooded"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1400238"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1400238"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q395274|http://www.wikidata.org/entity/Q361238|http://www.wikidata.org/entity/Q311769|http://www.wikidata.org/entity/Q271616|http://www.wikidata.org/entity/Q234967|http://www.wikidata.org/entity/Q43322|http://www.wikidata.org/entity/Q40143|http://www.wikidata.org/entity/Q462056|http://www.wikidata.org/entity/Q1339019|http://www.wikidata.org/entity/Q1173579|http://www.wikidata.org/entity/Q472282"}, "Published": {"type": "literal", "value": "1995"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16950433|http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q1788980|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "1995 film by Wallace Wolodarsky"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1983457"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q315592"}, "Title": {"type": "literal", "value": "Four Christmases"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q524897"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q235302|http://www.wikidata.org/entity/Q231811|http://www.wikidata.org/entity/Q190994|http://www.wikidata.org/entity/Q176945|http://www.wikidata.org/entity/Q171736|http://www.wikidata.org/entity/Q167520|http://www.wikidata.org/entity/Q108935|http://www.wikidata.org/entity/Q107730|http://www.wikidata.org/entity/Q7614304|http://www.wikidata.org/entity/Q7147781|http://www.wikidata.org/entity/Q6112134|http://www.wikidata.org/entity/Q2943801|http://www.wikidata.org/entity/Q2924850|http://www.wikidata.org/entity/Q1190692|http://www.wikidata.org/entity/Q713099|http://www.wikidata.org/entity/Q465571|http://www.wikidata.org/entity/Q356487|http://www.wikidata.org/entity/Q295964|http://www.wikidata.org/entity/Q44063"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q28026639"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2008 film by Seth Gordon"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q512858|http://www.wikidata.org/entity/Q79202"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43303293"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3894444"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2017 film by Paolo Ruffini"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3745440"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4310559"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22928635"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2827647|http://www.wikidata.org/entity/Q591801"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Khaled Marei"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60497831"}, "Title": {"type": "literal", "value": "Nobili bugie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41476289"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41476289"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3991973|http://www.wikidata.org/entity/Q3929147|http://www.wikidata.org/entity/Q3894434|http://www.wikidata.org/entity/Q3804842|http://www.wikidata.org/entity/Q315258|http://www.wikidata.org/entity/Q119598|http://www.wikidata.org/entity/Q107006"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2016 film directed by Antonio Pisu"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61586168"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5351024"}, "Title": {"type": "literal", "value": "El cielo rojo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20015283"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1135802|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Miguel Alejandro G\u00f3mez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1773883"}, "Title": {"type": "literal", "value": "Kleinstatthelden"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q57617371"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23788254"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2010 film by Marc Schaumburg"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q991440"}, "Title": {"type": "literal", "value": "Goon"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3308160"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q316756"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3875964|http://www.wikidata.org/entity/Q3177264|http://www.wikidata.org/entity/Q1529138|http://www.wikidata.org/entity/Q1357050|http://www.wikidata.org/entity/Q1258012|http://www.wikidata.org/entity/Q1189105|http://www.wikidata.org/entity/Q716169|http://www.wikidata.org/entity/Q316756|http://www.wikidata.org/entity/Q312129|http://www.wikidata.org/entity/Q298368|http://www.wikidata.org/entity/Q237781|http://www.wikidata.org/entity/Q193212"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1339864|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2011 Canadian-American film directed by Michael Dowse"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3505827"}, "Title": {"type": "literal", "value": "\u00da\u010dastn\u00edci z\u00e1jezdu"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11727279"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q723275|http://www.wikidata.org/entity/Q11727279"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q32787|http://www.wikidata.org/entity/Q61690691|http://www.wikidata.org/entity/Q61043065|http://www.wikidata.org/entity/Q17312097|http://www.wikidata.org/entity/Q12051006|http://www.wikidata.org/entity/Q12035606|http://www.wikidata.org/entity/Q12034415|http://www.wikidata.org/entity/Q12023662|http://www.wikidata.org/entity/Q11774275|http://www.wikidata.org/entity/Q11719712|http://www.wikidata.org/entity/Q11218422|http://www.wikidata.org/entity/Q10853432|http://www.wikidata.org/entity/Q10791191|http://www.wikidata.org/entity/Q6438503|http://www.wikidata.org/entity/Q3490004|http://www.wikidata.org/entity/Q2356044|http://www.wikidata.org/entity/Q2324843|http://www.wikidata.org/entity/Q2064616"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Ji\u0159\u00ed Vejd\u011blek"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4520222"}, "Title": {"type": "literal", "value": "\u0428\u0430\u043f\u0438\u0442\u043e-\u0448\u043e\u0443"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4264563"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4374664"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20070209|http://www.wikidata.org/entity/Q4444208|http://www.wikidata.org/entity/Q4368054|http://www.wikidata.org/entity/Q4192817|http://www.wikidata.org/entity/Q2369235"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1135802|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film directed by Sergey Loban"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4403001"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17810451"}, "Title": {"type": "literal", "value": "\u05de\u05d9\u05ea\u05d4 \u05d8\u05d5\u05d1\u05d4"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7000493"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7000493"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16128942|http://www.wikidata.org/entity/Q12411810|http://www.wikidata.org/entity/Q12410285|http://www.wikidata.org/entity/Q12409093|http://www.wikidata.org/entity/Q12406576|http://www.wikidata.org/entity/Q12403789|http://www.wikidata.org/entity/Q6980025|http://www.wikidata.org/entity/Q6597230|http://www.wikidata.org/entity/Q3161569|http://www.wikidata.org/entity/Q2599101|http://www.wikidata.org/entity/Q1229720|http://www.wikidata.org/entity/Q671640"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2014 film by Sharon Maymon"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60846366"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3340652"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Nicolas Pariser"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11386448"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11316214"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2365265|http://www.wikidata.org/entity/Q1144858|http://www.wikidata.org/entity/Q1060139"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q237338"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Yuki Tanada"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28114644"}, "Title": {"type": "literal", "value": "Deidra & Laney Rob a Train"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19865982"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Sydney Freeland"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1966713"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2663764"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6109552|http://www.wikidata.org/entity/Q2663764"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17600945|http://www.wikidata.org/entity/Q14639747|http://www.wikidata.org/entity/Q14438735|http://www.wikidata.org/entity/Q5636162|http://www.wikidata.org/entity/Q2781686|http://www.wikidata.org/entity/Q2663764|http://www.wikidata.org/entity/Q2227611|http://www.wikidata.org/entity/Q2225127|http://www.wikidata.org/entity/Q2200573|http://www.wikidata.org/entity/Q2093057|http://www.wikidata.org/entity/Q2004188"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Geoffrey Enthoven"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1265691"}, "Title": {"type": "literal", "value": "The Five-Year Engagement"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2624066"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2624066|http://www.wikidata.org/entity/Q202304"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19661595|http://www.wikidata.org/entity/Q5349376|http://www.wikidata.org/entity/Q3104324|http://www.wikidata.org/entity/Q2820073|http://www.wikidata.org/entity/Q539917|http://www.wikidata.org/entity/Q531195|http://www.wikidata.org/entity/Q2315802|http://www.wikidata.org/entity/Q1077635|http://www.wikidata.org/entity/Q912938|http://www.wikidata.org/entity/Q618352|http://www.wikidata.org/entity/Q503706|http://www.wikidata.org/entity/Q434661|http://www.wikidata.org/entity/Q373989|http://www.wikidata.org/entity/Q241897|http://www.wikidata.org/entity/Q239145|http://www.wikidata.org/entity/Q235328|http://www.wikidata.org/entity/Q215017|http://www.wikidata.org/entity/Q202304|http://www.wikidata.org/entity/Q193517"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "124"}, "Description": {"type": "literal", "value": "2012 film by Nicholas Stoller"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383|http://www.wikidata.org/entity/Q2702789|http://www.wikidata.org/entity/Q618091"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48897076"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8031978"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Wong Chun-chun"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17713411"}, "Title": {"type": "literal", "value": "Ted 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188492"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188492|http://www.wikidata.org/entity/Q6241864|http://www.wikidata.org/entity/Q4714271"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q374346|http://www.wikidata.org/entity/Q368424|http://www.wikidata.org/entity/Q355209|http://www.wikidata.org/entity/Q350208|http://www.wikidata.org/entity/Q343564|http://www.wikidata.org/entity/Q316955|http://www.wikidata.org/entity/Q313381|http://www.wikidata.org/entity/Q233886|http://www.wikidata.org/entity/Q231576|http://www.wikidata.org/entity/Q229036|http://www.wikidata.org/entity/Q224081|http://www.wikidata.org/entity/Q218718|http://www.wikidata.org/entity/Q201927|http://www.wikidata.org/entity/Q189226|http://www.wikidata.org/entity/Q188492|http://www.wikidata.org/entity/Q164119|http://www.wikidata.org/entity/Q152082|http://www.wikidata.org/entity/Q151168|http://www.wikidata.org/entity/Q58444|http://www.wikidata.org/entity/Q48337|http://www.wikidata.org/entity/Q16296|http://www.wikidata.org/entity/Q4914|http://www.wikidata.org/entity/Q2907990|http://www.wikidata.org/entity/Q2885746|http://www.wikidata.org/entity/Q2706805|http://www.wikidata.org/entity/Q2382385|http://www.wikidata.org/entity/Q1498498|http://www.wikidata.org/entity/Q1455459|http://www.wikidata.org/entity/Q1282382|http://www.wikidata.org/entity/Q1187274|http://www.wikidata.org/entity/Q862481|http://www.wikidata.org/entity/Q723057|http://www.wikidata.org/entity/Q707759|http://www.wikidata.org/entity/Q706844|http://www.wikidata.org/entity/Q5601054|http://www.wikidata.org/entity/Q5486092|http://www.wikidata.org/entity/Q5181365|http://www.wikidata.org/entity/Q4714271|http://www.wikidata.org/entity/Q4407963|http://www.wikidata.org/entity/Q4172513|http://www.wikidata.org/entity/Q24726582|http://www.wikidata.org/entity/Q16217365|http://www.wikidata.org/entity/Q16213883|http://www.wikidata.org/entity/Q16194726|http://www.wikidata.org/entity/Q15621280|http://www.wikidata.org/entity/Q9178960|http://www.wikidata.org/entity/Q7693340|http://www.wikidata.org/entity/Q7442359|http://www.wikidata.org/entity/Q6261993|http://www.wikidata.org/entity/Q6241864|http://www.wikidata.org/entity/Q5896455|http://www.wikidata.org/entity/Q5609534|http://www.wikidata.org/entity/Q4029"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "2015 film by Seth MacFarlane"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q588007"}, "Title": {"type": "literal", "value": "Baby Mama"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3308374"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3308374"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1319744|http://www.wikidata.org/entity/Q924104|http://www.wikidata.org/entity/Q726140|http://www.wikidata.org/entity/Q629696|http://www.wikidata.org/entity/Q462354|http://www.wikidata.org/entity/Q269869|http://www.wikidata.org/entity/Q235198|http://www.wikidata.org/entity/Q233027|http://www.wikidata.org/entity/Q230203|http://www.wikidata.org/entity/Q102124|http://www.wikidata.org/entity/Q16473|http://www.wikidata.org/entity/Q14540"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5442753|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2008 film by Michael McCullers"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2702789"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6427861"}, "Title": {"type": "literal", "value": "Kolpa\u00e7ino: Bomba"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8082387"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6056101|http://www.wikidata.org/entity/Q4802773"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by \u015eafak Sezer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3205021"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q899042"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q899042"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15676192|http://www.wikidata.org/entity/Q3416159|http://www.wikidata.org/entity/Q3351409|http://www.wikidata.org/entity/Q3334837|http://www.wikidata.org/entity/Q2980691|http://www.wikidata.org/entity/Q2625575|http://www.wikidata.org/entity/Q443884|http://www.wikidata.org/entity/Q441272"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Rapha\u00ebl Fejt\u00f6"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q9377354"}, "Title": {"type": "literal", "value": "Wojna \u017ce\u0144sko-m\u0119ska"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9394693"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11708569"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11766367"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by \u0141ukasz Palkowski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2415155"}, "Title": {"type": "literal", "value": "Remember the Daze"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56279044"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56279044"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q229166|http://www.wikidata.org/entity/Q199931|http://www.wikidata.org/entity/Q152555|http://www.wikidata.org/entity/Q29328|http://www.wikidata.org/entity/Q4356272|http://www.wikidata.org/entity/Q3194202|http://www.wikidata.org/entity/Q2820059|http://www.wikidata.org/entity/Q2342145|http://www.wikidata.org/entity/Q1383036|http://www.wikidata.org/entity/Q1339579|http://www.wikidata.org/entity/Q1252523|http://www.wikidata.org/entity/Q449626|http://www.wikidata.org/entity/Q422310|http://www.wikidata.org/entity/Q264946|http://www.wikidata.org/entity/Q237537|http://www.wikidata.org/entity/Q236463|http://www.wikidata.org/entity/Q229914"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Jess Manafort"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5135267"}, "Title": {"type": "literal", "value": "Close to Heaven"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11774164"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11774164"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q57878252|http://www.wikidata.org/entity/Q16957126|http://www.wikidata.org/entity/Q12050232|http://www.wikidata.org/entity/Q12022103|http://www.wikidata.org/entity/Q11723048|http://www.wikidata.org/entity/Q3858922|http://www.wikidata.org/entity/Q3646680|http://www.wikidata.org/entity/Q468499"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Dan Sv\u00e1tek"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19803437"}, "Title": {"type": "literal", "value": "16 \u00fcber Nacht!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2370977"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15791708"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q88864|http://www.wikidata.org/entity/Q2224375|http://www.wikidata.org/entity/Q1682638|http://www.wikidata.org/entity/Q1478606|http://www.wikidata.org/entity/Q1457314|http://www.wikidata.org/entity/Q1327925|http://www.wikidata.org/entity/Q1001304|http://www.wikidata.org/entity/Q560789|http://www.wikidata.org/entity/Q97473"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2014 film by Sven Bohse"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25999873"}, "Title": {"type": "literal", "value": "War with Grandpa"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2037657"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3530648|http://www.wikidata.org/entity/Q24951222"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q36949|http://www.wikidata.org/entity/Q20974029|http://www.wikidata.org/entity/Q185051"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 American family-comedy-drama film directed by Tim Hill"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17275678"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30890073"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15270257"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4445421|http://www.wikidata.org/entity/Q4112450|http://www.wikidata.org/entity/Q2865340"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Natalya Merkulova"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15728879"}, "Title": {"type": "literal", "value": "My Little Pony: Equestria Girls 2 \u2013 Rainbow Rocks"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15720731"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15710480"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "73"}, "Description": {"type": "literal", "value": "2014 animated film directed by Jayson Thiessen"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3783594"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28664952"}, "Title": {"type": "literal", "value": "\u041a\u043b\u0443\u0448\u0438"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2833792"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16692244"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4320202|http://www.wikidata.org/entity/Q3313664|http://www.wikidata.org/entity/Q167548"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Alexander Kott"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17415494"}, "Title": {"type": "literal", "value": "P\u00e5 B\u00f8lgelengde"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22442864"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22442864"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22442874|http://www.wikidata.org/entity/Q22283875|http://www.wikidata.org/entity/Q17107201|http://www.wikidata.org/entity/Q12009298"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2011 Norwegian film directed by Frode Nesb\u00f8 Nord\u00e5s"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5766398"}, "Title": {"type": "literal", "value": "Chiles xalape\u00f1os"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5854354"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Fabrizio Prada"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29021224"}, "Title": {"type": "literal", "value": "Bad Boys for Life"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19587511|http://www.wikidata.org/entity/Q17190262"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7173432"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q183542|http://www.wikidata.org/entity/Q123174|http://www.wikidata.org/entity/Q40096|http://www.wikidata.org/entity/Q41796239|http://www.wikidata.org/entity/Q350601|http://www.wikidata.org/entity/Q296883"}, "Published": {"type": "literal", "value": "2020"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q2678111|http://www.wikidata.org/entity/Q4984974"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2020 film directed by Adil El Arbi and Bilall Fallah"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17305144|http://www.wikidata.org/entity/Q186941"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q507490"}, "Title": {"type": "literal", "value": "\u0915\u0932 \u0939\u094b \u0928\u093e \u0939\u094b"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2332619"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q468442"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3632832|http://www.wikidata.org/entity/Q2341578|http://www.wikidata.org/entity/Q1628810|http://www.wikidata.org/entity/Q1612637|http://www.wikidata.org/entity/Q485557|http://www.wikidata.org/entity/Q464932|http://www.wikidata.org/entity/Q252290|http://www.wikidata.org/entity/Q188671|http://www.wikidata.org/entity/Q165816|http://www.wikidata.org/entity/Q147395|http://www.wikidata.org/entity/Q32342|http://www.wikidata.org/entity/Q9535"}, "Published": {"type": "literal", "value": "2004|2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "187"}, "Description": {"type": "literal", "value": "2003 film by Nikhil Advani"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1207592"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14826360"}, "Title": {"type": "literal", "value": "G.B.F."}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5225170"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q46998741|http://www.wikidata.org/entity/Q26084996|http://www.wikidata.org/entity/Q13565434|http://www.wikidata.org/entity/Q8044951|http://www.wikidata.org/entity/Q3023753|http://www.wikidata.org/entity/Q1927999|http://www.wikidata.org/entity/Q921470|http://www.wikidata.org/entity/Q729828|http://www.wikidata.org/entity/Q241681|http://www.wikidata.org/entity/Q238712|http://www.wikidata.org/entity/Q234207|http://www.wikidata.org/entity/Q234137|http://www.wikidata.org/entity/Q215219|http://www.wikidata.org/entity/Q211730|http://www.wikidata.org/entity/Q40473"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2013 film by Darren Stein"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5253809"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2332619"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2332619"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2017182|http://www.wikidata.org/entity/Q1992008|http://www.wikidata.org/entity/Q983043|http://www.wikidata.org/entity/Q834338|http://www.wikidata.org/entity/Q421581"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Nikhil Advani"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q47354316"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q274265"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q274265"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6786690"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2018 film directed by Ma\u0142gorzata Szumowska"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17378488"}, "Title": {"type": "literal", "value": "Recep \u0130vedik 4"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7813033"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q388027"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q388027"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Togan G\u00f6kbakar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1427730"}, "Title": {"type": "literal", "value": "Wayne's World 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3498661"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q185724|http://www.wikidata.org/entity/Q2910308|http://www.wikidata.org/entity/Q892822"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q779151|http://www.wikidata.org/entity/Q5528158|http://www.wikidata.org/entity/Q3952829|http://www.wikidata.org/entity/Q3498661|http://www.wikidata.org/entity/Q1354181|http://www.wikidata.org/entity/Q124357|http://www.wikidata.org/entity/Q617641|http://www.wikidata.org/entity/Q545924|http://www.wikidata.org/entity/Q533414|http://www.wikidata.org/entity/Q358990|http://www.wikidata.org/entity/Q351812|http://www.wikidata.org/entity/Q345325|http://www.wikidata.org/entity/Q311752|http://www.wikidata.org/entity/Q286570|http://www.wikidata.org/entity/Q266361|http://www.wikidata.org/entity/Q229749|http://www.wikidata.org/entity/Q185724|http://www.wikidata.org/entity/Q185051|http://www.wikidata.org/entity/Q131380|http://www.wikidata.org/entity/Q126826|http://www.wikidata.org/entity/Q80739|http://www.wikidata.org/entity/Q60493|http://www.wikidata.org/entity/Q16758|http://www.wikidata.org/entity/Q676094|http://www.wikidata.org/entity/Q1322660|http://www.wikidata.org/entity/Q888178"}, "Published": {"type": "literal", "value": "1994|1993"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q663106"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "1993 film by Stephen Surjik"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q159846"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6092946"}, "Title": {"type": "literal", "value": "Celal Tan ve Ailesinin A\u015f\u0131r\u0131 Ac\u0131kl\u0131 Hikayesi"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6090129"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6705231|http://www.wikidata.org/entity/Q6101841|http://www.wikidata.org/entity/Q5423258"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Onur \u00dcnl\u00fc"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30668415"}, "Title": {"type": "literal", "value": "\u0baa\u0bbe\u0bb0\u0bcd\u0b9f\u0bcd\u0b9f\u0bbf"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3524112"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3524112"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3424281"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Venkat Prabhu"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22000346"}, "Title": {"type": "literal", "value": "Sin filtro"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3876520"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q872345"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Nicol\u00e1s L\u00f3pez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q642559"}, "Title": {"type": "literal", "value": "EuroTrip"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3018358|http://www.wikidata.org/entity/Q6174898|http://www.wikidata.org/entity/Q4714077"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4714077|http://www.wikidata.org/entity/Q3018358|http://www.wikidata.org/entity/Q6174898"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q201927|http://www.wikidata.org/entity/Q195718|http://www.wikidata.org/entity/Q175535|http://www.wikidata.org/entity/Q133112|http://www.wikidata.org/entity/Q96191|http://www.wikidata.org/entity/Q14535|http://www.wikidata.org/entity/Q271627|http://www.wikidata.org/entity/Q254886|http://www.wikidata.org/entity/Q229528|http://www.wikidata.org/entity/Q215565|http://www.wikidata.org/entity/Q213824|http://www.wikidata.org/entity/Q4382501|http://www.wikidata.org/entity/Q3858922|http://www.wikidata.org/entity/Q2870023|http://www.wikidata.org/entity/Q15821131|http://www.wikidata.org/entity/Q14917610|http://www.wikidata.org/entity/Q2602612|http://www.wikidata.org/entity/Q2546318|http://www.wikidata.org/entity/Q1189021|http://www.wikidata.org/entity/Q521891|http://www.wikidata.org/entity/Q456358|http://www.wikidata.org/entity/Q449947|http://www.wikidata.org/entity/Q434291|http://www.wikidata.org/entity/Q377072|http://www.wikidata.org/entity/Q320204|http://www.wikidata.org/entity/Q296822"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2004 film by Jeff Schaffer"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7752106"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17351649"}, "Title": {"type": "literal", "value": "\u05d0\u05e4\u05e1 \u05d1\u05d9\u05d7\u05e1\u05d9 \u05d0\u05e0\u05d5\u05e9"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18001820"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18001820"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18091356|http://www.wikidata.org/entity/Q16131653|http://www.wikidata.org/entity/Q16128945|http://www.wikidata.org/entity/Q7068724|http://www.wikidata.org/entity/Q7047796|http://www.wikidata.org/entity/Q7044447|http://www.wikidata.org/entity/Q6829702|http://www.wikidata.org/entity/Q3573301|http://www.wikidata.org/entity/Q528853"}, "Published": {"type": "literal", "value": "2016|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2014 film directed by Talya Lavie"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18669866"}, "Title": {"type": "literal", "value": "Dirty Grandpa"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1159118"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22958604|http://www.wikidata.org/entity/Q15679593|http://www.wikidata.org/entity/Q6163031|http://www.wikidata.org/entity/Q5407903|http://www.wikidata.org/entity/Q457034|http://www.wikidata.org/entity/Q432973|http://www.wikidata.org/entity/Q363386|http://www.wikidata.org/entity/Q350589|http://www.wikidata.org/entity/Q232646|http://www.wikidata.org/entity/Q218279|http://www.wikidata.org/entity/Q210547|http://www.wikidata.org/entity/Q192165|http://www.wikidata.org/entity/Q45229|http://www.wikidata.org/entity/Q36949"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2016 American comedy film directed by Dan Mazer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17071483"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17073575"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6035995|http://www.wikidata.org/entity/Q277422"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Mamas K. Chandran"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3898441"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3838542|http://www.wikidata.org/entity/Q447156"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3961164|http://www.wikidata.org/entity/Q3838542|http://www.wikidata.org/entity/Q3619161|http://www.wikidata.org/entity/Q3609301|http://www.wikidata.org/entity/Q3605677|http://www.wikidata.org/entity/Q1085599|http://www.wikidata.org/entity/Q743887|http://www.wikidata.org/entity/Q459396|http://www.wikidata.org/entity/Q440033"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "121"}, "Description": {"type": "literal", "value": "1999 film by Mariano Laurenti, Luciano Caldore"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4855224"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16139519"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4918726|http://www.wikidata.org/entity/Q1087544"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Adisorn Tresirikasem"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27590807"}, "Title": {"type": "literal", "value": "Arctic Justice: Thunder Squad"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14645232"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23553923|http://www.wikidata.org/entity/Q16198106|http://www.wikidata.org/entity/Q14645232"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28968258|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Aaron Woodley"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21998350"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4881302"}, "Title": {"type": "literal", "value": "Being Michael Madsen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22279262"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q220584"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Michael Mongillo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43208788"}, "Title": {"type": "literal", "value": "The Extraordinary Journey Of The Fakir"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1410263"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3264745"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q331050|http://www.wikidata.org/entity/Q28487|http://www.wikidata.org/entity/Q16236368|http://www.wikidata.org/entity/Q15381644|http://www.wikidata.org/entity/Q2821516|http://www.wikidata.org/entity/Q816568|http://www.wikidata.org/entity/Q728158"}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2017 film by Marjane Satrapi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14541928"}, "Title": {"type": "literal", "value": "Par\u00e1dn\u011b pokecal"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q43371305"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q43371305"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18070526|http://www.wikidata.org/entity/Q17067219|http://www.wikidata.org/entity/Q12036129|http://www.wikidata.org/entity/Q12034388|http://www.wikidata.org/entity/Q12023435|http://www.wikidata.org/entity/Q11878252|http://www.wikidata.org/entity/Q10823043|http://www.wikidata.org/entity/Q3505255|http://www.wikidata.org/entity/Q3292493|http://www.wikidata.org/entity/Q43371305"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "75"}, "Description": {"type": "literal", "value": "2014 film by Tom\u00e1\u0161 Pavl\u00ed\u010dek"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48950557"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28368075"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28368075"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4534682|http://www.wikidata.org/entity/Q4406527|http://www.wikidata.org/entity/Q4399708|http://www.wikidata.org/entity/Q4237365|http://www.wikidata.org/entity/Q4235873|http://www.wikidata.org/entity/Q4143504|http://www.wikidata.org/entity/Q4141796|http://www.wikidata.org/entity/Q4132834"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "75"}, "Description": {"type": "literal", "value": "film directed by Leonid Margolin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17998997"}, "Title": {"type": "literal", "value": "Otok ljubavi"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q83487"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13081846|http://www.wikidata.org/entity/Q12749301|http://www.wikidata.org/entity/Q12719957|http://www.wikidata.org/entity/Q12633599|http://www.wikidata.org/entity/Q6524769|http://www.wikidata.org/entity/Q3228849|http://www.wikidata.org/entity/Q1254803|http://www.wikidata.org/entity/Q438820|http://www.wikidata.org/entity/Q311716"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Jasmile \u017dbani\u0107"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q62566132"}, "Title": {"type": "literal", "value": "Mann im Spagat"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1486110"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15623309|http://www.wikidata.org/entity/Q2021008|http://www.wikidata.org/entity/Q1486110|http://www.wikidata.org/entity/Q1100074|http://www.wikidata.org/entity/Q879073|http://www.wikidata.org/entity/Q103579|http://www.wikidata.org/entity/Q65511"}, "Published": {"type": "literal", "value": "2017|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2016 film by Timo Jacobs"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24611747"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q58002138"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21183528|http://www.wikidata.org/entity/Q18008998|http://www.wikidata.org/entity/Q4442491|http://www.wikidata.org/entity/Q4347806|http://www.wikidata.org/entity/Q2373179|http://www.wikidata.org/entity/Q558666|http://www.wikidata.org/entity/Q247846"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2016 film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1323594"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28087918"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1806295"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2641871"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2016 film by Lars Montag"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2935739"}, "Title": {"type": "literal", "value": "Begin Again"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3181205"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3181205"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41422|http://www.wikidata.org/entity/Q38875|http://www.wikidata.org/entity/Q4042|http://www.wikidata.org/entity/Q767499|http://www.wikidata.org/entity/Q438992|http://www.wikidata.org/entity/Q344567|http://www.wikidata.org/entity/Q231726|http://www.wikidata.org/entity/Q230378|http://www.wikidata.org/entity/Q219631|http://www.wikidata.org/entity/Q42581|http://www.wikidata.org/entity/Q18684260|http://www.wikidata.org/entity/Q4830761"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2013 film directed by John Carney"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1138789|http://www.wikidata.org/entity/Q23017119|http://www.wikidata.org/entity/Q18154751"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20649371"}, "Title": {"type": "literal", "value": "Goon: Last of the Enforcers"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q316756"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q316756"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15542608|http://www.wikidata.org/entity/Q13570507|http://www.wikidata.org/entity/Q11309114|http://www.wikidata.org/entity/Q1529138|http://www.wikidata.org/entity/Q1258012|http://www.wikidata.org/entity/Q1189105|http://www.wikidata.org/entity/Q1148822|http://www.wikidata.org/entity/Q716169|http://www.wikidata.org/entity/Q551558|http://www.wikidata.org/entity/Q316756|http://www.wikidata.org/entity/Q298368|http://www.wikidata.org/entity/Q237781|http://www.wikidata.org/entity/Q193212|http://www.wikidata.org/entity/Q188500"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1339864|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Jay Baruchel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19263995"}, "Title": {"type": "literal", "value": "Tangerine|Tangerine"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7441419"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7441419"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q44273|http://www.wikidata.org/entity/Q21596659|http://www.wikidata.org/entity/Q21596656|http://www.wikidata.org/entity/Q977095|http://www.wikidata.org/entity/Q943390"}, "Published": {"type": "literal", "value": "2015|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q28026639"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2015 film by Sean S. Baker"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q325077"}, "Title": {"type": "literal", "value": "1\u00bd Ritter \u2013 Auf der Suche nach der hinrei\u00dfenden Herzelinde"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q57391|http://www.wikidata.org/entity/Q17253608"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2020663"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q78641|http://www.wikidata.org/entity/Q78367|http://www.wikidata.org/entity/Q78006|http://www.wikidata.org/entity/Q77777|http://www.wikidata.org/entity/Q77035|http://www.wikidata.org/entity/Q76128|http://www.wikidata.org/entity/Q75187|http://www.wikidata.org/entity/Q72611|http://www.wikidata.org/entity/Q70808|http://www.wikidata.org/entity/Q68084|http://www.wikidata.org/entity/Q67917|http://www.wikidata.org/entity/Q63033|http://www.wikidata.org/entity/Q62352|http://www.wikidata.org/entity/Q57391|http://www.wikidata.org/entity/Q45387|http://www.wikidata.org/entity/Q22687781|http://www.wikidata.org/entity/Q21209197|http://www.wikidata.org/entity/Q2434366|http://www.wikidata.org/entity/Q2087712|http://www.wikidata.org/entity/Q1937361|http://www.wikidata.org/entity/Q1747632|http://www.wikidata.org/entity/Q1704038|http://www.wikidata.org/entity/Q1554211|http://www.wikidata.org/entity/Q1545055|http://www.wikidata.org/entity/Q1097451|http://www.wikidata.org/entity/Q1067500|http://www.wikidata.org/entity/Q220461|http://www.wikidata.org/entity/Q203806|http://www.wikidata.org/entity/Q114624|http://www.wikidata.org/entity/Q110710|http://www.wikidata.org/entity/Q102990|http://www.wikidata.org/entity/Q97717|http://www.wikidata.org/entity/Q96086"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "2008 film by Til Schweiger"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q126399"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11765865"}, "Title": {"type": "literal", "value": "Made in Poland"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3408710"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192881"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Przemys\u0142aw Wojcieszek"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1475765"}, "Title": {"type": "literal", "value": "Police Academy 4: Citizens on Patrol"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6194719"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1339176"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q708595|http://www.wikidata.org/entity/Q526365|http://www.wikidata.org/entity/Q523958|http://www.wikidata.org/entity/Q522533|http://www.wikidata.org/entity/Q445253|http://www.wikidata.org/entity/Q444284|http://www.wikidata.org/entity/Q381046|http://www.wikidata.org/entity/Q369424|http://www.wikidata.org/entity/Q318938|http://www.wikidata.org/entity/Q318685|http://www.wikidata.org/entity/Q298658|http://www.wikidata.org/entity/Q279225|http://www.wikidata.org/entity/Q265333|http://www.wikidata.org/entity/Q176945|http://www.wikidata.org/entity/Q62975|http://www.wikidata.org/entity/Q19663780|http://www.wikidata.org/entity/Q3982518|http://www.wikidata.org/entity/Q3023744|http://www.wikidata.org/entity/Q2903550|http://www.wikidata.org/entity/Q1391108|http://www.wikidata.org/entity/Q971344|http://www.wikidata.org/entity/Q849641|http://www.wikidata.org/entity/Q768677"}, "Published": {"type": "literal", "value": "1987"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "1987 film by Jim Drake"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q126399"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22665878"}, "Title": {"type": "literal", "value": "Thor: Ragnarok"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2388576"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q42244196|http://www.wikidata.org/entity/Q5181136|http://www.wikidata.org/entity/Q5113482"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q54314"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q2973181|http://www.wikidata.org/entity/Q2678111|http://www.wikidata.org/entity/Q1535153|http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q628165"}, "Duration": {"type": "literal", "value": "130"}, "Description": {"type": "literal", "value": "2017 superhero film produced by Marvel Studios"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q367466|http://www.wikidata.org/entity/Q1323594"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28173261"}, "Title": {"type": "literal", "value": "The Star"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7807482"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2017 film by Timothy Reckart"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q186941|http://www.wikidata.org/entity/Q1416835|http://www.wikidata.org/entity/Q1637250|http://www.wikidata.org/entity/Q2914692|http://www.wikidata.org/entity/Q4688987"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q39736092"}, "Title": {"type": "literal", "value": "Blind & H\u00e4sslich"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1478871"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1478871"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21032079|http://www.wikidata.org/entity/Q16061625|http://www.wikidata.org/entity/Q15990501|http://www.wikidata.org/entity/Q15907175|http://www.wikidata.org/entity/Q15822029|http://www.wikidata.org/entity/Q15820682|http://www.wikidata.org/entity/Q15784859|http://www.wikidata.org/entity/Q2157388|http://www.wikidata.org/entity/Q1580454|http://www.wikidata.org/entity/Q1478871|http://www.wikidata.org/entity/Q1223694|http://www.wikidata.org/entity/Q1163254|http://www.wikidata.org/entity/Q461724|http://www.wikidata.org/entity/Q96937|http://www.wikidata.org/entity/Q90374"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2017 film by Tom Lass"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1262452"}, "Title": {"type": "literal", "value": "\u091c\u093e\u0928\u0947 \u0924\u0942 \u092f\u093e \u091c\u093e\u0928\u0947 \u0928\u093e"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2820242"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2820242"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2364996|http://www.wikidata.org/entity/Q312781|http://www.wikidata.org/entity/Q63730"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "155"}, "Description": {"type": "literal", "value": "2008 film by Abbas Tyrewala"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2820005"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10427785"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5896780"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5896780"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014|2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2012 film by Karzan Kader"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7319867"}, "Title": {"type": "literal", "value": "Rezerwat"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9394693"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9339532"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by \u0141ukasz Palkowski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17011725"}, "Title": {"type": "literal", "value": "Sex After Kids"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23882167"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23882167"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Jeremy Lalonde"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7228593"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16728026"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16728026"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11056386|http://www.wikidata.org/entity/Q3536811"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Veerabhadram Chowdary"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28736927"}, "Title": {"type": "literal", "value": "Coexister"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3063963"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3063963"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3418669"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Fabrice \u00c9bou\u00e9"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1375196"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q53470370"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028394"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028394"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Antoine Desrosi\u00e8res"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17154837"}, "Title": {"type": "literal", "value": "Ast\u00e9rix: Le Domaine des dieux"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61875074|http://www.wikidata.org/entity/Q2833411"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2833411"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2014 French-Belgian 3D computer animated adventure family comedy film directed by Alexandre Astier"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1881062"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21009118"}, "Title": {"type": "literal", "value": "L'\u00c9tudiante et Monsieur Henri"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3156075"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3156075"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q106544"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2015 film by Ivan Calb\u00e9rac"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16410759"}, "Title": {"type": "literal", "value": "Jan Uusp\u00f5ld l\u00e4heb Tartusse"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12359148"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Andres Maimik"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4154027"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4077105"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4343990"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Ruslan Balttser"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q57587682"}, "Title": {"type": "literal", "value": "Skin Creepers"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1386089"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1386089"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q104371"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Ezra Tsegaye"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24705264"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6177291"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q369747|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2016 film by Jen Heck"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18967314"}, "Title": {"type": "literal", "value": "Staying Alive"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18967371"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18967371"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4580829|http://www.wikidata.org/entity/Q1780001|http://www.wikidata.org/entity/Q394570"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Charlotte Blom"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6736868"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10638837"}, "Title": {"type": "literal", "value": "Prinsessa"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4947374"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4947374"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5795551|http://www.wikidata.org/entity/Q4978610|http://www.wikidata.org/entity/Q4935946|http://www.wikidata.org/entity/Q4568692|http://www.wikidata.org/entity/Q486872|http://www.wikidata.org/entity/Q465175|http://www.wikidata.org/entity/Q440826"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Teresa Fabik"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4356136"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12250381"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q353690"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Wael Ehsan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6899172"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6105225"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6105225"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3765029"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by J. D. Chakravarthy"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4137975"}, "Title": {"type": "literal", "value": "Liberal Arts"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q223455"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q223455"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6246377|http://www.wikidata.org/entity/Q460457|http://www.wikidata.org/entity/Q313043|http://www.wikidata.org/entity/Q234644|http://www.wikidata.org/entity/Q229487|http://www.wikidata.org/entity/Q223455|http://www.wikidata.org/entity/Q83677|http://www.wikidata.org/entity/Q60802|http://www.wikidata.org/entity/Q45229"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2012 film by Josh Radnor"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7817481"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2092203"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3760228"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1680701"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19758079|http://www.wikidata.org/entity/Q6962622|http://www.wikidata.org/entity/Q947748|http://www.wikidata.org/entity/Q447721|http://www.wikidata.org/entity/Q349166|http://www.wikidata.org/entity/Q257317|http://www.wikidata.org/entity/Q237809|http://www.wikidata.org/entity/Q213706"}, "Published": {"type": "literal", "value": "1996"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "1996 film by Geoffrey Sax"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q54473106"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q40177542"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2018 film directed by Simone Spada"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1271407"}, "Title": {"type": "literal", "value": "La D\u00e9licatesse"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q325133"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q325133"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16667921|http://www.wikidata.org/entity/Q3561353|http://www.wikidata.org/entity/Q3287898|http://www.wikidata.org/entity/Q2966368|http://www.wikidata.org/entity/Q2833950|http://www.wikidata.org/entity/Q1139064|http://www.wikidata.org/entity/Q511485|http://www.wikidata.org/entity/Q462376|http://www.wikidata.org/entity/Q457089|http://www.wikidata.org/entity/Q304123|http://www.wikidata.org/entity/Q274043|http://www.wikidata.org/entity/Q268690|http://www.wikidata.org/entity/Q164976|http://www.wikidata.org/entity/Q116189"}, "Published": {"type": "literal", "value": "2012|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2011 film by David Foenkinos"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2450848"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2424215"}, "Title": {"type": "literal", "value": "Somers Town"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1372134"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7150728"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3900087|http://www.wikidata.org/entity/Q1334874|http://www.wikidata.org/entity/Q212351"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "71"}, "Description": {"type": "literal", "value": "2008 film by Shane Meadows"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q52144738"}, "Title": {"type": "literal", "value": "Uno al a\u00f1o no hace da\u00f1o"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50358500"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Juan Camilo Pinz\u00f3n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q9192203"}, "Title": {"type": "literal", "value": "Ciacho"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11813603"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11813603"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2509820"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Patryk Vega"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15809797"}, "Title": {"type": "literal", "value": "Fliegende Fische m\u00fcssen ins Meer"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1562353"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1562353"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2011 Swiss film by G\u00fczin Kar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20963032"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7146964"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17276302|http://www.wikidata.org/entity/Q6691102|http://www.wikidata.org/entity/Q6130604|http://www.wikidata.org/entity/Q5355019|http://www.wikidata.org/entity/Q4263481|http://www.wikidata.org/entity/Q717579"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 Hong Kong film directed by Patrick Kong"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q667548"}, "Title": {"type": "literal", "value": "Death of a Dynasty"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q344384"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q348696|http://www.wikidata.org/entity/Q344384|http://www.wikidata.org/entity/Q315099|http://www.wikidata.org/entity/Q238045|http://www.wikidata.org/entity/Q235870|http://www.wikidata.org/entity/Q234715|http://www.wikidata.org/entity/Q230817|http://www.wikidata.org/entity/Q229319|http://www.wikidata.org/entity/Q216936|http://www.wikidata.org/entity/Q62766|http://www.wikidata.org/entity/Q59185|http://www.wikidata.org/entity/Q42025|http://www.wikidata.org/entity/Q41076|http://www.wikidata.org/entity/Q3196366|http://www.wikidata.org/entity/Q2739748|http://www.wikidata.org/entity/Q2366744|http://www.wikidata.org/entity/Q1387412|http://www.wikidata.org/entity/Q1279993|http://www.wikidata.org/entity/Q1052019|http://www.wikidata.org/entity/Q962378|http://www.wikidata.org/entity/Q769259|http://www.wikidata.org/entity/Q708185|http://www.wikidata.org/entity/Q706911|http://www.wikidata.org/entity/Q618352|http://www.wikidata.org/entity/Q559074|http://www.wikidata.org/entity/Q541821|http://www.wikidata.org/entity/Q540608|http://www.wikidata.org/entity/Q516716|http://www.wikidata.org/entity/Q465814|http://www.wikidata.org/entity/Q462735|http://www.wikidata.org/entity/Q434913|http://www.wikidata.org/entity/Q425821|http://www.wikidata.org/entity/Q388785"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Damon Dash"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q62893588"}, "Title": {"type": "literal", "value": "Lo dejo cuando quiera"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6404813"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50825960"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23728778|http://www.wikidata.org/entity/Q8338310|http://www.wikidata.org/entity/Q6111016|http://www.wikidata.org/entity/Q6068440|http://www.wikidata.org/entity/Q5883909|http://www.wikidata.org/entity/Q3266852|http://www.wikidata.org/entity/Q2888100|http://www.wikidata.org/entity/Q594270|http://www.wikidata.org/entity/Q576436|http://www.wikidata.org/entity/Q261072|http://www.wikidata.org/entity/Q251636"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Carlos Ther\u00f3n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6488304"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12243777"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12243649|http://www.wikidata.org/entity/Q12237244|http://www.wikidata.org/entity/Q12222399|http://www.wikidata.org/entity/Q12182704|http://www.wikidata.org/entity/Q12181358|http://www.wikidata.org/entity/Q10982907"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Moataz El Touni"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18615719"}, "Title": {"type": "literal", "value": "\u0401\u043b\u043a\u0438 1914"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4222061|http://www.wikidata.org/entity/Q4207063|http://www.wikidata.org/entity/Q2833792|http://www.wikidata.org/entity/Q344854|http://www.wikidata.org/entity/Q28498172|http://www.wikidata.org/entity/Q17582593"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q344854|http://www.wikidata.org/entity/Q7510890"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3291006|http://www.wikidata.org/entity/Q25918148|http://www.wikidata.org/entity/Q21183528|http://www.wikidata.org/entity/Q15064549|http://www.wikidata.org/entity/Q4526492|http://www.wikidata.org/entity/Q4503115|http://www.wikidata.org/entity/Q3479732|http://www.wikidata.org/entity/Q2865340|http://www.wikidata.org/entity/Q442830"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2014 film by Timur Bekmambetov"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2892410"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3277441"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3014956"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3014956"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3016120|http://www.wikidata.org/entity/Q1339485|http://www.wikidata.org/entity/Q311165|http://www.wikidata.org/entity/Q260778"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Danielle Arbid"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27907637"}, "Title": {"type": "literal", "value": "Le Petit Locataire"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29053918"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q462950"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16672166|http://www.wikidata.org/entity/Q3380605|http://www.wikidata.org/entity/Q3335002|http://www.wikidata.org/entity/Q3144876|http://www.wikidata.org/entity/Q3118434|http://www.wikidata.org/entity/Q3010586|http://www.wikidata.org/entity/Q2899484|http://www.wikidata.org/entity/Q2853678|http://www.wikidata.org/entity/Q1945547|http://www.wikidata.org/entity/Q271944"}, "Published": {"type": "literal", "value": "2017|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2016 film by Nad\u00e8ge Loiseau"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6346551"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6389380"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6389380"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q908782|http://www.wikidata.org/entity/Q561820|http://www.wikidata.org/entity/Q234574"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Kenji Uchida"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12406694"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12403899"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12403899"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12403789|http://www.wikidata.org/entity/Q6860389"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Alon Gur Arye"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3351117"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q652149"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5996234"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3123705|http://www.wikidata.org/entity/Q3089275|http://www.wikidata.org/entity/Q470226|http://www.wikidata.org/entity/Q9543"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "145"}, "Description": {"type": "literal", "value": "2011 film by Anees Bazmee"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7667850"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22000314"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2896517"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3351313"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Beno\u00eet Forgeard"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4271816"}, "Title": {"type": "literal", "value": "\u041b\u044e\u0431\u043e\u0432\u044c \u0432 \u0431\u043e\u043b\u044c\u0448\u043e\u043c \u0433\u043e\u0440\u043e\u0434\u0435"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4102539"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4102539|http://www.wikidata.org/entity/Q4536851"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3874799|http://www.wikidata.org/entity/Q2832626|http://www.wikidata.org/entity/Q397682"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q132311|http://www.wikidata.org/entity/Q624771"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2009 Russian-Ukrainian romantic comedy film by Marius Vaisbergas"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11733862"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11715212"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11715212"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2000 film by Jacek Borcuch"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21640541"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15064148"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4314368"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2014 film by Oleg Assadulin"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4038074"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16326600"}, "Title": {"type": "literal", "value": "Sex Tape"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1678831"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2624066|http://www.wikidata.org/entity/Q202304"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q44380|http://www.wikidata.org/entity/Q7291588|http://www.wikidata.org/entity/Q4258026|http://www.wikidata.org/entity/Q2514422|http://www.wikidata.org/entity/Q1378118|http://www.wikidata.org/entity/Q529262|http://www.wikidata.org/entity/Q483907|http://www.wikidata.org/entity/Q296505|http://www.wikidata.org/entity/Q234466|http://www.wikidata.org/entity/Q202304|http://www.wikidata.org/entity/Q72077"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2014 film by Jake Kasdan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q822314"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5708728"}, "Title": {"type": "literal", "value": "Hello I Must Be Going"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2438469"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1701620|http://www.wikidata.org/entity/Q1189470|http://www.wikidata.org/entity/Q269802|http://www.wikidata.org/entity/Q235905|http://www.wikidata.org/entity/Q40064"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2012 film by Todd Louiso"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15895891"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028745"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028745"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18605727"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Noh Young-seok"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55831162"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3694286"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3719572"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2018 film directed by Corrado Nuzzo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q548066"}, "Title": {"type": "literal", "value": "Shrink"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6272209"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18608856"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18608856|http://www.wikidata.org/entity/Q1629331|http://www.wikidata.org/entity/Q1378842|http://www.wikidata.org/entity/Q1190693|http://www.wikidata.org/entity/Q1138674|http://www.wikidata.org/entity/Q739062|http://www.wikidata.org/entity/Q536653|http://www.wikidata.org/entity/Q470260|http://www.wikidata.org/entity/Q452560|http://www.wikidata.org/entity/Q361238|http://www.wikidata.org/entity/Q273044|http://www.wikidata.org/entity/Q262862|http://www.wikidata.org/entity/Q232419|http://www.wikidata.org/entity/Q225239|http://www.wikidata.org/entity/Q189992|http://www.wikidata.org/entity/Q167821|http://www.wikidata.org/entity/Q83338|http://www.wikidata.org/entity/Q25144|http://www.wikidata.org/entity/Q24057"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2009 film directed by Jonas Pate"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21008492"}, "Title": {"type": "literal", "value": "Die Kleinen und die B\u00f6sen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1901804"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2597852"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19958886|http://www.wikidata.org/entity/Q2450481|http://www.wikidata.org/entity/Q1669565|http://www.wikidata.org/entity/Q1578987|http://www.wikidata.org/entity/Q1577817|http://www.wikidata.org/entity/Q1409622|http://www.wikidata.org/entity/Q527047|http://www.wikidata.org/entity/Q125372|http://www.wikidata.org/entity/Q104670"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2015 film by Markus Sehr"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1763181"}, "Title": {"type": "literal", "value": "A Good Old Fashioned Orgy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1351776"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1351776"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4241574|http://www.wikidata.org/entity/Q1319744|http://www.wikidata.org/entity/Q934467|http://www.wikidata.org/entity/Q716343|http://www.wikidata.org/entity/Q685861|http://www.wikidata.org/entity/Q553895|http://www.wikidata.org/entity/Q469914|http://www.wikidata.org/entity/Q449822|http://www.wikidata.org/entity/Q437813|http://www.wikidata.org/entity/Q309788|http://www.wikidata.org/entity/Q261579|http://www.wikidata.org/entity/Q241686|http://www.wikidata.org/entity/Q239453|http://www.wikidata.org/entity/Q164328|http://www.wikidata.org/entity/Q14539"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2011 film by Alex Gregory"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12124994"}, "Title": {"type": "literal", "value": "The Idea"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7114379"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Owen 'Alik Shahadah"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1198448"}, "Title": {"type": "literal", "value": "Der die Tollkirsche ausgr\u00e4bt"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q65105"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q65105"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1710828|http://www.wikidata.org/entity/Q67917"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "43"}, "Description": {"type": "literal", "value": "2006 film by Franka Potente"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3598070"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18176387"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4017949|http://www.wikidata.org/entity/Q3944350|http://www.wikidata.org/entity/Q3939549|http://www.wikidata.org/entity/Q3840387|http://www.wikidata.org/entity/Q3804842|http://www.wikidata.org/entity/Q3712957|http://www.wikidata.org/entity/Q3664104|http://www.wikidata.org/entity/Q3615934|http://www.wikidata.org/entity/Q583977|http://www.wikidata.org/entity/Q327660"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2000 Italian comedy-drama film directed by Marco Pozzi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5870789"}, "Title": {"type": "literal", "value": "Fuga de cerebros 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6404813"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6067390|http://www.wikidata.org/entity/Q6056316|http://www.wikidata.org/entity/Q5883639|http://www.wikidata.org/entity/Q5822281|http://www.wikidata.org/entity/Q5747266|http://www.wikidata.org/entity/Q5662745|http://www.wikidata.org/entity/Q5658554|http://www.wikidata.org/entity/Q5559610|http://www.wikidata.org/entity/Q3826907|http://www.wikidata.org/entity/Q3624764|http://www.wikidata.org/entity/Q265719|http://www.wikidata.org/entity/Q201927"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Carlos Ther\u00f3n"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3772373|http://www.wikidata.org/entity/Q5696776"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60852191"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q74428"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Olivier Nakache"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30744922"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30729150"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30729150"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by St\u00e9phane H\u00e9nocque"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17052629"}, "Title": {"type": "literal", "value": "Eu N\u00e3o Fa\u00e7o a Menor Ideia do Que Eu T\u00f4 Fazendo Com a Minha Vida"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27835287"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15890642"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2012 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22928422"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12179122"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16119803"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Ahmed Nader Galal"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14901494"}, "Title": {"type": "literal", "value": "La Bataille de Solf\u00e9rino"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15069938"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15069938"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17497099|http://www.wikidata.org/entity/Q14605170|http://www.wikidata.org/entity/Q3559719|http://www.wikidata.org/entity/Q2872024"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Justine Triet"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15210611"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16250629"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5616586"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5616586"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Guinness Pakru"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20045021"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18818365"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Kazushi Watanabe"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q278190"}, "Title": {"type": "literal", "value": "A.R.O.G"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q732915"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q732915"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q307805|http://www.wikidata.org/entity/Q6097730|http://www.wikidata.org/entity/Q732915|http://www.wikidata.org/entity/Q469778|http://www.wikidata.org/entity/Q307906"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q622548"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Cem Y\u0131lmaz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q191921"}, "Title": {"type": "literal", "value": "Zero Effect"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1678831"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1678831"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20027888|http://www.wikidata.org/entity/Q447036|http://www.wikidata.org/entity/Q315763|http://www.wikidata.org/entity/Q272923|http://www.wikidata.org/entity/Q269894|http://www.wikidata.org/entity/Q47100"}, "Published": {"type": "literal", "value": "1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16950433|http://www.wikidata.org/entity/Q1200678|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "1998 film by Jake Kasdan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q622848"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q875965"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1654384"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q854737"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1151171|http://www.wikidata.org/entity/Q1138316|http://www.wikidata.org/entity/Q1136362|http://www.wikidata.org/entity/Q1092007|http://www.wikidata.org/entity/Q873277"}, "Published": {"type": "literal", "value": "2009|2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "2009 film by Yoshihiro Nakamura"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28961267"}, "Title": {"type": "literal", "value": "Die Notl\u00fcge"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19295809"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2091760"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q47007743|http://www.wikidata.org/entity/Q2091760|http://www.wikidata.org/entity/Q1591318|http://www.wikidata.org/entity/Q1320606|http://www.wikidata.org/entity/Q916344|http://www.wikidata.org/entity/Q825861|http://www.wikidata.org/entity/Q498767|http://www.wikidata.org/entity/Q167090|http://www.wikidata.org/entity/Q89907|http://www.wikidata.org/entity/Q89703"}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2017 television film directed by Marie Kreutzer"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1347462"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1129449"}, "Title": {"type": "literal", "value": "Conversations with Other Women"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5649872"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q529735"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1319539|http://www.wikidata.org/entity/Q270074|http://www.wikidata.org/entity/Q232171|http://www.wikidata.org/entity/Q200355|http://www.wikidata.org/entity/Q192643|http://www.wikidata.org/entity/Q170428"}, "Published": {"type": "literal", "value": "2009|2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2005 film by Hans Canosa"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28365455"}, "Title": {"type": "literal", "value": "\u041b\u0435\u0434\u044f\u043d\u043e\u0439 \u0443\u0440\u043e\u0436\u0430\u0439"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27990623"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27990623"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4506333|http://www.wikidata.org/entity/Q4440852|http://www.wikidata.org/entity/Q1350195"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Klim Shipenko"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19608844"}, "Title": {"type": "literal", "value": "Ma vie de courgette"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26897082"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q461350"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "66"}, "Description": {"type": "literal", "value": "2016 film by Claude Barras"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55258972"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q489831"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Kevin Smith"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2700070"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16253955"}, "Title": {"type": "literal", "value": "An Oversimplification of Her Beauty"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21062958"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21062958"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21062958"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2012 film by Terence Nance"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18170249"}, "Title": {"type": "literal", "value": "Mot naturen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17063823"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17063823"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17063823"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Ole Gi\u00e6ver"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56248958"}, "Title": {"type": "literal", "value": "In fraganti"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50358500"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Juan Camilo Pinz\u00f3n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1755269"}, "Title": {"type": "literal", "value": "Dirty Love"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1057926"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q230993"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3439358|http://www.wikidata.org/entity/Q3075466|http://www.wikidata.org/entity/Q2308892|http://www.wikidata.org/entity/Q1327896|http://www.wikidata.org/entity/Q1140031|http://www.wikidata.org/entity/Q962058|http://www.wikidata.org/entity/Q910568|http://www.wikidata.org/entity/Q724281|http://www.wikidata.org/entity/Q483558|http://www.wikidata.org/entity/Q459220|http://www.wikidata.org/entity/Q432437|http://www.wikidata.org/entity/Q350811|http://www.wikidata.org/entity/Q350314|http://www.wikidata.org/entity/Q286512|http://www.wikidata.org/entity/Q230993|http://www.wikidata.org/entity/Q216913|http://www.wikidata.org/entity/Q185122"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2005 film by John Mallory Asher"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20942819"}, "Title": {"type": "literal", "value": "Anomalisa"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21030803|http://www.wikidata.org/entity/Q312751"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q312751"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2015 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4003885"}, "Title": {"type": "literal", "value": "Un inverno freddo freddo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1745655"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3893633|http://www.wikidata.org/entity/Q3762268|http://www.wikidata.org/entity/Q179982"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3893633|http://www.wikidata.org/entity/Q3664104|http://www.wikidata.org/entity/Q3660170|http://www.wikidata.org/entity/Q3290121|http://www.wikidata.org/entity/Q1052746|http://www.wikidata.org/entity/Q973621|http://www.wikidata.org/entity/Q469201|http://www.wikidata.org/entity/Q456148"}, "Published": {"type": "literal", "value": "1996"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "1996 film by Roberto Cimpanelli"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3888818"}, "Title": {"type": "literal", "value": "Padroni di casa"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q676233"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1052746|http://www.wikidata.org/entity/Q676233"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1231066|http://www.wikidata.org/entity/Q1052746|http://www.wikidata.org/entity/Q319537|http://www.wikidata.org/entity/Q232470"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2012 film by Edoardo Gabbriellini"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3929491"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1460394"}, "Title": {"type": "literal", "value": "Young Adult"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q314502"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q230795"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6688529|http://www.wikidata.org/entity/Q5748042|http://www.wikidata.org/entity/Q3723465|http://www.wikidata.org/entity/Q2604240|http://www.wikidata.org/entity/Q271460|http://www.wikidata.org/entity/Q150482|http://www.wikidata.org/entity/Q80046|http://www.wikidata.org/entity/Q60802|http://www.wikidata.org/entity/Q727288|http://www.wikidata.org/entity/Q460503|http://www.wikidata.org/entity/Q455054|http://www.wikidata.org/entity/Q442193|http://www.wikidata.org/entity/Q374065|http://www.wikidata.org/entity/Q351290"}, "Published": {"type": "literal", "value": "2012|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q192881|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2011 American comedy-drama film directed by Jason Reitman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q159846|http://www.wikidata.org/entity/Q922453|http://www.wikidata.org/entity/Q5368270"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27985819"}, "Title": {"type": "literal", "value": "Spider-Man: Far from Home"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18519749"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5107425"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2023710|http://www.wikidata.org/entity/Q200566|http://www.wikidata.org/entity/Q191828|http://www.wikidata.org/entity/Q189489|http://www.wikidata.org/entity/Q172678|http://www.wikidata.org/entity/Q138005|http://www.wikidata.org/entity/Q133313"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2973181|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 superhero film produced by Marvel Studios"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q367466"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28662891"}, "Title": {"type": "literal", "value": "Es por tu bien"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6404813"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q537931"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3484328"}, "Title": {"type": "literal", "value": "Simon Konianski"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3307964"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3307964"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3497879|http://www.wikidata.org/entity/Q3397928|http://www.wikidata.org/entity/Q3242516|http://www.wikidata.org/entity/Q3183504|http://www.wikidata.org/entity/Q3173186"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2009 film by Micha Wald"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5958081"}, "Title": {"type": "literal", "value": "Karate a muerte en Torremolinos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6070232"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q52161654"}, "Title": {"type": "literal", "value": "El man, el superh\u00e9roe nacional"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16302557"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Harold Trompetero"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29368310"}, "Title": {"type": "literal", "value": "Die g\u00f6ttliche Ordnung"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29368920"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29368920"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28758234|http://www.wikidata.org/entity/Q16887870|http://www.wikidata.org/entity/Q4017949|http://www.wikidata.org/entity/Q1984941|http://www.wikidata.org/entity/Q1913471|http://www.wikidata.org/entity/Q1897408|http://www.wikidata.org/entity/Q1800425|http://www.wikidata.org/entity/Q1791537|http://www.wikidata.org/entity/Q850066|http://www.wikidata.org/entity/Q272545"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2016 Swiss film by Petra Biondina Volpe"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q158398"}, "Title": {"type": "literal", "value": "Iron Sky"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2063309"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2746094"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7608364|http://www.wikidata.org/entity/Q7171604|http://www.wikidata.org/entity/Q3612868|http://www.wikidata.org/entity/Q1365741|http://www.wikidata.org/entity/Q100417|http://www.wikidata.org/entity/Q77035|http://www.wikidata.org/entity/Q70808|http://www.wikidata.org/entity/Q62676"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20656352|http://www.wikidata.org/entity/Q2678111|http://www.wikidata.org/entity/Q761469|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2012 science-fiction comedy film by Timo Vuorensola"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2031636"}, "Title": {"type": "literal", "value": "Aanrijding in Moscou"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4751035"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19971953|http://www.wikidata.org/entity/Q3054299"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19971953|http://www.wikidata.org/entity/Q14524582|http://www.wikidata.org/entity/Q3542772|http://www.wikidata.org/entity/Q3155241|http://www.wikidata.org/entity/Q2431878|http://www.wikidata.org/entity/Q2186759|http://www.wikidata.org/entity/Q2130507|http://www.wikidata.org/entity/Q2103868|http://www.wikidata.org/entity/Q1973557|http://www.wikidata.org/entity/Q545546"}, "Published": {"type": "literal", "value": "2009|2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2008 film directed by Christophe Van Rompaey"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4546023"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12179122"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q591801"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 Egyptian film directed by Ahmed Nader Galal"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1122149"}, "Title": {"type": "literal", "value": "Soul Men"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3843845"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3938399"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20631143|http://www.wikidata.org/entity/Q12200303|http://www.wikidata.org/entity/Q4688986|http://www.wikidata.org/entity/Q4679224|http://www.wikidata.org/entity/Q2882569|http://www.wikidata.org/entity/Q562827|http://www.wikidata.org/entity/Q462408|http://www.wikidata.org/entity/Q337521|http://www.wikidata.org/entity/Q311962|http://www.wikidata.org/entity/Q271263|http://www.wikidata.org/entity/Q230278|http://www.wikidata.org/entity/Q223033|http://www.wikidata.org/entity/Q206439|http://www.wikidata.org/entity/Q176323|http://www.wikidata.org/entity/Q172678|http://www.wikidata.org/entity/Q44857"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2008 American musical comedy film directed by Malcolm D. Lee"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q179200"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18639756"}, "Title": {"type": "literal", "value": "Iron Sky: The Coming Race"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2063309"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2631010|http://www.wikidata.org/entity/Q2529359|http://www.wikidata.org/entity/Q998064|http://www.wikidata.org/entity/Q183347|http://www.wikidata.org/entity/Q77035|http://www.wikidata.org/entity/Q70808|http://www.wikidata.org/entity/Q11222319|http://www.wikidata.org/entity/Q7608364"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q20656352|http://www.wikidata.org/entity/Q622548|http://www.wikidata.org/entity/Q471839"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 science fiction comedy film by Timo Vuorensola"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1987819"}, "Title": {"type": "literal", "value": "Terrorama!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q320567"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q320567"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q320567|http://www.wikidata.org/entity/Q226466|http://www.wikidata.org/entity/Q205456"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2001 film by Edwin Brienen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q836821"}, "Title": {"type": "literal", "value": "The Hitchhiker's Guide to the Galaxy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q598683"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1626388|http://www.wikidata.org/entity/Q42"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16734434|http://www.wikidata.org/entity/Q6738551|http://www.wikidata.org/entity/Q1655608|http://www.wikidata.org/entity/Q1319539|http://www.wikidata.org/entity/Q598683|http://www.wikidata.org/entity/Q522057|http://www.wikidata.org/entity/Q433089|http://www.wikidata.org/entity/Q349391|http://www.wikidata.org/entity/Q325070|http://www.wikidata.org/entity/Q316446|http://www.wikidata.org/entity/Q314831|http://www.wikidata.org/entity/Q313705|http://www.wikidata.org/entity/Q309486|http://www.wikidata.org/entity/Q230383|http://www.wikidata.org/entity/Q207179|http://www.wikidata.org/entity/Q192912|http://www.wikidata.org/entity/Q191719|http://www.wikidata.org/entity/Q172261|http://www.wikidata.org/entity/Q108270|http://www.wikidata.org/entity/Q106481|http://www.wikidata.org/entity/Q38875"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2005 British-American comic science fiction film directed by Garth Jennings"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q497155|http://www.wikidata.org/entity/Q512858|http://www.wikidata.org/entity/Q598683"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24046169"}, "Title": {"type": "literal", "value": "Fr\u00e4ulein - Una fiaba d'inverno"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3663491"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3663491"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2016 film by Caterina Carone"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25409286"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q80609"}, "Title": {"type": "literal", "value": "A Feast at Midnight"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18206338"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q180338"}, "Published": {"type": "literal", "value": "1995"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1995 film by Justin Hardy"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3291170"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q42263944"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6059137|http://www.wikidata.org/entity/Q5796159|http://www.wikidata.org/entity/Q4157257|http://www.wikidata.org/entity/Q3380605|http://www.wikidata.org/entity/Q966867|http://www.wikidata.org/entity/Q533363|http://www.wikidata.org/entity/Q182991"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2013 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11267611"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11633519|http://www.wikidata.org/entity/Q11479348|http://www.wikidata.org/entity/Q4209036|http://www.wikidata.org/entity/Q4023328|http://www.wikidata.org/entity/Q2144254|http://www.wikidata.org/entity/Q463565"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11309530|http://www.wikidata.org/entity/Q1645932"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 anthology film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3774333"}, "Title": {"type": "literal", "value": "25 Watts"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3302146|http://www.wikidata.org/entity/Q1423428"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1423428"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2272014"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 Uruguayan urban comedy drama film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25490363"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1260345"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1260345"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2015 Israeli-German-NZ film comedy by Dror Shaul"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27975936"}, "Title": {"type": "literal", "value": "\u054a\u0561\u0570\u0561\u0576\u057b\u057e\u0578\u0582\u0574 \u0567 \u0574\u056b\u056c\u056b\u0578\u0576\u0561\u057f\u0565\u0580"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21572795"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21572795|http://www.wikidata.org/entity/Q4159704"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23887684|http://www.wikidata.org/entity/Q22958411|http://www.wikidata.org/entity/Q22138703|http://www.wikidata.org/entity/Q20509727|http://www.wikidata.org/entity/Q6875613|http://www.wikidata.org/entity/Q2567681"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by David Babakhanyan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7390175"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26834191"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26834193|http://www.wikidata.org/entity/Q6288595"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2016 film by Josh Appignanesi, Devorah Baum"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19627596"}, "Title": {"type": "literal", "value": "Undrafted"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q447872"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q447872"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1770468|http://www.wikidata.org/entity/Q432739|http://www.wikidata.org/entity/Q321770|http://www.wikidata.org/entity/Q297064"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q645928"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2015 film by Joseph Mazzello"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20347724"}, "Title": {"type": "literal", "value": "Voley"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6002829"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6160487|http://www.wikidata.org/entity/Q6002829|http://www.wikidata.org/entity/Q5766607|http://www.wikidata.org/entity/Q271836|http://www.wikidata.org/entity/Q130313"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2015 film by Mart\u00edn Piroyansky"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q492504"}, "Title": {"type": "literal", "value": "\uc368\ub2c8"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6362184"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6362184"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q712786|http://www.wikidata.org/entity/Q484422"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 South Korean film directed by Kang Hyeong-cheol"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28668770"}, "Title": {"type": "literal", "value": "Vieni a vivere a Napoli!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18539826"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2016 film by Guido Lombardi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11363860"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860820"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Kankur\u014d Kud\u014d"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2896821"}, "Title": {"type": "literal", "value": "\u05d7\u05de\u05e9 \u05e9\u05e2\u05d5\u05ea \u05de\u05e4\u05e8\u05d9\u05d6|Hamesh Shaot me'Pariz"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2894488"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6745634"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12406670|http://www.wikidata.org/entity/Q12405898|http://www.wikidata.org/entity/Q6836616|http://www.wikidata.org/entity/Q6782103|http://www.wikidata.org/entity/Q6594505|http://www.wikidata.org/entity/Q4492743"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film directed by Leonid Prudovsky"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19766009"}, "Title": {"type": "literal", "value": "V\u00e9r \u00e9s t\u0171sarok|Blood and High Heels"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19618406"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19618406"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4272902|http://www.wikidata.org/entity/Q781617"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "23"}, "Description": {"type": "literal", "value": "2012 Hungarian\u00a0short film directed by D\u00e1vid G\u00e9czy"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12222401"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12179122"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12249717"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Ahmed Nader Galal"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11942384"}, "Title": {"type": "literal", "value": "Vr\u00e1sky z l\u00e1sky"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6203818"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12035281"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15652255|http://www.wikidata.org/entity/Q12049496|http://www.wikidata.org/entity/Q12048498|http://www.wikidata.org/entity/Q12043246|http://www.wikidata.org/entity/Q12035874|http://www.wikidata.org/entity/Q12035846|http://www.wikidata.org/entity/Q12023093|http://www.wikidata.org/entity/Q12008147|http://www.wikidata.org/entity/Q11833417|http://www.wikidata.org/entity/Q10857514|http://www.wikidata.org/entity/Q7929814|http://www.wikidata.org/entity/Q7690553|http://www.wikidata.org/entity/Q6873344|http://www.wikidata.org/entity/Q6203641|http://www.wikidata.org/entity/Q4765872|http://www.wikidata.org/entity/Q3506732|http://www.wikidata.org/entity/Q3229474|http://www.wikidata.org/entity/Q866999|http://www.wikidata.org/entity/Q741577|http://www.wikidata.org/entity/Q555650|http://www.wikidata.org/entity/Q544058|http://www.wikidata.org/entity/Q468412|http://www.wikidata.org/entity/Q448921|http://www.wikidata.org/entity/Q440954|http://www.wikidata.org/entity/Q430017|http://www.wikidata.org/entity/Q265560|http://www.wikidata.org/entity/Q220119"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Ji\u0159\u00ed Strach"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3523100"}, "Title": {"type": "literal", "value": "The Trotsky"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434244"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3052376|http://www.wikidata.org/entity/Q2850841|http://www.wikidata.org/entity/Q976176|http://www.wikidata.org/entity/Q492789|http://www.wikidata.org/entity/Q449679|http://www.wikidata.org/entity/Q316756|http://www.wikidata.org/entity/Q232845"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "2009 film by Jacob Tierney"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q51879928"}, "Title": {"type": "literal", "value": "Sun Dogs"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q199929"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20644935|http://www.wikidata.org/entity/Q18353456|http://www.wikidata.org/entity/Q11257731|http://www.wikidata.org/entity/Q962221|http://www.wikidata.org/entity/Q317024|http://www.wikidata.org/entity/Q229487|http://www.wikidata.org/entity/Q199929|http://www.wikidata.org/entity/Q46677|http://www.wikidata.org/entity/Q16758"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Jennifer Morrison"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10269870"}, "Title": {"type": "literal", "value": "E A\u00ed... Comeu?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16337452"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q466049"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2012 film by Felipe Joffily"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56272405"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15978193"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9058429"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Zhang Meng"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13497103"}, "Title": {"type": "literal", "value": "El mundo es suyo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5667204"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Alfonso S\u00e1nchez Fern\u00e1ndez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23698359"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4776837"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 Croatian film directed by Antonio Nui\u0107"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4158934"}, "Title": {"type": "literal", "value": "\u0414\u0435\u0440\u0437\u043a\u0438\u0435 \u0434\u043d\u0438"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4077105"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4077105"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4157391"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Ruslan Balttser"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1307075"}, "Title": {"type": "literal", "value": "Einer wie Bruno"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q107359"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2011 film by Anja Jacobs"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26260650"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4751035"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "121"}, "Description": {"type": "literal", "value": "2016 film by Christophe Van Rompaey"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20092714"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16689303"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q641362"}, "Title": {"type": "literal", "value": "Monsters University"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5214348"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4473347|http://www.wikidata.org/entity/Q15069803|http://www.wikidata.org/entity/Q5214348"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q1342372"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2013 American animated film directed by Dan Scanlon"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q127552"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22350722"}, "Title": {"type": "literal", "value": "Carrie Pilby"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7648040"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4881743|http://www.wikidata.org/entity/Q1108634|http://www.wikidata.org/entity/Q723370|http://www.wikidata.org/entity/Q491264|http://www.wikidata.org/entity/Q431362|http://www.wikidata.org/entity/Q311143|http://www.wikidata.org/entity/Q296616"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Susan Johnson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28496973"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028883"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q42034059"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Magaly Richard-Serrano"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1825092"}, "Title": {"type": "literal", "value": "Baby on Board"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4964032"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q486103|http://www.wikidata.org/entity/Q378672|http://www.wikidata.org/entity/Q224026|http://www.wikidata.org/entity/Q178010"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2009 television film directed by Brian Herzlinger"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30929637"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18275574"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Halder Gomes"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q401512"}, "Title": {"type": "literal", "value": "Smash Cut"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6513443"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q890204|http://www.wikidata.org/entity/Q779529|http://www.wikidata.org/entity/Q561067|http://www.wikidata.org/entity/Q2709"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q853630|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "2009 film by Lee Demarbre"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2201"}, "Title": {"type": "literal", "value": "Kick-Ass"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2593"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q32661|http://www.wikidata.org/entity/Q2593"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q512818|http://www.wikidata.org/entity/Q472504|http://www.wikidata.org/entity/Q440956|http://www.wikidata.org/entity/Q388557|http://www.wikidata.org/entity/Q22916122|http://www.wikidata.org/entity/Q15695313|http://www.wikidata.org/entity/Q7089885|http://www.wikidata.org/entity/Q5248400|http://www.wikidata.org/entity/Q3418797|http://www.wikidata.org/entity/Q2302888|http://www.wikidata.org/entity/Q1189681|http://www.wikidata.org/entity/Q1132632|http://www.wikidata.org/entity/Q1058562|http://www.wikidata.org/entity/Q785270|http://www.wikidata.org/entity/Q541428|http://www.wikidata.org/entity/Q361610|http://www.wikidata.org/entity/Q312712|http://www.wikidata.org/entity/Q233868|http://www.wikidata.org/entity/Q72867|http://www.wikidata.org/entity/Q45923|http://www.wikidata.org/entity/Q42869|http://www.wikidata.org/entity/Q4509|http://www.wikidata.org/entity/Q229914"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q1535153|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q188473"}, "Duration": {"type": "literal", "value": "117"}, "Description": {"type": "literal", "value": "2010 film by Matthew Vaughn"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28252|http://www.wikidata.org/entity/Q1906017"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17091202"}, "Title": {"type": "literal", "value": "Die Gstettensaga: The Rise of Echsenfriedl"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q90384"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q90384"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20443008|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 Austrian science fiction and fantasy film directed by Johannes Grenzfurthner"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16672466"}, "Title": {"type": "literal", "value": "Relatos salvajes"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5212638"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5212638"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3870095|http://www.wikidata.org/entity/Q3357012|http://www.wikidata.org/entity/Q1189379|http://www.wikidata.org/entity/Q610750|http://www.wikidata.org/entity/Q463860|http://www.wikidata.org/entity/Q285022|http://www.wikidata.org/entity/Q26156430|http://www.wikidata.org/entity/Q26156416|http://www.wikidata.org/entity/Q26156303|http://www.wikidata.org/entity/Q26156301|http://www.wikidata.org/entity/Q26156298|http://www.wikidata.org/entity/Q26156123|http://www.wikidata.org/entity/Q19009022|http://www.wikidata.org/entity/Q16629559|http://www.wikidata.org/entity/Q8078416|http://www.wikidata.org/entity/Q7107150|http://www.wikidata.org/entity/Q6457187|http://www.wikidata.org/entity/Q6109125|http://www.wikidata.org/entity/Q6036287|http://www.wikidata.org/entity/Q5796159|http://www.wikidata.org/entity/Q5655823"}, "Published": {"type": "literal", "value": "2014|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16950433|http://www.wikidata.org/entity/Q5778924|http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "122"}, "Description": {"type": "literal", "value": "2014 anthology film by Dami\u00e1n Szifron"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2102224"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1976500"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2649944|http://www.wikidata.org/entity/Q2103750|http://www.wikidata.org/entity/Q514769|http://www.wikidata.org/entity/Q470843"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Hans Herbots"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16985835"}, "Title": {"type": "literal", "value": "The Inbetweeners 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5980564|http://www.wikidata.org/entity/Q5212810"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5980564|http://www.wikidata.org/entity/Q5212810"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14902479|http://www.wikidata.org/entity/Q1320512|http://www.wikidata.org/entity/Q591596|http://www.wikidata.org/entity/Q517974|http://www.wikidata.org/entity/Q352575"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2014 film directed by Damon Beesley and Iain Morris"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7210134"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q616728"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q249946|http://www.wikidata.org/entity/Q16429462|http://www.wikidata.org/entity/Q16423890|http://www.wikidata.org/entity/Q3480955|http://www.wikidata.org/entity/Q962283|http://www.wikidata.org/entity/Q739950|http://www.wikidata.org/entity/Q496913"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Olaf de Fleur"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2336453"}, "Title": {"type": "literal", "value": "Les Amours imaginaires|Heartbeats"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q551861"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q551861"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q382393|http://www.wikidata.org/entity/Q19543978|http://www.wikidata.org/entity/Q3375576|http://www.wikidata.org/entity/Q3302551|http://www.wikidata.org/entity/Q2851072|http://www.wikidata.org/entity/Q964873|http://www.wikidata.org/entity/Q551861|http://www.wikidata.org/entity/Q338704"}, "Published": {"type": "literal", "value": "2010|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2010 film by Xavier Dolan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10748653"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4159361"}, "Title": {"type": "literal", "value": "Min s\u00f8sters b\u00f8rn"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q952621"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12338513|http://www.wikidata.org/entity/Q12326885"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q38052575|http://www.wikidata.org/entity/Q38052540|http://www.wikidata.org/entity/Q21208039|http://www.wikidata.org/entity/Q12341493|http://www.wikidata.org/entity/Q12337040|http://www.wikidata.org/entity/Q12331627|http://www.wikidata.org/entity/Q12328868|http://www.wikidata.org/entity/Q12328505|http://www.wikidata.org/entity/Q12327192|http://www.wikidata.org/entity/Q12326969|http://www.wikidata.org/entity/Q12324918|http://www.wikidata.org/entity/Q12323948|http://www.wikidata.org/entity/Q12304588|http://www.wikidata.org/entity/Q1967835|http://www.wikidata.org/entity/Q1801272|http://www.wikidata.org/entity/Q443662|http://www.wikidata.org/entity/Q212661"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 film by Tomas Villum Jensen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6877200"}, "Title": {"type": "literal", "value": "Miss Nobody"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2433936"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q299324|http://www.wikidata.org/entity/Q239453|http://www.wikidata.org/entity/Q236250"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Tim Cox"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3226230"}, "Title": {"type": "literal", "value": "Le Raid"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3032767"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3032767|http://www.wikidata.org/entity/Q3106333"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2869522|http://www.wikidata.org/entity/Q23926410|http://www.wikidata.org/entity/Q15676192|http://www.wikidata.org/entity/Q3460880|http://www.wikidata.org/entity/Q3367400|http://www.wikidata.org/entity/Q3300994|http://www.wikidata.org/entity/Q3300366|http://www.wikidata.org/entity/Q3219419|http://www.wikidata.org/entity/Q3189442|http://www.wikidata.org/entity/Q3101365|http://www.wikidata.org/entity/Q3085933|http://www.wikidata.org/entity/Q2903928|http://www.wikidata.org/entity/Q2874769|http://www.wikidata.org/entity/Q2602323|http://www.wikidata.org/entity/Q1713457|http://www.wikidata.org/entity/Q1210548|http://www.wikidata.org/entity/Q728158|http://www.wikidata.org/entity/Q658468|http://www.wikidata.org/entity/Q462147|http://www.wikidata.org/entity/Q456360|http://www.wikidata.org/entity/Q437254|http://www.wikidata.org/entity/Q434287|http://www.wikidata.org/entity/Q391974|http://www.wikidata.org/entity/Q357387"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film directed by Djamel Bensalah"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q913462|http://www.wikidata.org/entity/Q1032540|http://www.wikidata.org/entity/Q2412906"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15044971"}, "Title": {"type": "literal", "value": "\u091c\u0917\u094d\u0917\u093e \u091c\u093e\u0938\u0942\u0938"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2857813"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2857813"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30070267|http://www.wikidata.org/entity/Q29174023|http://www.wikidata.org/entity/Q23712963|http://www.wikidata.org/entity/Q20090576|http://www.wikidata.org/entity/Q7427518|http://www.wikidata.org/entity/Q7425841|http://www.wikidata.org/entity/Q7285877|http://www.wikidata.org/entity/Q1063412|http://www.wikidata.org/entity/Q9550"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Anurag Basu"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3523273"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27959516"}, "Title": {"type": "literal", "value": "Diary of a Wimpy Kid: The Long Haul"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18558"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22350835"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28924936|http://www.wikidata.org/entity/Q23621815|http://www.wikidata.org/entity/Q494393|http://www.wikidata.org/entity/Q199945"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2017 American film by David Bowers"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19875286"}, "Title": {"type": "literal", "value": "The Little Death"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11685650"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11685650"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16617143|http://www.wikidata.org/entity/Q11685650|http://www.wikidata.org/entity/Q8073259|http://www.wikidata.org/entity/Q7687583|http://www.wikidata.org/entity/Q7609590|http://www.wikidata.org/entity/Q7146146|http://www.wikidata.org/entity/Q6451725|http://www.wikidata.org/entity/Q5968695|http://www.wikidata.org/entity/Q4133103|http://www.wikidata.org/entity/Q2033318|http://www.wikidata.org/entity/Q1093867|http://www.wikidata.org/entity/Q457905"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2014 film by Josh Lawson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18420627"}, "Title": {"type": "literal", "value": "Tutto molto bello"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3894444"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2014 film by Paolo Ruffini"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3304113"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18786603"}, "Title": {"type": "literal", "value": "Let's Kill Ward's Wife"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q364822"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q364822"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "2014 film by Scott Foley"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3233045"}, "Title": {"type": "literal", "value": "Les Grandes Personnes"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2850578"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3187997|http://www.wikidata.org/entity/Q615469|http://www.wikidata.org/entity/Q434051"}, "Published": {"type": "literal", "value": "2009|2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2008 film by Anna Novion"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60848749"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19630268"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2018 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11680829"}, "Title": {"type": "literal", "value": "The Story of Luke"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16217462"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16217462"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q918404|http://www.wikidata.org/entity/Q708512|http://www.wikidata.org/entity/Q311093|http://www.wikidata.org/entity/Q272296|http://www.wikidata.org/entity/Q186757|http://www.wikidata.org/entity/Q39974"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2012 film by Alonso Mayo"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16249376"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2940902"}, "Title": {"type": "literal", "value": "Case d\u00e9part"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3525440|http://www.wikidata.org/entity/Q3241948|http://www.wikidata.org/entity/Q3063963"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3063963"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15069912|http://www.wikidata.org/entity/Q3559843|http://www.wikidata.org/entity/Q3525440|http://www.wikidata.org/entity/Q3501476|http://www.wikidata.org/entity/Q3340568|http://www.wikidata.org/entity/Q3292200|http://www.wikidata.org/entity/Q3227983|http://www.wikidata.org/entity/Q3082317|http://www.wikidata.org/entity/Q3063963|http://www.wikidata.org/entity/Q3037894|http://www.wikidata.org/entity/Q3018751|http://www.wikidata.org/entity/Q2941947|http://www.wikidata.org/entity/Q2905980|http://www.wikidata.org/entity/Q2636417|http://www.wikidata.org/entity/Q1340950|http://www.wikidata.org/entity/Q511485|http://www.wikidata.org/entity/Q289524"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2011 film by Lionel Steketee"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5191791"}, "Title": {"type": "literal", "value": "Ctrl Emotion"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11926027"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11926027"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12057735|http://www.wikidata.org/entity/Q12035518|http://www.wikidata.org/entity/Q11926027|http://www.wikidata.org/entity/Q11878252|http://www.wikidata.org/entity/Q5825305|http://www.wikidata.org/entity/Q3565126"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "23"}, "Description": {"type": "literal", "value": "2009 film by Vojt\u011bch Kotek"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30123838"}, "Title": {"type": "literal", "value": "Solan og Ludvig: Herfra til Fl\u00e5klypa"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17107287"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 animated film directed by Rasmus A. Sivertsen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q775207"}, "Title": {"type": "literal", "value": "Thelma, Louise et Chantal"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2896630"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3510133|http://www.wikidata.org/entity/Q2861469|http://www.wikidata.org/entity/Q2604338|http://www.wikidata.org/entity/Q2360373|http://www.wikidata.org/entity/Q1931307|http://www.wikidata.org/entity/Q1775644|http://www.wikidata.org/entity/Q548400|http://www.wikidata.org/entity/Q511833|http://www.wikidata.org/entity/Q511485|http://www.wikidata.org/entity/Q446235|http://www.wikidata.org/entity/Q273292|http://www.wikidata.org/entity/Q212873"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2010 film by Beno\u00eet P\u00e9tr\u00e9"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28121275"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18819941"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20508902|http://www.wikidata.org/entity/Q20508545|http://www.wikidata.org/entity/Q471740"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2014 film by Hrach Keshishyan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3284891"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q462147"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q462147"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q462147|http://www.wikidata.org/entity/Q328511|http://www.wikidata.org/entity/Q239868|http://www.wikidata.org/entity/Q3193296"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by H\u00e9l\u00e8ne de Fougerolles"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16955499"}, "Title": {"type": "literal", "value": "The Right Way"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3294198"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3294198"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3193640"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Mark Penney"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q46078989"}, "Title": {"type": "literal", "value": "Sv\u011bt podle Daliborka"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11991022"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q53255911|http://www.wikidata.org/entity/Q11991022"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11991022"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2017 documentary film directed by V\u00edt Klus\u00e1k"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55605752"}, "Title": {"type": "literal", "value": "Booksmart"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q200355"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7422381|http://www.wikidata.org/entity/Q22958170"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q179041|http://www.wikidata.org/entity/Q14539|http://www.wikidata.org/entity/Q20973709|http://www.wikidata.org/entity/Q17487638|http://www.wikidata.org/entity/Q2175951|http://www.wikidata.org/entity/Q1319744|http://www.wikidata.org/entity/Q519784"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2019 film directed by Olivia Wilde"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55612714|http://www.wikidata.org/entity/Q16242963"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27611265"}, "Title": {"type": "literal", "value": "El candidato"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2272014"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 Uruguayan film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24905254"}, "Title": {"type": "literal", "value": "Finding Sofia"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18353257"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18353257"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q355361|http://www.wikidata.org/entity/Q326187"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2016 Argentine and American comedy film directed by Nico Casavecchia"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26737709"}, "Title": {"type": "literal", "value": "Tiszta sz\u00edvvel"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1321044"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1321044"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q901786|http://www.wikidata.org/entity/Q28736479|http://www.wikidata.org/entity/Q12813716"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2016 film by Attila Till"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16249005"}, "Title": {"type": "literal", "value": "Buford's Beach Bunnies"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6769271"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1993"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1993 film by Mark Pirro"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15533576"}, "Title": {"type": "literal", "value": "Muita Calma Nessa Hora 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16337452"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9667642"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10281196|http://www.wikidata.org/entity/Q9667642|http://www.wikidata.org/entity/Q6756484|http://www.wikidata.org/entity/Q3321300"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2014 film by Felipe Joffily"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q348275"}, "Title": {"type": "literal", "value": "The TV Set"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1678831"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1678831"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4066455|http://www.wikidata.org/entity/Q3045844|http://www.wikidata.org/entity/Q2514422|http://www.wikidata.org/entity/Q2240987|http://www.wikidata.org/entity/Q946980|http://www.wikidata.org/entity/Q722038|http://www.wikidata.org/entity/Q484365|http://www.wikidata.org/entity/Q469914|http://www.wikidata.org/entity/Q463402|http://www.wikidata.org/entity/Q447669|http://www.wikidata.org/entity/Q442309|http://www.wikidata.org/entity/Q436620|http://www.wikidata.org/entity/Q403885|http://www.wikidata.org/entity/Q299297|http://www.wikidata.org/entity/Q295974|http://www.wikidata.org/entity/Q275434|http://www.wikidata.org/entity/Q263737|http://www.wikidata.org/entity/Q242206|http://www.wikidata.org/entity/Q237817|http://www.wikidata.org/entity/Q236189|http://www.wikidata.org/entity/Q232511|http://www.wikidata.org/entity/Q102124"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2006 film by Jake Kasdan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434841|http://www.wikidata.org/entity/Q1163074"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19602521"}, "Title": {"type": "literal", "value": "Pades\u00e1tka"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11926027"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28804044"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12022586|http://www.wikidata.org/entity/Q12022294|http://www.wikidata.org/entity/Q11926027|http://www.wikidata.org/entity/Q11899095|http://www.wikidata.org/entity/Q11878252|http://www.wikidata.org/entity/Q10826715|http://www.wikidata.org/entity/Q5825305|http://www.wikidata.org/entity/Q5179943|http://www.wikidata.org/entity/Q3565126|http://www.wikidata.org/entity/Q3501323|http://www.wikidata.org/entity/Q1363652|http://www.wikidata.org/entity/Q711186|http://www.wikidata.org/entity/Q530954|http://www.wikidata.org/entity/Q265560|http://www.wikidata.org/entity/Q56705918|http://www.wikidata.org/entity/Q30363232|http://www.wikidata.org/entity/Q24639765|http://www.wikidata.org/entity/Q18193456|http://www.wikidata.org/entity/Q17200928|http://www.wikidata.org/entity/Q15124129|http://www.wikidata.org/entity/Q12044365|http://www.wikidata.org/entity/Q12043246|http://www.wikidata.org/entity/Q12042691|http://www.wikidata.org/entity/Q12042686|http://www.wikidata.org/entity/Q12036129|http://www.wikidata.org/entity/Q12034388|http://www.wikidata.org/entity/Q12023617"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Vojt\u011bch Kotek"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7776349"}, "Title": {"type": "literal", "value": "The Wrong Ferarri"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q349591"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6112107|http://www.wikidata.org/entity/Q630863|http://www.wikidata.org/entity/Q460561|http://www.wikidata.org/entity/Q103578"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Adam Green"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4154028"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4077105"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4077105"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4061602"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Ruslan Balttser"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3627503"}, "Title": {"type": "literal", "value": "\u092a\u0940\u092a\u0932\u0940 \u0932\u093e\u0907\u0935"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4777914"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4777914"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7282998|http://www.wikidata.org/entity/Q7090232|http://www.wikidata.org/entity/Q6741093|http://www.wikidata.org/entity/Q4661497|http://www.wikidata.org/entity/Q2995800|http://www.wikidata.org/entity/Q469945"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q128758"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Anusha Rizvi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2820005"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21334163"}, "Title": {"type": "literal", "value": "VAN valami furcsa \u00e9s megmagyar\u00e1zhatatlan"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23304074"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23304074"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16521709|http://www.wikidata.org/entity/Q1316186|http://www.wikidata.org/entity/Q1120453"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by G\u00e1bor Reisz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q392686"}, "Title": {"type": "literal", "value": "Max Rules"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7342507"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7342507"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q444312"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2004 kids' action-adventure feature film directed by Robert Burke"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28970855"}, "Title": {"type": "literal", "value": "Half Magic"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q224026"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q224026"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Heather Graham"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23130730"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2471653"}, "Title": {"type": "literal", "value": "The Beloved"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q551772"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q551772"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11985744|http://www.wikidata.org/entity/Q10861544|http://www.wikidata.org/entity/Q3419812|http://www.wikidata.org/entity/Q2064616|http://www.wikidata.org/entity/Q1375823|http://www.wikidata.org/entity/Q972386|http://www.wikidata.org/entity/Q386501|http://www.wikidata.org/entity/Q382393|http://www.wikidata.org/entity/Q283317|http://www.wikidata.org/entity/Q233742|http://www.wikidata.org/entity/Q106418|http://www.wikidata.org/entity/Q51525"}, "Published": {"type": "literal", "value": "2012|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "139"}, "Description": {"type": "literal", "value": "2011 film by Christophe Honor\u00e9"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3567885"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55390756"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16200503"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Harsh Chhaya"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48751477"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q970408"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3559719"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Samuel Benchetrit"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3064580"}, "Title": {"type": "literal", "value": "Fais-moi plaisir !"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q532505"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q532505"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q267542|http://www.wikidata.org/entity/Q239498|http://www.wikidata.org/entity/Q13634875|http://www.wikidata.org/entity/Q3574834|http://www.wikidata.org/entity/Q3165595|http://www.wikidata.org/entity/Q1165205|http://www.wikidata.org/entity/Q532505|http://www.wikidata.org/entity/Q465157|http://www.wikidata.org/entity/Q323112"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Emmanuel Mouret"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q46078971"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q46091103"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12771065|http://www.wikidata.org/entity/Q12035516|http://www.wikidata.org/entity/Q12021998|http://www.wikidata.org/entity/Q11985744|http://www.wikidata.org/entity/Q7777909|http://www.wikidata.org/entity/Q6150146|http://www.wikidata.org/entity/Q2069118|http://www.wikidata.org/entity/Q1904628|http://www.wikidata.org/entity/Q1449324|http://www.wikidata.org/entity/Q1159843|http://www.wikidata.org/entity/Q326629"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2017 film by V\u00edt Karas"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19543842"}, "Title": {"type": "literal", "value": "Macadam Stories"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q970408"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q970408"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1306432|http://www.wikidata.org/entity/Q232470|http://www.wikidata.org/entity/Q106365"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2015 film by Samuel Benchetrit"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18414525"}, "Title": {"type": "literal", "value": "Le P\u00e8re No\u00ebl"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15070019"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15070019"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2851463|http://www.wikidata.org/entity/Q981690|http://www.wikidata.org/entity/Q693534|http://www.wikidata.org/entity/Q3380605|http://www.wikidata.org/entity/Q3308651"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "81"}, "Description": {"type": "literal", "value": "2014 film by Alexandre Coffre"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5203134"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12520829"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Tengku Firmansyah"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4315477"}, "Title": {"type": "literal", "value": "\u041d\u0435\u0430\u0434\u0435\u043a\u0432\u0430\u0442\u043d\u044b\u0435 \u043b\u044e\u0434\u0438"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4215049"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4215049"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4333656|http://www.wikidata.org/entity/Q4271506"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2010 film by Roman Karimov"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21526691"}, "Title": {"type": "literal", "value": "Nadide Hayat"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q272718"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5255185"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by \u00c7a\u011fan Irmak"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19631764"}, "Title": {"type": "literal", "value": "Ho ucciso Napoleone"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18202654"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3791451|http://www.wikidata.org/entity/Q3525113|http://www.wikidata.org/entity/Q2708170|http://www.wikidata.org/entity/Q1077542|http://www.wikidata.org/entity/Q1054843|http://www.wikidata.org/entity/Q1006624|http://www.wikidata.org/entity/Q697471|http://www.wikidata.org/entity/Q451279"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2015 film by Giorgia Farina"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4456167"}, "Title": {"type": "literal", "value": "Terri"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4832305"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3702063"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29345494|http://www.wikidata.org/entity/Q19832737|http://www.wikidata.org/entity/Q15837493|http://www.wikidata.org/entity/Q7803640|http://www.wikidata.org/entity/Q2238008|http://www.wikidata.org/entity/Q223110"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Azazel Jacobs"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7168754"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1479227"}, "Title": {"type": "literal", "value": "F\u00e5 meg p\u00e5, for faen!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4372994"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4372994"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17488946|http://www.wikidata.org/entity/Q4015946|http://www.wikidata.org/entity/Q3924588|http://www.wikidata.org/entity/Q3135928"}, "Published": {"type": "literal", "value": "2014|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "75"}, "Description": {"type": "literal", "value": "2011 Norwegian film directed by Jannicke Systad Jacobsen"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3657087"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20972711"}, "Title": {"type": "literal", "value": "Ich will mich nicht k\u00fcnstlich aufregen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22979560"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22979560"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16064476|http://www.wikidata.org/entity/Q5217496|http://www.wikidata.org/entity/Q1645024|http://www.wikidata.org/entity/Q122879"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 German movie by Max Linz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18663900"}, "Title": {"type": "literal", "value": "Si accettano miracoli"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q769800"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q769800"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3955847|http://www.wikidata.org/entity/Q3767179|http://www.wikidata.org/entity/Q3762248|http://www.wikidata.org/entity/Q3737674|http://www.wikidata.org/entity/Q769800|http://www.wikidata.org/entity/Q482746"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "2015 film by Alessandro Siani"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55106022"}, "Title": {"type": "literal", "value": "\uadf9\ud55c\uc9c1\uc5c5"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18328904"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19939351|http://www.wikidata.org/entity/Q18013648|http://www.wikidata.org/entity/Q12618258|http://www.wikidata.org/entity/Q4120056|http://www.wikidata.org/entity/Q485640"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "2019 film by Lee Byeong-heon"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6808769"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1582781"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1582781"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054683|http://www.wikidata.org/entity/Q1042876|http://www.wikidata.org/entity/Q1036275|http://www.wikidata.org/entity/Q873908|http://www.wikidata.org/entity/Q265091"}, "Published": {"type": "literal", "value": "2009|2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Naoko Ogigami"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11921378"}, "Title": {"type": "literal", "value": "Excuses!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3180247"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3180247"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q40831"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Joel Joan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21866873"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q233347"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q233347"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4886423|http://www.wikidata.org/entity/Q4013057|http://www.wikidata.org/entity/Q466051|http://www.wikidata.org/entity/Q431362|http://www.wikidata.org/entity/Q235905|http://www.wikidata.org/entity/Q234207|http://www.wikidata.org/entity/Q233347|http://www.wikidata.org/entity/Q200566"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 American film directed by Clea DuVall"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16493200"}, "Title": {"type": "literal", "value": "Flacas vacas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20018073"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5308326"}, "Title": {"type": "literal", "value": "Drones"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q730582|http://www.wikidata.org/entity/Q456862"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q943613|http://www.wikidata.org/entity/Q117528|http://www.wikidata.org/entity/Q6144533"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q761469|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Amber Benson, Adam Busch"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16938167"}, "Title": {"type": "literal", "value": "La vida inesperada"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3183895"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q237058"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Jorge Torregrossa"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60840207"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3429925"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3852837"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2019 film directed by Eros Puglielli"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1508772"}, "Title": {"type": "literal", "value": "It's Kind of a Funny Story"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3453777|http://www.wikidata.org/entity/Q4766862"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3453777"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15695313|http://www.wikidata.org/entity/Q3309607|http://www.wikidata.org/entity/Q3296147|http://www.wikidata.org/entity/Q3260138|http://www.wikidata.org/entity/Q2093638|http://www.wikidata.org/entity/Q972014|http://www.wikidata.org/entity/Q822780|http://www.wikidata.org/entity/Q312337|http://www.wikidata.org/entity/Q303538|http://www.wikidata.org/entity/Q229181|http://www.wikidata.org/entity/Q228755|http://www.wikidata.org/entity/Q228598|http://www.wikidata.org/entity/Q227129|http://www.wikidata.org/entity/Q171687|http://www.wikidata.org/entity/Q139325|http://www.wikidata.org/entity/Q80804"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q1146335"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2010 film by Ryan Fleck, Anna Boden"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q649649|http://www.wikidata.org/entity/Q1607312|http://www.wikidata.org/entity/Q1938797"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16028676"}, "Title": {"type": "literal", "value": "La Marche"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3334684"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3334684"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19545120|http://www.wikidata.org/entity/Q18179055|http://www.wikidata.org/entity/Q18009998|http://www.wikidata.org/entity/Q16637389|http://www.wikidata.org/entity/Q3559829|http://www.wikidata.org/entity/Q3519305|http://www.wikidata.org/entity/Q3385776|http://www.wikidata.org/entity/Q3380527|http://www.wikidata.org/entity/Q3380199|http://www.wikidata.org/entity/Q3334837|http://www.wikidata.org/entity/Q3328896|http://www.wikidata.org/entity/Q3193303|http://www.wikidata.org/entity/Q3042380|http://www.wikidata.org/entity/Q3009038|http://www.wikidata.org/entity/Q2997347|http://www.wikidata.org/entity/Q2960989|http://www.wikidata.org/entity/Q2925088|http://www.wikidata.org/entity/Q2830765|http://www.wikidata.org/entity/Q2362835|http://www.wikidata.org/entity/Q2185587|http://www.wikidata.org/entity/Q1255329|http://www.wikidata.org/entity/Q983020|http://www.wikidata.org/entity/Q964474|http://www.wikidata.org/entity/Q715111|http://www.wikidata.org/entity/Q541721|http://www.wikidata.org/entity/Q462256|http://www.wikidata.org/entity/Q312661"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film directed by Nabil Ben Yadir"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1375196"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19672223"}, "Title": {"type": "literal", "value": "Negociador"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8250879"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12264678|http://www.wikidata.org/entity/Q12260748|http://www.wikidata.org/entity/Q8964749|http://www.wikidata.org/entity/Q6174843|http://www.wikidata.org/entity/Q2687792|http://www.wikidata.org/entity/Q2655070|http://www.wikidata.org/entity/Q349396|http://www.wikidata.org/entity/Q35642|http://www.wikidata.org/entity/Q18406"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Borja Cobeaga"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q47101973"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7813033"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7813033|http://www.wikidata.org/entity/Q388027"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21528383|http://www.wikidata.org/entity/Q388027"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Togan G\u00f6kbakar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3532404"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3299889"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3299889"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3162869|http://www.wikidata.org/entity/Q2965134|http://www.wikidata.org/entity/Q1306432|http://www.wikidata.org/entity/Q177840|http://www.wikidata.org/entity/Q164976|http://www.wikidata.org/entity/Q103756"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film directed by Matthieu Donck"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3343355"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q453691"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q982784"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "44"}, "Description": {"type": "literal", "value": "2001 film by Mr. Oizo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56274435"}, "Title": {"type": "literal", "value": "Dorst"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18225091"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18225091|http://www.wikidata.org/entity/Q2517533"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30024527|http://www.wikidata.org/entity/Q2428097|http://www.wikidata.org/entity/Q2334963|http://www.wikidata.org/entity/Q1925101"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2018 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2457512"}, "Title": {"type": "literal", "value": "The Goods: Live Hard, Sell Hard."}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6984068"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1148822|http://www.wikidata.org/entity/Q1141395|http://www.wikidata.org/entity/Q1139526|http://www.wikidata.org/entity/Q956021|http://www.wikidata.org/entity/Q942066|http://www.wikidata.org/entity/Q926912|http://www.wikidata.org/entity/Q611871|http://www.wikidata.org/entity/Q601032|http://www.wikidata.org/entity/Q595479|http://www.wikidata.org/entity/Q452555|http://www.wikidata.org/entity/Q440910|http://www.wikidata.org/entity/Q431356|http://www.wikidata.org/entity/Q353042|http://www.wikidata.org/entity/Q328790|http://www.wikidata.org/entity/Q315083|http://www.wikidata.org/entity/Q315051|http://www.wikidata.org/entity/Q310315|http://www.wikidata.org/entity/Q277895|http://www.wikidata.org/entity/Q272927|http://www.wikidata.org/entity/Q271986|http://www.wikidata.org/entity/Q218503|http://www.wikidata.org/entity/Q164328|http://www.wikidata.org/entity/Q2918839|http://www.wikidata.org/entity/Q2671438|http://www.wikidata.org/entity/Q2278533|http://www.wikidata.org/entity/Q1616538"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2009 film by Neal Brennan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3098606|http://www.wikidata.org/entity/Q1148711"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1301823"}, "Title": {"type": "literal", "value": "Wer\u2019s glaubt, wird selig"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q96164"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q503907"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2012 film by Marcus H. Rosenm\u00fcller"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q261044"}, "Title": {"type": "literal", "value": "American Pie Presents: Band Camp"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2632767"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q349750"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6548531|http://www.wikidata.org/entity/Q3856089|http://www.wikidata.org/entity/Q3189977|http://www.wikidata.org/entity/Q2714437|http://www.wikidata.org/entity/Q2442842|http://www.wikidata.org/entity/Q2409827|http://www.wikidata.org/entity/Q549366|http://www.wikidata.org/entity/Q549232|http://www.wikidata.org/entity/Q435675|http://www.wikidata.org/entity/Q433121|http://www.wikidata.org/entity/Q362236|http://www.wikidata.org/entity/Q312129|http://www.wikidata.org/entity/Q288680|http://www.wikidata.org/entity/Q273778|http://www.wikidata.org/entity/Q231928|http://www.wikidata.org/entity/Q213856"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2005 film by Steve Rash"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4796943"}, "Title": {"type": "literal", "value": "Art Machine"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5300618"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1706810|http://www.wikidata.org/entity/Q237115|http://www.wikidata.org/entity/Q229036"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Doug Karr"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12124961"}, "Title": {"type": "literal", "value": "I Killed My Lesbian Wife, Hung Her on a Meat Hook, and Now I Have a Three-Picture Deal at Disney"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q483118"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1993"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1993 film by Ben Affleck"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21328804"}, "Title": {"type": "literal", "value": "Im Sommer wohnt er unten"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23304064"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17537123|http://www.wikidata.org/entity/Q15907175|http://www.wikidata.org/entity/Q1533711"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2015 film by Tom Sommerlatte"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27144861"}, "Title": {"type": "literal", "value": "Antboy 3"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20670245"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28868395"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q40012094|http://www.wikidata.org/entity/Q40011917|http://www.wikidata.org/entity/Q40011876|http://www.wikidata.org/entity/Q38052444|http://www.wikidata.org/entity/Q37491048|http://www.wikidata.org/entity/Q20202411|http://www.wikidata.org/entity/Q18341999|http://www.wikidata.org/entity/Q16948835|http://www.wikidata.org/entity/Q16948833|http://www.wikidata.org/entity/Q12325345|http://www.wikidata.org/entity/Q11295301|http://www.wikidata.org/entity/Q8727486|http://www.wikidata.org/entity/Q6409031|http://www.wikidata.org/entity/Q5586759|http://www.wikidata.org/entity/Q2347440|http://www.wikidata.org/entity/Q1797671|http://www.wikidata.org/entity/Q256395"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 Danish film by Ask Hasselbalch"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q117555"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2416117"}, "Title": {"type": "literal", "value": "Guy X"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7427324"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q443961|http://www.wikidata.org/entity/Q344973|http://www.wikidata.org/entity/Q314421|http://www.wikidata.org/entity/Q229237"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2005 film by Saul Metzstein"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28860129"}, "Title": {"type": "literal", "value": "Can You Ever Forgive Me?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21032133"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6175265|http://www.wikidata.org/entity/Q1987021"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5289370|http://www.wikidata.org/entity/Q2082056|http://www.wikidata.org/entity/Q1264331|http://www.wikidata.org/entity/Q529478|http://www.wikidata.org/entity/Q380856|http://www.wikidata.org/entity/Q286777|http://www.wikidata.org/entity/Q271554|http://www.wikidata.org/entity/Q234120|http://www.wikidata.org/entity/Q229048"}, "Published": {"type": "literal", "value": "2019|2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q645928"}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "2018 film directed by Marielle Heller"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q953040"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6454446"}, "Title": {"type": "literal", "value": "Off the Black"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1680997"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1680997"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q730074|http://www.wikidata.org/entity/Q310324|http://www.wikidata.org/entity/Q235221|http://www.wikidata.org/entity/Q188018"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2006 film by James Ponsoldt"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42757841"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5053417"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12970124|http://www.wikidata.org/entity/Q5186397|http://www.wikidata.org/entity/Q3543293|http://www.wikidata.org/entity/Q1869913|http://www.wikidata.org/entity/Q145424"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 Filipino comedy drama film directed by Cathy Garcia-Molina"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22116885"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1944468"}, "Title": {"type": "literal", "value": "\u7da0\u8349\u5730|\u7eff\u8349\u5730"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q354554"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q354554"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21012876"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2005 film by Ning Hao"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18602769"}, "Title": {"type": "literal", "value": "Pornopung"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17099329"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Johan Kaos"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15906152"}, "Title": {"type": "literal", "value": "N\u011b\u017en\u00e9 vlny"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11727279"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11727279"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61690691|http://www.wikidata.org/entity/Q61043065|http://www.wikidata.org/entity/Q60411345|http://www.wikidata.org/entity/Q51798599|http://www.wikidata.org/entity/Q20165868|http://www.wikidata.org/entity/Q17312097|http://www.wikidata.org/entity/Q16957126|http://www.wikidata.org/entity/Q15639976|http://www.wikidata.org/entity/Q12056045|http://www.wikidata.org/entity/Q12034182|http://www.wikidata.org/entity/Q12022549|http://www.wikidata.org/entity/Q12021140|http://www.wikidata.org/entity/Q11985642|http://www.wikidata.org/entity/Q11925857|http://www.wikidata.org/entity/Q10857428|http://www.wikidata.org/entity/Q8082902|http://www.wikidata.org/entity/Q7690553|http://www.wikidata.org/entity/Q3506639|http://www.wikidata.org/entity/Q1930399|http://www.wikidata.org/entity/Q525497|http://www.wikidata.org/entity/Q509607"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film directed by Ji\u0159\u00ed Vejd\u011blek"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20762698"}, "Title": {"type": "literal", "value": "Sing"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q598683"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q598683"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q842256"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2016 American computer-animated jukebox musical comedy-drama film directed by Garth Jennings"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383|http://www.wikidata.org/entity/Q1189512"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56745603"}, "Title": {"type": "literal", "value": "Ditte & Louise"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7028719"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12308738|http://www.wikidata.org/entity/Q6688858"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12308738|http://www.wikidata.org/entity/Q6688858"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Niclas Bendixen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24856052"}, "Title": {"type": "literal", "value": "\ub7ed\ud0a4"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27915062"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 South Korean comedy film by Lee Gae-byok"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q44268586"}, "Title": {"type": "literal", "value": "Daphne & Velma"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7651091"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17165296|http://www.wikidata.org/entity/Q439358|http://www.wikidata.org/entity/Q336824|http://www.wikidata.org/entity/Q267119|http://www.wikidata.org/entity/Q30634090|http://www.wikidata.org/entity/Q20651401"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1200678|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q1361932"}, "Duration": {"type": "literal", "value": "75"}, "Description": {"type": "literal", "value": "2018 American comedy mystery film directed by Suzi Yoonessi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12062633"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48754449"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3092547"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3092547"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q714765"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by F\u00e9lix Moati"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19757544"}, "Title": {"type": "literal", "value": "Spark"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14645232"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14645232"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17417475|http://www.wikidata.org/entity/Q163249|http://www.wikidata.org/entity/Q133050|http://www.wikidata.org/entity/Q93187|http://www.wikidata.org/entity/Q16296"}, "Published": {"type": "literal", "value": "2016|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q319221"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Aaron Woodley"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q797106"}, "Title": {"type": "literal", "value": "BURN-E"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17386294"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1689199|http://www.wikidata.org/entity/Q357627"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "8"}, "Description": {"type": "literal", "value": "2008 animated short film by Angus MacLane"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q127552"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q543163"}, "Title": {"type": "literal", "value": "Surviving Christmas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2507259"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3186038|http://www.wikidata.org/entity/Q3127820|http://www.wikidata.org/entity/Q3020873|http://www.wikidata.org/entity/Q2635912"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7659422|http://www.wikidata.org/entity/Q3195292|http://www.wikidata.org/entity/Q1176588|http://www.wikidata.org/entity/Q783351|http://www.wikidata.org/entity/Q552889|http://www.wikidata.org/entity/Q531195|http://www.wikidata.org/entity/Q483118|http://www.wikidata.org/entity/Q464320|http://www.wikidata.org/entity/Q372613|http://www.wikidata.org/entity/Q308722|http://www.wikidata.org/entity/Q259825|http://www.wikidata.org/entity/Q247064|http://www.wikidata.org/entity/Q233365|http://www.wikidata.org/entity/Q199929|http://www.wikidata.org/entity/Q188280|http://www.wikidata.org/entity/Q77035"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2004 film by Mike Mitchell"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6654572"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1342121"}, "Title": {"type": "literal", "value": "The Specials"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1138605"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q717015"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q429777|http://www.wikidata.org/entity/Q355133|http://www.wikidata.org/entity/Q311615|http://www.wikidata.org/entity/Q296505|http://www.wikidata.org/entity/Q241841|http://www.wikidata.org/entity/Q238877|http://www.wikidata.org/entity/Q237669|http://www.wikidata.org/entity/Q236946|http://www.wikidata.org/entity/Q236189|http://www.wikidata.org/entity/Q221923|http://www.wikidata.org/entity/Q23887610|http://www.wikidata.org/entity/Q3181360|http://www.wikidata.org/entity/Q1396278|http://www.wikidata.org/entity/Q717015|http://www.wikidata.org/entity/Q687311|http://www.wikidata.org/entity/Q449520|http://www.wikidata.org/entity/Q431753"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q622548|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q1535153"}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "2000 American comedy film directed by Craig Mazin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17036671"}, "Title": {"type": "literal", "value": "What We Do in the Shadows"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q439315|http://www.wikidata.org/entity/Q2388576"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2388576|http://www.wikidata.org/entity/Q439315"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q42270998|http://www.wikidata.org/entity/Q28871339|http://www.wikidata.org/entity/Q27921425|http://www.wikidata.org/entity/Q17712836|http://www.wikidata.org/entity/Q15261819|http://www.wikidata.org/entity/Q56257237|http://www.wikidata.org/entity/Q56257228|http://www.wikidata.org/entity/Q6764684|http://www.wikidata.org/entity/Q5314597|http://www.wikidata.org/entity/Q2388576|http://www.wikidata.org/entity/Q1806933|http://www.wikidata.org/entity/Q439315|http://www.wikidata.org/entity/Q6162739"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q459435|http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204|http://www.wikidata.org/entity/Q2137852|http://www.wikidata.org/entity/Q1747837|http://www.wikidata.org/entity/Q622548"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2014 film by Taika Waititi, Jemaine Clement"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28808145"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27703179"}, "Title": {"type": "literal", "value": "The Legacy of a Whitetail Deer Hunter"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1691304"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1691304|http://www.wikidata.org/entity/Q336400"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15634654|http://www.wikidata.org/entity/Q566037|http://www.wikidata.org/entity/Q336400|http://www.wikidata.org/entity/Q41396"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Jody Hill"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q54896121"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q66637"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1514394"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Florian Gallenberger"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27590075"}, "Title": {"type": "literal", "value": "Smetto quando voglio - Masterclass"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16611774"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16611774"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017|2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "118"}, "Description": {"type": "literal", "value": "2017 film by Sydney Sibilia"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3739211"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5856604"}, "Title": {"type": "literal", "value": "Cinco d\u00edas sin Nora"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4511791"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4511791"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6128570|http://www.wikidata.org/entity/Q3548945|http://www.wikidata.org/entity/Q3295491|http://www.wikidata.org/entity/Q1057307"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2008 film by Mariana Chenillo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27958320"}, "Title": {"type": "literal", "value": "Life of the Party"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2082056"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2082056|http://www.wikidata.org/entity/Q229048"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q40248|http://www.wikidata.org/entity/Q18684239|http://www.wikidata.org/entity/Q2278533|http://www.wikidata.org/entity/Q1077635|http://www.wikidata.org/entity/Q464320|http://www.wikidata.org/entity/Q439800|http://www.wikidata.org/entity/Q331766|http://www.wikidata.org/entity/Q241897|http://www.wikidata.org/entity/Q236527|http://www.wikidata.org/entity/Q229048|http://www.wikidata.org/entity/Q204005|http://www.wikidata.org/entity/Q41594"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2018 film by Ben Falcone"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20002326|http://www.wikidata.org/entity/Q79202"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4877838"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1015952"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Poj Arnon"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7523815"}, "Title": {"type": "literal", "value": "Single"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8001103"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8001103"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Wilder Shaw"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15270569"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16857528"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18008984"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4503115|http://www.wikidata.org/entity/Q4103145|http://www.wikidata.org/entity/Q16271982|http://www.wikidata.org/entity/Q14491922"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192881|http://www.wikidata.org/entity/Q8812380"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2013 film by Zhora Kryzhovnikov"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2892410"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q57316047"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27063353"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q44215055"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 Nigerian comedy-drama film directed by Tope Oshin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4860852"}, "Title": {"type": "literal", "value": "Bark!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3193925"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16209763"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16209763|http://www.wikidata.org/entity/Q1290421|http://www.wikidata.org/entity/Q718135|http://www.wikidata.org/entity/Q405542|http://www.wikidata.org/entity/Q320052|http://www.wikidata.org/entity/Q275658|http://www.wikidata.org/entity/Q202056|http://www.wikidata.org/entity/Q179041|http://www.wikidata.org/entity/Q60493"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Katarzyna Adamik"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3549764"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3156075"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3156075"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3085922|http://www.wikidata.org/entity/Q3026941|http://www.wikidata.org/entity/Q3015148|http://www.wikidata.org/entity/Q2899374|http://www.wikidata.org/entity/Q2851021|http://www.wikidata.org/entity/Q1551550|http://www.wikidata.org/entity/Q822345|http://www.wikidata.org/entity/Q686366|http://www.wikidata.org/entity/Q289040|http://www.wikidata.org/entity/Q3293165"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Ivan Calb\u00e9rac"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16662670"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20880595"}, "Title": {"type": "literal", "value": "Don't Think Twice"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5576465"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5576465"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7681209|http://www.wikidata.org/entity/Q6382703|http://www.wikidata.org/entity/Q5576465|http://www.wikidata.org/entity/Q5106645|http://www.wikidata.org/entity/Q522856|http://www.wikidata.org/entity/Q439800"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2016 American comedy-drama film directed by Mike Birbiglia"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q58935346"}, "Title": {"type": "literal", "value": "Mauvaises herbes"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3196131"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3196131"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3196131|http://www.wikidata.org/entity/Q3150969|http://www.wikidata.org/entity/Q2830767|http://www.wikidata.org/entity/Q518457|http://www.wikidata.org/entity/Q106418"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Kheiron"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3156647"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3190825"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3190825"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3571739|http://www.wikidata.org/entity/Q3336549|http://www.wikidata.org/entity/Q3287898|http://www.wikidata.org/entity/Q3179863|http://www.wikidata.org/entity/Q3073999|http://www.wikidata.org/entity/Q615469|http://www.wikidata.org/entity/Q436888|http://www.wikidata.org/entity/Q288009|http://www.wikidata.org/entity/Q241043"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by J\u00e9r\u00f4me Bonnell"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q491105"}, "Title": {"type": "literal", "value": "\uacfc\uc18d\uc2a4\uce94\ub4e4"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6362184"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6362184"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q490918|http://www.wikidata.org/entity/Q483704"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 South Korean film by Kang Hyeong-cheol"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10340941"}, "Title": {"type": "literal", "value": "Onda Nova"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16242195"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1983"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "1983 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3845233"}, "Title": {"type": "literal", "value": "Mar nero"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30350212"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2474015"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3694631|http://www.wikidata.org/entity/Q450442|http://www.wikidata.org/entity/Q178077"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2008 film by Federico Bondi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3929491"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15070741"}, "Title": {"type": "literal", "value": "Dysfunctional Friends"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5170363"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5170363"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q454328"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Corey Grant"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2486237"}, "Title": {"type": "literal", "value": "\u0939\u093e\u0909\u0938\u092b\u0941\u0932"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3469329"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3470753"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3595158|http://www.wikidata.org/entity/Q834338|http://www.wikidata.org/entity/Q738291|http://www.wikidata.org/entity/Q442668|http://www.wikidata.org/entity/Q290438|http://www.wikidata.org/entity/Q290322|http://www.wikidata.org/entity/Q233748|http://www.wikidata.org/entity/Q159178"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "144"}, "Description": {"type": "literal", "value": "2010 Indian comedy film directed by Sajid Khan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3334902"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14192643"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4925502"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Chookiat Sakveerakul"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16941557"}, "Title": {"type": "literal", "value": "Bluff"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q44573328"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 Colombian film written and directed by Felipe Mart\u00ednez Amador"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1234728"}, "Title": {"type": "literal", "value": "Doghouse"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1318058"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5218705"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3052362|http://www.wikidata.org/entity/Q1811844|http://www.wikidata.org/entity/Q1189407|http://www.wikidata.org/entity/Q712803|http://www.wikidata.org/entity/Q665139|http://www.wikidata.org/entity/Q442547"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3072049|http://www.wikidata.org/entity/Q1747837|http://www.wikidata.org/entity/Q909586|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2009 film by Jake West"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4105689"}, "Title": {"type": "literal", "value": "\u0412\u0434\u0440\u0435\u0431\u0435\u0437\u0433\u0438"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4215049"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4215049"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4458928|http://www.wikidata.org/entity/Q4365965|http://www.wikidata.org/entity/Q4333656|http://www.wikidata.org/entity/Q4248489"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2011 film by Roman Karimov"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4344840"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1193945"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1806660"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1806660"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2137852|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "46"}, "Description": {"type": "literal", "value": "2007 film by Lasse Nolte"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11969642"}, "Title": {"type": "literal", "value": "Kreuzberger Liebesn\u00e4chte"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18620104"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1980"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1980 film by Claus Tinney"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61926969"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1587524"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1991"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Hartmut Ostrowsky"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21527480"}, "Title": {"type": "literal", "value": "Father Figures"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6504587"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6377395|http://www.wikidata.org/entity/Q3453757|http://www.wikidata.org/entity/Q633263|http://www.wikidata.org/entity/Q603317|http://www.wikidata.org/entity/Q557948|http://www.wikidata.org/entity/Q372311|http://www.wikidata.org/entity/Q345325|http://www.wikidata.org/entity/Q328790|http://www.wikidata.org/entity/Q310315|http://www.wikidata.org/entity/Q185051|http://www.wikidata.org/entity/Q161916|http://www.wikidata.org/entity/Q150482|http://www.wikidata.org/entity/Q13560481"}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "113"}, "Description": {"type": "literal", "value": "2017 film by Lawrence Sher"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7752106|http://www.wikidata.org/entity/Q4713342"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27044422"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27044424"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1339864|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "12"}, "Description": {"type": "literal", "value": "2016 documentary film directed by Andrew J. Muscato"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q50932962"}, "Title": {"type": "literal", "value": "Nunca asistas a este tipo de fiestas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3359991"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q909586|http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "70"}, "Description": {"type": "literal", "value": "2000 film directed by Pablo Par\u00e9s"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13370925"}, "Title": {"type": "literal", "value": "El Verano de los Peces Voladores"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13534431"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13534431"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6003960|http://www.wikidata.org/entity/Q4306829"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Marcela Said"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27043810"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26912642|http://www.wikidata.org/entity/Q26912640"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "10"}, "Description": {"type": "literal", "value": "2016 documentary film directed by Maximilien van Aertryck and Axel Danielson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15040715"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15429353"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Manoj Sharma"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18409089"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4412743"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1958260"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192881"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2014 film directed by Mikhail Segal"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1357820"}, "Title": {"type": "literal", "value": "Robot & Frank"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6124973"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26268901"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q315099|http://www.wikidata.org/entity/Q310944|http://www.wikidata.org/entity/Q168763|http://www.wikidata.org/entity/Q133050|http://www.wikidata.org/entity/Q21996467|http://www.wikidata.org/entity/Q15854232|http://www.wikidata.org/entity/Q15222780|http://www.wikidata.org/entity/Q2844979|http://www.wikidata.org/entity/Q485901|http://www.wikidata.org/entity/Q449863"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q761469|http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q496523|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2012 film directed by Jake Schreier"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20899522"}, "Title": {"type": "literal", "value": "Peur de rien"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3014956"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3014956"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26837226|http://www.wikidata.org/entity/Q15069815|http://www.wikidata.org/entity/Q3559693|http://www.wikidata.org/entity/Q2975505|http://www.wikidata.org/entity/Q2887704"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Danielle Arbid"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12331964"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q952621"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30126920"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q38052468|http://www.wikidata.org/entity/Q30154050|http://www.wikidata.org/entity/Q12327247|http://www.wikidata.org/entity/Q12324627|http://www.wikidata.org/entity/Q12319347|http://www.wikidata.org/entity/Q12308732|http://www.wikidata.org/entity/Q7295091|http://www.wikidata.org/entity/Q3362157|http://www.wikidata.org/entity/Q728020|http://www.wikidata.org/entity/Q443361"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Tomas Villum Jensen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12257676"}, "Title": {"type": "literal", "value": "Eutsi!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12253080"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12253080|http://www.wikidata.org/entity/Q11953964"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12265029|http://www.wikidata.org/entity/Q12264678|http://www.wikidata.org/entity/Q12254277|http://www.wikidata.org/entity/Q12253580|http://www.wikidata.org/entity/Q41224|http://www.wikidata.org/entity/Q26739962"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film directed by Alberto J. Gorritiberea"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12259795|http://www.wikidata.org/entity/Q19947837|http://www.wikidata.org/entity/Q21043142"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27703437"}, "Title": {"type": "literal", "value": "Fala S\u00e9rio, M\u00e3e!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7159986"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20647699"}, "Title": {"type": "literal", "value": "Marguerite"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2364234"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2364234|http://www.wikidata.org/entity/Q3289982"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21294771|http://www.wikidata.org/entity/Q20961829|http://www.wikidata.org/entity/Q12960949|http://www.wikidata.org/entity/Q11230425|http://www.wikidata.org/entity/Q3309608|http://www.wikidata.org/entity/Q2965533|http://www.wikidata.org/entity/Q2868544|http://www.wikidata.org/entity/Q2848242|http://www.wikidata.org/entity/Q451776|http://www.wikidata.org/entity/Q440348|http://www.wikidata.org/entity/Q30729287|http://www.wikidata.org/entity/Q27535445|http://www.wikidata.org/entity/Q23767040|http://www.wikidata.org/entity/Q21427970"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "127"}, "Description": {"type": "literal", "value": "2015 film by Xavier Giannoli"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3071502"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13022831"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13020286"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q907091"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1322095|http://www.wikidata.org/entity/Q1165918"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Martin Csaba and P\u00e9ter Tokay"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20077957"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4500356"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film directed by Ilya Khotinenko and Elizaveta Lizhnina"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7775747"}, "Title": {"type": "literal", "value": "The Woods"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6790861"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6790861"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Matthew Lessner"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q34755|http://www.wikidata.org/entity/Q6790861"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21843410"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22045638"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3210335"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4088503"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2015 film by Arman Gevorgyan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20900720"}, "Title": {"type": "literal", "value": "A Man Will Rise"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q298551"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Tony Jaa"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1040910"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55223237"}, "Title": {"type": "literal", "value": "\u30ab\u30e1\u30e9\u3092\u6b62\u3081\u308b\u306a!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55447315"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55447315"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q62487265|http://www.wikidata.org/entity/Q61052058|http://www.wikidata.org/entity/Q60990495|http://www.wikidata.org/entity/Q60990467|http://www.wikidata.org/entity/Q60988243|http://www.wikidata.org/entity/Q58939251|http://www.wikidata.org/entity/Q58051265|http://www.wikidata.org/entity/Q57242819|http://www.wikidata.org/entity/Q57234625|http://www.wikidata.org/entity/Q56610978|http://www.wikidata.org/entity/Q56150446|http://www.wikidata.org/entity/Q55790091|http://www.wikidata.org/entity/Q55409667|http://www.wikidata.org/entity/Q28692212|http://www.wikidata.org/entity/Q18700403|http://www.wikidata.org/entity/Q11539259|http://www.wikidata.org/entity/Q11474248|http://www.wikidata.org/entity/Q11437646"}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1747837|http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2017 Japanese film directed by Shinichiro Ueda"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q282167"}, "Title": {"type": "literal", "value": "\u05e1\u05d9\u05e4\u05d5\u05e8 \u05d2\u05d3\u05d5\u05dc|Sippur Gadol"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7000493|http://www.wikidata.org/entity/Q7066522"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6901804|http://www.wikidata.org/entity/Q3127621|http://www.wikidata.org/entity/Q7000493"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19652467|http://www.wikidata.org/entity/Q12403885|http://www.wikidata.org/entity/Q7031983|http://www.wikidata.org/entity/Q7030495|http://www.wikidata.org/entity/Q6962157|http://www.wikidata.org/entity/Q6556083|http://www.wikidata.org/entity/Q1897677|http://www.wikidata.org/entity/Q1268310|http://www.wikidata.org/entity/Q12410323|http://www.wikidata.org/entity/Q12406576|http://www.wikidata.org/entity/Q671640"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film directed by Sharon Maymon and Erez Tadmor"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5564723"}, "Title": {"type": "literal", "value": "Girltrash: All Night Long"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21091540"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q459542"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6741561|http://www.wikidata.org/entity/Q3313479|http://www.wikidata.org/entity/Q3311437|http://www.wikidata.org/entity/Q2629672|http://www.wikidata.org/entity/Q2532879|http://www.wikidata.org/entity/Q1827782|http://www.wikidata.org/entity/Q1638889|http://www.wikidata.org/entity/Q1189487|http://www.wikidata.org/entity/Q1057878|http://www.wikidata.org/entity/Q1057379|http://www.wikidata.org/entity/Q458863"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Alexandra Kondracke"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2188914"}, "Title": {"type": "literal", "value": "Un heureux \u00e9v\u00e9nement"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2080043"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q274667|http://www.wikidata.org/entity/Q2080043"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1139064|http://www.wikidata.org/entity/Q447709|http://www.wikidata.org/entity/Q437254|http://www.wikidata.org/entity/Q269873|http://www.wikidata.org/entity/Q11309060|http://www.wikidata.org/entity/Q3524261|http://www.wikidata.org/entity/Q3217601|http://www.wikidata.org/entity/Q3094131|http://www.wikidata.org/entity/Q3015878|http://www.wikidata.org/entity/Q2845704|http://www.wikidata.org/entity/Q1871396"}, "Published": {"type": "literal", "value": "2013|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "2011 comedy-drama film by R\u00e9mi Bezan\u00e7on"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q525894|http://www.wikidata.org/entity/Q913462|http://www.wikidata.org/entity/Q1190356"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2514256"}, "Title": {"type": "literal", "value": "Grilled"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6162450"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4020169"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15438400|http://www.wikidata.org/entity/Q3242408|http://www.wikidata.org/entity/Q3157229|http://www.wikidata.org/entity/Q1363700|http://www.wikidata.org/entity/Q1258012|http://www.wikidata.org/entity/Q922264|http://www.wikidata.org/entity/Q705352|http://www.wikidata.org/entity/Q508404|http://www.wikidata.org/entity/Q342252|http://www.wikidata.org/entity/Q231911|http://www.wikidata.org/entity/Q230523|http://www.wikidata.org/entity/Q230510|http://www.wikidata.org/entity/Q229197|http://www.wikidata.org/entity/Q220836|http://www.wikidata.org/entity/Q203205|http://www.wikidata.org/entity/Q202148|http://www.wikidata.org/entity/Q80925|http://www.wikidata.org/entity/Q44561|http://www.wikidata.org/entity/Q26378"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2006 comedy film directed by Jason Ensler"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16124830"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11018819"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11018819"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q591801"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Amr Salama"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5411142"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11896917"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film directed by Teppo Airaksinen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4166758"}, "Title": {"type": "literal", "value": "\u0414\u043e\u0440\u043e\u0433\u0430 \u043d\u0430"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4197782"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19907441"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "32"}, "Description": {"type": "literal", "value": "2011 film by Taisia Igumentseva"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4396820"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27701601"}, "Title": {"type": "literal", "value": "Rough Night"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27988184"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19370785|http://www.wikidata.org/entity/Q16730037|http://www.wikidata.org/entity/Q16198576|http://www.wikidata.org/entity/Q5386029|http://www.wikidata.org/entity/Q932975|http://www.wikidata.org/entity/Q723057|http://www.wikidata.org/entity/Q515415|http://www.wikidata.org/entity/Q248179|http://www.wikidata.org/entity/Q227129|http://www.wikidata.org/entity/Q43044|http://www.wikidata.org/entity/Q34436"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2017 film by Lucia Aniello"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q186941"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22000309"}, "Title": {"type": "literal", "value": "Les fameux gars"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2824695"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Adolf El Assal"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q57262933"}, "Title": {"type": "literal", "value": "Corti circuiti erotici"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29939277|http://www.wikidata.org/entity/Q18223523|http://www.wikidata.org/entity/Q17598463|http://www.wikidata.org/entity/Q16552052"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q312472"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q599558|http://www.wikidata.org/entity/Q336144|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "365"}, "Description": {"type": "literal", "value": "2000 Italian film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18703028"}, "Title": {"type": "literal", "value": "Now You See Me: The Second Act"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1702754"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q513402"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2156496|http://www.wikidata.org/entity/Q434790|http://www.wikidata.org/entity/Q383930|http://www.wikidata.org/entity/Q241783|http://www.wikidata.org/entity/Q238819|http://www.wikidata.org/entity/Q236578|http://www.wikidata.org/entity/Q219512|http://www.wikidata.org/entity/Q201279|http://www.wikidata.org/entity/Q123351|http://www.wikidata.org/entity/Q48337|http://www.wikidata.org/entity/Q41422|http://www.wikidata.org/entity/Q38119"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q1200678|http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q496523|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "129"}, "Description": {"type": "literal", "value": "2016 film directed by Jon M. Chu"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q515869|http://www.wikidata.org/entity/Q632323"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7388676"}, "Title": {"type": "literal", "value": "Klassefesten"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22086041"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41743493|http://www.wikidata.org/entity/Q38051206"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41236497|http://www.wikidata.org/entity/Q41236286|http://www.wikidata.org/entity/Q41236228|http://www.wikidata.org/entity/Q40523664|http://www.wikidata.org/entity/Q38052542|http://www.wikidata.org/entity/Q37491481|http://www.wikidata.org/entity/Q37491427|http://www.wikidata.org/entity/Q35985836|http://www.wikidata.org/entity/Q28498467|http://www.wikidata.org/entity/Q17482558|http://www.wikidata.org/entity/Q12339791|http://www.wikidata.org/entity/Q12339172|http://www.wikidata.org/entity/Q12338732|http://www.wikidata.org/entity/Q12338493|http://www.wikidata.org/entity/Q12335242|http://www.wikidata.org/entity/Q12334652|http://www.wikidata.org/entity/Q12326873|http://www.wikidata.org/entity/Q12326842|http://www.wikidata.org/entity/Q12324266|http://www.wikidata.org/entity/Q12306240|http://www.wikidata.org/entity/Q12304359|http://www.wikidata.org/entity/Q12301414|http://www.wikidata.org/entity/Q4994572|http://www.wikidata.org/entity/Q4981886|http://www.wikidata.org/entity/Q3066309|http://www.wikidata.org/entity/Q1957570|http://www.wikidata.org/entity/Q1797728|http://www.wikidata.org/entity/Q491315|http://www.wikidata.org/entity/Q287329"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 Danish comedy film directed by Niels N\u00f8rl\u00f8v"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2144022"}, "Title": {"type": "literal", "value": "Renn, wenn du kannst"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1223694"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1223694|http://www.wikidata.org/entity/Q96937"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20829652|http://www.wikidata.org/entity/Q18641889|http://www.wikidata.org/entity/Q2371376|http://www.wikidata.org/entity/Q2157388|http://www.wikidata.org/entity/Q1929355|http://www.wikidata.org/entity/Q1820801|http://www.wikidata.org/entity/Q1223694|http://www.wikidata.org/entity/Q692437|http://www.wikidata.org/entity/Q461724|http://www.wikidata.org/entity/Q96937|http://www.wikidata.org/entity/Q91504|http://www.wikidata.org/entity/Q86496"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "2010 film directed by Dietrich Br\u00fcggemann"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1235358"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3112935"}, "Title": {"type": "literal", "value": "Grabbers"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6271790"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6396767"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2926038|http://www.wikidata.org/entity/Q716998|http://www.wikidata.org/entity/Q634365|http://www.wikidata.org/entity/Q519799"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q1342372"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2012 film by Jon Wright"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6070740|http://www.wikidata.org/entity/Q922857|http://www.wikidata.org/entity/Q5473190"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11716267"}, "Title": {"type": "literal", "value": "Jak to si\u0119 robi z dziewczynami"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11828879"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11828879"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3504342"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Przemys\u0142aw Angerman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3773178"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18325889"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18325889"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2008 film by David Zellner"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6656112"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16139472"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16139472"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16139488|http://www.wikidata.org/entity/Q16138602|http://www.wikidata.org/entity/Q15099359|http://www.wikidata.org/entity/Q13024385|http://www.wikidata.org/entity/Q13016955|http://www.wikidata.org/entity/Q13015776|http://www.wikidata.org/entity/Q13013801|http://www.wikidata.org/entity/Q6214293"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7751308"}, "Title": {"type": "literal", "value": "The Midnight Drives"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6768242"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6780985|http://www.wikidata.org/entity/Q525541|http://www.wikidata.org/entity/Q437038"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Mark Jenkin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4724803"}, "Title": {"type": "literal", "value": "Ali G, Innit"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5925685"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29055"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1999 film by James Bobin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q590352"}, "Title": {"type": "literal", "value": "Wild Child"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3876026"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6698263"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q232889|http://www.wikidata.org/entity/Q228598|http://www.wikidata.org/entity/Q212545|http://www.wikidata.org/entity/Q195452|http://www.wikidata.org/entity/Q2302888|http://www.wikidata.org/entity/Q2274977|http://www.wikidata.org/entity/Q1189560|http://www.wikidata.org/entity/Q1060908|http://www.wikidata.org/entity/Q234434|http://www.wikidata.org/entity/Q28254|http://www.wikidata.org/entity/Q460434|http://www.wikidata.org/entity/Q459800|http://www.wikidata.org/entity/Q403902|http://www.wikidata.org/entity/Q363400|http://www.wikidata.org/entity/Q295592|http://www.wikidata.org/entity/Q291710|http://www.wikidata.org/entity/Q291361"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2008 film by Nick Moore"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2702789|http://www.wikidata.org/entity/Q168383|http://www.wikidata.org/entity/Q2060840|http://www.wikidata.org/entity/Q2450848"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24579560"}, "Title": {"type": "literal", "value": "El regreso"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27832751"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 Costa Rican film directed by Hern\u00e1n Jim\u00e9nez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5903838"}, "Title": {"type": "literal", "value": "Huacho"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26809691"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film directed by Alejandro Fern\u00e1ndez Almendras"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17105388"}, "Title": {"type": "literal", "value": "Fat Kid Rules the World"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29086"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19832737"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2012 film by Matthew Lillard"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22000291"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23094957"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q346540"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Hubert Viel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2824412"}, "Title": {"type": "literal", "value": "Adieu Gary"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3336252"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3336252"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3307810|http://www.wikidata.org/entity/Q2897553|http://www.wikidata.org/entity/Q2821029|http://www.wikidata.org/entity/Q2585508|http://www.wikidata.org/entity/Q1238309|http://www.wikidata.org/entity/Q981203|http://www.wikidata.org/entity/Q436888"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "75"}, "Description": {"type": "literal", "value": "2009 film by Nassim Amaouche"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q50650012"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19872804"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Dean Murphy"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2518019"}, "Title": {"type": "literal", "value": "Verschwende deine Jugend"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q817657"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q58903320|http://www.wikidata.org/entity/Q2129236"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2003 film by Benjamin Quabeck"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19832323"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28108868"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q62554555"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q40012114|http://www.wikidata.org/entity/Q37490631|http://www.wikidata.org/entity/Q35985836|http://www.wikidata.org/entity/Q15985263|http://www.wikidata.org/entity/Q12327247|http://www.wikidata.org/entity/Q12326106|http://www.wikidata.org/entity/Q12306343|http://www.wikidata.org/entity/Q12301809|http://www.wikidata.org/entity/Q4567936|http://www.wikidata.org/entity/Q1967835|http://www.wikidata.org/entity/Q1341671|http://www.wikidata.org/entity/Q521623|http://www.wikidata.org/entity/Q469983|http://www.wikidata.org/entity/Q435082"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by May el-Toukhy"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18289126"}, "Title": {"type": "literal", "value": "Short Skin"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18170234"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2014 film by Duccio Chiarini"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1338368"}, "Title": {"type": "literal", "value": "Somewhere"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q193628"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q193628"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3808518|http://www.wikidata.org/entity/Q3765221|http://www.wikidata.org/entity/Q1789378|http://www.wikidata.org/entity/Q1608028|http://www.wikidata.org/entity/Q691361|http://www.wikidata.org/entity/Q229112|http://www.wikidata.org/entity/Q228943|http://www.wikidata.org/entity/Q193668|http://www.wikidata.org/entity/Q559570|http://www.wikidata.org/entity/Q459977|http://www.wikidata.org/entity/Q445440|http://www.wikidata.org/entity/Q440033|http://www.wikidata.org/entity/Q334195"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2010 film by Sofia Coppola"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q467348"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18786692"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21932133"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6167686"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Aneesh Upasana"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56274437"}, "Title": {"type": "literal", "value": "Good Boys"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6513524|http://www.wikidata.org/entity/Q5531483"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6513524|http://www.wikidata.org/entity/Q5531483"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60489296|http://www.wikidata.org/entity/Q20965633"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2019 film directed by Gene Stupnitsky"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17092493|http://www.wikidata.org/entity/Q27150184"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23899144"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23774041"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23774041"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by George Varsimashvili"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4086678"}, "Title": {"type": "literal", "value": "\u0411\u0438\u043b\u0435\u0442 \u043d\u0430 Vegas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27960476"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16514503|http://www.wikidata.org/entity/Q6451749|http://www.wikidata.org/entity/Q4494610|http://www.wikidata.org/entity/Q4441456|http://www.wikidata.org/entity/Q4333656|http://www.wikidata.org/entity/Q4101536|http://www.wikidata.org/entity/Q3561880|http://www.wikidata.org/entity/Q1258506|http://www.wikidata.org/entity/Q1140031|http://www.wikidata.org/entity/Q1074254|http://www.wikidata.org/entity/Q714669|http://www.wikidata.org/entity/Q223830"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Gor Kirakosyan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17582632"}, "Title": {"type": "literal", "value": "\u041a\u0443\u0445\u043d\u044f \u0432 \u041f\u0430\u0440\u0438\u0436\u0435"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4171916"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4525520"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4367628|http://www.wikidata.org/entity/Q4312163|http://www.wikidata.org/entity/Q4089110|http://www.wikidata.org/entity/Q3033167|http://www.wikidata.org/entity/Q576085|http://www.wikidata.org/entity/Q466139|http://www.wikidata.org/entity/Q123476"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2014 film by Dmitriy Dyachenko"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1754271|http://www.wikidata.org/entity/Q4504080|http://www.wikidata.org/entity/Q28179983"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q33138463"}, "Title": {"type": "literal", "value": "Die Einsamkeit des Killers vor dem Schuss"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1258439"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1258439"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27973503|http://www.wikidata.org/entity/Q18641889|http://www.wikidata.org/entity/Q1675617|http://www.wikidata.org/entity/Q1067118|http://www.wikidata.org/entity/Q89793|http://www.wikidata.org/entity/Q76447|http://www.wikidata.org/entity/Q60687"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2014 film by Florian Mischa B\u00f6der"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4201290"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4199248"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Niki Iliev"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61642191"}, "Title": {"type": "literal", "value": "De Frivillige"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3087215"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2019 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11644073"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16264634"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Mipo O"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48672452"}, "Title": {"type": "literal", "value": "Night School"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3843845"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2624066|http://www.wikidata.org/entity/Q618352|http://www.wikidata.org/entity/Q167683"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11835264|http://www.wikidata.org/entity/Q2706805|http://www.wikidata.org/entity/Q1616538|http://www.wikidata.org/entity/Q924104|http://www.wikidata.org/entity/Q618352|http://www.wikidata.org/entity/Q370918"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "2018 comedy film directed by Malcolm D. Lee"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22079554"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18168128"}, "Title": {"type": "literal", "value": "Tu dors Nicole"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3501883"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3501883"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3189127"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2014 film by St\u00e9phane Lafleur"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21027542"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q511347"}, "Title": {"type": "literal", "value": "This Must Be the Place"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q374678"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4003361|http://www.wikidata.org/entity/Q374678"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3959303|http://www.wikidata.org/entity/Q3735288|http://www.wikidata.org/entity/Q711941|http://www.wikidata.org/entity/Q458441|http://www.wikidata.org/entity/Q365023|http://www.wikidata.org/entity/Q336640|http://www.wikidata.org/entity/Q314290|http://www.wikidata.org/entity/Q257625|http://www.wikidata.org/entity/Q204299|http://www.wikidata.org/entity/Q44221"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q628165|http://www.wikidata.org/entity/Q192881|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "118"}, "Description": {"type": "literal", "value": "2011 film directed by Paolo Sorrentino"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3304113|http://www.wikidata.org/entity/Q3838997"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15849464"}, "Title": {"type": "literal", "value": "Stromberg \u2013 Der Film"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q692308"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q111498"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17485783|http://www.wikidata.org/entity/Q15907175|http://www.wikidata.org/entity/Q15793662|http://www.wikidata.org/entity/Q2336892|http://www.wikidata.org/entity/Q2154964|http://www.wikidata.org/entity/Q2077973|http://www.wikidata.org/entity/Q1929867|http://www.wikidata.org/entity/Q1914028|http://www.wikidata.org/entity/Q1892860|http://www.wikidata.org/entity/Q1808049|http://www.wikidata.org/entity/Q1773250|http://www.wikidata.org/entity/Q1758879|http://www.wikidata.org/entity/Q1686470|http://www.wikidata.org/entity/Q1646934|http://www.wikidata.org/entity/Q1562291|http://www.wikidata.org/entity/Q1533711|http://www.wikidata.org/entity/Q1443798|http://www.wikidata.org/entity/Q1409320|http://www.wikidata.org/entity/Q1349074|http://www.wikidata.org/entity/Q1208893|http://www.wikidata.org/entity/Q879361|http://www.wikidata.org/entity/Q497974|http://www.wikidata.org/entity/Q119413|http://www.wikidata.org/entity/Q104670|http://www.wikidata.org/entity/Q98255|http://www.wikidata.org/entity/Q76658"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "123"}, "Description": {"type": "literal", "value": "2014 film by Arne Feldhusen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17112644"}, "Title": {"type": "literal", "value": "Nick Offerman: American Ham"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17091099"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1985488"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1985488"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film directed by Jordan Vogt-Roberts"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q38463153"}, "Title": {"type": "literal", "value": "Support the Girls"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q503951"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q503951"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Andrew Bujalski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2044687"}, "Title": {"type": "literal", "value": "Sex & Drugs & Rock & Roll"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3298143"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20668065|http://www.wikidata.org/entity/Q7229574|http://www.wikidata.org/entity/Q1272489|http://www.wikidata.org/entity/Q902800|http://www.wikidata.org/entity/Q861490|http://www.wikidata.org/entity/Q722001|http://www.wikidata.org/entity/Q665139|http://www.wikidata.org/entity/Q644911|http://www.wikidata.org/entity/Q447614|http://www.wikidata.org/entity/Q363978|http://www.wikidata.org/entity/Q342419|http://www.wikidata.org/entity/Q310932|http://www.wikidata.org/entity/Q231163|http://www.wikidata.org/entity/Q206922|http://www.wikidata.org/entity/Q156586|http://www.wikidata.org/entity/Q125942"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q645928"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 biopic of English New Wave musician Ian Dury directed by Mat Whitecross"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2300440"}, "Title": {"type": "literal", "value": "Raising Victor Vargas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3376892"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28129939|http://www.wikidata.org/entity/Q7516933|http://www.wikidata.org/entity/Q6304528|http://www.wikidata.org/entity/Q977023|http://www.wikidata.org/entity/Q449626"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2002 film by Peter Sollett"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3233426"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2896285"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2896285"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3573897|http://www.wikidata.org/entity/Q3181973|http://www.wikidata.org/entity/Q3164941|http://www.wikidata.org/entity/Q2829653|http://www.wikidata.org/entity/Q667260|http://www.wikidata.org/entity/Q177993|http://www.wikidata.org/entity/Q177840"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Benjamin de Lajarte"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18703137"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18390367"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18390367"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20649361|http://www.wikidata.org/entity/Q12977914|http://www.wikidata.org/entity/Q6986773|http://www.wikidata.org/entity/Q1662266"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Yogesh Dattatraya Gosavi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27679727"}, "Title": {"type": "literal", "value": "Maman a tort"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3246668"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3246668"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q259968"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Marc Fitoussi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28495518"}, "Title": {"type": "literal", "value": "\u00c9pouse-moi mon pote"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17175096"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17175096"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17175096|http://www.wikidata.org/entity/Q3380121|http://www.wikidata.org/entity/Q3379789|http://www.wikidata.org/entity/Q3334874|http://www.wikidata.org/entity/Q3037894|http://www.wikidata.org/entity/Q3018364"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2017 French film by Tarek Boudali"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2450848"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42778614"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q456182"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Moon So-ri"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3986596"}, "Title": {"type": "literal", "value": "The Details"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3157514"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3157514"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q350208|http://www.wikidata.org/entity/Q232104|http://www.wikidata.org/entity/Q223281|http://www.wikidata.org/entity/Q219373|http://www.wikidata.org/entity/Q211280|http://www.wikidata.org/entity/Q165524|http://www.wikidata.org/entity/Q40124"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2011 film by Jacob Aaron Estes"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6457551"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7701699"}, "Title": {"type": "literal", "value": "\u0924\u0947\u0930\u0947 \u092c\u093f\u0928 \u0932\u093e\u0926\u0947\u0928"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41794758"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3633203|http://www.wikidata.org/entity/Q3534654"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Abhishek Sharma"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6902788"}, "Title": {"type": "literal", "value": "Monster Mutt"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7812685"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2652491|http://www.wikidata.org/entity/Q1369157|http://www.wikidata.org/entity/Q1190235|http://www.wikidata.org/entity/Q439358"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q761469|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 television film directed by Todd Tucker"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15979736"}, "Title": {"type": "literal", "value": "\ud574\uc801: \ubc14\ub2e4\ub85c \uac04 \uc0b0\uc801"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18815680"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11264845|http://www.wikidata.org/entity/Q5909411|http://www.wikidata.org/entity/Q483575|http://www.wikidata.org/entity/Q256932"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "130"}, "Description": {"type": "literal", "value": "2014 South Korean film directed by Lee Seok-hoon"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5467082"}, "Title": {"type": "literal", "value": "For the Love of God"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6212732"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6212732"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Joe Tucker"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10856968"}, "Title": {"type": "literal", "value": "Kr\u00e1sno"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3566452"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3566452|http://www.wikidata.org/entity/Q15076049"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12024009|http://www.wikidata.org/entity/Q12023435|http://www.wikidata.org/entity/Q12022932|http://www.wikidata.org/entity/Q12022667|http://www.wikidata.org/entity/Q11774379|http://www.wikidata.org/entity/Q11774110|http://www.wikidata.org/entity/Q3566452|http://www.wikidata.org/entity/Q1992770|http://www.wikidata.org/entity/Q1675630|http://www.wikidata.org/entity/Q463683|http://www.wikidata.org/entity/Q60411061|http://www.wikidata.org/entity/Q15076049|http://www.wikidata.org/entity/Q12042686|http://www.wikidata.org/entity/Q12036810|http://www.wikidata.org/entity/Q12036784"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Ond\u0159ej Sokol"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16677724"}, "Title": {"type": "literal", "value": "Spike Island"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3298143"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5106208"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17005758|http://www.wikidata.org/entity/Q7026788|http://www.wikidata.org/entity/Q6834504|http://www.wikidata.org/entity/Q5365734|http://www.wikidata.org/entity/Q2535520|http://www.wikidata.org/entity/Q2481824|http://www.wikidata.org/entity/Q2040218|http://www.wikidata.org/entity/Q1906421|http://www.wikidata.org/entity/Q1273669|http://www.wikidata.org/entity/Q444410|http://www.wikidata.org/entity/Q363978|http://www.wikidata.org/entity/Q235132|http://www.wikidata.org/entity/Q229651"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2012 film by Mat Whitecross"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1119322"}, "Title": {"type": "literal", "value": "Exit Through the Gift Shop"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q133600"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19545820|http://www.wikidata.org/entity/Q133600"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3575336|http://www.wikidata.org/entity/Q3506692|http://www.wikidata.org/entity/Q2847120|http://www.wikidata.org/entity/Q1849264|http://www.wikidata.org/entity/Q1671666|http://www.wikidata.org/entity/Q1332698|http://www.wikidata.org/entity/Q582475|http://www.wikidata.org/entity/Q218718|http://www.wikidata.org/entity/Q215017|http://www.wikidata.org/entity/Q169452|http://www.wikidata.org/entity/Q160432|http://www.wikidata.org/entity/Q133600|http://www.wikidata.org/entity/Q41594|http://www.wikidata.org/entity/Q35332|http://www.wikidata.org/entity/Q13909"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q459290|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2010 film directed by Banksy"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21646762"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5651484"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9114254"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Hao Jie"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20646613"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4418570"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4418570"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4506333|http://www.wikidata.org/entity/Q4464055|http://www.wikidata.org/entity/Q4174263|http://www.wikidata.org/entity/Q4080114|http://www.wikidata.org/entity/Q2642325|http://www.wikidata.org/entity/Q1385036|http://www.wikidata.org/entity/Q447069"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Vassily Sigarev"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4793638"}, "Title": {"type": "literal", "value": "Armless"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5636759"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6789484|http://www.wikidata.org/entity/Q3701661|http://www.wikidata.org/entity/Q218211|http://www.wikidata.org/entity/Q114447"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Habib Azar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1018042"}, "Title": {"type": "literal", "value": "Butter"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12810116"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6769109|http://www.wikidata.org/entity/Q1378118|http://www.wikidata.org/entity/Q1198697|http://www.wikidata.org/entity/Q508280|http://www.wikidata.org/entity/Q504390|http://www.wikidata.org/entity/Q453620|http://www.wikidata.org/entity/Q272927|http://www.wikidata.org/entity/Q248179|http://www.wikidata.org/entity/Q200355|http://www.wikidata.org/entity/Q199945|http://www.wikidata.org/entity/Q189992|http://www.wikidata.org/entity/Q172044|http://www.wikidata.org/entity/Q129591"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "2011 film by Jim Field Smith"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1138789"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5166586"}, "Title": {"type": "literal", "value": "Convincing Clooney"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4714098"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6386241|http://www.wikidata.org/entity/Q1686928|http://www.wikidata.org/entity/Q1190037|http://www.wikidata.org/entity/Q724918|http://www.wikidata.org/entity/Q707410|http://www.wikidata.org/entity/Q552975|http://www.wikidata.org/entity/Q268039|http://www.wikidata.org/entity/Q109232"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Alec Cartio"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14901500"}, "Title": {"type": "literal", "value": "Les Coquillettes"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3490984"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3490984"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q382393|http://www.wikidata.org/entity/Q15415483|http://www.wikidata.org/entity/Q15407996|http://www.wikidata.org/entity/Q15210586|http://www.wikidata.org/entity/Q3490984|http://www.wikidata.org/entity/Q3292840|http://www.wikidata.org/entity/Q2896517|http://www.wikidata.org/entity/Q1871396|http://www.wikidata.org/entity/Q1661394"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Sophie Letourneur"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15210611"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2147045"}, "Title": {"type": "literal", "value": "Rewers"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3434587"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q514760"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11817503|http://www.wikidata.org/entity/Q11797805|http://www.wikidata.org/entity/Q11768402|http://www.wikidata.org/entity/Q11767544|http://www.wikidata.org/entity/Q11767535|http://www.wikidata.org/entity/Q11748789|http://www.wikidata.org/entity/Q11727317|http://www.wikidata.org/entity/Q11715518|http://www.wikidata.org/entity/Q11702709|http://www.wikidata.org/entity/Q11685395|http://www.wikidata.org/entity/Q11684593|http://www.wikidata.org/entity/Q9394647|http://www.wikidata.org/entity/Q9381849|http://www.wikidata.org/entity/Q9376919|http://www.wikidata.org/entity/Q9376850|http://www.wikidata.org/entity/Q9282113|http://www.wikidata.org/entity/Q9183213|http://www.wikidata.org/entity/Q9151875|http://www.wikidata.org/entity/Q9140519|http://www.wikidata.org/entity/Q6185448|http://www.wikidata.org/entity/Q4127206|http://www.wikidata.org/entity/Q536465|http://www.wikidata.org/entity/Q390870|http://www.wikidata.org/entity/Q272433|http://www.wikidata.org/entity/Q55371"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2009 Polish drama film directed by Borys Lankosz"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1150832"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6379279"}, "Title": {"type": "literal", "value": "La grande bellezza"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q374678"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q374678|http://www.wikidata.org/entity/Q4003361"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3702570|http://www.wikidata.org/entity/Q3617591|http://www.wikidata.org/entity/Q3525113|http://www.wikidata.org/entity/Q1124850|http://www.wikidata.org/entity/Q1085895|http://www.wikidata.org/entity/Q1044992|http://www.wikidata.org/entity/Q950495|http://www.wikidata.org/entity/Q603089|http://www.wikidata.org/entity/Q556069|http://www.wikidata.org/entity/Q285034|http://www.wikidata.org/entity/Q272409|http://www.wikidata.org/entity/Q205868|http://www.wikidata.org/entity/Q106349|http://www.wikidata.org/entity/Q53046|http://www.wikidata.org/entity/Q3838188|http://www.wikidata.org/entity/Q3836970|http://www.wikidata.org/entity/Q3791451|http://www.wikidata.org/entity/Q3769510|http://www.wikidata.org/entity/Q3757463|http://www.wikidata.org/entity/Q13460338|http://www.wikidata.org/entity/Q13460329|http://www.wikidata.org/entity/Q6096246|http://www.wikidata.org/entity/Q3972275|http://www.wikidata.org/entity/Q3894242|http://www.wikidata.org/entity/Q3851411|http://www.wikidata.org/entity/Q3851224"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "141"}, "Description": {"type": "literal", "value": "2013 film directed by Paolo Sorrentino"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q525894|http://www.wikidata.org/entity/Q1544011|http://www.wikidata.org/entity/Q3304113|http://www.wikidata.org/entity/Q16321327"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25454486"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12243777"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12239588"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Moataz El Touni"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20406308"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12243777"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12239588"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Moataz El Touni"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1551080"}, "Title": {"type": "literal", "value": "Eu Tu Eles"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4759560"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1797422|http://www.wikidata.org/entity/Q1791430"}, "Published": {"type": "literal", "value": "2001|2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2000 film by Andrucha Waddington"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3098674"}, "Title": {"type": "literal", "value": "Gar\u00e7on stupide"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3241813"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3336321|http://www.wikidata.org/entity/Q3241813|http://www.wikidata.org/entity/Q3195970"}, "Published": {"type": "literal", "value": "2006|2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2004 film by Lionel Baier"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23925076"}, "Title": {"type": "literal", "value": "Victoria"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15069938"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20991634|http://www.wikidata.org/entity/Q15069938"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27051011|http://www.wikidata.org/entity/Q24940525|http://www.wikidata.org/entity/Q20991634|http://www.wikidata.org/entity/Q15974043|http://www.wikidata.org/entity/Q3560737|http://www.wikidata.org/entity/Q3559693|http://www.wikidata.org/entity/Q3559589|http://www.wikidata.org/entity/Q3490932|http://www.wikidata.org/entity/Q3485203|http://www.wikidata.org/entity/Q3460757|http://www.wikidata.org/entity/Q3386073|http://www.wikidata.org/entity/Q3288369|http://www.wikidata.org/entity/Q3219454|http://www.wikidata.org/entity/Q3218747|http://www.wikidata.org/entity/Q3129270|http://www.wikidata.org/entity/Q3051734|http://www.wikidata.org/entity/Q2872024|http://www.wikidata.org/entity/Q2865232|http://www.wikidata.org/entity/Q1339485"}, "Published": {"type": "literal", "value": "2017|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2016 film by Justine Triet"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29906232"}, "Title": {"type": "literal", "value": "Sonic the Hedgehog"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15453979"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7146216"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q350589|http://www.wikidata.org/entity/Q40504|http://www.wikidata.org/entity/Q4886423|http://www.wikidata.org/entity/Q748404|http://www.wikidata.org/entity/Q485901|http://www.wikidata.org/entity/Q445125"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q188473"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Jeff Fowler"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q122741|http://www.wikidata.org/entity/Q159846|http://www.wikidata.org/entity/Q557387|http://www.wikidata.org/entity/Q921556|http://www.wikidata.org/entity/Q7135302|http://www.wikidata.org/entity/Q11341740"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25446290"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18408276"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18408276"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2016 film directed by Ivan Tverdovski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21998619"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19921882"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2533357|http://www.wikidata.org/entity/Q2379440|http://www.wikidata.org/entity/Q2375095|http://www.wikidata.org/entity/Q2200667|http://www.wikidata.org/entity/Q2154387"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 Belgian film directed by Tim Van Aelst"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18170412"}, "Title": {"type": "literal", "value": "Boreg|\u05d1\u05d5\u05e8\u05d2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6157634"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6157634"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3575461|http://www.wikidata.org/entity/Q3036966|http://www.wikidata.org/entity/Q2776777"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2014 film directed by Shira Geffen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30314503"}, "Title": {"type": "literal", "value": "\u00bfQu\u00e9 culpa tiene el ni\u00f1o?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19482689"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1377330"}, "Title": {"type": "literal", "value": "Futurama: Bender's Game"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q388404"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q455743"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q761469|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2008 film by Dwayne Carey-Hill"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434841|http://www.wikidata.org/entity/Q634019|http://www.wikidata.org/entity/Q3325728"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1049558"}, "Title": {"type": "literal", "value": "Minoes"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2482702"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2370746|http://www.wikidata.org/entity/Q2780257|http://www.wikidata.org/entity/Q2482702"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2282736|http://www.wikidata.org/entity/Q2255366|http://www.wikidata.org/entity/Q2100206|http://www.wikidata.org/entity/Q2088442|http://www.wikidata.org/entity/Q1989503|http://www.wikidata.org/entity/Q1971627|http://www.wikidata.org/entity/Q1960272|http://www.wikidata.org/entity/Q633177|http://www.wikidata.org/entity/Q354241|http://www.wikidata.org/entity/Q327600|http://www.wikidata.org/entity/Q232384|http://www.wikidata.org/entity/Q82246|http://www.wikidata.org/entity/Q16145244|http://www.wikidata.org/entity/Q3283242|http://www.wikidata.org/entity/Q2606559"}, "Published": {"type": "literal", "value": "2002|2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2001 Dutch film directed by Vincent Bal"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1889303"}, "Title": {"type": "literal", "value": "Ronal Barbaren"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q37494107|http://www.wikidata.org/entity/Q37494099|http://www.wikidata.org/entity/Q37493592"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2011 Danish stereoscopic computer animation feature film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23900055"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3739588"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Fariborz Kamkari"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2140357"}, "Title": {"type": "literal", "value": "Reine Geschmacksache"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1663184"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q109492"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2007 film by Ingo Rasper"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7750685"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q908962"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5359450|http://www.wikidata.org/entity/Q3549436|http://www.wikidata.org/entity/Q1039595|http://www.wikidata.org/entity/Q873908"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Nobuhiro Yamashita"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15057183"}, "Title": {"type": "literal", "value": "Pinoy Sunday"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9105575"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3264585"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Wi Ding Ho"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26720525"}, "Title": {"type": "literal", "value": "The Idiotmaker's Gravity Tour"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26251356"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Daniel Kremer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q929325"}, "Title": {"type": "literal", "value": "Sleepover"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6211585"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15630234|http://www.wikidata.org/entity/Q3714646|http://www.wikidata.org/entity/Q2419900|http://www.wikidata.org/entity/Q1252523|http://www.wikidata.org/entity/Q983082|http://www.wikidata.org/entity/Q785270|http://www.wikidata.org/entity/Q566037|http://www.wikidata.org/entity/Q442847|http://www.wikidata.org/entity/Q372704|http://www.wikidata.org/entity/Q355361|http://www.wikidata.org/entity/Q355059|http://www.wikidata.org/entity/Q272130|http://www.wikidata.org/entity/Q271059|http://www.wikidata.org/entity/Q239382|http://www.wikidata.org/entity/Q236854|http://www.wikidata.org/entity/Q231635|http://www.wikidata.org/entity/Q228852|http://www.wikidata.org/entity/Q216221|http://www.wikidata.org/entity/Q152555|http://www.wikidata.org/entity/Q29328"}, "Published": {"type": "literal", "value": "2005|2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5442753|http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2004 film by Joe Nussbaum"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4735698"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6836963"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6836963"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6836963|http://www.wikidata.org/entity/Q3890841"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Michelle Chong"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11795829"}, "Title": {"type": "literal", "value": "Od pe\u0142ni do pe\u0142ni"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9359729"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9141922"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q617644"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Tomasz Szafra\u0144ski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2551207"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q971159"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q971159"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4291413"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192881"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Tom Six"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60853534"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028520"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Mohamed Hamidi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20616718"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4808343"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12405898|http://www.wikidata.org/entity/Q12403452|http://www.wikidata.org/entity/Q7066335"}, "Published": {"type": "literal", "value": "1995"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "34"}, "Description": {"type": "literal", "value": "1995 film by Assaf Bernstein"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17415406"}, "Title": {"type": "literal", "value": "ORPS \u2013 The Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17099977"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16899382"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 Norwegian film directed by Atle Knudsen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12814617"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1009685"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Tam\u00e1s Gerencs\u00e9r"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2110480"}, "Title": {"type": "literal", "value": "Safety Not Guaranteed"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5145625"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5261887"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q210547|http://www.wikidata.org/entity/Q178882|http://www.wikidata.org/entity/Q171525|http://www.wikidata.org/entity/Q22815258|http://www.wikidata.org/entity/Q3273787|http://www.wikidata.org/entity/Q983082|http://www.wikidata.org/entity/Q230510"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q2975633"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2012 film by Colin Trevorrow"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2902139"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17450878"}, "Title": {"type": "literal", "value": "Sa\u011f Salim 2: Sil Ba\u015ftan"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q31189612"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Ersoy G\u00fcler"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1232225"}, "Title": {"type": "literal", "value": "La pazienza ha un limite... noi no!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1242166"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q454301"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3937219|http://www.wikidata.org/entity/Q3839271|http://www.wikidata.org/entity/Q1876342|http://www.wikidata.org/entity/Q1041544|http://www.wikidata.org/entity/Q324143|http://www.wikidata.org/entity/Q178307"}, "Published": {"type": "literal", "value": "1974"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "1974 film by Franco Ciferri"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20972531"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3525440"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3525440"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3525440"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Thomas N'Gijol"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55388281"}, "Title": {"type": "literal", "value": "Missing Link"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2964669"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2964669"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q57098323|http://www.wikidata.org/entity/Q4748667|http://www.wikidata.org/entity/Q359665|http://www.wikidata.org/entity/Q317251|http://www.wikidata.org/entity/Q309835|http://www.wikidata.org/entity/Q192912|http://www.wikidata.org/entity/Q190162|http://www.wikidata.org/entity/Q168724|http://www.wikidata.org/entity/Q139325|http://www.wikidata.org/entity/Q129591"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2019 film directed by Chris Butler"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1314323|http://www.wikidata.org/entity/Q16242963"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28726414"}, "Title": {"type": "literal", "value": "Afacerea Est"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12730266"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Igor Cobileanski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q62267996"}, "Title": {"type": "literal", "value": "Lucky"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q32625239"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q32625239"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15894174"}, "Title": {"type": "literal", "value": "Wrong Cops"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q453691"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q453691"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3135658|http://www.wikidata.org/entity/Q1994133|http://www.wikidata.org/entity/Q1285062|http://www.wikidata.org/entity/Q1239533|http://www.wikidata.org/entity/Q953735|http://www.wikidata.org/entity/Q714645|http://www.wikidata.org/entity/Q712647|http://www.wikidata.org/entity/Q530646|http://www.wikidata.org/entity/Q415406|http://www.wikidata.org/entity/Q336824|http://www.wikidata.org/entity/Q242552|http://www.wikidata.org/entity/Q239396|http://www.wikidata.org/entity/Q207969|http://www.wikidata.org/entity/Q186327|http://www.wikidata.org/entity/Q164869|http://www.wikidata.org/entity/Q5387705|http://www.wikidata.org/entity/Q5218510|http://www.wikidata.org/entity/Q3591196"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2013 film by Mr. Oizo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4694889"}, "Title": {"type": "literal", "value": "\u0c05\u0c39 \u0c28\u0c3e \u0c2a\u0c46\u0c33\u0c4d\u0c33\u0c02\u0c1f"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16728026"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7336830|http://www.wikidata.org/entity/Q4731165"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 Telugu film directed by Veerabhadram Chowdary"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15039869"}, "Title": {"type": "literal", "value": "St. Vincent"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19517847"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19517847"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15501325|http://www.wikidata.org/entity/Q11835140|http://www.wikidata.org/entity/Q7364157|http://www.wikidata.org/entity/Q4460041|http://www.wikidata.org/entity/Q3952813|http://www.wikidata.org/entity/Q3854103|http://www.wikidata.org/entity/Q3082862|http://www.wikidata.org/entity/Q2558129|http://www.wikidata.org/entity/Q2528786|http://www.wikidata.org/entity/Q1524102|http://www.wikidata.org/entity/Q973783|http://www.wikidata.org/entity/Q933129|http://www.wikidata.org/entity/Q456838|http://www.wikidata.org/entity/Q373895|http://www.wikidata.org/entity/Q296500|http://www.wikidata.org/entity/Q230196|http://www.wikidata.org/entity/Q229048|http://www.wikidata.org/entity/Q138576|http://www.wikidata.org/entity/Q132616|http://www.wikidata.org/entity/Q29250|http://www.wikidata.org/entity/Q19517962|http://www.wikidata.org/entity/Q19019158|http://www.wikidata.org/entity/Q17466570|http://www.wikidata.org/entity/Q16734816"}, "Published": {"type": "literal", "value": "2014|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2014 film by Theodore Melfi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17335666"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60075921"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3565126"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3565126"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61043065|http://www.wikidata.org/entity/Q14777153|http://www.wikidata.org/entity/Q12048516|http://www.wikidata.org/entity/Q11925857|http://www.wikidata.org/entity/Q5241524|http://www.wikidata.org/entity/Q4734268|http://www.wikidata.org/entity/Q3858922"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film project directed by Ji\u0159i M\u00e1dl"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18922803"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19939057|http://www.wikidata.org/entity/Q5262121"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19939057"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18574945|http://www.wikidata.org/entity/Q16259986|http://www.wikidata.org/entity/Q11573175|http://www.wikidata.org/entity/Q9343509|http://www.wikidata.org/entity/Q9319793|http://www.wikidata.org/entity/Q9293347|http://www.wikidata.org/entity/Q9211893|http://www.wikidata.org/entity/Q8997927|http://www.wikidata.org/entity/Q8980263|http://www.wikidata.org/entity/Q8973541|http://www.wikidata.org/entity/Q7532206|http://www.wikidata.org/entity/Q7244051|http://www.wikidata.org/entity/Q6788483|http://www.wikidata.org/entity/Q6125633|http://www.wikidata.org/entity/Q3270144|http://www.wikidata.org/entity/Q903237|http://www.wikidata.org/entity/Q738936|http://www.wikidata.org/entity/Q717129|http://www.wikidata.org/entity/Q700277|http://www.wikidata.org/entity/Q699866|http://www.wikidata.org/entity/Q698533|http://www.wikidata.org/entity/Q455691|http://www.wikidata.org/entity/Q454881"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Derek Kwok, Henri Wong"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1010104"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7844679"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7844679"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3521977|http://www.wikidata.org/entity/Q2087610|http://www.wikidata.org/entity/Q1322453|http://www.wikidata.org/entity/Q330970|http://www.wikidata.org/entity/Q21067195|http://www.wikidata.org/entity/Q17495881|http://www.wikidata.org/entity/Q16314846|http://www.wikidata.org/entity/Q16198893|http://www.wikidata.org/entity/Q7994331|http://www.wikidata.org/entity/Q7920464|http://www.wikidata.org/entity/Q7683304|http://www.wikidata.org/entity/Q7282980|http://www.wikidata.org/entity/Q5269357|http://www.wikidata.org/entity/Q4724516|http://www.wikidata.org/entity/Q3765029|http://www.wikidata.org/entity/Q3536811"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q188473"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Trivikram Srinivas"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15632949"}, "Title": {"type": "literal", "value": "The Grinch"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24951590|http://www.wikidata.org/entity/Q354010"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q298685"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 animated film by Yarrow Cheney and Scott Mosier"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383|http://www.wikidata.org/entity/Q1189512"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12187704"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12218751"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10948923"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 film by Sherif Mandour"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15623092"}, "Title": {"type": "literal", "value": "Nicht mein Tag"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2078661"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2336552|http://www.wikidata.org/entity/Q2078661"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24278987|http://www.wikidata.org/entity/Q23060305|http://www.wikidata.org/entity/Q17353105|http://www.wikidata.org/entity/Q2422213|http://www.wikidata.org/entity/Q1905418|http://www.wikidata.org/entity/Q1739671|http://www.wikidata.org/entity/Q1646934|http://www.wikidata.org/entity/Q1302143|http://www.wikidata.org/entity/Q1082059|http://www.wikidata.org/entity/Q816586|http://www.wikidata.org/entity/Q111498|http://www.wikidata.org/entity/Q108942|http://www.wikidata.org/entity/Q105617|http://www.wikidata.org/entity/Q95248|http://www.wikidata.org/entity/Q90041|http://www.wikidata.org/entity/Q63033|http://www.wikidata.org/entity/Q58603|http://www.wikidata.org/entity/Q57391"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "2014 film by Peter Thorwarth"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18228443"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8932472"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8932472"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Chen Jianbin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15297593"}, "Title": {"type": "literal", "value": "45 Minutes to Ramallah"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1679707"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28973644"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6116639|http://www.wikidata.org/entity/Q3193213|http://www.wikidata.org/entity/Q1972418|http://www.wikidata.org/entity/Q87930"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2013 film by Ali Samadi Ahadi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61642158"}, "Title": {"type": "literal", "value": "Tel Aviv on Fire"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3470752"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3470752"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17556244|http://www.wikidata.org/entity/Q2916467|http://www.wikidata.org/entity/Q2907443|http://www.wikidata.org/entity/Q2842786|http://www.wikidata.org/entity/Q979285|http://www.wikidata.org/entity/Q462256"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2018 film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2866005"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15055478"}, "Title": {"type": "literal", "value": "Paddington"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7151786"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q122127"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7803442|http://www.wikidata.org/entity/Q7518724|http://www.wikidata.org/entity/Q1909222|http://www.wikidata.org/entity/Q732661|http://www.wikidata.org/entity/Q342617|http://www.wikidata.org/entity/Q317251|http://www.wikidata.org/entity/Q234798|http://www.wikidata.org/entity/Q233563|http://www.wikidata.org/entity/Q228747|http://www.wikidata.org/entity/Q203545|http://www.wikidata.org/entity/Q185079|http://www.wikidata.org/entity/Q155775|http://www.wikidata.org/entity/Q122127|http://www.wikidata.org/entity/Q37459|http://www.wikidata.org/entity/Q19960315|http://www.wikidata.org/entity/Q15639406"}, "Published": {"type": "literal", "value": "2014|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q699|http://www.wikidata.org/entity/Q1361932"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2014 comedy film directed by Paul King"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2450848|http://www.wikidata.org/entity/Q2415769"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2028280"}, "Title": {"type": "literal", "value": "\u0412\u0441\u0435 \u0443\u043c\u0440\u0443\u0442, \u0430 \u044f \u043e\u0441\u0442\u0430\u043d\u0443\u0441\u044c"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q468621"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4222765"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4484282|http://www.wikidata.org/entity/Q4377440|http://www.wikidata.org/entity/Q4288668|http://www.wikidata.org/entity/Q4268819|http://www.wikidata.org/entity/Q4245097|http://www.wikidata.org/entity/Q16271982|http://www.wikidata.org/entity/Q4527285|http://www.wikidata.org/entity/Q4492999"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q2975633"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2008 film by Valeriya Guy Germanika"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4341103"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q50143448"}, "Title": {"type": "literal", "value": "\u5510\u4eba\u8857\u63a2\u6848 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q703779"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q703779"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22774261|http://www.wikidata.org/entity/Q7967359"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1200678|http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Chen Sicheng"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20897605"}, "Title": {"type": "literal", "value": "\u0540\u0575\u0578\u0582\u057d\u056b\u057d-\u0540\u0561\u0580\u0561\u057e"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21572795"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27885150|http://www.wikidata.org/entity/Q23038181|http://www.wikidata.org/entity/Q22138704|http://www.wikidata.org/entity/Q20511346|http://www.wikidata.org/entity/Q20510404|http://www.wikidata.org/entity/Q6875613"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2015 film by David Babakhanyan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15818203"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1140540"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1140540|http://www.wikidata.org/entity/Q1137458"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Deng Chao"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16325320"}, "Title": {"type": "literal", "value": "Jacky au royaume des filles"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3430005"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3430005"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16534621|http://www.wikidata.org/entity/Q15069815|http://www.wikidata.org/entity/Q3568783|http://www.wikidata.org/entity/Q3559693|http://www.wikidata.org/entity/Q3430005|http://www.wikidata.org/entity/Q3358488|http://www.wikidata.org/entity/Q3340587|http://www.wikidata.org/entity/Q3292384|http://www.wikidata.org/entity/Q3086913|http://www.wikidata.org/entity/Q2852965|http://www.wikidata.org/entity/Q1807890|http://www.wikidata.org/entity/Q1672665|http://www.wikidata.org/entity/Q1210511|http://www.wikidata.org/entity/Q886513|http://www.wikidata.org/entity/Q485419|http://www.wikidata.org/entity/Q449240|http://www.wikidata.org/entity/Q440995|http://www.wikidata.org/entity/Q440609|http://www.wikidata.org/entity/Q276005|http://www.wikidata.org/entity/Q241043|http://www.wikidata.org/entity/Q230710|http://www.wikidata.org/entity/Q28556"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2014 film directed by Riad Sattouf"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2628332"}, "Title": {"type": "literal", "value": "Touch of Pink"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15461094"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15461094"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1066454|http://www.wikidata.org/entity/Q978469|http://www.wikidata.org/entity/Q724227|http://www.wikidata.org/entity/Q274139|http://www.wikidata.org/entity/Q207506"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Ian Iqbal Rashid"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16987989"}, "Title": {"type": "literal", "value": "Jem and the Holograms"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1702754"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5711332|http://www.wikidata.org/entity/Q4675901|http://www.wikidata.org/entity/Q714133|http://www.wikidata.org/entity/Q572761|http://www.wikidata.org/entity/Q555738|http://www.wikidata.org/entity/Q503706|http://www.wikidata.org/entity/Q335680|http://www.wikidata.org/entity/Q272960|http://www.wikidata.org/entity/Q239195|http://www.wikidata.org/entity/Q231460|http://www.wikidata.org/entity/Q230523|http://www.wikidata.org/entity/Q121507|http://www.wikidata.org/entity/Q33605|http://www.wikidata.org/entity/Q10738"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q860626"}, "Duration": {"type": "literal", "value": "118"}, "Description": {"type": "literal", "value": "2015 film by Jon M. Chu"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3783594"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q9379797"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11828879"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11828879"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55374"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Przemys\u0142aw Angerman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3522804"}, "Title": {"type": "literal", "value": "The Spectacular Now"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1680997"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16886480|http://www.wikidata.org/entity/Q5965293"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18581761|http://www.wikidata.org/entity/Q5526127|http://www.wikidata.org/entity/Q3990695|http://www.wikidata.org/entity/Q888178|http://www.wikidata.org/entity/Q589836|http://www.wikidata.org/entity/Q519784|http://www.wikidata.org/entity/Q493227|http://www.wikidata.org/entity/Q359604|http://www.wikidata.org/entity/Q267330|http://www.wikidata.org/entity/Q232902|http://www.wikidata.org/entity/Q231058|http://www.wikidata.org/entity/Q207873|http://www.wikidata.org/entity/Q29328"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2013 film by James Ponsoldt"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3027511"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2833411"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2833411"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3525007|http://www.wikidata.org/entity/Q3484193|http://www.wikidata.org/entity/Q3340339|http://www.wikidata.org/entity/Q3241976|http://www.wikidata.org/entity/Q3169949|http://www.wikidata.org/entity/Q3164751|http://www.wikidata.org/entity/Q3158492|http://www.wikidata.org/entity/Q3082237|http://www.wikidata.org/entity/Q2834533|http://www.wikidata.org/entity/Q2833411"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Alexandre Astier"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61951873"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2576503"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2020"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Will Gluck"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55420238"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q935646"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3286702"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27962117|http://www.wikidata.org/entity/Q3524860|http://www.wikidata.org/entity/Q3321452|http://www.wikidata.org/entity/Q3286702|http://www.wikidata.org/entity/Q3183342|http://www.wikidata.org/entity/Q2865960|http://www.wikidata.org/entity/Q2837284|http://www.wikidata.org/entity/Q32608"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Xavier Gens"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48757158"}, "Title": {"type": "literal", "value": "C'est \u00e7a l'amour"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15974043"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15974043"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q895091"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "film directed by Claire Burger"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11345817"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11413949"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11259198|http://www.wikidata.org/entity/Q10669833|http://www.wikidata.org/entity/Q3548252|http://www.wikidata.org/entity/Q2705964|http://www.wikidata.org/entity/Q875644"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q599558|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 Japanese erotic comedy drama film directed by K\u014dta Yoshida"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43160927"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26234865"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5423258"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Caner \u00d6zyurtlu"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21539948"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30673497"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4907283"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film directed by Rajesh Nair"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16123070"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28716221"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10997199|http://www.wikidata.org/entity/Q981905"}, "Published": {"type": "literal", "value": "1951"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1951 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4447747"}, "Title": {"type": "literal", "value": "Scenes of a Sexual Nature"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5334572"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5881891|http://www.wikidata.org/entity/Q5301604|http://www.wikidata.org/entity/Q817739|http://www.wikidata.org/entity/Q373395|http://www.wikidata.org/entity/Q312712|http://www.wikidata.org/entity/Q296843|http://www.wikidata.org/entity/Q269835|http://www.wikidata.org/entity/Q257293|http://www.wikidata.org/entity/Q254766|http://www.wikidata.org/entity/Q238864|http://www.wikidata.org/entity/Q237904|http://www.wikidata.org/entity/Q208026|http://www.wikidata.org/entity/Q165518|http://www.wikidata.org/entity/Q155775"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Ed Blum"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10452700"}, "Title": {"type": "literal", "value": "Ciao Bella"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5978777"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5891679"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15633709|http://www.wikidata.org/entity/Q5966500|http://www.wikidata.org/entity/Q5958592|http://www.wikidata.org/entity/Q5900295|http://www.wikidata.org/entity/Q4962567|http://www.wikidata.org/entity/Q4958072|http://www.wikidata.org/entity/Q4937102"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Mani Maserrat"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56366701"}, "Title": {"type": "literal", "value": "\u041f\u0440\u0438\u0433\u043e\u0434\u0438 S \u041c\u0438\u043a\u043e\u043b\u0430\u044f"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4173781"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11828896|http://www.wikidata.org/entity/Q2601051|http://www.wikidata.org/entity/Q438402"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "77"}, "Description": {"type": "literal", "value": "2018 film directed by Semyon Gorov"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15216005"}, "Title": {"type": "literal", "value": "Dating Lanzelot"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2020499"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55849622"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2011 film by Oliver Rihs"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15270885"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4502216"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4502216|http://www.wikidata.org/entity/Q2035141"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4494015"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2013 film by Pavel Khudyakov"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4463658"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2894488"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6745634"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q471740"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Leonid Prudovsky"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16323182"}, "Title": {"type": "literal", "value": "Antboy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20670245"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2867634"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q40523594|http://www.wikidata.org/entity/Q40523393|http://www.wikidata.org/entity/Q37491133|http://www.wikidata.org/entity/Q37491048|http://www.wikidata.org/entity/Q28939734|http://www.wikidata.org/entity/Q18341999|http://www.wikidata.org/entity/Q16948835|http://www.wikidata.org/entity/Q16948833|http://www.wikidata.org/entity/Q12339254|http://www.wikidata.org/entity/Q12325345|http://www.wikidata.org/entity/Q12320295|http://www.wikidata.org/entity/Q12318939|http://www.wikidata.org/entity/Q12305524|http://www.wikidata.org/entity/Q12302308|http://www.wikidata.org/entity/Q11213025|http://www.wikidata.org/entity/Q8727486|http://www.wikidata.org/entity/Q1797671"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "77"}, "Description": {"type": "literal", "value": "2013 film by Ask Hasselbalch"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q117555"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12308501"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12308264"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12312667"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41236246|http://www.wikidata.org/entity/Q41236212|http://www.wikidata.org/entity/Q12333598|http://www.wikidata.org/entity/Q12325626|http://www.wikidata.org/entity/Q12316483|http://www.wikidata.org/entity/Q12312667|http://www.wikidata.org/entity/Q12301381|http://www.wikidata.org/entity/Q12006703|http://www.wikidata.org/entity/Q5575542|http://www.wikidata.org/entity/Q4938062|http://www.wikidata.org/entity/Q1535885|http://www.wikidata.org/entity/Q323563"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Dennis Holck Petersen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q32067450"}, "Title": {"type": "literal", "value": "Sorry to Bother You"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4944043"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4944043"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q271500|http://www.wikidata.org/entity/Q271464|http://www.wikidata.org/entity/Q228692|http://www.wikidata.org/entity/Q192165|http://www.wikidata.org/entity/Q182763|http://www.wikidata.org/entity/Q104061|http://www.wikidata.org/entity/Q28819579|http://www.wikidata.org/entity/Q22957978|http://www.wikidata.org/entity/Q16762370|http://www.wikidata.org/entity/Q13217306|http://www.wikidata.org/entity/Q7089885|http://www.wikidata.org/entity/Q552176|http://www.wikidata.org/entity/Q374273|http://www.wikidata.org/entity/Q374065|http://www.wikidata.org/entity/Q362332"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "2018 film by Boots Riley"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5120878"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3232908"}, "Title": {"type": "literal", "value": "Les Gamins"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18744856"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3302043"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3340076|http://www.wikidata.org/entity/Q3302043|http://www.wikidata.org/entity/Q3196131|http://www.wikidata.org/entity/Q3168853|http://www.wikidata.org/entity/Q2861469|http://www.wikidata.org/entity/Q2830767|http://www.wikidata.org/entity/Q2390803|http://www.wikidata.org/entity/Q462376|http://www.wikidata.org/entity/Q452106|http://www.wikidata.org/entity/Q448021|http://www.wikidata.org/entity/Q440335|http://www.wikidata.org/entity/Q327549|http://www.wikidata.org/entity/Q262822|http://www.wikidata.org/entity/Q182665|http://www.wikidata.org/entity/Q171530|http://www.wikidata.org/entity/Q16678081|http://www.wikidata.org/entity/Q3525573|http://www.wikidata.org/entity/Q3340143"}, "Published": {"type": "literal", "value": "2013|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2013 film by Anthony Marciano"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3841084"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2101169"}, "Title": {"type": "literal", "value": "Poldis Engel"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2435592"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1085501"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "10"}, "Description": {"type": "literal", "value": "2006 film by Tina Traben"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4656339"}, "Title": {"type": "literal", "value": "A Day with the Meatball"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7026507"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q525572"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Nicholaus Goossen"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1584317"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14948559"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19898411"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19898411"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7328681"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by SK Basheed"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5500630"}, "Title": {"type": "literal", "value": "Freedom State"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20631221"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20631221"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q459719|http://www.wikidata.org/entity/Q453552"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Cullen Hoback"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27877511"}, "Title": {"type": "literal", "value": "Enredados: La Confusi\u00f3n"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q47492960"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Prabhakar Sharan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18209450"}, "Title": {"type": "literal", "value": "Preggoland"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434244"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7561895"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Jacob Tierney"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27049590"}, "Title": {"type": "literal", "value": "\u0412\u0441\u0451 \u043e \u043c\u0443\u0436\u0447\u0438\u043d\u0430\u0445"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28368075|http://www.wikidata.org/entity/Q4065391"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28368075|http://www.wikidata.org/entity/Q4065391"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3033167"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2016 film by Sarik Andreasyan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4919064"}, "Title": {"type": "literal", "value": "Bitters and Blue Ruin"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7441117"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2421031|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Sean Kelley"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7282755"}, "Title": {"type": "literal", "value": "Raf\u0165\u00e1ci"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12028282"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15042966|http://www.wikidata.org/entity/Q12050215|http://www.wikidata.org/entity/Q12028282"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60789659|http://www.wikidata.org/entity/Q31931838|http://www.wikidata.org/entity/Q29343451|http://www.wikidata.org/entity/Q18718708|http://www.wikidata.org/entity/Q15074156|http://www.wikidata.org/entity/Q15074155|http://www.wikidata.org/entity/Q12045111|http://www.wikidata.org/entity/Q12044365|http://www.wikidata.org/entity/Q12036102|http://www.wikidata.org/entity/Q12018943|http://www.wikidata.org/entity/Q11926027|http://www.wikidata.org/entity/Q11879923|http://www.wikidata.org/entity/Q11878252|http://www.wikidata.org/entity/Q11230425|http://www.wikidata.org/entity/Q10856191|http://www.wikidata.org/entity/Q10819148|http://www.wikidata.org/entity/Q7922503|http://www.wikidata.org/entity/Q7777909|http://www.wikidata.org/entity/Q6465281|http://www.wikidata.org/entity/Q5825305|http://www.wikidata.org/entity/Q3566396|http://www.wikidata.org/entity/Q3565126|http://www.wikidata.org/entity/Q3497007|http://www.wikidata.org/entity/Q2064639|http://www.wikidata.org/entity/Q544058|http://www.wikidata.org/entity/Q430017|http://www.wikidata.org/entity/Q312695"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Karel Jan\u00e1k"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q767788"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3316225"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2370746"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2007 film by Mischa Kamp"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5918754"}, "Title": {"type": "literal", "value": "How to Stop Being a Loser"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18808541"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3295485|http://www.wikidata.org/entity/Q460898|http://www.wikidata.org/entity/Q448683|http://www.wikidata.org/entity/Q380856|http://www.wikidata.org/entity/Q239187|http://www.wikidata.org/entity/Q7519532|http://www.wikidata.org/entity/Q5180845|http://www.wikidata.org/entity/Q4913081|http://www.wikidata.org/entity/Q4681905"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Dominic Burns"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1061749"}, "Title": {"type": "literal", "value": "\u091a\u093e\u0901\u0926\u0928\u0940 \u091a\u094c\u0915 \u091f\u0942 \u091a\u093e\u0907\u0928\u093e"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2332619"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7285862|http://www.wikidata.org/entity/Q4938065|http://www.wikidata.org/entity/Q1391295"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6414804|http://www.wikidata.org/entity/Q4809088|http://www.wikidata.org/entity/Q3595440|http://www.wikidata.org/entity/Q1530432|http://www.wikidata.org/entity/Q1071583|http://www.wikidata.org/entity/Q717527|http://www.wikidata.org/entity/Q379604|http://www.wikidata.org/entity/Q233748|http://www.wikidata.org/entity/Q159178"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3072042|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "154"}, "Description": {"type": "literal", "value": "2009 film by Nikhil Advani"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60457305"}, "Title": {"type": "literal", "value": "\u00c7akallarla Dans 5"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6064908"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6064908"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19610992|http://www.wikidata.org/entity/Q6082607|http://www.wikidata.org/entity/Q6066945|http://www.wikidata.org/entity/Q3624103"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Murat \u015eeker"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3473393"}, "Title": {"type": "literal", "value": "\u0b89\u0ba4\u0bcd\u0ba4\u0bae \u0baa\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0bb0\u0ba9\u0bcd"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6881664"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16214855"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6167419|http://www.wikidata.org/entity/Q3595438|http://www.wikidata.org/entity/Q3537602|http://www.wikidata.org/entity/Q331050|http://www.wikidata.org/entity/Q312783|http://www.wikidata.org/entity/Q63730"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Mithran Jawahar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16139157"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1015952"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Poj Arnon"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q52777610"}, "Title": {"type": "literal", "value": "Wer hat eigentlich die Liebe erfunden?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22998193"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22998193"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27928780|http://www.wikidata.org/entity/Q1703003|http://www.wikidata.org/entity/Q993135|http://www.wikidata.org/entity/Q124551|http://www.wikidata.org/entity/Q103430|http://www.wikidata.org/entity/Q65511|http://www.wikidata.org/entity/Q65116"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Kerstin Polte"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q47064337"}, "Title": {"type": "literal", "value": "A Happening of Monumental Proportions"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q236189"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Judy Greer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q57899021"}, "Title": {"type": "literal", "value": "Canceled"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28913562"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28913562"}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 short film by Jimmy Caputo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1075436"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1645932"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1988"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7696995|http://www.wikidata.org/entity/Q231302"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1988 film directed by Tak Sakaguchi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12126298"}, "Title": {"type": "literal", "value": "Movin' In"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1546566"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7408642|http://www.wikidata.org/entity/Q1546566|http://www.wikidata.org/entity/Q272935|http://www.wikidata.org/entity/Q235388|http://www.wikidata.org/entity/Q123115|http://www.wikidata.org/entity/Q117566"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Griff Furst"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q214014"}, "Title": {"type": "literal", "value": "21 Jump Street"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3378803|http://www.wikidata.org/entity/Q13638984"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q457431|http://www.wikidata.org/entity/Q2262850|http://www.wikidata.org/entity/Q470282"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q116636|http://www.wikidata.org/entity/Q72077|http://www.wikidata.org/entity/Q37175|http://www.wikidata.org/entity/Q29328|http://www.wikidata.org/entity/Q313388|http://www.wikidata.org/entity/Q212064|http://www.wikidata.org/entity/Q173637|http://www.wikidata.org/entity/Q171525|http://www.wikidata.org/entity/Q434003|http://www.wikidata.org/entity/Q383930|http://www.wikidata.org/entity/Q2002151|http://www.wikidata.org/entity/Q1985488|http://www.wikidata.org/entity/Q1616538|http://www.wikidata.org/entity/Q1077635|http://www.wikidata.org/entity/Q745235|http://www.wikidata.org/entity/Q663741|http://www.wikidata.org/entity/Q508404|http://www.wikidata.org/entity/Q18953|http://www.wikidata.org/entity/Q23815604|http://www.wikidata.org/entity/Q7291478|http://www.wikidata.org/entity/Q2315802"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q4984974|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "2012 American action comedy film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q179200|http://www.wikidata.org/entity/Q186941|http://www.wikidata.org/entity/Q557387|http://www.wikidata.org/entity/Q2702789"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5280980"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11857339"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6303995|http://www.wikidata.org/entity/Q4354690"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Elias Koskimies"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20992049"}, "Title": {"type": "literal", "value": "Par\u00eds Nor\u00f0ursins"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22928232"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18748108"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1602419"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2014 film by Hafsteinn Gunnar Sigur\u00f0sson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1153505"}, "Title": {"type": "literal", "value": "The Damned United"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q295912"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q948122"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3132807|http://www.wikidata.org/entity/Q1616520|http://www.wikidata.org/entity/Q442547|http://www.wikidata.org/entity/Q313671|http://www.wikidata.org/entity/Q298276|http://www.wikidata.org/entity/Q287824|http://www.wikidata.org/entity/Q185079"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q1339864|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2009 film by Tom Hooper"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q971446|http://www.wikidata.org/entity/Q6516806|http://www.wikidata.org/entity/Q7309238"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1545861"}, "Title": {"type": "literal", "value": "Grenzverkehr"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2336016"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2336016"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23060657|http://www.wikidata.org/entity/Q2336016|http://www.wikidata.org/entity/Q2077727|http://www.wikidata.org/entity/Q2020358|http://www.wikidata.org/entity/Q1707681|http://www.wikidata.org/entity/Q1582402|http://www.wikidata.org/entity/Q1405763|http://www.wikidata.org/entity/Q1373476|http://www.wikidata.org/entity/Q109720|http://www.wikidata.org/entity/Q91813|http://www.wikidata.org/entity/Q90316|http://www.wikidata.org/entity/Q78188|http://www.wikidata.org/entity/Q65533|http://www.wikidata.org/entity/Q62676|http://www.wikidata.org/entity/Q42335"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2005 film by Stefan Betz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42564814"}, "Title": {"type": "literal", "value": "Sen Kiminle Dans Ediyorsun?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6068775"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15304882|http://www.wikidata.org/entity/Q6056880|http://www.wikidata.org/entity/Q4914460"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Burak Aksak"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1476272"}, "Title": {"type": "literal", "value": "Southland Tales"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q711022"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q711022"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q464612|http://www.wikidata.org/entity/Q456329|http://www.wikidata.org/entity/Q456178|http://www.wikidata.org/entity/Q327217|http://www.wikidata.org/entity/Q311068|http://www.wikidata.org/entity/Q310322|http://www.wikidata.org/entity/Q296524|http://www.wikidata.org/entity/Q275246|http://www.wikidata.org/entity/Q271635|http://www.wikidata.org/entity/Q230203|http://www.wikidata.org/entity/Q229241|http://www.wikidata.org/entity/Q193212|http://www.wikidata.org/entity/Q187832|http://www.wikidata.org/entity/Q187345|http://www.wikidata.org/entity/Q180665|http://www.wikidata.org/entity/Q105158|http://www.wikidata.org/entity/Q43432|http://www.wikidata.org/entity/Q40143|http://www.wikidata.org/entity/Q10738|http://www.wikidata.org/entity/Q3992157|http://www.wikidata.org/entity/Q2442275|http://www.wikidata.org/entity/Q1321005|http://www.wikidata.org/entity/Q1145528|http://www.wikidata.org/entity/Q708512|http://www.wikidata.org/entity/Q508428|http://www.wikidata.org/entity/Q489831|http://www.wikidata.org/entity/Q471003"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q1341051|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q20656352|http://www.wikidata.org/entity/Q20443008"}, "Duration": {"type": "literal", "value": "145"}, "Description": {"type": "literal", "value": "2006 thriller and comedy-drama film directed by Richard Kelly"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q913965"}, "Title": {"type": "literal", "value": "Orange County"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1678831"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1378351"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2514422|http://www.wikidata.org/entity/Q2454742|http://www.wikidata.org/entity/Q2240987|http://www.wikidata.org/entity/Q1825219|http://www.wikidata.org/entity/Q1378351|http://www.wikidata.org/entity/Q910472|http://www.wikidata.org/entity/Q483907|http://www.wikidata.org/entity/Q463489|http://www.wikidata.org/entity/Q463239|http://www.wikidata.org/entity/Q445135|http://www.wikidata.org/entity/Q444190|http://www.wikidata.org/entity/Q436360|http://www.wikidata.org/entity/Q318134|http://www.wikidata.org/entity/Q315087|http://www.wikidata.org/entity/Q311271|http://www.wikidata.org/entity/Q310926|http://www.wikidata.org/entity/Q299282|http://www.wikidata.org/entity/Q286890|http://www.wikidata.org/entity/Q273178|http://www.wikidata.org/entity/Q260241|http://www.wikidata.org/entity/Q255883|http://www.wikidata.org/entity/Q236578|http://www.wikidata.org/entity/Q233365|http://www.wikidata.org/entity/Q229271|http://www.wikidata.org/entity/Q229011|http://www.wikidata.org/entity/Q132217|http://www.wikidata.org/entity/Q105817|http://www.wikidata.org/entity/Q47100"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "2002 film by Jake Kasdan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1111024|http://www.wikidata.org/entity/Q159846"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5105412"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4778056"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13113668"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13113818|http://www.wikidata.org/entity/Q6750290|http://www.wikidata.org/entity/Q6122250|http://www.wikidata.org/entity/Q5957703|http://www.wikidata.org/entity/Q3530961|http://www.wikidata.org/entity/Q2210343|http://www.wikidata.org/entity/Q2050534|http://www.wikidata.org/entity/Q283512|http://www.wikidata.org/entity/Q278015|http://www.wikidata.org/entity/Q277725"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Anwar Rasheed"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7914066"}, "Title": {"type": "literal", "value": "Vance and Pepe's Porn Start"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6768358"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6768358"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Mark Kenneth Woods"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55361709"}, "Title": {"type": "literal", "value": "De Film van Dylan Haegens"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30087374|http://www.wikidata.org/entity/Q28934572"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52144870"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56525243|http://www.wikidata.org/entity/Q52113785|http://www.wikidata.org/entity/Q52098489|http://www.wikidata.org/entity/Q28934572|http://www.wikidata.org/entity/Q17351333|http://www.wikidata.org/entity/Q2629811"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "81"}, "Description": {"type": "literal", "value": "2018 Dutch movie directed by Dylan Haegens and Bas van Teylingen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11818371"}, "Title": {"type": "literal", "value": "Piotrek trzynastego"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11817800"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11817800"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55365"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Piotr Matwiejczyk"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26720927"}, "Title": {"type": "literal", "value": "Speech & Debate"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2556156"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7609649"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2016 film by Dan Harris"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18154751"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3140598"}, "Title": {"type": "literal", "value": "horloge biologique"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3430333"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3383044|http://www.wikidata.org/entity/Q3369021|http://www.wikidata.org/entity/Q3264862|http://www.wikidata.org/entity/Q3193104|http://www.wikidata.org/entity/Q3189253|http://www.wikidata.org/entity/Q3189200|http://www.wikidata.org/entity/Q3035411|http://www.wikidata.org/entity/Q2977823|http://www.wikidata.org/entity/Q2977284|http://www.wikidata.org/entity/Q2942037"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Ricardo Trogi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1083002"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5262121|http://www.wikidata.org/entity/Q16239484|http://www.wikidata.org/entity/Q6308609"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5262121|http://www.wikidata.org/entity/Q16239484"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6829206|http://www.wikidata.org/entity/Q6663140|http://www.wikidata.org/entity/Q6522728|http://www.wikidata.org/entity/Q7532206|http://www.wikidata.org/entity/Q4922395|http://www.wikidata.org/entity/Q1154813|http://www.wikidata.org/entity/Q712083|http://www.wikidata.org/entity/Q700297|http://www.wikidata.org/entity/Q6503124|http://www.wikidata.org/entity/Q6309487|http://www.wikidata.org/entity/Q5090823"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q3072042|http://www.wikidata.org/entity/Q1033891|http://www.wikidata.org/entity/Q319221"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 Hong Kong film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28180128"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q48473040"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19664326|http://www.wikidata.org/entity/Q15697622|http://www.wikidata.org/entity/Q12454357|http://www.wikidata.org/entity/Q7396741|http://www.wikidata.org/entity/Q7286088|http://www.wikidata.org/entity/Q5408135|http://www.wikidata.org/entity/Q5284717|http://www.wikidata.org/entity/Q560163|http://www.wikidata.org/entity/Q233748"}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "155"}, "Description": {"type": "literal", "value": "2017 Indian film directed by Shree Narayan Singh"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16250829"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42049340"}, "Title": {"type": "literal", "value": "Assassination Nation"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7407789"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7407789"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16147452|http://www.wikidata.org/entity/Q5147723|http://www.wikidata.org/entity/Q3007115|http://www.wikidata.org/entity/Q862460|http://www.wikidata.org/entity/Q745092|http://www.wikidata.org/entity/Q462955|http://www.wikidata.org/entity/Q436839|http://www.wikidata.org/entity/Q311993|http://www.wikidata.org/entity/Q259825|http://www.wikidata.org/entity/Q208117|http://www.wikidata.org/entity/Q199929|http://www.wikidata.org/entity/Q16235151|http://www.wikidata.org/entity/Q19665738|http://www.wikidata.org/entity/Q17385901|http://www.wikidata.org/entity/Q51754587|http://www.wikidata.org/entity/Q47467699|http://www.wikidata.org/entity/Q29622423|http://www.wikidata.org/entity/Q27555181|http://www.wikidata.org/entity/Q25999316|http://www.wikidata.org/entity/Q22959195|http://www.wikidata.org/entity/Q22680869"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q53094"}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "2018 film directed by Sam Levinson"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16954085"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2448813"}, "Title": {"type": "literal", "value": "Trans Bavaria"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15440291"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15440291"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22295349|http://www.wikidata.org/entity/Q2077727|http://www.wikidata.org/entity/Q1696908|http://www.wikidata.org/entity/Q1317642|http://www.wikidata.org/entity/Q1080329|http://www.wikidata.org/entity/Q43769|http://www.wikidata.org/entity/Q43764"}, "Published": {"type": "literal", "value": "2012|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "2011 film by Konstantin Ferstl"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27964389"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1718178"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6150953"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q278980"}, "Published": {"type": "literal", "value": "1981"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1981 film by Kovelamudi Bapayya"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6838715"}, "Title": {"type": "literal", "value": "Mickey Matson and the Copperhead Conspiracy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16214799"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16214799"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q542810|http://www.wikidata.org/entity/Q471018|http://www.wikidata.org/entity/Q109324"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 American adventure-comedy film directed by Harold Cronk"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14716055"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30638713"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7377749"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7377749"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5520823"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Yogaraj Bhat"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5861445"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5929474"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3374287|http://www.wikidata.org/entity/Q2574737"}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Bahman Goudarzi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7734997"}, "Title": {"type": "literal", "value": "The Four Corners of Nowhere"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2070360"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1995"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1995 film by Stephen Chbosky"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6064603"}, "Title": {"type": "literal", "value": "Bana Bir Soygun Yaz"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6062781"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6092808"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Biray Dalk\u0131ran"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22252016"}, "Title": {"type": "literal", "value": "The Perfect Match"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1058003"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18390657|http://www.wikidata.org/entity/Q17182925|http://www.wikidata.org/entity/Q7703472|http://www.wikidata.org/entity/Q3177688|http://www.wikidata.org/entity/Q2344116|http://www.wikidata.org/entity/Q1455261|http://www.wikidata.org/entity/Q690974|http://www.wikidata.org/entity/Q314819|http://www.wikidata.org/entity/Q296883|http://www.wikidata.org/entity/Q262495|http://www.wikidata.org/entity/Q233213|http://www.wikidata.org/entity/Q72832"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Bille Woodruff"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11744214"}, "Title": {"type": "literal", "value": "Koszmar minionej zimy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11817800"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Piotr Matwiejczyk"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4688778"}, "Title": {"type": "literal", "value": "Af banen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q33436677"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41340778"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41730273|http://www.wikidata.org/entity/Q41236660|http://www.wikidata.org/entity/Q41236544|http://www.wikidata.org/entity/Q12337814|http://www.wikidata.org/entity/Q12328967|http://www.wikidata.org/entity/Q12325964|http://www.wikidata.org/entity/Q12324516|http://www.wikidata.org/entity/Q5788631|http://www.wikidata.org/entity/Q4994547|http://www.wikidata.org/entity/Q4938062|http://www.wikidata.org/entity/Q1985752|http://www.wikidata.org/entity/Q1797671|http://www.wikidata.org/entity/Q1789215|http://www.wikidata.org/entity/Q1098466|http://www.wikidata.org/entity/Q967680|http://www.wikidata.org/entity/Q879360|http://www.wikidata.org/entity/Q139911"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Martin Hagbjer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7784260"}, "Title": {"type": "literal", "value": "Thin Ice"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3808290"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3808290"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q269869"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2011 film by Jill Sprecher"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7983208"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27536543"}, "Title": {"type": "literal", "value": "Jimmy Vestvood: Amerikan Hero"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q63229274"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2016 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15731589"}, "Title": {"type": "literal", "value": "\u0985\u09ad\u09bf\u09b6\u09aa\u09cd\u09a4 \u09a8\u09be\u0987\u099f\u09bf"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16215189"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Birsa Dasgupta"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7503531"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55375023"}, "Title": {"type": "literal", "value": "Nur ein Tag in Berlin"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23947040"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23947040"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "74"}, "Description": {"type": "literal", "value": "2018 film directed by Malte Wirtz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6486967"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12213023"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12240482|http://www.wikidata.org/entity/Q12210108|http://www.wikidata.org/entity/Q3571921|http://www.wikidata.org/entity/Q2827647|http://www.wikidata.org/entity/Q420727"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Rami Imam"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14578326"}, "Title": {"type": "literal", "value": "Wish I Was Here"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q139330"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q139330"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4817144|http://www.wikidata.org/entity/Q4756207|http://www.wikidata.org/entity/Q3382695|http://www.wikidata.org/entity/Q1190319|http://www.wikidata.org/entity/Q939174|http://www.wikidata.org/entity/Q867701|http://www.wikidata.org/entity/Q550653|http://www.wikidata.org/entity/Q493077|http://www.wikidata.org/entity/Q372613|http://www.wikidata.org/entity/Q325814|http://www.wikidata.org/entity/Q314819|http://www.wikidata.org/entity/Q287346|http://www.wikidata.org/entity/Q267097|http://www.wikidata.org/entity/Q190972|http://www.wikidata.org/entity/Q189992|http://www.wikidata.org/entity/Q169946|http://www.wikidata.org/entity/Q139330|http://www.wikidata.org/entity/Q112536|http://www.wikidata.org/entity/Q83677"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2014 American comedy-drama film directed by Zach Braff"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22686357"}, "Title": {"type": "literal", "value": "Trash Detective"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23197747"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11899665|http://www.wikidata.org/entity/Q2419577"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2015 film by Maximilian Buck"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16262362"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q486039"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q486039"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q490389"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 South Korean film directed by Jang Jin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23793836"}, "Title": {"type": "literal", "value": "Les ferrailleurs|Wreck It!|Schrotten!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q117062"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q117062"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30237394|http://www.wikidata.org/entity/Q1929989|http://www.wikidata.org/entity/Q1928471|http://www.wikidata.org/entity/Q1806325|http://www.wikidata.org/entity/Q1778862|http://www.wikidata.org/entity/Q1681528|http://www.wikidata.org/entity/Q1605539|http://www.wikidata.org/entity/Q1594698|http://www.wikidata.org/entity/Q1555527|http://www.wikidata.org/entity/Q98286|http://www.wikidata.org/entity/Q97010|http://www.wikidata.org/entity/Q70775"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2016 film by Max Zahle"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3718484"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1522089"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3842287|http://www.wikidata.org/entity/Q3659538|http://www.wikidata.org/entity/Q3623519|http://www.wikidata.org/entity/Q3616028"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2003 film directed by Giacomo Ciarrapico"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43208792"}, "Title": {"type": "literal", "value": "The Hustle"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2964639"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6110444"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6033252|http://www.wikidata.org/entity/Q515095|http://www.wikidata.org/entity/Q442897|http://www.wikidata.org/entity/Q36301|http://www.wikidata.org/entity/Q20685513"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Chris Addison"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q179200"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17168960"}, "Title": {"type": "literal", "value": "Que M... \u00c9 Essa?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4979223"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1989"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1989 film by Bruno Garcia"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30612315"}, "Title": {"type": "literal", "value": "Eaten by Lions"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23303136"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Jason Wingard"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1395278"}, "Title": {"type": "literal", "value": "Familienradgeber 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1905444|http://www.wikidata.org/entity/Q68990"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q909586|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "71"}, "Description": {"type": "literal", "value": "2009 film by Olaf Ittenbach, Martina Ittenbach"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55642298"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4754967"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4754967"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11835264|http://www.wikidata.org/entity/Q233466|http://www.wikidata.org/entity/Q229048"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Andrea Berloff"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q79202|http://www.wikidata.org/entity/Q16954085"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2387839"}, "Title": {"type": "literal", "value": "Tage wie Jahre"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15440291"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15440291"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1080329|http://www.wikidata.org/entity/Q496278|http://www.wikidata.org/entity/Q74171|http://www.wikidata.org/entity/Q43769|http://www.wikidata.org/entity/Q19275635|http://www.wikidata.org/entity/Q11977865|http://www.wikidata.org/entity/Q1705588|http://www.wikidata.org/entity/Q1468507|http://www.wikidata.org/entity/Q1317642"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "39"}, "Description": {"type": "literal", "value": "2008 film by Konstantin Ferstl"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26963304"}, "Title": {"type": "literal", "value": "The Young Offenders"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27881407"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27881407"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2016 film by Peter Foott"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12192036"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12250381"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4120152"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Wael Ehsan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3497740"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q453691"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q453691"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24936985|http://www.wikidata.org/entity/Q22248486|http://www.wikidata.org/entity/Q3591196|http://www.wikidata.org/entity/Q3564267|http://www.wikidata.org/entity/Q3559849|http://www.wikidata.org/entity/Q3501635|http://www.wikidata.org/entity/Q3418669|http://www.wikidata.org/entity/Q3370787|http://www.wikidata.org/entity/Q3264771|http://www.wikidata.org/entity/Q3263679|http://www.wikidata.org/entity/Q3183404|http://www.wikidata.org/entity/Q3165487|http://www.wikidata.org/entity/Q3157470|http://www.wikidata.org/entity/Q3142469|http://www.wikidata.org/entity/Q3011283|http://www.wikidata.org/entity/Q2851497|http://www.wikidata.org/entity/Q982784|http://www.wikidata.org/entity/Q734098|http://www.wikidata.org/entity/Q370711"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Mr. Oizo"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3211552"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7100810"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7635089"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7504210|http://www.wikidata.org/entity/Q6444213|http://www.wikidata.org/entity/Q6203171|http://www.wikidata.org/entity/Q4907283|http://www.wikidata.org/entity/Q4806897|http://www.wikidata.org/entity/Q4766243"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film directed by Sugeeth"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q466383"}, "Title": {"type": "literal", "value": "American Pie Presents: The Naked Mile"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6211585"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5386974"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18392762|http://www.wikidata.org/entity/Q17562361|http://www.wikidata.org/entity/Q8979854|http://www.wikidata.org/entity/Q6811319|http://www.wikidata.org/entity/Q6118147|http://www.wikidata.org/entity/Q3013164|http://www.wikidata.org/entity/Q2012219|http://www.wikidata.org/entity/Q552896|http://www.wikidata.org/entity/Q549290|http://www.wikidata.org/entity/Q549207|http://www.wikidata.org/entity/Q466383|http://www.wikidata.org/entity/Q459380|http://www.wikidata.org/entity/Q459082|http://www.wikidata.org/entity/Q349857|http://www.wikidata.org/entity/Q312129|http://www.wikidata.org/entity/Q263720"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2006 film by Joe Nussbaum"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383|http://www.wikidata.org/entity/Q5035471|http://www.wikidata.org/entity/Q17386235"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42566890"}, "Title": {"type": "literal", "value": "Ein g\u00f6ttlicher Job"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1406201"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1406201"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20638950|http://www.wikidata.org/entity/Q2020358|http://www.wikidata.org/entity/Q1937361|http://www.wikidata.org/entity/Q104925|http://www.wikidata.org/entity/Q95580|http://www.wikidata.org/entity/Q66434|http://www.wikidata.org/entity/Q62510"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 film by Thorsten Wettcke"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1235358"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q609797"}, "Title": {"type": "literal", "value": "Lymelife"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5262580"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5262580"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1320648|http://www.wikidata.org/entity/Q431038|http://www.wikidata.org/entity/Q313204|http://www.wikidata.org/entity/Q310324|http://www.wikidata.org/entity/Q237925|http://www.wikidata.org/entity/Q228725|http://www.wikidata.org/entity/Q228598|http://www.wikidata.org/entity/Q170572"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2008 film by Derick Martini"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3801252"}, "Title": {"type": "literal", "value": "Identity Thief"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q524897"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1138605"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6730221|http://www.wikidata.org/entity/Q3195687|http://www.wikidata.org/entity/Q3007115|http://www.wikidata.org/entity/Q2082056|http://www.wikidata.org/entity/Q512818|http://www.wikidata.org/entity/Q508043|http://www.wikidata.org/entity/Q472053|http://www.wikidata.org/entity/Q312705|http://www.wikidata.org/entity/Q295964|http://www.wikidata.org/entity/Q284636|http://www.wikidata.org/entity/Q272977|http://www.wikidata.org/entity/Q240355|http://www.wikidata.org/entity/Q229048|http://www.wikidata.org/entity/Q214227|http://www.wikidata.org/entity/Q198638|http://www.wikidata.org/entity/Q131332|http://www.wikidata.org/entity/Q72077"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "2013 film by Seth Gordon"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2702789"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3611893"}, "Title": {"type": "literal", "value": "All'ultima spiaggia"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3763185"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3763185"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3893598|http://www.wikidata.org/entity/Q3804842|http://www.wikidata.org/entity/Q3770667|http://www.wikidata.org/entity/Q3732277|http://www.wikidata.org/entity/Q3702561|http://www.wikidata.org/entity/Q3660364|http://www.wikidata.org/entity/Q3629869|http://www.wikidata.org/entity/Q3619665|http://www.wikidata.org/entity/Q3609982|http://www.wikidata.org/entity/Q457841"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2012 film by Gianluca Ansanelli"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q411405"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55595741"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028394"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q949017"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2000 film by Antoine Desrosi\u00e8res"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28840480"}, "Title": {"type": "literal", "value": "Infinity Baby"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4931990"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19667309"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Bob Byington"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1446504"}, "Title": {"type": "literal", "value": "Les Petits Mouchoirs"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q314403"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q314403"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3473319|http://www.wikidata.org/entity/Q3382884|http://www.wikidata.org/entity/Q3342136|http://www.wikidata.org/entity/Q3219319|http://www.wikidata.org/entity/Q2365459|http://www.wikidata.org/entity/Q600051|http://www.wikidata.org/entity/Q552639|http://www.wikidata.org/entity/Q539703|http://www.wikidata.org/entity/Q466991|http://www.wikidata.org/entity/Q461617|http://www.wikidata.org/entity/Q458899|http://www.wikidata.org/entity/Q444170|http://www.wikidata.org/entity/Q440995|http://www.wikidata.org/entity/Q274398|http://www.wikidata.org/entity/Q239033|http://www.wikidata.org/entity/Q189422|http://www.wikidata.org/entity/Q8927"}, "Published": {"type": "literal", "value": "2011|2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "154"}, "Description": {"type": "literal", "value": "2010 film by Guillaume Canet"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1375196"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19019144"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16857528"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21183528|http://www.wikidata.org/entity/Q16271982|http://www.wikidata.org/entity/Q4462945|http://www.wikidata.org/entity/Q4245080"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q53094"}, "Duration": {"type": "literal", "value": "20"}, "Description": {"type": "literal", "value": "2014 film by Zhora Kryzhovnikov"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4341103"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4381594"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1849339"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1849339"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4172981|http://www.wikidata.org/entity/Q1675617|http://www.wikidata.org/entity/Q112048"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Alexei Popogrebski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q273676"}, "Title": {"type": "literal", "value": "Ast\u00e9rix aux Jeux olympiques"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q117147|http://www.wikidata.org/entity/Q3089814"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q580810"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2864476|http://www.wikidata.org/entity/Q2833411|http://www.wikidata.org/entity/Q2646765|http://www.wikidata.org/entity/Q2423378|http://www.wikidata.org/entity/Q2360332|http://www.wikidata.org/entity/Q1894524|http://www.wikidata.org/entity/Q1685186|http://www.wikidata.org/entity/Q1343716|http://www.wikidata.org/entity/Q1165205|http://www.wikidata.org/entity/Q951671|http://www.wikidata.org/entity/Q895091|http://www.wikidata.org/entity/Q778451|http://www.wikidata.org/entity/Q726232|http://www.wikidata.org/entity/Q714765|http://www.wikidata.org/entity/Q707158|http://www.wikidata.org/entity/Q606555|http://www.wikidata.org/entity/Q576577|http://www.wikidata.org/entity/Q509900|http://www.wikidata.org/entity/Q360899|http://www.wikidata.org/entity/Q16680413|http://www.wikidata.org/entity/Q15965529|http://www.wikidata.org/entity/Q8315472|http://www.wikidata.org/entity/Q3894159|http://www.wikidata.org/entity/Q3838043|http://www.wikidata.org/entity/Q3559759|http://www.wikidata.org/entity/Q3328929|http://www.wikidata.org/entity/Q3325897|http://www.wikidata.org/entity/Q3089814|http://www.wikidata.org/entity/Q3081533|http://www.wikidata.org/entity/Q3066887|http://www.wikidata.org/entity/Q3037216|http://www.wikidata.org/entity/Q3021819|http://www.wikidata.org/entity/Q193108|http://www.wikidata.org/entity/Q180872|http://www.wikidata.org/entity/Q171998|http://www.wikidata.org/entity/Q106529|http://www.wikidata.org/entity/Q106508|http://www.wikidata.org/entity/Q45292|http://www.wikidata.org/entity/Q9671|http://www.wikidata.org/entity/Q1835|http://www.wikidata.org/entity/Q319527|http://www.wikidata.org/entity/Q312661|http://www.wikidata.org/entity/Q274656|http://www.wikidata.org/entity/Q242896|http://www.wikidata.org/entity/Q237152|http://www.wikidata.org/entity/Q230846"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "2008 French film Thomas Langmann and Fr\u00e9d\u00e9ric Forestier"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1544011"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6929482"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q45889"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q45889"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q45889"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "136"}, "Description": {"type": "literal", "value": "2005 film by Antara Mali"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20466070"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4688834"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Afdlin Shauki"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17633156"}, "Title": {"type": "literal", "value": "Les Nouvelles aventures d'Aladin"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27962117"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2202755"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Arthur Benzaquen"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1544011"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55230971"}, "Title": {"type": "literal", "value": "Les Affam\u00e9s"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55424329"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25975683|http://www.wikidata.org/entity/Q18684181|http://www.wikidata.org/entity/Q15918282|http://www.wikidata.org/entity/Q3491566|http://www.wikidata.org/entity/Q2895292|http://www.wikidata.org/entity/Q2851057|http://www.wikidata.org/entity/Q2833045|http://www.wikidata.org/entity/Q554103|http://www.wikidata.org/entity/Q39071474|http://www.wikidata.org/entity/Q27704877"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2018 film by L\u00e9a Fr\u00e9deval"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20855694"}, "Title": {"type": "literal", "value": "Marry Me!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1171155"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q114624|http://www.wikidata.org/entity/Q106466|http://www.wikidata.org/entity/Q88891|http://www.wikidata.org/entity/Q88236|http://www.wikidata.org/entity/Q6423858|http://www.wikidata.org/entity/Q2358017|http://www.wikidata.org/entity/Q2343282|http://www.wikidata.org/entity/Q1803817|http://www.wikidata.org/entity/Q1656803|http://www.wikidata.org/entity/Q1406964|http://www.wikidata.org/entity/Q1349501|http://www.wikidata.org/entity/Q1254017|http://www.wikidata.org/entity/Q124360|http://www.wikidata.org/entity/Q118961"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Neelesha Barthel"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1235358"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4424038"}, "Title": {"type": "literal", "value": "\u0421\u043b\u0443\u0436\u0435\u0431\u043d\u044b\u0439 \u0440\u043e\u043c\u0430\u043d. \u041d\u0430\u0448\u0435 \u0432\u0440\u0435\u043c\u044f"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4065391"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3874799"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3874799|http://www.wikidata.org/entity/Q2974837|http://www.wikidata.org/entity/Q2626768|http://www.wikidata.org/entity/Q2064926|http://www.wikidata.org/entity/Q536524"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2011 film by Sarik Andreasyan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4444575"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q58462903"}, "Title": {"type": "literal", "value": "Geschenkt"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q39018978"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56632080|http://www.wikidata.org/entity/Q56631778"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q38188602|http://www.wikidata.org/entity/Q23958715|http://www.wikidata.org/entity/Q1428994|http://www.wikidata.org/entity/Q1384218|http://www.wikidata.org/entity/Q23060446|http://www.wikidata.org/entity/Q22081536|http://www.wikidata.org/entity/Q19839425|http://www.wikidata.org/entity/Q2210162|http://www.wikidata.org/entity/Q1895935|http://www.wikidata.org/entity/Q1673573|http://www.wikidata.org/entity/Q1512059"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2018 television film directed by Daniel Prochaska"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7916881"}, "Title": {"type": "literal", "value": "\u0bb5\u0b9a\u0bc2\u0bb2\u0bcd\u0bb0\u0bbe\u0b9c\u0bbe \u0b8e\u0bae\u0bcd.\u0baa\u0bbf.\u0baa\u0bbf.\u0b8e\u0bb8\u0bcd"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12977997"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1607373"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6373686|http://www.wikidata.org/entity/Q6167686|http://www.wikidata.org/entity/Q3533678|http://www.wikidata.org/entity/Q3520670|http://www.wikidata.org/entity/Q1606036|http://www.wikidata.org/entity/Q1322453|http://www.wikidata.org/entity/Q1022530|http://www.wikidata.org/entity/Q381477|http://www.wikidata.org/entity/Q277665"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 Tamil comedy film directed by Saran"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5530647"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55106043"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12962832"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q54945490"}, "Title": {"type": "literal", "value": "100 Dinge"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q87432"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q87432"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23561591|http://www.wikidata.org/entity/Q1697154|http://www.wikidata.org/entity/Q88891|http://www.wikidata.org/entity/Q87432|http://www.wikidata.org/entity/Q77777|http://www.wikidata.org/entity/Q77774|http://www.wikidata.org/entity/Q69640|http://www.wikidata.org/entity/Q64645"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Florian David Fitz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7992677"}, "Title": {"type": "literal", "value": "\u015eans Kap\u0131y\u0131 K\u0131r\u0131nca"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6079743"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6079743"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12810813|http://www.wikidata.org/entity/Q6090990|http://www.wikidata.org/entity/Q5444280|http://www.wikidata.org/entity/Q4811871|http://www.wikidata.org/entity/Q3041530|http://www.wikidata.org/entity/Q187253"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Tayfun G\u00fcneyer"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6018869"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q32362264"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28498172|http://www.wikidata.org/entity/Q16857528|http://www.wikidata.org/entity/Q4222061|http://www.wikidata.org/entity/Q2833792"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16857528"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19859531|http://www.wikidata.org/entity/Q16271982|http://www.wikidata.org/entity/Q4099649|http://www.wikidata.org/entity/Q3479732|http://www.wikidata.org/entity/Q3033167|http://www.wikidata.org/entity/Q2213598|http://www.wikidata.org/entity/Q466169|http://www.wikidata.org/entity/Q442830|http://www.wikidata.org/entity/Q112048"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2017 film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1754271|http://www.wikidata.org/entity/Q2892410|http://www.wikidata.org/entity/Q574625"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7578338"}, "Title": {"type": "literal", "value": "Spivs"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5145613"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2351201|http://www.wikidata.org/entity/Q1139301|http://www.wikidata.org/entity/Q722927|http://www.wikidata.org/entity/Q509628|http://www.wikidata.org/entity/Q152165"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Colin Teague"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q9348639"}, "Title": {"type": "literal", "value": "Swing"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9138174"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 Polish comedy of errors film directed by and based on a play Abelard Giza."}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10822396"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6203818"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12034162"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12056045|http://www.wikidata.org/entity/Q12043246|http://www.wikidata.org/entity/Q12042457|http://www.wikidata.org/entity/Q12035874|http://www.wikidata.org/entity/Q12025430|http://www.wikidata.org/entity/Q12018004|http://www.wikidata.org/entity/Q11719712|http://www.wikidata.org/entity/Q10861560|http://www.wikidata.org/entity/Q8075473|http://www.wikidata.org/entity/Q7922529|http://www.wikidata.org/entity/Q6203641|http://www.wikidata.org/entity/Q5241524|http://www.wikidata.org/entity/Q3506276|http://www.wikidata.org/entity/Q1689754|http://www.wikidata.org/entity/Q866999|http://www.wikidata.org/entity/Q555650|http://www.wikidata.org/entity/Q544058|http://www.wikidata.org/entity/Q440954|http://www.wikidata.org/entity/Q430017|http://www.wikidata.org/entity/Q299394|http://www.wikidata.org/entity/Q274168"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Ji\u0159\u00ed Strach"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2711786"}, "Title": {"type": "literal", "value": "No sos vos, soy yo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2885371"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28746686|http://www.wikidata.org/entity/Q28466034|http://www.wikidata.org/entity/Q28070848|http://www.wikidata.org/entity/Q27646495|http://www.wikidata.org/entity/Q19788655|http://www.wikidata.org/entity/Q16611887|http://www.wikidata.org/entity/Q16297688|http://www.wikidata.org/entity/Q10326216|http://www.wikidata.org/entity/Q6757896|http://www.wikidata.org/entity/Q6700387|http://www.wikidata.org/entity/Q6111340|http://www.wikidata.org/entity/Q5759788|http://www.wikidata.org/entity/Q5274770|http://www.wikidata.org/entity/Q3059589|http://www.wikidata.org/entity/Q769719"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2004 film by Juan Taratuto"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4025147"}, "Title": {"type": "literal", "value": "\u00c1 Annan Veg"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22928232"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22928232|http://www.wikidata.org/entity/Q19957976"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19957976|http://www.wikidata.org/entity/Q8079549"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Hafsteinn Gunnar Sigur\u00f0sson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17037781"}, "Title": {"type": "literal", "value": "Shotgun Wedding"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5220778"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7146216"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6846484"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Danny Roew"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21009249"}, "Title": {"type": "literal", "value": "Le Nouveau"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3446661"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19956191"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Rudi Rosenberg"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16994572"}, "Title": {"type": "literal", "value": "Grow Up, Tony Phillips"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5372192"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5372192"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Emily Hagins"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11252497"}, "Title": {"type": "literal", "value": "K\u00f6t\u00fc Kedi \u015eerafettin"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q78168"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6535202"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2016 animated film by Ayse \u00dcnal"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5350179"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7418444"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3494299|http://www.wikidata.org/entity/Q511589"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Sanjay Khanduri"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2474366"}, "Title": {"type": "literal", "value": "\u0413\u0438\u0442\u043b\u0435\u0440 \u043a\u0430\u043f\u0443\u0442!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4102539"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4102539"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4528820|http://www.wikidata.org/entity/Q4242781|http://www.wikidata.org/entity/Q4134092|http://www.wikidata.org/entity/Q4132905|http://www.wikidata.org/entity/Q4100033|http://www.wikidata.org/entity/Q4098902|http://www.wikidata.org/entity/Q4088503|http://www.wikidata.org/entity/Q1074254|http://www.wikidata.org/entity/Q593332|http://www.wikidata.org/entity/Q287099|http://www.wikidata.org/entity/Q274362|http://www.wikidata.org/entity/Q176846|http://www.wikidata.org/entity/Q136847|http://www.wikidata.org/entity/Q26688|http://www.wikidata.org/entity/Q25080"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q622548|http://www.wikidata.org/entity/Q193979|http://www.wikidata.org/entity/Q170539|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2008 spoof film directed by Marius Vaisbergas"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4504080"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12180631"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12250381"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4166476"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Wael Ehsan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1782738"}, "Title": {"type": "literal", "value": "Tucker & Dale vs Evil"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q975203"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17338460|http://www.wikidata.org/entity/Q975203|http://www.wikidata.org/entity/Q934467|http://www.wikidata.org/entity/Q867364|http://www.wikidata.org/entity/Q650423|http://www.wikidata.org/entity/Q349350|http://www.wikidata.org/entity/Q270260|http://www.wikidata.org/entity/Q236472"}, "Published": {"type": "literal", "value": "2011|2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q853630|http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2010 Canadian horror-comedy film directed by Eli Craig"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3703884"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2092695|http://www.wikidata.org/entity/Q818736|http://www.wikidata.org/entity/Q232052|http://www.wikidata.org/entity/Q18223523|http://www.wikidata.org/entity/Q13600455|http://www.wikidata.org/entity/Q13600449|http://www.wikidata.org/entity/Q3608604|http://www.wikidata.org/entity/Q2641366"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3847904|http://www.wikidata.org/entity/Q3657884|http://www.wikidata.org/entity/Q3608559|http://www.wikidata.org/entity/Q1052910|http://www.wikidata.org/entity/Q515534|http://www.wikidata.org/entity/Q232052|http://www.wikidata.org/entity/Q13600455|http://www.wikidata.org/entity/Q13600449|http://www.wikidata.org/entity/Q3972331|http://www.wikidata.org/entity/Q3902862|http://www.wikidata.org/entity/Q818736|http://www.wikidata.org/entity/Q795628|http://www.wikidata.org/entity/Q556039"}, "Published": {"type": "literal", "value": "1994"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "1994 anthology film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q127045"}, "Title": {"type": "literal", "value": "The Last Supper"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3480356"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5214308"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q779352|http://www.wikidata.org/entity/Q710169|http://www.wikidata.org/entity/Q508428|http://www.wikidata.org/entity/Q462903|http://www.wikidata.org/entity/Q455847|http://www.wikidata.org/entity/Q329784|http://www.wikidata.org/entity/Q311754|http://www.wikidata.org/entity/Q296774|http://www.wikidata.org/entity/Q230779|http://www.wikidata.org/entity/Q220698|http://www.wikidata.org/entity/Q110374|http://www.wikidata.org/entity/Q44380"}, "Published": {"type": "literal", "value": "1997|1995"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "1995 film by Stacy Title"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q186941"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q945109"}, "Title": {"type": "literal", "value": "Eating Out 4: Drama Camp"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3412282"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3412282"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4406124|http://www.wikidata.org/entity/Q4236621"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2011 film by Q. Allan Brocka"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20001218"}, "Title": {"type": "literal", "value": "Barbershop 3"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3843845"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q239464|http://www.wikidata.org/entity/Q235141|http://www.wikidata.org/entity/Q173637|http://www.wikidata.org/entity/Q162202|http://www.wikidata.org/entity/Q19896764|http://www.wikidata.org/entity/Q5259997|http://www.wikidata.org/entity/Q3778264|http://www.wikidata.org/entity/Q959052|http://www.wikidata.org/entity/Q937805|http://www.wikidata.org/entity/Q918866|http://www.wikidata.org/entity/Q500628|http://www.wikidata.org/entity/Q492327|http://www.wikidata.org/entity/Q450219|http://www.wikidata.org/entity/Q358087|http://www.wikidata.org/entity/Q317008|http://www.wikidata.org/entity/Q313918|http://www.wikidata.org/entity/Q286022"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Malcolm D. Lee"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q179200"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15271108"}, "Title": {"type": "literal", "value": "\u0427\u0442\u043e \u0442\u0432\u043e\u0440\u044f\u0442 \u043c\u0443\u0436\u0447\u0438\u043d\u044b!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4065391"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4065391"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4497619|http://www.wikidata.org/entity/Q4287350|http://www.wikidata.org/entity/Q4248489|http://www.wikidata.org/entity/Q4243126|http://www.wikidata.org/entity/Q4143810|http://www.wikidata.org/entity/Q2035141|http://www.wikidata.org/entity/Q438799|http://www.wikidata.org/entity/Q4534682"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2013 film by Sarik Andreasyan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4038074"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q849140"}, "Title": {"type": "literal", "value": "Cop Out"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q489831"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6767215"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19571827|http://www.wikidata.org/entity/Q15097951|http://www.wikidata.org/entity/Q5648980|http://www.wikidata.org/entity/Q3124543|http://www.wikidata.org/entity/Q1684394|http://www.wikidata.org/entity/Q1140031|http://www.wikidata.org/entity/Q540608|http://www.wikidata.org/entity/Q351812|http://www.wikidata.org/entity/Q294372|http://www.wikidata.org/entity/Q256256|http://www.wikidata.org/entity/Q229528|http://www.wikidata.org/entity/Q193212|http://www.wikidata.org/entity/Q40220|http://www.wikidata.org/entity/Q14542|http://www.wikidata.org/entity/Q14535|http://www.wikidata.org/entity/Q4960|http://www.wikidata.org/entity/Q2680"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4984974|http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "2010 American action comedy film directed by Kevin Smith"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17417784"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q387348"}, "Title": {"type": "literal", "value": "Alvin and the Chipmunks"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2037657"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8002970|http://www.wikidata.org/entity/Q3177566"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q362332|http://www.wikidata.org/entity/Q313501|http://www.wikidata.org/entity/Q298672|http://www.wikidata.org/entity/Q258237|http://www.wikidata.org/entity/Q242451|http://www.wikidata.org/entity/Q228852|http://www.wikidata.org/entity/Q191842|http://www.wikidata.org/entity/Q4960|http://www.wikidata.org/entity/Q462468"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q643684|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q28026639"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2007 American comedy film directed by Tim Hill"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434841|http://www.wikidata.org/entity/Q466459|http://www.wikidata.org/entity/Q697131|http://www.wikidata.org/entity/Q3041294|http://www.wikidata.org/entity/Q4841523"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q46392313"}, "Title": {"type": "literal", "value": "Teen Titans Go! to the Movies"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q47492998"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q47492998|http://www.wikidata.org/entity/Q5394838"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2973181|http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2018 American animated superhero fantasy comedy film by Peter Rida Michail and Aaron Horvath"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2924461|http://www.wikidata.org/entity/Q13416804|http://www.wikidata.org/entity/Q708290"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16160881"}, "Title": {"type": "literal", "value": "Kobry a u\u017eovky"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15042966"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12024194"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60411061|http://www.wikidata.org/entity/Q33438653|http://www.wikidata.org/entity/Q25340695|http://www.wikidata.org/entity/Q19362142|http://www.wikidata.org/entity/Q12034183|http://www.wikidata.org/entity/Q12023479|http://www.wikidata.org/entity/Q12022586|http://www.wikidata.org/entity/Q12001909|http://www.wikidata.org/entity/Q4765872|http://www.wikidata.org/entity/Q530954"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "2015 film by Jan Pru\u0161inovsk\u00fd"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1779547"}, "Title": {"type": "literal", "value": "Max Keeble's Big Move"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2037657"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25418646|http://www.wikidata.org/entity/Q6134940|http://www.wikidata.org/entity/Q25418648"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q355133|http://www.wikidata.org/entity/Q311779|http://www.wikidata.org/entity/Q295020|http://www.wikidata.org/entity/Q206235|http://www.wikidata.org/entity/Q133820|http://www.wikidata.org/entity/Q2469967|http://www.wikidata.org/entity/Q943028|http://www.wikidata.org/entity/Q741473|http://www.wikidata.org/entity/Q716099|http://www.wikidata.org/entity/Q508428|http://www.wikidata.org/entity/Q463734|http://www.wikidata.org/entity/Q452307|http://www.wikidata.org/entity/Q451108|http://www.wikidata.org/entity/Q438355"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2001 film by Tim Hill"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25418626|http://www.wikidata.org/entity/Q191224"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7763853"}, "Title": {"type": "literal", "value": "The Shipment"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q68719"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2342292|http://www.wikidata.org/entity/Q318249|http://www.wikidata.org/entity/Q129831"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 film by Alex Wright"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18642028"}, "Title": {"type": "literal", "value": "Italiano medio"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q921998"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q921998"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13100765|http://www.wikidata.org/entity/Q3634692|http://www.wikidata.org/entity/Q2704786|http://www.wikidata.org/entity/Q921998|http://www.wikidata.org/entity/Q559570"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2015 film by Marcello Macchia"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6545547"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7156103"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5275557"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Pawan Kumar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15043359"}, "Title": {"type": "literal", "value": "\u09b2\u09c7 \u099b\u0995\u09cd\u0995\u09be"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3194810"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16199968|http://www.wikidata.org/entity/Q15963899|http://www.wikidata.org/entity/Q7336885|http://www.wikidata.org/entity/Q6467144|http://www.wikidata.org/entity/Q6400549|http://www.wikidata.org/entity/Q5266378|http://www.wikidata.org/entity/Q5250554|http://www.wikidata.org/entity/Q5248113|http://www.wikidata.org/entity/Q4918622|http://www.wikidata.org/entity/Q793987"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Raj Chakraborty"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19891438"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56641291"}, "Title": {"type": "literal", "value": "El coco"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50358500"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Juan Camilo Pinz\u00f3n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5580874"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6716074"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17414763"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4765768|http://www.wikidata.org/entity/Q2726352|http://www.wikidata.org/entity/Q2726196|http://www.wikidata.org/entity/Q704859|http://www.wikidata.org/entity/Q292967|http://www.wikidata.org/entity/Q292958|http://www.wikidata.org/entity/Q184885|http://www.wikidata.org/entity/Q146929"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 Bollywood film directed by Rohit Shetty"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22000396"}, "Title": {"type": "literal", "value": "Lila Lili"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3292840"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "1999 film by Marie Vermillard"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18693415"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18632044"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26838742|http://www.wikidata.org/entity/Q3210605"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Juho Kuosmanen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4053737"}, "Title": {"type": "literal", "value": "\u0401\u043b\u043a\u0438 3"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28498172|http://www.wikidata.org/entity/Q15072191|http://www.wikidata.org/entity/Q4222061|http://www.wikidata.org/entity/Q4130936|http://www.wikidata.org/entity/Q2833792"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7510890|http://www.wikidata.org/entity/Q344854"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4527472|http://www.wikidata.org/entity/Q15064549|http://www.wikidata.org/entity/Q4516120|http://www.wikidata.org/entity/Q4494015|http://www.wikidata.org/entity/Q4267991|http://www.wikidata.org/entity/Q3479732|http://www.wikidata.org/entity/Q1964037|http://www.wikidata.org/entity/Q1385036|http://www.wikidata.org/entity/Q442830|http://www.wikidata.org/entity/Q247846"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2013 film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2892410"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16255287"}, "Title": {"type": "literal", "value": "\u0935\u0947\u0932\u0915\u092e \u092c\u0948\u0915"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q652149"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q652149"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q313956"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Anees Bazmee"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16606856"}, "Title": {"type": "literal", "value": "Smetto quando voglio"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16611774"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16611774"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16538351|http://www.wikidata.org/entity/Q16167620|http://www.wikidata.org/entity/Q3972506|http://www.wikidata.org/entity/Q3956291|http://www.wikidata.org/entity/Q3904256|http://www.wikidata.org/entity/Q3893835|http://www.wikidata.org/entity/Q3836986|http://www.wikidata.org/entity/Q3719608|http://www.wikidata.org/entity/Q3338344|http://www.wikidata.org/entity/Q1681812|http://www.wikidata.org/entity/Q1006624|http://www.wikidata.org/entity/Q511290"}, "Published": {"type": "literal", "value": "2018|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2014 film by Sydney Sibilia"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3739211"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q62815124"}, "Title": {"type": "literal", "value": "Die Hochzeitsverplaner"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28154593"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23565248|http://www.wikidata.org/entity/Q17537021|http://www.wikidata.org/entity/Q2077097|http://www.wikidata.org/entity/Q111025|http://www.wikidata.org/entity/Q103623|http://www.wikidata.org/entity/Q98927"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Christina Schiewe"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5916969"}, "Title": {"type": "literal", "value": "Inspiraci\u00f3n"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9098328"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2859568|http://www.wikidata.org/entity/Q2825065|http://www.wikidata.org/entity/Q237426"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 film by \u00c1ngel Mario Huerta Cant\u00fa"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10469850"}, "Title": {"type": "literal", "value": "Dessa Lund"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27517259"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Filip Orrling"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q51886007"}, "Title": {"type": "literal", "value": "El \u00c1ngel"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2843557"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2843557|http://www.wikidata.org/entity/Q2273158"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5766607|http://www.wikidata.org/entity/Q3306307|http://www.wikidata.org/entity/Q2203927|http://www.wikidata.org/entity/Q234788|http://www.wikidata.org/entity/Q56070143|http://www.wikidata.org/entity/Q5983571|http://www.wikidata.org/entity/Q5798330"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q645928|http://www.wikidata.org/entity/Q53094"}, "Duration": {"type": "literal", "value": "118"}, "Description": {"type": "literal", "value": "2018 Argentine film directed by Luis Ortega"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6973624|http://www.wikidata.org/entity/Q7883673|http://www.wikidata.org/entity/Q29863492|http://www.wikidata.org/entity/Q1143518|http://www.wikidata.org/entity/Q1324070"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16249670"}, "Title": {"type": "literal", "value": "The D Train"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3162786"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3162786"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q320204|http://www.wikidata.org/entity/Q271986|http://www.wikidata.org/entity/Q20676426|http://www.wikidata.org/entity/Q15679593|http://www.wikidata.org/entity/Q15632518|http://www.wikidata.org/entity/Q3847681|http://www.wikidata.org/entity/Q2115130|http://www.wikidata.org/entity/Q1378351|http://www.wikidata.org/entity/Q485901|http://www.wikidata.org/entity/Q483907|http://www.wikidata.org/entity/Q363386"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q20442589"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2015 film by Jarrad Paul and Andrew Mogel"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q72081"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q212792"}, "Title": {"type": "literal", "value": "Bolt"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1077862|http://www.wikidata.org/entity/Q1018606"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1077862|http://www.wikidata.org/entity/Q201641|http://www.wikidata.org/entity/Q5213495"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q439358"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q28968258|http://www.wikidata.org/entity/Q2143665"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2008 animated Disney film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191224|http://www.wikidata.org/entity/Q1047410"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12124774"}, "Title": {"type": "literal", "value": "High School"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6258785"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7610620"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19948176|http://www.wikidata.org/entity/Q15542608|http://www.wikidata.org/entity/Q5536595|http://www.wikidata.org/entity/Q5356821|http://www.wikidata.org/entity/Q4356272|http://www.wikidata.org/entity/Q3296147|http://www.wikidata.org/entity/Q1772138|http://www.wikidata.org/entity/Q1145528|http://www.wikidata.org/entity/Q741555|http://www.wikidata.org/entity/Q685861|http://www.wikidata.org/entity/Q553359|http://www.wikidata.org/entity/Q356637|http://www.wikidata.org/entity/Q318134|http://www.wikidata.org/entity/Q313653|http://www.wikidata.org/entity/Q270660|http://www.wikidata.org/entity/Q228891|http://www.wikidata.org/entity/Q104514"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by John Stalberg, Jr."}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2450848|http://www.wikidata.org/entity/Q7628112"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15117319"}, "Title": {"type": "literal", "value": "The Starving Games"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q936338|http://www.wikidata.org/entity/Q302690"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q936338|http://www.wikidata.org/entity/Q302690"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3827891|http://www.wikidata.org/entity/Q3339752|http://www.wikidata.org/entity/Q1992569|http://www.wikidata.org/entity/Q745092|http://www.wikidata.org/entity/Q449947|http://www.wikidata.org/entity/Q237612"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q622548|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2013 film by Jason Friedberg and Aaron Seltzer"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17295785"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60854393"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3745115"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Filippo Bologna"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7820223"}, "Title": {"type": "literal", "value": "Tomorrow's Yesterday"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16208185"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16208185"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Elan Gale"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55655374"}, "Title": {"type": "literal", "value": "\u05d4\u05d1\u05dc\u05ea\u05d9 \u05e8\u05e9\u05de\u05d9\u05d9\u05dd"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56217883"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56217883"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12404882|http://www.wikidata.org/entity/Q6967241|http://www.wikidata.org/entity/Q2911752"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Eliran Malka"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60526319"}, "Title": {"type": "literal", "value": "Schnitzel de Luxe"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1650253"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1663125"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25229879|http://www.wikidata.org/entity/Q21032015|http://www.wikidata.org/entity/Q2435555|http://www.wikidata.org/entity/Q2419577|http://www.wikidata.org/entity/Q2130280|http://www.wikidata.org/entity/Q1663125|http://www.wikidata.org/entity/Q500577|http://www.wikidata.org/entity/Q126496|http://www.wikidata.org/entity/Q100417|http://www.wikidata.org/entity/Q95316|http://www.wikidata.org/entity/Q76178"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film by Micha Lewinsky"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28057942"}, "Title": {"type": "literal", "value": "Dou\u0103 lozuri"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28589237"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28589237"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15515779|http://www.wikidata.org/entity/Q3622994"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2016 film by Paul Negoescu"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23722461"}, "Title": {"type": "literal", "value": "M\u00e9decin de campagne"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2364139"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q47409431|http://www.wikidata.org/entity/Q2892185|http://www.wikidata.org/entity/Q2364139"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2966416|http://www.wikidata.org/entity/Q2405609|http://www.wikidata.org/entity/Q600051|http://www.wikidata.org/entity/Q273342|http://www.wikidata.org/entity/Q3155029|http://www.wikidata.org/entity/Q3092547"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2016 film by Thomas Lilti"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7367370"}, "Title": {"type": "literal", "value": "Rosarigasinos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7357346"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7357346"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28466103|http://www.wikidata.org/entity/Q20894981|http://www.wikidata.org/entity/Q6122288|http://www.wikidata.org/entity/Q6004043|http://www.wikidata.org/entity/Q5831006|http://www.wikidata.org/entity/Q5796159|http://www.wikidata.org/entity/Q5772103|http://www.wikidata.org/entity/Q5710826|http://www.wikidata.org/entity/Q4888833|http://www.wikidata.org/entity/Q1393963"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2001 film by Rodrigo Grande"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2079962"}, "Title": {"type": "literal", "value": "L'Art d'aimer"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q532505"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q532505"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3380282|http://www.wikidata.org/entity/Q3219528|http://www.wikidata.org/entity/Q1930523|http://www.wikidata.org/entity/Q1871396|http://www.wikidata.org/entity/Q1394368|http://www.wikidata.org/entity/Q1389781|http://www.wikidata.org/entity/Q600051|http://www.wikidata.org/entity/Q532505|http://www.wikidata.org/entity/Q497770|http://www.wikidata.org/entity/Q465157|http://www.wikidata.org/entity/Q274759|http://www.wikidata.org/entity/Q268690|http://www.wikidata.org/entity/Q267542|http://www.wikidata.org/entity/Q240157|http://www.wikidata.org/entity/Q239033"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2012 film by Emmanuel Mouret"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27480769"}, "Title": {"type": "literal", "value": "Lady Bird"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q271967"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q271967"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20973709|http://www.wikidata.org/entity/Q20737382|http://www.wikidata.org/entity/Q20732067|http://www.wikidata.org/entity/Q19877770|http://www.wikidata.org/entity/Q17488953|http://www.wikidata.org/entity/Q3647258|http://www.wikidata.org/entity/Q2267853|http://www.wikidata.org/entity/Q984572|http://www.wikidata.org/entity/Q549948|http://www.wikidata.org/entity/Q504175|http://www.wikidata.org/entity/Q258246|http://www.wikidata.org/entity/Q256127|http://www.wikidata.org/entity/Q242792|http://www.wikidata.org/entity/Q236711|http://www.wikidata.org/entity/Q228603|http://www.wikidata.org/entity/Q165625"}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q192881"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2017 film by Greta Gerwig"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16248298"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19824669"}, "Title": {"type": "literal", "value": "Addicted to Fresno"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q441722"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23761740"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3330735|http://www.wikidata.org/entity/Q919870|http://www.wikidata.org/entity/Q528126|http://www.wikidata.org/entity/Q239145|http://www.wikidata.org/entity/Q236189|http://www.wikidata.org/entity/Q234207|http://www.wikidata.org/entity/Q233347|http://www.wikidata.org/entity/Q210547|http://www.wikidata.org/entity/Q14535|http://www.wikidata.org/entity/Q21401329|http://www.wikidata.org/entity/Q16821316|http://www.wikidata.org/entity/Q15634765|http://www.wikidata.org/entity/Q6443390|http://www.wikidata.org/entity/Q6187500|http://www.wikidata.org/entity/Q3703066"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q20442589"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Jamie Babbit"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42311467"}, "Title": {"type": "literal", "value": "Lucky Loser \u2013 Ein Sommer in der Bredouille"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18026371"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Nico Sommer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7242285"}, "Title": {"type": "literal", "value": "Pretty Smart"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q144354"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7183001|http://www.wikidata.org/entity/Q5160586|http://www.wikidata.org/entity/Q4984217|http://www.wikidata.org/entity/Q957711|http://www.wikidata.org/entity/Q533883|http://www.wikidata.org/entity/Q254789|http://www.wikidata.org/entity/Q215976"}, "Published": {"type": "literal", "value": "1987"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1987 film by Dimitri Logothetis"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3842369"}, "Title": {"type": "literal", "value": "Madly Madagascar"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5239955"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5239955"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q47100"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "64"}, "Description": {"type": "literal", "value": "2013 film by David Soren"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q500088|http://www.wikidata.org/entity/Q533547"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26884345"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3118587"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17013749|http://www.wikidata.org/entity/Q645928|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "61"}, "Description": {"type": "literal", "value": "2016 film by Gregory Monro"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4327809"}, "Title": {"type": "literal", "value": "The Night We Called It a Day"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2059818"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7173307"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q102711|http://www.wikidata.org/entity/Q14902479|http://www.wikidata.org/entity/Q7821843|http://www.wikidata.org/entity/Q5525013|http://www.wikidata.org/entity/Q4666385|http://www.wikidata.org/entity/Q381768|http://www.wikidata.org/entity/Q310217|http://www.wikidata.org/entity/Q228717|http://www.wikidata.org/entity/Q215366|http://www.wikidata.org/entity/Q176455"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film directed by Paul Goldman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q860734"}, "Title": {"type": "literal", "value": "Life as We Know It"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q978649"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q210462|http://www.wikidata.org/entity/Q192955|http://www.wikidata.org/entity/Q189554|http://www.wikidata.org/entity/Q155449|http://www.wikidata.org/entity/Q53651|http://www.wikidata.org/entity/Q19794|http://www.wikidata.org/entity/Q23542812|http://www.wikidata.org/entity/Q23301771|http://www.wikidata.org/entity/Q13560498|http://www.wikidata.org/entity/Q2040329|http://www.wikidata.org/entity/Q1341761|http://www.wikidata.org/entity/Q972469|http://www.wikidata.org/entity/Q612512|http://www.wikidata.org/entity/Q504390|http://www.wikidata.org/entity/Q310322|http://www.wikidata.org/entity/Q262659|http://www.wikidata.org/entity/Q239069|http://www.wikidata.org/entity/Q229048"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "2010 film by Greg Berlanti"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q622668|http://www.wikidata.org/entity/Q3109988"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13423400"}, "Title": {"type": "literal", "value": "The Kings of Summer"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17091099"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16201711"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q601032|http://www.wikidata.org/entity/Q310429|http://www.wikidata.org/entity/Q235328|http://www.wikidata.org/entity/Q234137|http://www.wikidata.org/entity/Q230510|http://www.wikidata.org/entity/Q16239393|http://www.wikidata.org/entity/Q16236368|http://www.wikidata.org/entity/Q6755544|http://www.wikidata.org/entity/Q6443390|http://www.wikidata.org/entity/Q4025857|http://www.wikidata.org/entity/Q2985242|http://www.wikidata.org/entity/Q1985488"}, "Published": {"type": "literal", "value": "2013|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2013 film by Jordan Vogt-Roberts"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2902139"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55597889"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2966222"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q315243"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Christophe Duthuron"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14650496"}, "Title": {"type": "literal", "value": "Fast and Furious 7 (Furious 7)"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q374286"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5107501"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24699898|http://www.wikidata.org/entity/Q20658844|http://www.wikidata.org/entity/Q16739195|http://www.wikidata.org/entity/Q16298556|http://www.wikidata.org/entity/Q7685100|http://www.wikidata.org/entity/Q6968794|http://www.wikidata.org/entity/Q6278450|http://www.wikidata.org/entity/Q6223403|http://www.wikidata.org/entity/Q4971671|http://www.wikidata.org/entity/Q230123|http://www.wikidata.org/entity/Q221155|http://www.wikidata.org/entity/Q213864|http://www.wikidata.org/entity/Q193676|http://www.wikidata.org/entity/Q185654|http://www.wikidata.org/entity/Q184219|http://www.wikidata.org/entity/Q178166|http://www.wikidata.org/entity/Q169963|http://www.wikidata.org/entity/Q103157|http://www.wikidata.org/entity/Q10738|http://www.wikidata.org/entity/Q4724794|http://www.wikidata.org/entity/Q3938395|http://www.wikidata.org/entity/Q3342658|http://www.wikidata.org/entity/Q3179817|http://www.wikidata.org/entity/Q2748803|http://www.wikidata.org/entity/Q722001|http://www.wikidata.org/entity/Q552997|http://www.wikidata.org/entity/Q359491|http://www.wikidata.org/entity/Q317563|http://www.wikidata.org/entity/Q312173|http://www.wikidata.org/entity/Q311232|http://www.wikidata.org/entity/Q298682|http://www.wikidata.org/entity/Q298551|http://www.wikidata.org/entity/Q242201|http://www.wikidata.org/entity/Q236269|http://www.wikidata.org/entity/Q230827"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q496523|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "137"}, "Description": {"type": "literal", "value": "2015 film by James Wan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q31271052"}, "Title": {"type": "literal", "value": "68 Kill"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3998297"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q313501"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Trent Haaga"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7752426"}, "Title": {"type": "literal", "value": "The Mother of Invention"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6285163"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1334725|http://www.wikidata.org/entity/Q1189470|http://www.wikidata.org/entity/Q1141737|http://www.wikidata.org/entity/Q718382|http://www.wikidata.org/entity/Q258064"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Joseph M. Petrick"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25583402"}, "Title": {"type": "literal", "value": "Die Erfindung der Liebe"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q97919"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2087104|http://www.wikidata.org/entity/Q97919"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17325031|http://www.wikidata.org/entity/Q1896047|http://www.wikidata.org/entity/Q1251791|http://www.wikidata.org/entity/Q111267|http://www.wikidata.org/entity/Q110710|http://www.wikidata.org/entity/Q106781|http://www.wikidata.org/entity/Q78441|http://www.wikidata.org/entity/Q61322"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Lola Randl"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q806440"}, "Title": {"type": "literal", "value": "Bang Boom Bang \u2013 Ein todsicheres Ding"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2078661"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2078661|http://www.wikidata.org/entity/Q2336552"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q90041|http://www.wikidata.org/entity/Q77758|http://www.wikidata.org/entity/Q74258|http://www.wikidata.org/entity/Q57391|http://www.wikidata.org/entity/Q23059927|http://www.wikidata.org/entity/Q2577560|http://www.wikidata.org/entity/Q1201218|http://www.wikidata.org/entity/Q978425|http://www.wikidata.org/entity/Q977720|http://www.wikidata.org/entity/Q546535|http://www.wikidata.org/entity/Q243132|http://www.wikidata.org/entity/Q111262|http://www.wikidata.org/entity/Q103918|http://www.wikidata.org/entity/Q100721|http://www.wikidata.org/entity/Q97604|http://www.wikidata.org/entity/Q95580|http://www.wikidata.org/entity/Q92005|http://www.wikidata.org/entity/Q90869|http://www.wikidata.org/entity/Q2078661|http://www.wikidata.org/entity/Q2020358|http://www.wikidata.org/entity/Q1927038|http://www.wikidata.org/entity/Q1901626|http://www.wikidata.org/entity/Q1900519|http://www.wikidata.org/entity/Q1747632|http://www.wikidata.org/entity/Q1745759|http://www.wikidata.org/entity/Q1663651|http://www.wikidata.org/entity/Q1597348|http://www.wikidata.org/entity/Q1416429"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "1999 film by Peter Thorwarth"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15819219"}, "Title": {"type": "literal", "value": "Hannas Reise"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15450497"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2013 film by Julia Heinz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29032887"}, "Title": {"type": "literal", "value": "\u0422\u0440\u044f\u043f\u0438\u0447\u043d\u044b\u0439 \u0441\u043e\u044e\u0437"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28099355"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28099355"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28760362|http://www.wikidata.org/entity/Q21183528|http://www.wikidata.org/entity/Q4516046"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q775344"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2015 film directed by Mikha\u00efl Mestetski"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16711321"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17450797"}, "Title": {"type": "literal", "value": "D\u00fc\u011f\u00fcn Dernek"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6052251"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6052251"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6083959"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film directed by Sel\u00e7uk Aydemir"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10668100"}, "Title": {"type": "literal", "value": "Simon & Malou"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q33436947|http://www.wikidata.org/entity/Q1387115"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q38051206"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q42302646|http://www.wikidata.org/entity/Q40523600|http://www.wikidata.org/entity/Q40523594|http://www.wikidata.org/entity/Q39141266|http://www.wikidata.org/entity/Q37490969|http://www.wikidata.org/entity/Q12333598|http://www.wikidata.org/entity/Q12331543|http://www.wikidata.org/entity/Q12327197|http://www.wikidata.org/entity/Q12326885|http://www.wikidata.org/entity/Q12326259|http://www.wikidata.org/entity/Q12306243|http://www.wikidata.org/entity/Q6858699|http://www.wikidata.org/entity/Q4955475|http://www.wikidata.org/entity/Q1760754|http://www.wikidata.org/entity/Q533028|http://www.wikidata.org/entity/Q468499|http://www.wikidata.org/entity/Q448968|http://www.wikidata.org/entity/Q347848|http://www.wikidata.org/entity/Q273929|http://www.wikidata.org/entity/Q28262"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Theis M\u00f8lstr\u00f8m Christensen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11268003"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7402640"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7334360|http://www.wikidata.org/entity/Q7238865|http://www.wikidata.org/entity/Q6480008|http://www.wikidata.org/entity/Q6167686|http://www.wikidata.org/entity/Q4900935|http://www.wikidata.org/entity/Q4806897|http://www.wikidata.org/entity/Q1749451|http://www.wikidata.org/entity/Q277725"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Saji Surendran"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3547550"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q492153"}, "Title": {"type": "literal", "value": "\ub9c8\ud30c\ub3c4 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q483028"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1526592|http://www.wikidata.org/entity/Q489041"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Lee Sang-hoon"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29034242"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28857109"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2017 film by Max Nardari"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3824600"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2639375"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2639375|http://www.wikidata.org/entity/Q740614"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q735283|http://www.wikidata.org/entity/Q638282|http://www.wikidata.org/entity/Q3972434|http://www.wikidata.org/entity/Q3901020|http://www.wikidata.org/entity/Q3852905|http://www.wikidata.org/entity/Q3847827|http://www.wikidata.org/entity/Q3749409|http://www.wikidata.org/entity/Q3707221|http://www.wikidata.org/entity/Q3680240|http://www.wikidata.org/entity/Q3614130|http://www.wikidata.org/entity/Q740614"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2005 film by Alberto Ferrari"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3939871"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13537994"}, "Title": {"type": "literal", "value": "Lovely Rita"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q79003"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q79003"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2002|2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 film directed by Jessica Hausner"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12243582"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12250381"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7063876|http://www.wikidata.org/entity/Q2827647|http://www.wikidata.org/entity/Q1386100|http://www.wikidata.org/entity/Q591801"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Wael Ehsan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21554908"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028738"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028738"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028738"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Nicolas Charlet"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7156741"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16734141"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16734141"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7917177|http://www.wikidata.org/entity/Q4662722|http://www.wikidata.org/entity/Q3494299|http://www.wikidata.org/entity/Q2726196|http://www.wikidata.org/entity/Q748926|http://www.wikidata.org/entity/Q330315|http://www.wikidata.org/entity/Q292967"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 Bollywood film directed by Prahasith Painter"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6933585"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q218496"}, "Title": {"type": "literal", "value": "De ofrivilliga"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q211228"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16633043|http://www.wikidata.org/entity/Q211228"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16983758|http://www.wikidata.org/entity/Q6201299|http://www.wikidata.org/entity/Q5983838|http://www.wikidata.org/entity/Q4984760|http://www.wikidata.org/entity/Q4967419|http://www.wikidata.org/entity/Q4963080|http://www.wikidata.org/entity/Q4956982|http://www.wikidata.org/entity/Q4947347|http://www.wikidata.org/entity/Q440826"}, "Published": {"type": "literal", "value": "2009|2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2008 Swedish film directed by Ruben \u00d6stlund"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43531696"}, "Title": {"type": "literal", "value": "Wilkommen bei Habib"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q43533609"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q43533609"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15431507|http://www.wikidata.org/entity/Q2511663|http://www.wikidata.org/entity/Q1745418|http://www.wikidata.org/entity/Q1598954|http://www.wikidata.org/entity/Q1533711|http://www.wikidata.org/entity/Q1292000|http://www.wikidata.org/entity/Q1010197|http://www.wikidata.org/entity/Q106466"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "2014 film by Michael Baumann"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60998816"}, "Title": {"type": "literal", "value": "Voll Rita!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23947040"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50129212|http://www.wikidata.org/entity/Q48283663|http://www.wikidata.org/entity/Q42765736|http://www.wikidata.org/entity/Q2475762|http://www.wikidata.org/entity/Q104364"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film by Malte Wirtz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22774118"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q708456"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Chapman To"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20111159"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17994032"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q483577"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q59931"}, "Title": {"type": "literal", "value": "Garden State"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q139330"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q139330"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q629696|http://www.wikidata.org/entity/Q461762|http://www.wikidata.org/entity/Q439804|http://www.wikidata.org/entity/Q315099|http://www.wikidata.org/entity/Q298694|http://www.wikidata.org/entity/Q239069|http://www.wikidata.org/entity/Q223091|http://www.wikidata.org/entity/Q190972|http://www.wikidata.org/entity/Q139330|http://www.wikidata.org/entity/Q83677|http://www.wikidata.org/entity/Q37876|http://www.wikidata.org/entity/Q3195|http://www.wikidata.org/entity/Q5537604|http://www.wikidata.org/entity/Q4817144|http://www.wikidata.org/entity/Q4716763|http://www.wikidata.org/entity/Q3539595|http://www.wikidata.org/entity/Q2558129|http://www.wikidata.org/entity/Q2255729|http://www.wikidata.org/entity/Q976310"}, "Published": {"type": "literal", "value": "2005|2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q2975633"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2004 comedy-drama film directed by Zach Braff"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q953040"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q277157"}, "Title": {"type": "literal", "value": "Cloudy with a Chance of Meatballs 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16864574|http://www.wikidata.org/entity/Q320232"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6273224|http://www.wikidata.org/entity/Q342636"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2013 film by Cody Cameron and Kris Pearn"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q186941|http://www.wikidata.org/entity/Q1416835|http://www.wikidata.org/entity/Q1783801"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25218759"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q527526"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q527526"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Michael Seater"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2827475"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2829867"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3470839"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Alain Gomis"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3025926"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4023328"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7173725|http://www.wikidata.org/entity/Q6437800|http://www.wikidata.org/entity/Q5596223|http://www.wikidata.org/entity/Q5413181|http://www.wikidata.org/entity/Q5229264|http://www.wikidata.org/entity/Q5213896|http://www.wikidata.org/entity/Q4931969|http://www.wikidata.org/entity/Q4355640|http://www.wikidata.org/entity/Q4355628|http://www.wikidata.org/entity/Q3549518|http://www.wikidata.org/entity/Q3547262|http://www.wikidata.org/entity/Q3545128|http://www.wikidata.org/entity/Q3543561|http://www.wikidata.org/entity/Q3275802|http://www.wikidata.org/entity/Q3155993|http://www.wikidata.org/entity/Q3143055|http://www.wikidata.org/entity/Q3097943|http://www.wikidata.org/entity/Q2534772|http://www.wikidata.org/entity/Q2490599|http://www.wikidata.org/entity/Q1645932|http://www.wikidata.org/entity/Q1193042|http://www.wikidata.org/entity/Q1067530|http://www.wikidata.org/entity/Q901546|http://www.wikidata.org/entity/Q579804|http://www.wikidata.org/entity/Q561449"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Y\u016bdai Yamaguchi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4530766"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q971159"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q971159"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13860870"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Tom Six"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1286551"}, "Title": {"type": "literal", "value": "Jack Frost"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3541033"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1320761"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q433138|http://www.wikidata.org/entity/Q401963|http://www.wikidata.org/entity/Q364881|http://www.wikidata.org/entity/Q342430|http://www.wikidata.org/entity/Q318509|http://www.wikidata.org/entity/Q291024|http://www.wikidata.org/entity/Q272130|http://www.wikidata.org/entity/Q236842|http://www.wikidata.org/entity/Q138005|http://www.wikidata.org/entity/Q127548|http://www.wikidata.org/entity/Q19663780|http://www.wikidata.org/entity/Q7976224|http://www.wikidata.org/entity/Q3476191|http://www.wikidata.org/entity/Q2846658|http://www.wikidata.org/entity/Q2059493|http://www.wikidata.org/entity/Q1726175|http://www.wikidata.org/entity/Q1706810|http://www.wikidata.org/entity/Q1328845|http://www.wikidata.org/entity/Q1320573|http://www.wikidata.org/entity/Q505900"}, "Published": {"type": "literal", "value": "1998|1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q28026639"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "1998 Christmas comedy fantasy drama directed by Troy Miller"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q219392"}, "Title": {"type": "literal", "value": "\u0939\u093e\u0909\u0938\u092b\u0941\u0932 \u0968"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3469329"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3469329"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3046959|http://www.wikidata.org/entity/Q2700318|http://www.wikidata.org/entity/Q2312801|http://www.wikidata.org/entity/Q983571|http://www.wikidata.org/entity/Q834338|http://www.wikidata.org/entity/Q738291|http://www.wikidata.org/entity/Q470226|http://www.wikidata.org/entity/Q313025|http://www.wikidata.org/entity/Q258820|http://www.wikidata.org/entity/Q233748"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Sajid Khan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3334902"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13648340"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3136157"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12498974"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Rudy Soedjarwo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30740090"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30728789"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30728789|http://www.wikidata.org/entity/Q28872647|http://www.wikidata.org/entity/Q3591071|http://www.wikidata.org/entity/Q3028817|http://www.wikidata.org/entity/Q2980638|http://www.wikidata.org/entity/Q1569147|http://www.wikidata.org/entity/Q1450857|http://www.wikidata.org/entity/Q289032"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Maxime Motte"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4271818"}, "Title": {"type": "literal", "value": "\u041b\u044e\u0431\u043e\u0432\u044c \u0432 \u0431\u043e\u043b\u044c\u0448\u043e\u043c \u0433\u043e\u0440\u043e\u0434\u0435 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4102539"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4536851|http://www.wikidata.org/entity/Q3874799"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3874799|http://www.wikidata.org/entity/Q2832626|http://www.wikidata.org/entity/Q397682"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2010 film by Marius Vaisbergas"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1297912"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5444055"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film directed by Ferenc T\u00f6r\u00f6k"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4546830"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4790701"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4790701"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6360976|http://www.wikidata.org/entity/Q4779120|http://www.wikidata.org/entity/Q1968297|http://www.wikidata.org/entity/Q75862"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 Bengali-language film directed by Arin Paul"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q9054221"}, "Title": {"type": "literal", "value": "Pagafantas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8250879"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8250879"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16344761|http://www.wikidata.org/entity/Q12267020|http://www.wikidata.org/entity/Q6457544|http://www.wikidata.org/entity/Q6174843|http://www.wikidata.org/entity/Q3320887|http://www.wikidata.org/entity/Q2888100|http://www.wikidata.org/entity/Q2447289|http://www.wikidata.org/entity/Q1267731|http://www.wikidata.org/entity/Q449584|http://www.wikidata.org/entity/Q449004"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Borja Cobeaga"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6190232"}, "Title": {"type": "literal", "value": "Jewtopia"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4980101"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q956021|http://www.wikidata.org/entity/Q575879|http://www.wikidata.org/entity/Q449822|http://www.wikidata.org/entity/Q371786|http://www.wikidata.org/entity/Q353755|http://www.wikidata.org/entity/Q296524|http://www.wikidata.org/entity/Q295148|http://www.wikidata.org/entity/Q271144|http://www.wikidata.org/entity/Q258470|http://www.wikidata.org/entity/Q234715|http://www.wikidata.org/entity/Q234514|http://www.wikidata.org/entity/Q234144|http://www.wikidata.org/entity/Q229440|http://www.wikidata.org/entity/Q175104"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 comedy film directed by Bryan Fogel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10546935"}, "Title": {"type": "literal", "value": "Koffein"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6255580"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6255580"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q512721"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Henrik JP \u00c5kesson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18394204"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7396737"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7396737"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5871909|http://www.wikidata.org/entity/Q3496304"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Sachin Gupta"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19824756"}, "Title": {"type": "literal", "value": "La Vie en grand"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3298888"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Mathieu Vadepied"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20970745"}, "Title": {"type": "literal", "value": "Tutte le vogliono"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20971246"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2015 italian film directed by Alessio Maria Federici"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30110004"}, "Title": {"type": "literal", "value": "\u0411\u043b\u043e\u043a\u0431\u0430\u0441\u0442\u0435\u0440"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4123613"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4123613"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4519628|http://www.wikidata.org/entity/Q4516120|http://www.wikidata.org/entity/Q4506333|http://www.wikidata.org/entity/Q4478248|http://www.wikidata.org/entity/Q4301044|http://www.wikidata.org/entity/Q4199518|http://www.wikidata.org/entity/Q4176090|http://www.wikidata.org/entity/Q2642325|http://www.wikidata.org/entity/Q2373179|http://www.wikidata.org/entity/Q536524|http://www.wikidata.org/entity/Q262576"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q83267"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2017 film by Roman Volobuev"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6070309"}, "Title": {"type": "literal", "value": "Dedemin \u0130nsanlar\u0131"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q272718"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q272718"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25476953|http://www.wikidata.org/entity/Q12812387|http://www.wikidata.org/entity/Q6098980|http://www.wikidata.org/entity/Q6097730|http://www.wikidata.org/entity/Q6096796|http://www.wikidata.org/entity/Q6095847|http://www.wikidata.org/entity/Q6082009|http://www.wikidata.org/entity/Q6070687|http://www.wikidata.org/entity/Q6011572|http://www.wikidata.org/entity/Q5423258|http://www.wikidata.org/entity/Q3446906|http://www.wikidata.org/entity/Q1264350|http://www.wikidata.org/entity/Q962106|http://www.wikidata.org/entity/Q913571|http://www.wikidata.org/entity/Q334921"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by \u00c7a\u011fan Irmak"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5575012"}, "Title": {"type": "literal", "value": "Go for a Take"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5667433"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1972"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1972 film by Harry Booth"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25167044"}, "Title": {"type": "literal", "value": "Ralph Breaks the Internet"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21411187|http://www.wikidata.org/entity/Q2499079"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21411187"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019|2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1436734|http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "2018 animated film produced by Walt Disney Animation Studios"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191224|http://www.wikidata.org/entity/Q1047410"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q342637"}, "Title": {"type": "literal", "value": "Kunsten at gr\u00e6de i kor"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12331721"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12303928"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12305070|http://www.wikidata.org/entity/Q11292872|http://www.wikidata.org/entity/Q4990736|http://www.wikidata.org/entity/Q4982822|http://www.wikidata.org/entity/Q4961227|http://www.wikidata.org/entity/Q1797681|http://www.wikidata.org/entity/Q879360|http://www.wikidata.org/entity/Q12343120|http://www.wikidata.org/entity/Q12339791|http://www.wikidata.org/entity/Q12333700|http://www.wikidata.org/entity/Q12333583|http://www.wikidata.org/entity/Q12320467|http://www.wikidata.org/entity/Q12319113|http://www.wikidata.org/entity/Q12315378|http://www.wikidata.org/entity/Q12313931"}, "Published": {"type": "literal", "value": "2007|2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Peter Sch\u00f8nau Fog"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17903453"}, "Title": {"type": "literal", "value": "Ride Along 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2005037"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16225521|http://www.wikidata.org/entity/Q6789004|http://www.wikidata.org/entity/Q3116203"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q73362|http://www.wikidata.org/entity/Q748404|http://www.wikidata.org/entity/Q618352|http://www.wikidata.org/entity/Q447960|http://www.wikidata.org/entity/Q440910|http://www.wikidata.org/entity/Q311232|http://www.wikidata.org/entity/Q268549|http://www.wikidata.org/entity/Q240472|http://www.wikidata.org/entity/Q236475|http://www.wikidata.org/entity/Q214227|http://www.wikidata.org/entity/Q173637|http://www.wikidata.org/entity/Q5567967|http://www.wikidata.org/entity/Q3938395"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q4984974|http://www.wikidata.org/entity/Q188473"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2016 film by Tim Story"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6206606"}, "Title": {"type": "literal", "value": "Job, czyli ostatnia szara kom\u00f3rka"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4315835"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4315835"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6440146|http://www.wikidata.org/entity/Q2911384|http://www.wikidata.org/entity/Q1411767|http://www.wikidata.org/entity/Q394923"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Konrad Niewolski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1751661"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q320567"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2049648"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1379165"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Edwin Brienen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16323870"}, "Title": {"type": "literal", "value": "Kolb\u00f8ttefabrikken"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29014822"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1797681|http://www.wikidata.org/entity/Q730592|http://www.wikidata.org/entity/Q256395|http://www.wikidata.org/entity/Q207149|http://www.wikidata.org/entity/Q40012331|http://www.wikidata.org/entity/Q40012069|http://www.wikidata.org/entity/Q12335353|http://www.wikidata.org/entity/Q12330060|http://www.wikidata.org/entity/Q12327036|http://www.wikidata.org/entity/Q12325626|http://www.wikidata.org/entity/Q12323795|http://www.wikidata.org/entity/Q12319212|http://www.wikidata.org/entity/Q11952430|http://www.wikidata.org/entity/Q3427562"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Morten Boesdal Halvorsen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13426372"}, "Title": {"type": "literal", "value": "\u0418\u043d\u0442\u0438\u043c\u043d\u044b\u0435 \u043c\u0435\u0441\u0442\u0430"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15270257"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4228271"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film directed by Natalya Merkulova"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5246479"}, "Title": {"type": "literal", "value": "Dean Spanley"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7811331"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4707749"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2473636|http://www.wikidata.org/entity/Q529132|http://www.wikidata.org/entity/Q443961|http://www.wikidata.org/entity/Q363659|http://www.wikidata.org/entity/Q214309|http://www.wikidata.org/entity/Q103876"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2008 film by Toa Fraser"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4724802"}, "Title": {"type": "literal", "value": "Ali G, Aiii"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5925685"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29055"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29055"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2000 film by James Bobin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q35585241"}, "Title": {"type": "literal", "value": "\u062a\u0635\u0628\u062d \u0639\u0644\u0649 \u062e\u064a\u0631"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20422996"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20422996"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25455098|http://www.wikidata.org/entity/Q12241163|http://www.wikidata.org/entity/Q1391164"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Mohamed Samy"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1365512"}, "Title": {"type": "literal", "value": "Held Up"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2632767"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q171905"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "1999 film by Steve Rash"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q557387"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4956299"}, "Title": {"type": "literal", "value": "Bran Nue Dae"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7279354"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7307753"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7815122|http://www.wikidata.org/entity/Q7355844|http://www.wikidata.org/entity/Q3057304|http://www.wikidata.org/entity/Q2482522|http://www.wikidata.org/entity/Q2380064|http://www.wikidata.org/entity/Q568179|http://www.wikidata.org/entity/Q443892|http://www.wikidata.org/entity/Q240222|http://www.wikidata.org/entity/Q166272"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q842256"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 Australian musical film directed by Rachel Perkins"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15277321"}, "Title": {"type": "literal", "value": "Die Frau, die sich traut"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1641094"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2013 film by Marc Rensing"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3927042"}, "Title": {"type": "literal", "value": "Quant'\u00e8 bella la Bernarda, tutta nera, tutta calda"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1873491"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3845497|http://www.wikidata.org/entity/Q3839271|http://www.wikidata.org/entity/Q3726621|http://www.wikidata.org/entity/Q3634653|http://www.wikidata.org/entity/Q1156919|http://www.wikidata.org/entity/Q1040908|http://www.wikidata.org/entity/Q599728|http://www.wikidata.org/entity/Q515997"}, "Published": {"type": "literal", "value": "1973"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "1973 film by Lucio Giachin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q120367"}, "Title": {"type": "literal", "value": "Shark Tale"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4011210|http://www.wikidata.org/entity/Q3590985|http://www.wikidata.org/entity/Q428815"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q428815"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2004 animated film by Vicky Jenson, Bibo Bergeron, and Rob Letterman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q500088"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1713741"}, "Title": {"type": "literal", "value": "Short Cut to Hollywood"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q108302"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q108302"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2009 film by Jan Henrik Stahlberg"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1895516"}, "Title": {"type": "literal", "value": "Maria, ihm schmeckt\u2019s nicht!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1974092"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1162747|http://www.wikidata.org/entity/Q125379"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3991986|http://www.wikidata.org/entity/Q3893979|http://www.wikidata.org/entity/Q3876295|http://www.wikidata.org/entity/Q3702372|http://www.wikidata.org/entity/Q1710872|http://www.wikidata.org/entity/Q697816|http://www.wikidata.org/entity/Q434479|http://www.wikidata.org/entity/Q100506|http://www.wikidata.org/entity/Q92511|http://www.wikidata.org/entity/Q77991"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2009 film by Neele Vollmar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16410419"}, "Title": {"type": "literal", "value": "Kinnunen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16407213"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Andri Luup"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q330332"}, "Title": {"type": "literal", "value": "Mr. Bean's Holiday"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2346846"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5645381|http://www.wikidata.org/entity/Q1761327|http://www.wikidata.org/entity/Q705602|http://www.wikidata.org/entity/Q355300|http://www.wikidata.org/entity/Q23760"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3264884|http://www.wikidata.org/entity/Q3189440|http://www.wikidata.org/entity/Q3106251|http://www.wikidata.org/entity/Q3081359|http://www.wikidata.org/entity/Q2941947|http://www.wikidata.org/entity/Q2864476|http://www.wikidata.org/entity/Q2347009|http://www.wikidata.org/entity/Q1500831|http://www.wikidata.org/entity/Q966378|http://www.wikidata.org/entity/Q648036|http://www.wikidata.org/entity/Q15973995|http://www.wikidata.org/entity/Q7613581|http://www.wikidata.org/entity/Q3591288|http://www.wikidata.org/entity/Q3501708|http://www.wikidata.org/entity/Q3379508|http://www.wikidata.org/entity/Q3334837|http://www.wikidata.org/entity/Q609514|http://www.wikidata.org/entity/Q463683|http://www.wikidata.org/entity/Q342384|http://www.wikidata.org/entity/Q188772|http://www.wikidata.org/entity/Q106555|http://www.wikidata.org/entity/Q60304|http://www.wikidata.org/entity/Q23760"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2007 British comedy film directed by Steve Bendelack"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2060840|http://www.wikidata.org/entity/Q3282004|http://www.wikidata.org/entity/Q2450848"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4714847"}, "Title": {"type": "literal", "value": "Der Wixxer"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2437672"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q122048|http://www.wikidata.org/entity/Q102480"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q105679|http://www.wikidata.org/entity/Q104670|http://www.wikidata.org/entity/Q102480|http://www.wikidata.org/entity/Q96687|http://www.wikidata.org/entity/Q95757|http://www.wikidata.org/entity/Q89764|http://www.wikidata.org/entity/Q88236|http://www.wikidata.org/entity/Q77027|http://www.wikidata.org/entity/Q74037|http://www.wikidata.org/entity/Q62398|http://www.wikidata.org/entity/Q43763|http://www.wikidata.org/entity/Q11878902|http://www.wikidata.org/entity/Q2437672|http://www.wikidata.org/entity/Q2424639|http://www.wikidata.org/entity/Q1806325|http://www.wikidata.org/entity/Q1522491|http://www.wikidata.org/entity/Q1379168|http://www.wikidata.org/entity/Q1310498|http://www.wikidata.org/entity/Q1038736|http://www.wikidata.org/entity/Q807593|http://www.wikidata.org/entity/Q586772|http://www.wikidata.org/entity/Q518355|http://www.wikidata.org/entity/Q318290|http://www.wikidata.org/entity/Q122048|http://www.wikidata.org/entity/Q108164"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q622548|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "2004 German comedy film directed by Tobias Baumann"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1402681"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18562378"}, "Title": {"type": "literal", "value": "Break-Up"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18562379"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18562379"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2014 film by Alexander Tuschinski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6745753"}, "Title": {"type": "literal", "value": "Mammalian"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5490451"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "64"}, "Description": {"type": "literal", "value": "2010 film by Frank Wolf"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q386342"}, "Title": {"type": "literal", "value": "Concursante"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1887437"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1887437"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16636977|http://www.wikidata.org/entity/Q9033606|http://www.wikidata.org/entity/Q9025419|http://www.wikidata.org/entity/Q8961277|http://www.wikidata.org/entity/Q8345274|http://www.wikidata.org/entity/Q5888329|http://www.wikidata.org/entity/Q1189379"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2007 film by Rodrigo Cort\u00e9s"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17136066"}, "Title": {"type": "literal", "value": "Somebody Up There Likes Me"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4931990"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4931990"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "76"}, "Description": {"type": "literal", "value": "2012 film by Bob Byington"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15901539"}, "Title": {"type": "literal", "value": "Tammy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2082056"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2082056|http://www.wikidata.org/entity/Q229048"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7422078|http://www.wikidata.org/entity/Q3273787|http://www.wikidata.org/entity/Q2514422|http://www.wikidata.org/entity/Q2347123|http://www.wikidata.org/entity/Q2082056|http://www.wikidata.org/entity/Q544465|http://www.wikidata.org/entity/Q315864|http://www.wikidata.org/entity/Q229487|http://www.wikidata.org/entity/Q229291|http://www.wikidata.org/entity/Q229048|http://www.wikidata.org/entity/Q133050|http://www.wikidata.org/entity/Q105221|http://www.wikidata.org/entity/Q40337"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2014 film by Ben Falcone"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q79202"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5589911"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17198440"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17198440"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7310617|http://www.wikidata.org/entity/Q1828366"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Pawan Wadeyar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q58609682"}, "Title": {"type": "literal", "value": "Not So Happy Campers - Part 1"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14647181"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2697348"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008|2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17113138|http://www.wikidata.org/entity/Q3421644|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "22"}, "Description": {"type": "literal", "value": "episode of Total Drama Island (E1)"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3499025|http://www.wikidata.org/entity/Q6995585"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15054512"}, "Title": {"type": "literal", "value": "Finsterworld"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15630836"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q123242"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q70003"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2013 film by Frauke Finsterwalder"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19258089"}, "Title": {"type": "literal", "value": "3 T\u00fcrken und ein Baby"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q98255"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q98255"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22265578|http://www.wikidata.org/entity/Q21035816|http://www.wikidata.org/entity/Q16508914|http://www.wikidata.org/entity/Q2336892|http://www.wikidata.org/entity/Q2128092|http://www.wikidata.org/entity/Q1773250|http://www.wikidata.org/entity/Q1755401|http://www.wikidata.org/entity/Q1714755|http://www.wikidata.org/entity/Q1652293|http://www.wikidata.org/entity/Q1292000|http://www.wikidata.org/entity/Q1279837|http://www.wikidata.org/entity/Q1157339|http://www.wikidata.org/entity/Q889906|http://www.wikidata.org/entity/Q559888|http://www.wikidata.org/entity/Q492219|http://www.wikidata.org/entity/Q316388|http://www.wikidata.org/entity/Q109581|http://www.wikidata.org/entity/Q108942|http://www.wikidata.org/entity/Q104670|http://www.wikidata.org/entity/Q98255|http://www.wikidata.org/entity/Q96101|http://www.wikidata.org/entity/Q91504|http://www.wikidata.org/entity/Q72046|http://www.wikidata.org/entity/Q70775|http://www.wikidata.org/entity/Q67026"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2015 film by Sinan Akku\u015f"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q47520467"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6093781"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6094666|http://www.wikidata.org/entity/Q6092717|http://www.wikidata.org/entity/Q6084756|http://www.wikidata.org/entity/Q4696189"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Ali Atay"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15291320"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q123115"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q120378"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2013 film by Yangzom Brauen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q742614"}, "Title": {"type": "literal", "value": "Transamerica"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q454022"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q454022"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q238855|http://www.wikidata.org/entity/Q237579|http://www.wikidata.org/entity/Q190519|http://www.wikidata.org/entity/Q7920009|http://www.wikidata.org/entity/Q3702265|http://www.wikidata.org/entity/Q329700|http://www.wikidata.org/entity/Q311517|http://www.wikidata.org/entity/Q311169|http://www.wikidata.org/entity/Q262267"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q663106"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2005 independent comedy-drama film directed by Duncan Tucker"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5546702"}, "Title": {"type": "literal", "value": "Je\u017c Jerzy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9377546|http://www.wikidata.org/entity/Q9359485"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11833608"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Wojtek Wawszczyk"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3412541"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3385967"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3385967"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3554281|http://www.wikidata.org/entity/Q3015115|http://www.wikidata.org/entity/Q2925481|http://www.wikidata.org/entity/Q2910910|http://www.wikidata.org/entity/Q2844752|http://www.wikidata.org/entity/Q16682707"}, "Published": {"type": "literal", "value": "1996"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1996 film by Pierre Linhart"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22162406"}, "Title": {"type": "literal", "value": "Parasol"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3554333"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22162408|http://www.wikidata.org/entity/Q3554333|http://www.wikidata.org/entity/Q3299889"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q47018081"}, "Published": {"type": "literal", "value": "2017|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Val\u00e9ry Rosier"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2603569"}, "Title": {"type": "literal", "value": "\u0420\u0436\u0435\u0432\u0441\u043a\u0438\u0439 \u043f\u0440\u043e\u0442\u0438\u0432 \u041d\u0430\u043f\u043e\u043b\u0435\u043e\u043d\u0430"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4102539"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4536851"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4344122|http://www.wikidata.org/entity/Q4080114|http://www.wikidata.org/entity/Q3874799|http://www.wikidata.org/entity/Q3033167|http://www.wikidata.org/entity/Q2974837|http://www.wikidata.org/entity/Q2626247|http://www.wikidata.org/entity/Q2373179|http://www.wikidata.org/entity/Q2368070|http://www.wikidata.org/entity/Q1660403|http://www.wikidata.org/entity/Q593332|http://www.wikidata.org/entity/Q536524|http://www.wikidata.org/entity/Q308840|http://www.wikidata.org/entity/Q287099|http://www.wikidata.org/entity/Q274362|http://www.wikidata.org/entity/Q25080"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q128758"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2012 film by Marius Vaisbergas"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4444575|http://www.wikidata.org/entity/Q4504080"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1302032"}, "Title": {"type": "literal", "value": "Poulet aux prunes"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q126633|http://www.wikidata.org/entity/Q1890346"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q126633|http://www.wikidata.org/entity/Q1890346"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1807701|http://www.wikidata.org/entity/Q1210548|http://www.wikidata.org/entity/Q464712|http://www.wikidata.org/entity/Q364986|http://www.wikidata.org/entity/Q21693715|http://www.wikidata.org/entity/Q18625904|http://www.wikidata.org/entity/Q3090187|http://www.wikidata.org/entity/Q2714385|http://www.wikidata.org/entity/Q2567681|http://www.wikidata.org/entity/Q274227|http://www.wikidata.org/entity/Q235115|http://www.wikidata.org/entity/Q203840|http://www.wikidata.org/entity/Q355835|http://www.wikidata.org/entity/Q312661|http://www.wikidata.org/entity/Q288009|http://www.wikidata.org/entity/Q283317"}, "Published": {"type": "literal", "value": "2011|2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2011 film by Marjane Satrapi, Vincent Paronnaud"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21647697"}, "Title": {"type": "literal", "value": "Atrapa la bandera"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5785736"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2015 film by Enrique Gato"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17630598"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2892185"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2892185"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3559331|http://www.wikidata.org/entity/Q3164941|http://www.wikidata.org/entity/Q2978439|http://www.wikidata.org/entity/Q993671"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Baya Kasmi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29949484"}, "Title": {"type": "literal", "value": "\uc544\uc774 \uce94 \uc2a4\ud53c\ud06c"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028600"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29434922|http://www.wikidata.org/entity/Q12611182|http://www.wikidata.org/entity/Q12597254|http://www.wikidata.org/entity/Q4022731|http://www.wikidata.org/entity/Q496314|http://www.wikidata.org/entity/Q486084"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Kim Hyun-seok"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21544607"}, "Title": {"type": "literal", "value": "Les Dissoci\u00e9s"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028391"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21545164|http://www.wikidata.org/entity/Q21544893|http://www.wikidata.org/entity/Q16028391"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "75"}, "Description": {"type": "literal", "value": "2015 film by Rapha\u00ebl Descraques"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16639391"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16254769"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6749893"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6749893"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q704859"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Manish Jha"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16154258"}, "Title": {"type": "literal", "value": "Appropriate Behavior"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16147303"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16147303"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2849884|http://www.wikidata.org/entity/Q1571684|http://www.wikidata.org/entity/Q261056|http://www.wikidata.org/entity/Q16195218|http://www.wikidata.org/entity/Q16147303|http://www.wikidata.org/entity/Q6318347|http://www.wikidata.org/entity/Q4790207|http://www.wikidata.org/entity/Q3952813"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q20442589"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2014 film by Desiree Akhavan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21525046"}, "Title": {"type": "literal", "value": "D\u00fc\u011f\u00fcn Dernek 2: S\u00fcnnet"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6052251"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6097675"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Sel\u00e7uk Aydemir"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56110441"}, "Title": {"type": "literal", "value": "L\u00fcgen und andere Wahrheiten"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q104726"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2424639|http://www.wikidata.org/entity/Q87432|http://www.wikidata.org/entity/Q65511"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Vanessa Jopp"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60498223"}, "Title": {"type": "literal", "value": "Maikol Yordan 2: La cura lejana"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q524506"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2018 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1576130"}, "Title": {"type": "literal", "value": "Hanni & Nanni 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15450497"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2012 film by Julia Heinz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q487447"}, "Title": {"type": "literal", "value": "Kung Fu Panda 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q705711"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6263287"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21401869|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2011 American animated film directed by Jennifer Yuh Nelson"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q500088"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15655770"}, "Title": {"type": "literal", "value": "Happy Christmas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6212564"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6212564"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6212564|http://www.wikidata.org/entity/Q1378842|http://www.wikidata.org/entity/Q288359|http://www.wikidata.org/entity/Q235905|http://www.wikidata.org/entity/Q67701"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "2014 film by Joe Swanberg"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q659671"}, "Title": {"type": "literal", "value": "Boy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2388576"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2388576"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17582511|http://www.wikidata.org/entity/Q2388576"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2010 New Zealand coming-of-age comedy-drama film by Taika Waititi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16241878"}, "Title": {"type": "literal", "value": "El Americano: The Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24305204"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3378830"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6075502|http://www.wikidata.org/entity/Q5964071|http://www.wikidata.org/entity/Q4678511|http://www.wikidata.org/entity/Q2738010|http://www.wikidata.org/entity/Q706338|http://www.wikidata.org/entity/Q552090|http://www.wikidata.org/entity/Q326939|http://www.wikidata.org/entity/Q259877|http://www.wikidata.org/entity/Q211415|http://www.wikidata.org/entity/Q179041|http://www.wikidata.org/entity/Q73007"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2850090"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3236208"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3190825"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3190825"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15727723|http://www.wikidata.org/entity/Q3351313|http://www.wikidata.org/entity/Q3336549|http://www.wikidata.org/entity/Q3287898|http://www.wikidata.org/entity/Q235429"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by J\u00e9r\u00f4me Bonnell"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1657080"}, "Title": {"type": "literal", "value": "Planes"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6420019"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q269214"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2013 animated Pixar film directed by Klay Hall"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2081339"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30900344"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q313044"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "11"}, "Description": {"type": "literal", "value": "2013 film by Diego Luna"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7532716"}, "Title": {"type": "literal", "value": "Six Degrees of Separation from Lilia Cuntapay"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18719493"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18719493"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6547641"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Antoinette Jadaone"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5120754"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24521521"}, "Title": {"type": "literal", "value": "Two-Bit Waltz"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16210963"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16210963"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Clara Mamet"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12336502"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4753869"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4753869"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12326422|http://www.wikidata.org/entity/Q12324520|http://www.wikidata.org/entity/Q12321995|http://www.wikidata.org/entity/Q12320468|http://www.wikidata.org/entity/Q12318950|http://www.wikidata.org/entity/Q12338577|http://www.wikidata.org/entity/Q12327728|http://www.wikidata.org/entity/Q12303105|http://www.wikidata.org/entity/Q5983810|http://www.wikidata.org/entity/Q5360489|http://www.wikidata.org/entity/Q4753869|http://www.wikidata.org/entity/Q1369910|http://www.wikidata.org/entity/Q84081|http://www.wikidata.org/entity/Q61764522|http://www.wikidata.org/entity/Q41236660|http://www.wikidata.org/entity/Q12339214"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Anders Matthesen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16176372"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q486039"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Jang Jin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q837945"}, "Title": {"type": "literal", "value": "Disaster Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q302690|http://www.wikidata.org/entity/Q936338"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q936338|http://www.wikidata.org/entity/Q302690"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q259798|http://www.wikidata.org/entity/Q186304|http://www.wikidata.org/entity/Q185122|http://www.wikidata.org/entity/Q89536|http://www.wikidata.org/entity/Q739062|http://www.wikidata.org/entity/Q589797|http://www.wikidata.org/entity/Q549366|http://www.wikidata.org/entity/Q312535|http://www.wikidata.org/entity/Q298995|http://www.wikidata.org/entity/Q270638|http://www.wikidata.org/entity/Q16208587|http://www.wikidata.org/entity/Q2645090"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q846544|http://www.wikidata.org/entity/Q622548"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2008 American parody film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5610650|http://www.wikidata.org/entity/Q17295785"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2132204"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4707732"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2574850|http://www.wikidata.org/entity/Q837539|http://www.wikidata.org/entity/Q709655|http://www.wikidata.org/entity/Q708456|http://www.wikidata.org/entity/Q445608"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 Hong Kong film directed by Pang Ho-cheung"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22690727"}, "Title": {"type": "literal", "value": "Die Helden aus der Nachbarschaft"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1247986"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1247986"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15296618|http://www.wikidata.org/entity/Q1992796|http://www.wikidata.org/entity/Q1892860|http://www.wikidata.org/entity/Q1663644|http://www.wikidata.org/entity/Q1379064|http://www.wikidata.org/entity/Q114152|http://www.wikidata.org/entity/Q90374"}, "Published": {"type": "literal", "value": "2009|2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Jovan Arsenic"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3823522"}, "Title": {"type": "literal", "value": "La peggior settimana della mia vita"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3610041"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3737674|http://www.wikidata.org/entity/Q3610041"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3769065|http://www.wikidata.org/entity/Q3737674|http://www.wikidata.org/entity/Q3615871|http://www.wikidata.org/entity/Q3610041|http://www.wikidata.org/entity/Q2963238|http://www.wikidata.org/entity/Q1681812|http://www.wikidata.org/entity/Q1042185|http://www.wikidata.org/entity/Q769800|http://www.wikidata.org/entity/Q445698|http://www.wikidata.org/entity/Q368627|http://www.wikidata.org/entity/Q291413"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2011 film by Alessandro Genovesi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3683611"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28877459"}, "Title": {"type": "literal", "value": "\u0932\u0942\u091f \u0968"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16198160"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16198160"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q54854360|http://www.wikidata.org/entity/Q30111700|http://www.wikidata.org/entity/Q29512107|http://www.wikidata.org/entity/Q26702993|http://www.wikidata.org/entity/Q25345236|http://www.wikidata.org/entity/Q16734870|http://www.wikidata.org/entity/Q16731881|http://www.wikidata.org/entity/Q7306595"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 Nepali Blockbuster film directed by Nischal Basnet"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17458046"}, "Title": {"type": "literal", "value": "\u0412\u0441\u0451 \u0438 \u0441\u0440\u0430\u0437\u0443"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4215049"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4215049"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21183528"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q53094"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2014 film directed by Roman Karimov"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4504080"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17627840"}, "Title": {"type": "literal", "value": "Elle l'adore"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3176065"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3176065"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28992788|http://www.wikidata.org/entity/Q27704886|http://www.wikidata.org/entity/Q22248002|http://www.wikidata.org/entity/Q15973995|http://www.wikidata.org/entity/Q15973222|http://www.wikidata.org/entity/Q3588854|http://www.wikidata.org/entity/Q3510153|http://www.wikidata.org/entity/Q3367364|http://www.wikidata.org/entity/Q3328126|http://www.wikidata.org/entity/Q3311660|http://www.wikidata.org/entity/Q3260130|http://www.wikidata.org/entity/Q3219319|http://www.wikidata.org/entity/Q3157696|http://www.wikidata.org/entity/Q3074038|http://www.wikidata.org/entity/Q933434|http://www.wikidata.org/entity/Q262822"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2014 film directed by Jeanne Herry"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21427084"}, "Title": {"type": "literal", "value": "Comment c'est loin"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2966415|http://www.wikidata.org/entity/Q2813374"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3502209|http://www.wikidata.org/entity/Q2966415|http://www.wikidata.org/entity/Q2813374"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25378996|http://www.wikidata.org/entity/Q18744760|http://www.wikidata.org/entity/Q3491066|http://www.wikidata.org/entity/Q3486380|http://www.wikidata.org/entity/Q3287856|http://www.wikidata.org/entity/Q2829745|http://www.wikidata.org/entity/Q2813374"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q645928|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 flm by Orelsan and Christophe Offenstein"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17555825"}, "Title": {"type": "literal", "value": "Piotrek trzynastego 2: Sk\u00f3rza Twarz"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11817800"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11817800"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Piotr Matwiejczyk"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10663066"}, "Title": {"type": "literal", "value": "Scener ur ett k\u00e4ndisskap"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6034640"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6034640"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6228896"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Christopher Panov"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5748759"}, "Title": {"type": "literal", "value": "Cara de queso \u2014mi primer ghetto\u2014"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5704113"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28100227|http://www.wikidata.org/entity/Q7649867|http://www.wikidata.org/entity/Q7454230|http://www.wikidata.org/entity/Q6782141|http://www.wikidata.org/entity/Q6457187|http://www.wikidata.org/entity/Q6128595|http://www.wikidata.org/entity/Q6121085|http://www.wikidata.org/entity/Q6042164|http://www.wikidata.org/entity/Q6002829|http://www.wikidata.org/entity/Q5951187|http://www.wikidata.org/entity/Q5751721|http://www.wikidata.org/entity/Q5749833|http://www.wikidata.org/entity/Q5675253|http://www.wikidata.org/entity/Q3660084|http://www.wikidata.org/entity/Q3341184|http://www.wikidata.org/entity/Q3306307|http://www.wikidata.org/entity/Q2879350|http://www.wikidata.org/entity/Q2272014|http://www.wikidata.org/entity/Q1393963|http://www.wikidata.org/entity/Q289064|http://www.wikidata.org/entity/Q271836"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2006 film by Ariel Winograd"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56364056"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4102539"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film directed by Maryus Vaysberg"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24905226"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7420144"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5183212"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1995"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1995 film by Santhana Bharathi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20424058"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12243777"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7289489"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Moataz El Touni"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3824873"}, "Title": {"type": "literal", "value": "La verit\u00e0 vi prego sull'amore"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q743887"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q743887"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4010211|http://www.wikidata.org/entity/Q3852869|http://www.wikidata.org/entity/Q3849404|http://www.wikidata.org/entity/Q3761924|http://www.wikidata.org/entity/Q3756762|http://www.wikidata.org/entity/Q3721195|http://www.wikidata.org/entity/Q3660170|http://www.wikidata.org/entity/Q3637258|http://www.wikidata.org/entity/Q3608458|http://www.wikidata.org/entity/Q743887|http://www.wikidata.org/entity/Q555241|http://www.wikidata.org/entity/Q274220"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2001 film by Francesco Apolloni"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5822584"}, "Title": {"type": "literal", "value": "El Mundo es Nuestro"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5667204"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Alfonso S\u00e1nchez Fern\u00e1ndez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q47265121"}, "Title": {"type": "literal", "value": "Eighth Grade"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q887347"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q887347"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26405870|http://www.wikidata.org/entity/Q21208008|http://www.wikidata.org/entity/Q5486186|http://www.wikidata.org/entity/Q641352"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2018 film by Bo Burnham"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16248298|http://www.wikidata.org/entity/Q17295709"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1154789"}, "Title": {"type": "literal", "value": "Fifty Pills"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7781424"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3302899|http://www.wikidata.org/entity/Q1237204|http://www.wikidata.org/entity/Q786106|http://www.wikidata.org/entity/Q708512|http://www.wikidata.org/entity/Q475773|http://www.wikidata.org/entity/Q359488|http://www.wikidata.org/entity/Q350811|http://www.wikidata.org/entity/Q283504|http://www.wikidata.org/entity/Q255883|http://www.wikidata.org/entity/Q232171|http://www.wikidata.org/entity/Q228852|http://www.wikidata.org/entity/Q182931|http://www.wikidata.org/entity/Q178882"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2006 film by Theo Avgerinos"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3365358"}, "Title": {"type": "literal", "value": "Paris \u00e0 tout prix"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3423028"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3423028|http://www.wikidata.org/entity/Q3380121"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17175096|http://www.wikidata.org/entity/Q15944854|http://www.wikidata.org/entity/Q3482347|http://www.wikidata.org/entity/Q3423028|http://www.wikidata.org/entity/Q3395911|http://www.wikidata.org/entity/Q3380121|http://www.wikidata.org/entity/Q3334874|http://www.wikidata.org/entity/Q3241976|http://www.wikidata.org/entity/Q3089707|http://www.wikidata.org/entity/Q1857676|http://www.wikidata.org/entity/Q1450857|http://www.wikidata.org/entity/Q1367862|http://www.wikidata.org/entity/Q1232804|http://www.wikidata.org/entity/Q360899"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2013 film by Reem Kherici"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16662670"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q874772"}, "Title": {"type": "literal", "value": "Emmas Gl\u00fcck"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2371376"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1520844|http://www.wikidata.org/entity/Q111625"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2338745|http://www.wikidata.org/entity/Q1905418|http://www.wikidata.org/entity/Q1903738|http://www.wikidata.org/entity/Q1711811|http://www.wikidata.org/entity/Q1619430|http://www.wikidata.org/entity/Q19899655|http://www.wikidata.org/entity/Q18684278|http://www.wikidata.org/entity/Q1468043|http://www.wikidata.org/entity/Q717013|http://www.wikidata.org/entity/Q123177|http://www.wikidata.org/entity/Q108956|http://www.wikidata.org/entity/Q62052"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2006 film by Sven Taddicken"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5752999"}, "Title": {"type": "literal", "value": "Carne de ne\u00f3n"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2654533"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Paco Cabezas"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q747877"}, "Title": {"type": "literal", "value": "Clerks"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q489831"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q489831"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6763535|http://www.wikidata.org/entity/Q4223223|http://www.wikidata.org/entity/Q3242448|http://www.wikidata.org/entity/Q2681188|http://www.wikidata.org/entity/Q1738587|http://www.wikidata.org/entity/Q1175006|http://www.wikidata.org/entity/Q1140895|http://www.wikidata.org/entity/Q723672|http://www.wikidata.org/entity/Q489831|http://www.wikidata.org/entity/Q354010|http://www.wikidata.org/entity/Q316627|http://www.wikidata.org/entity/Q314081"}, "Published": {"type": "literal", "value": "1994"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "1994 American comedy film directed by Kevin Smith"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2700070|http://www.wikidata.org/entity/Q465449"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q841118"}, "Title": {"type": "literal", "value": "Epic Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q936338|http://www.wikidata.org/entity/Q302690"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q936338|http://www.wikidata.org/entity/Q302690"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q618352|http://www.wikidata.org/entity/Q589797|http://www.wikidata.org/entity/Q557948|http://www.wikidata.org/entity/Q552090|http://www.wikidata.org/entity/Q549366|http://www.wikidata.org/entity/Q499063|http://www.wikidata.org/entity/Q449521|http://www.wikidata.org/entity/Q428796|http://www.wikidata.org/entity/Q348952|http://www.wikidata.org/entity/Q310060|http://www.wikidata.org/entity/Q304322|http://www.wikidata.org/entity/Q298995|http://www.wikidata.org/entity/Q231006|http://www.wikidata.org/entity/Q230278|http://www.wikidata.org/entity/Q230169|http://www.wikidata.org/entity/Q220536|http://www.wikidata.org/entity/Q187038|http://www.wikidata.org/entity/Q185122|http://www.wikidata.org/entity/Q2993970|http://www.wikidata.org/entity/Q2755894|http://www.wikidata.org/entity/Q2706805|http://www.wikidata.org/entity/Q2646713|http://www.wikidata.org/entity/Q2260913|http://www.wikidata.org/entity/Q853018|http://www.wikidata.org/entity/Q788717|http://www.wikidata.org/entity/Q11682757|http://www.wikidata.org/entity/Q5696733"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2007 film by Jason Friedberg and Aaron Seltzer"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7153463"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20949822"}, "Title": {"type": "literal", "value": "Autoerotic"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6212564"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Joe Swanberg"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2065937"}, "Title": {"type": "literal", "value": "\uc288\ud37c\ub9e8\uc774\uc5c8\ub358 \uc0ac\ub098\uc774"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6180299"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q491333|http://www.wikidata.org/entity/Q253626"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2008 film by Jeong Yun-cheol"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14901503"}, "Title": {"type": "literal", "value": "Le Crocodile du Botswanga"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3063963|http://www.wikidata.org/entity/Q3241948"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2905980|http://www.wikidata.org/entity/Q3063963"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2978439|http://www.wikidata.org/entity/Q2842675|http://www.wikidata.org/entity/Q2050238|http://www.wikidata.org/entity/Q1340950|http://www.wikidata.org/entity/Q289524|http://www.wikidata.org/entity/Q23774047|http://www.wikidata.org/entity/Q19629486|http://www.wikidata.org/entity/Q3525440|http://www.wikidata.org/entity/Q3516056|http://www.wikidata.org/entity/Q3367537|http://www.wikidata.org/entity/Q3292200|http://www.wikidata.org/entity/Q3270032|http://www.wikidata.org/entity/Q3155677|http://www.wikidata.org/entity/Q3147503|http://www.wikidata.org/entity/Q3082317|http://www.wikidata.org/entity/Q3063963|http://www.wikidata.org/entity/Q3018751"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Lionel Steketee, Fabrice \u00c9bou\u00e9"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17275620"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19363412"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24007557"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Simranjit Singh Hundal"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18463786"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16954246"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16954246"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2013 film by Bryan Poyser"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5331221"}, "Title": {"type": "literal", "value": "Eat Cake"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4101387"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Robin Bain"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6864718"}, "Title": {"type": "literal", "value": "Minghags: The Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6209915|http://www.wikidata.org/entity/Q297173"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6209915"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6209915|http://www.wikidata.org/entity/Q3390959|http://www.wikidata.org/entity/Q3239121|http://www.wikidata.org/entity/Q2631010|http://www.wikidata.org/entity/Q606523|http://www.wikidata.org/entity/Q316036|http://www.wikidata.org/entity/Q297173"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Bam Margera"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q39050648"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q39075610"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Sudhar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10283120"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11727279"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11727279"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61690691|http://www.wikidata.org/entity/Q48478021|http://www.wikidata.org/entity/Q28132648|http://www.wikidata.org/entity/Q17312097|http://www.wikidata.org/entity/Q16957126|http://www.wikidata.org/entity/Q12036712|http://www.wikidata.org/entity/Q12035875|http://www.wikidata.org/entity/Q11925857|http://www.wikidata.org/entity/Q11879923|http://www.wikidata.org/entity/Q8364984|http://www.wikidata.org/entity/Q7362255|http://www.wikidata.org/entity/Q3497007|http://www.wikidata.org/entity/Q3229474|http://www.wikidata.org/entity/Q734192"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Ji\u0159\u00ed Vejd\u011blek"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56300066"}, "Title": {"type": "literal", "value": "Amat\u00f6rer"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4972877"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4972877|http://www.wikidata.org/entity/Q1475327"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2018 film directed by Gabriela Pichler"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12331012"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12321689"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q33157949|http://www.wikidata.org/entity/Q12321689"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q42047365|http://www.wikidata.org/entity/Q40523954|http://www.wikidata.org/entity/Q40523447|http://www.wikidata.org/entity/Q12339791|http://www.wikidata.org/entity/Q12331656|http://www.wikidata.org/entity/Q12331509|http://www.wikidata.org/entity/Q12308738|http://www.wikidata.org/entity/Q12308732|http://www.wikidata.org/entity/Q12301028|http://www.wikidata.org/entity/Q7295091|http://www.wikidata.org/entity/Q2033737|http://www.wikidata.org/entity/Q1703043|http://www.wikidata.org/entity/Q467073|http://www.wikidata.org/entity/Q438580|http://www.wikidata.org/entity/Q435310|http://www.wikidata.org/entity/Q383754"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Kenneth Kainz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1988305"}, "Title": {"type": "literal", "value": "Cemetery Junction"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23814|http://www.wikidata.org/entity/Q23517"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23814|http://www.wikidata.org/entity/Q23517"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1428289|http://www.wikidata.org/entity/Q1139996|http://www.wikidata.org/entity/Q644911|http://www.wikidata.org/entity/Q317337|http://www.wikidata.org/entity/Q234447|http://www.wikidata.org/entity/Q229535|http://www.wikidata.org/entity/Q28493|http://www.wikidata.org/entity/Q23517"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2010 British coming-of-age comedy-drama film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q186941"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3938108"}, "Title": {"type": "literal", "value": "Road Trip: Beer Pong"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2632767"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16735219"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13560498|http://www.wikidata.org/entity/Q6834959|http://www.wikidata.org/entity/Q6085681|http://www.wikidata.org/entity/Q620822|http://www.wikidata.org/entity/Q445638|http://www.wikidata.org/entity/Q269891|http://www.wikidata.org/entity/Q18933"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2009 film by Steve Rash"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192557"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q39597940"}, "Title": {"type": "literal", "value": "Easy - Un viaggio facile facile"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q40741201"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30961643|http://www.wikidata.org/entity/Q4444707|http://www.wikidata.org/entity/Q3876295|http://www.wikidata.org/entity/Q1006624|http://www.wikidata.org/entity/Q455280"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2017 film by Andrea Magnani"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5071818"}, "Title": {"type": "literal", "value": "Change Your Life!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4678851|http://www.wikidata.org/entity/Q7147639"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4678851|http://www.wikidata.org/entity/Q4963857"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q924213|http://www.wikidata.org/entity/Q544692|http://www.wikidata.org/entity/Q3516498"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 comedy mockumentary"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4193712"}, "Title": {"type": "literal", "value": "\u0417\u043e\u043b\u0443\u0448\u043a\u0430"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4173781"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4492737"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15206502|http://www.wikidata.org/entity/Q4503705|http://www.wikidata.org/entity/Q4446033|http://www.wikidata.org/entity/Q4344658|http://www.wikidata.org/entity/Q4273841|http://www.wikidata.org/entity/Q4262141|http://www.wikidata.org/entity/Q4168406|http://www.wikidata.org/entity/Q4146257|http://www.wikidata.org/entity/Q2509356|http://www.wikidata.org/entity/Q2504592|http://www.wikidata.org/entity/Q2391534|http://www.wikidata.org/entity/Q2350283|http://www.wikidata.org/entity/Q2086086|http://www.wikidata.org/entity/Q1988375|http://www.wikidata.org/entity/Q1984215|http://www.wikidata.org/entity/Q1972714|http://www.wikidata.org/entity/Q275875|http://www.wikidata.org/entity/Q194917|http://www.wikidata.org/entity/Q32927"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "113"}, "Description": {"type": "literal", "value": "2002 film by Semyon Gorov"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21644309"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16857528"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16857528"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24009781|http://www.wikidata.org/entity/Q16271982|http://www.wikidata.org/entity/Q3320764|http://www.wikidata.org/entity/Q3033167|http://www.wikidata.org/entity/Q447069"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q2743"}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "2015 film by Zhora Kryzhovnikov"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2892410"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43451452"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q43451597"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q43451597"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film directed by Steffen Weinert"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21170238"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5395326"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1981"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1981 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16251228"}, "Title": {"type": "literal", "value": "\u0c2e\u0c28\u0c02"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7929565"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5673802"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q278980"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q40831"}, "Duration": {"type": "literal", "value": "163"}, "Description": {"type": "literal", "value": "2014 film by Vikram Kumar"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4768004"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56274884"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56290066"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by D Satya Prakash"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55803541"}, "Title": {"type": "literal", "value": "Los Oriyinales"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16302557"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Harold Trompetero"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q40539406"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3376726"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Peter Luisi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15207721"}, "Title": {"type": "literal", "value": "Les Conqu\u00e9rants"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3570535"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3570535"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3570535|http://www.wikidata.org/entity/Q3380483|http://www.wikidata.org/entity/Q3142548|http://www.wikidata.org/entity/Q3074009|http://www.wikidata.org/entity/Q3026971|http://www.wikidata.org/entity/Q2965173|http://www.wikidata.org/entity/Q2964946|http://www.wikidata.org/entity/Q1684748|http://www.wikidata.org/entity/Q1187592|http://www.wikidata.org/entity/Q949017|http://www.wikidata.org/entity/Q434051"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Xabi Molia"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15208154"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q909767"}, "Title": {"type": "literal", "value": "Nacho Libre"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2480656"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2480656"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5041069|http://www.wikidata.org/entity/Q3700033|http://www.wikidata.org/entity/Q483907|http://www.wikidata.org/entity/Q310429|http://www.wikidata.org/entity/Q295148|http://www.wikidata.org/entity/Q256256|http://www.wikidata.org/entity/Q130709"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2006 film by Jared and Jerusha Hess"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1785329|http://www.wikidata.org/entity/Q2330632|http://www.wikidata.org/entity/Q159846"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5232957"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21119970"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21119970"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q483704|http://www.wikidata.org/entity/Q333192"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "2010 South Korean comedy film directed by Kim Yeong-tak"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12809917"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7813033"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q388027"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film by Togan G\u00f6kbakar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1017254"}, "Title": {"type": "literal", "value": "Buscando a Miguel"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6300493"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18202737"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "2007 film by Juan Mat\u00edas Fischer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6945803"}, "Title": {"type": "literal", "value": "My Last Day Without You"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7606260"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6504561|http://www.wikidata.org/entity/Q3341003|http://www.wikidata.org/entity/Q2126049|http://www.wikidata.org/entity/Q2101495|http://www.wikidata.org/entity/Q973783|http://www.wikidata.org/entity/Q68084"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Stefan Schaefer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20817284"}, "Title": {"type": "literal", "value": "Becks letzter Sommer"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1328470"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1328470|http://www.wikidata.org/entity/Q2020663"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15431511|http://www.wikidata.org/entity/Q2879350|http://www.wikidata.org/entity/Q2511663|http://www.wikidata.org/entity/Q2262563|http://www.wikidata.org/entity/Q1610685|http://www.wikidata.org/entity/Q1360326|http://www.wikidata.org/entity/Q104213|http://www.wikidata.org/entity/Q77991|http://www.wikidata.org/entity/Q16218089|http://www.wikidata.org/entity/Q15890988"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2015 film by Frieder Wittich"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21010887"}, "Title": {"type": "literal", "value": "Youth in Oregon"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q371786"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6781118|http://www.wikidata.org/entity/Q5749370|http://www.wikidata.org/entity/Q4717778|http://www.wikidata.org/entity/Q1928335|http://www.wikidata.org/entity/Q718857|http://www.wikidata.org/entity/Q560413|http://www.wikidata.org/entity/Q313650|http://www.wikidata.org/entity/Q310944|http://www.wikidata.org/entity/Q302930|http://www.wikidata.org/entity/Q238924|http://www.wikidata.org/entity/Q236347|http://www.wikidata.org/entity/Q188280|http://www.wikidata.org/entity/Q53651"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Joel David Moore"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2627002"}, "Title": {"type": "literal", "value": "\u042f \u043b\u044e\u0431\u043b\u044e \u0442\u0435\u0431\u044f"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5285779"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1976000"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Dmitry Troitsky"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q53318860"}, "Title": {"type": "literal", "value": "The Kissing Booth"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22101580"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23419103|http://www.wikidata.org/entity/Q22101580"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q53909401|http://www.wikidata.org/entity/Q42329363|http://www.wikidata.org/entity/Q1691699|http://www.wikidata.org/entity/Q231460|http://www.wikidata.org/entity/Q112536"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2018 film by Vince Marcello"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q907311"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18697224"}, "Title": {"type": "literal", "value": "D\u011bdictv\u00ed aneb Kurvasene\u0159\u00edk\u00e1"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12049525"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q676173"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2045924|http://www.wikidata.org/entity/Q1675647|http://www.wikidata.org/entity/Q676173|http://www.wikidata.org/entity/Q555628|http://www.wikidata.org/entity/Q333187|http://www.wikidata.org/entity/Q55729|http://www.wikidata.org/entity/Q62050907|http://www.wikidata.org/entity/Q20852640|http://www.wikidata.org/entity/Q12049496|http://www.wikidata.org/entity/Q12036784|http://www.wikidata.org/entity/Q12035359|http://www.wikidata.org/entity/Q12034157|http://www.wikidata.org/entity/Q12025430|http://www.wikidata.org/entity/Q12023617|http://www.wikidata.org/entity/Q12023314|http://www.wikidata.org/entity/Q12022899|http://www.wikidata.org/entity/Q12022059|http://www.wikidata.org/entity/Q12018970|http://www.wikidata.org/entity/Q11706883|http://www.wikidata.org/entity/Q10853432|http://www.wikidata.org/entity/Q6369300|http://www.wikidata.org/entity/Q3646680|http://www.wikidata.org/entity/Q2069118"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Robert Sedl\u00e1\u010dek"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25489472"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6781975"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6781975"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2004810"}, "Title": {"type": "literal", "value": "Les Barons"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3334684"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3334684"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2921537|http://www.wikidata.org/entity/Q2842675|http://www.wikidata.org/entity/Q930220|http://www.wikidata.org/entity/Q922639|http://www.wikidata.org/entity/Q470843|http://www.wikidata.org/entity/Q274227|http://www.wikidata.org/entity/Q2978146|http://www.wikidata.org/entity/Q3560737|http://www.wikidata.org/entity/Q3334837|http://www.wikidata.org/entity/Q3325972|http://www.wikidata.org/entity/Q3189442|http://www.wikidata.org/entity/Q3167115"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Nabil Ben Yadir"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q693722"}, "Title": {"type": "literal", "value": "Der Sandmann"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3376726"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3376726"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1315719|http://www.wikidata.org/entity/Q813085|http://www.wikidata.org/entity/Q16500131|http://www.wikidata.org/entity/Q1913325|http://www.wikidata.org/entity/Q1672487"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2011 film dircted by Peter Luisi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q609573"}, "Title": {"type": "literal", "value": "Any Way the Wind Blows"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q538160"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q538160"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2045858"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Tom Barman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12303872"}, "Title": {"type": "literal", "value": "Bl\u00e5 m\u00e6nd"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12332904"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12327036|http://www.wikidata.org/entity/Q12332904"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12339254|http://www.wikidata.org/entity/Q12327036|http://www.wikidata.org/entity/Q12326087|http://www.wikidata.org/entity/Q12325666|http://www.wikidata.org/entity/Q12322921|http://www.wikidata.org/entity/Q12319347|http://www.wikidata.org/entity/Q12308738|http://www.wikidata.org/entity/Q12303936|http://www.wikidata.org/entity/Q11995280|http://www.wikidata.org/entity/Q11958211|http://www.wikidata.org/entity/Q6409031|http://www.wikidata.org/entity/Q5586759|http://www.wikidata.org/entity/Q5565254|http://www.wikidata.org/entity/Q41236447|http://www.wikidata.org/entity/Q40523509|http://www.wikidata.org/entity/Q12339791|http://www.wikidata.org/entity/Q4976428|http://www.wikidata.org/entity/Q4947416|http://www.wikidata.org/entity/Q3427596|http://www.wikidata.org/entity/Q3427562|http://www.wikidata.org/entity/Q3374500|http://www.wikidata.org/entity/Q1957570|http://www.wikidata.org/entity/Q1797728|http://www.wikidata.org/entity/Q1776777|http://www.wikidata.org/entity/Q508739|http://www.wikidata.org/entity/Q438580|http://www.wikidata.org/entity/Q433444|http://www.wikidata.org/entity/Q84081"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Rasmus Heide"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4133530"}, "Title": {"type": "literal", "value": "O.K. Garage"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22958823"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22958823"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q521296|http://www.wikidata.org/entity/Q361400|http://www.wikidata.org/entity/Q244234"}, "Published": {"type": "literal", "value": "1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1998 film directed by Brandon Cole"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q179200"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19892507"}, "Title": {"type": "literal", "value": "\u06a9\u0631\u0627\u0686\u06cc \u0633\u06d2 \u0644\u0627\u06c1\u0648\u0631"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21066642"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21063773"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20685519"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Wajahat Rauf"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q35551275"}, "Title": {"type": "literal", "value": "Deli Dumrul"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6068775"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6580242|http://www.wikidata.org/entity/Q6100684|http://www.wikidata.org/entity/Q6086593|http://www.wikidata.org/entity/Q6086507"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Burak Aksak"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29014933"}, "Title": {"type": "literal", "value": "\u041c\u043b\u0435\u0447\u043d\u044b\u0439 \u043f\u0443\u0442\u044c"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7510890"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7510890"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28932244|http://www.wikidata.org/entity/Q2221972|http://www.wikidata.org/entity/Q1964037|http://www.wikidata.org/entity/Q726105|http://www.wikidata.org/entity/Q473580"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2016 film directed by Anna Matison"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16995009"}, "Title": {"type": "literal", "value": "He's Way More Famous Than You"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q356331"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Michael Urie"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24679456"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24679544"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "75"}, "Description": {"type": "literal", "value": "2016 film by Joshua Ligairi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18545025"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q516541"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "1999 film by Nina Di Majo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q39060488"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5006824"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7499231"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by C. S. Amudhan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8046161"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q792734"}, "Title": {"type": "literal", "value": "Futurama: Bender's Big Score"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q388404"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q455743"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3019260|http://www.wikidata.org/entity/Q1174721|http://www.wikidata.org/entity/Q847124|http://www.wikidata.org/entity/Q577160|http://www.wikidata.org/entity/Q531624|http://www.wikidata.org/entity/Q356541|http://www.wikidata.org/entity/Q313266|http://www.wikidata.org/entity/Q296577|http://www.wikidata.org/entity/Q262910|http://www.wikidata.org/entity/Q237530|http://www.wikidata.org/entity/Q236569|http://www.wikidata.org/entity/Q229244|http://www.wikidata.org/entity/Q229013|http://www.wikidata.org/entity/Q210447"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q761469|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2007 film by Dwayne Carey-Hill"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q634019|http://www.wikidata.org/entity/Q3325728|http://www.wikidata.org/entity/Q434841"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55831740"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3770822"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2018 film directed by Giuseppe Loconsole"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3819090"}, "Title": {"type": "literal", "value": "L'estate del mio primo bacio"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3659956"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3080921|http://www.wikidata.org/entity/Q607190|http://www.wikidata.org/entity/Q3984277|http://www.wikidata.org/entity/Q3659956"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3615988|http://www.wikidata.org/entity/Q3423484|http://www.wikidata.org/entity/Q3338344|http://www.wikidata.org/entity/Q1523696|http://www.wikidata.org/entity/Q542061|http://www.wikidata.org/entity/Q3893633|http://www.wikidata.org/entity/Q3846446|http://www.wikidata.org/entity/Q3756510"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2006 film by Carlo Virz\u00ec"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3929491|http://www.wikidata.org/entity/Q3663776"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27887438"}, "Title": {"type": "literal", "value": "Ma famille t'adore d\u00e9j\u00e0!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3190858"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3190858"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3554319|http://www.wikidata.org/entity/Q3479429|http://www.wikidata.org/entity/Q3190858|http://www.wikidata.org/entity/Q3170114|http://www.wikidata.org/entity/Q2941829|http://www.wikidata.org/entity/Q2865083|http://www.wikidata.org/entity/Q1602203|http://www.wikidata.org/entity/Q1031692|http://www.wikidata.org/entity/Q548400|http://www.wikidata.org/entity/Q510056|http://www.wikidata.org/entity/Q459676|http://www.wikidata.org/entity/Q239498|http://www.wikidata.org/entity/Q106592"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2016 film by J\u00e9r\u00f4me Commandeur and Alan Corno"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1544011"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3223278"}, "Title": {"type": "literal", "value": "Le Grand M\u00e9chant Loup"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028738"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028738"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3086968|http://www.wikidata.org/entity/Q2960989|http://www.wikidata.org/entity/Q1187592|http://www.wikidata.org/entity/Q983159|http://www.wikidata.org/entity/Q714765|http://www.wikidata.org/entity/Q462318|http://www.wikidata.org/entity/Q441676|http://www.wikidata.org/entity/Q292756|http://www.wikidata.org/entity/Q239845|http://www.wikidata.org/entity/Q139052|http://www.wikidata.org/entity/Q130092|http://www.wikidata.org/entity/Q21648968|http://www.wikidata.org/entity/Q16645232|http://www.wikidata.org/entity/Q15242604|http://www.wikidata.org/entity/Q3570784|http://www.wikidata.org/entity/Q3106251"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Nicolas Charlet"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6170494"}, "Title": {"type": "literal", "value": "Yul"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1887437"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1998 film by Rodrigo Cort\u00e9s"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16158743"}, "Title": {"type": "literal", "value": "Kevin Hart: Let Me Explain"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2005037"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q618352"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3607591"}, "Title": {"type": "literal", "value": "Al momento giusto"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3765649"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3766915|http://www.wikidata.org/entity/Q3765649|http://www.wikidata.org/entity/Q3763670|http://www.wikidata.org/entity/Q3735305|http://www.wikidata.org/entity/Q3659736|http://www.wikidata.org/entity/Q973621|http://www.wikidata.org/entity/Q552843|http://www.wikidata.org/entity/Q532223|http://www.wikidata.org/entity/Q425826|http://www.wikidata.org/entity/Q269762"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2000 film by Giorgio Panariello"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5432921"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2562608"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2562608"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28070847|http://www.wikidata.org/entity/Q5591498|http://www.wikidata.org/entity/Q3493460"}, "Published": {"type": "literal", "value": "2006|2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2004 film by Pablo Trapero"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4535717"}, "Title": {"type": "literal", "value": "\u042f \u043e\u0441\u0442\u0430\u044e\u0441\u044c"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4330970"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4189312"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1967403"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1200678|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "2007 film by Karen Oganesyan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q499512"}, "Title": {"type": "literal", "value": "Reprise"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q653571"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q653571|http://www.wikidata.org/entity/Q16905873"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12000351|http://www.wikidata.org/entity/Q11996645|http://www.wikidata.org/entity/Q11975046|http://www.wikidata.org/entity/Q11958021|http://www.wikidata.org/entity/Q7820830|http://www.wikidata.org/entity/Q7077298|http://www.wikidata.org/entity/Q5628835|http://www.wikidata.org/entity/Q4976749|http://www.wikidata.org/entity/Q4753762|http://www.wikidata.org/entity/Q22282930|http://www.wikidata.org/entity/Q22282902|http://www.wikidata.org/entity/Q22282836|http://www.wikidata.org/entity/Q17097086|http://www.wikidata.org/entity/Q15766036|http://www.wikidata.org/entity/Q12006179|http://www.wikidata.org/entity/Q4590669|http://www.wikidata.org/entity/Q3655880|http://www.wikidata.org/entity/Q1781068|http://www.wikidata.org/entity/Q457032"}, "Published": {"type": "literal", "value": "2006|2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2006 Norwegian film dramedy directed by Joachim Trier"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11956464"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48671531"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2870425"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1928501"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Jun Lana"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7600659"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q489196"}, "Title": {"type": "literal", "value": "Le Premier Jour du reste de ta vie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2080043"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2080043"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18179162|http://www.wikidata.org/entity/Q3484876|http://www.wikidata.org/entity/Q3473336|http://www.wikidata.org/entity/Q3380199|http://www.wikidata.org/entity/Q3349046|http://www.wikidata.org/entity/Q3166435|http://www.wikidata.org/entity/Q2935113|http://www.wikidata.org/entity/Q2728330|http://www.wikidata.org/entity/Q2161692|http://www.wikidata.org/entity/Q1529138|http://www.wikidata.org/entity/Q1450857|http://www.wikidata.org/entity/Q1352534|http://www.wikidata.org/entity/Q1232804|http://www.wikidata.org/entity/Q1139064|http://www.wikidata.org/entity/Q552639|http://www.wikidata.org/entity/Q533768|http://www.wikidata.org/entity/Q239498|http://www.wikidata.org/entity/Q139052"}, "Published": {"type": "literal", "value": "2009|2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "2008 film by R\u00e9mi Bezan\u00e7on"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16662670"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18703134"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21063505"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7421693|http://www.wikidata.org/entity/Q704859"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film by Sourabh Shrivastava"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18693430"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11221007"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11852159|http://www.wikidata.org/entity/Q5410475|http://www.wikidata.org/entity/Q523373|http://www.wikidata.org/entity/Q363388"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Lauri Nurkse"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q54389189"}, "Title": {"type": "literal", "value": "1991"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3430333"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3430333"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q786347"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 Canadian film by Ricardo Trogi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28843477"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4661239"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29835321"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7494205|http://www.wikidata.org/entity/Q6380219|http://www.wikidata.org/entity/Q2726196|http://www.wikidata.org/entity/Q487198"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Indrajit Nattoji"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4103780"}, "Title": {"type": "literal", "value": "\u0412\u0430\u0440\u0435\u043d\u044c\u0435 \u0438\u0437 \u0441\u0430\u043a\u0443\u0440\u044b"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4072355"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q247997"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2010 film by Yuliya Aug"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4504406"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4024793"}, "Title": {"type": "literal", "value": "Zora la vampira"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13600449|http://www.wikidata.org/entity/Q818736|http://www.wikidata.org/entity/Q13600455"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13600449|http://www.wikidata.org/entity/Q818736|http://www.wikidata.org/entity/Q13600455"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3746372|http://www.wikidata.org/entity/Q3721195|http://www.wikidata.org/entity/Q3667007|http://www.wikidata.org/entity/Q3610432|http://www.wikidata.org/entity/Q3993851|http://www.wikidata.org/entity/Q3948230|http://www.wikidata.org/entity/Q3929190|http://www.wikidata.org/entity/Q3846144|http://www.wikidata.org/entity/Q3806721|http://www.wikidata.org/entity/Q1054843|http://www.wikidata.org/entity/Q1052746|http://www.wikidata.org/entity/Q818736|http://www.wikidata.org/entity/Q555642|http://www.wikidata.org/entity/Q53046|http://www.wikidata.org/entity/Q2708170|http://www.wikidata.org/entity/Q1617703|http://www.wikidata.org/entity/Q1558748|http://www.wikidata.org/entity/Q4000600"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q2137852"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2000 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3397906"}, "Title": {"type": "literal", "value": "Pop Redemption"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15069903"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17521763|http://www.wikidata.org/entity/Q3571253|http://www.wikidata.org/entity/Q3183342|http://www.wikidata.org/entity/Q3118557|http://www.wikidata.org/entity/Q3072706|http://www.wikidata.org/entity/Q2864476|http://www.wikidata.org/entity/Q2833411|http://www.wikidata.org/entity/Q568578|http://www.wikidata.org/entity/Q457089"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2013 film by Martin Le Gall"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15070803"}, "Title": {"type": "literal", "value": "Home Sweet Hell"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21468932"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23647219|http://www.wikidata.org/entity/Q1139709|http://www.wikidata.org/entity/Q471128|http://www.wikidata.org/entity/Q351290|http://www.wikidata.org/entity/Q312133|http://www.wikidata.org/entity/Q230827|http://www.wikidata.org/entity/Q189554|http://www.wikidata.org/entity/Q107933|http://www.wikidata.org/entity/Q105667|http://www.wikidata.org/entity/Q18219"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2015 film by Anthony Burns"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17335620"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5246884"}, "Title": {"type": "literal", "value": "Dear Lemon Lima"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7651091"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7651091"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5372783|http://www.wikidata.org/entity/Q271635|http://www.wikidata.org/entity/Q271620|http://www.wikidata.org/entity/Q267119|http://www.wikidata.org/entity/Q230395|http://www.wikidata.org/entity/Q229410|http://www.wikidata.org/entity/Q146772"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2009 film by Suzi Yoonessi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3019337"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7137400"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q334242"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5922883|http://www.wikidata.org/entity/Q5915284|http://www.wikidata.org/entity/Q5891743|http://www.wikidata.org/entity/Q4842449|http://www.wikidata.org/entity/Q4701619|http://www.wikidata.org/entity/Q3318983|http://www.wikidata.org/entity/Q3182623|http://www.wikidata.org/entity/Q3126405|http://www.wikidata.org/entity/Q471373|http://www.wikidata.org/entity/Q272144|http://www.wikidata.org/entity/Q16051840|http://www.wikidata.org/entity/Q16045605|http://www.wikidata.org/entity/Q7396039|http://www.wikidata.org/entity/Q5957858|http://www.wikidata.org/entity/Q5956402|http://www.wikidata.org/entity/Q5950523|http://www.wikidata.org/entity/Q5941787|http://www.wikidata.org/entity/Q5941239|http://www.wikidata.org/entity/Q5938175|http://www.wikidata.org/entity/Q5938159"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Parisa Bakhtavar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q41657927"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3850996"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3850996"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4007789|http://www.wikidata.org/entity/Q3846163|http://www.wikidata.org/entity/Q1276918"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2017 film by Massimiliano Bruno"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14955426"}, "Title": {"type": "literal", "value": "Dockpojken"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16633322"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16633322"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Johannes Nyholm"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3220218"}, "Title": {"type": "literal", "value": "Le Bal des actrices"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q201985"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q201985"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23773993|http://www.wikidata.org/entity/Q17177187|http://www.wikidata.org/entity/Q16536192|http://www.wikidata.org/entity/Q3571798|http://www.wikidata.org/entity/Q3470839|http://www.wikidata.org/entity/Q3340143|http://www.wikidata.org/entity/Q3293096|http://www.wikidata.org/entity/Q3292625|http://www.wikidata.org/entity/Q3271707|http://www.wikidata.org/entity/Q3219022|http://www.wikidata.org/entity/Q3102524|http://www.wikidata.org/entity/Q3058909|http://www.wikidata.org/entity/Q2911040|http://www.wikidata.org/entity/Q2850375|http://www.wikidata.org/entity/Q2525146|http://www.wikidata.org/entity/Q1677882|http://www.wikidata.org/entity/Q762906|http://www.wikidata.org/entity/Q724208|http://www.wikidata.org/entity/Q573679|http://www.wikidata.org/entity/Q509988|http://www.wikidata.org/entity/Q466926|http://www.wikidata.org/entity/Q456360|http://www.wikidata.org/entity/Q451813|http://www.wikidata.org/entity/Q446842|http://www.wikidata.org/entity/Q432246|http://www.wikidata.org/entity/Q431146|http://www.wikidata.org/entity/Q323112|http://www.wikidata.org/entity/Q292756|http://www.wikidata.org/entity/Q271944|http://www.wikidata.org/entity/Q270005|http://www.wikidata.org/entity/Q240157|http://www.wikidata.org/entity/Q234679|http://www.wikidata.org/entity/Q201985"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Ma\u00efwenn"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20184763"}, "Title": {"type": "literal", "value": "Meine Familie bringt mich um!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1082614"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1245168"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011|2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2010 film by Christiane Balthasar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q58462068"}, "Title": {"type": "literal", "value": "Sei come sei"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3838177|http://www.wikidata.org/entity/Q3785147|http://www.wikidata.org/entity/Q23857049|http://www.wikidata.org/entity/Q16526434"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959138|http://www.wikidata.org/entity/Q583977|http://www.wikidata.org/entity/Q555190|http://www.wikidata.org/entity/Q222894|http://www.wikidata.org/entity/Q3904256|http://www.wikidata.org/entity/Q3851127|http://www.wikidata.org/entity/Q3842287|http://www.wikidata.org/entity/Q3838474|http://www.wikidata.org/entity/Q3804842|http://www.wikidata.org/entity/Q3765371|http://www.wikidata.org/entity/Q1541570|http://www.wikidata.org/entity/Q1374312"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q336144"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2002 Italian film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18387925"}, "Title": {"type": "literal", "value": "\u0924\u0928\u0941 \u0935\u0947\u0921\u094d\u0938 \u092e\u0928\u0941: \u0930\u093f\u091f\u0930\u094d\u0928\u094d\u0938"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16213716"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16202240"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15650292|http://www.wikidata.org/entity/Q7653831|http://www.wikidata.org/entity/Q7286088|http://www.wikidata.org/entity/Q6893409|http://www.wikidata.org/entity/Q6752284|http://www.wikidata.org/entity/Q6323460|http://www.wikidata.org/entity/Q5349205|http://www.wikidata.org/entity/Q3633940|http://www.wikidata.org/entity/Q2737207|http://www.wikidata.org/entity/Q2003979|http://www.wikidata.org/entity/Q1373345|http://www.wikidata.org/entity/Q729982"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 Hindi film by Aanand L. Rai"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5395348"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18674918"}, "Title": {"type": "literal", "value": "Ei kiitos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23039316"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23039316"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11902260|http://www.wikidata.org/entity/Q11868907|http://www.wikidata.org/entity/Q4777696|http://www.wikidata.org/entity/Q513212"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2014 Finnish film directed by Samuli Valkama"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18688864"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1102121"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q996607"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8060276|http://www.wikidata.org/entity/Q702549|http://www.wikidata.org/entity/Q700315|http://www.wikidata.org/entity/Q277193"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Stephen Fung"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4354972"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3008868"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3017644"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22248524|http://www.wikidata.org/entity/Q274656"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16645232|http://www.wikidata.org/entity/Q8322459|http://www.wikidata.org/entity/Q3559579|http://www.wikidata.org/entity/Q3501697|http://www.wikidata.org/entity/Q3479397|http://www.wikidata.org/entity/Q3349268|http://www.wikidata.org/entity/Q3325897|http://www.wikidata.org/entity/Q3219528|http://www.wikidata.org/entity/Q3189294|http://www.wikidata.org/entity/Q3168059|http://www.wikidata.org/entity/Q3017644|http://www.wikidata.org/entity/Q2925445|http://www.wikidata.org/entity/Q2154406|http://www.wikidata.org/entity/Q441676|http://www.wikidata.org/entity/Q274656|http://www.wikidata.org/entity/Q106418"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by David Charhon"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7339191"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12028282"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12028282|http://www.wikidata.org/entity/Q12050215"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q504840|http://www.wikidata.org/entity/Q63159716|http://www.wikidata.org/entity/Q25631056|http://www.wikidata.org/entity/Q12044233|http://www.wikidata.org/entity/Q12036616|http://www.wikidata.org/entity/Q12034156|http://www.wikidata.org/entity/Q12021140|http://www.wikidata.org/entity/Q11985846|http://www.wikidata.org/entity/Q11985792|http://www.wikidata.org/entity/Q11926027|http://www.wikidata.org/entity/Q10861574|http://www.wikidata.org/entity/Q6776420|http://www.wikidata.org/entity/Q6438505|http://www.wikidata.org/entity/Q5825305|http://www.wikidata.org/entity/Q4278011|http://www.wikidata.org/entity/Q3565126|http://www.wikidata.org/entity/Q3501289|http://www.wikidata.org/entity/Q2748381|http://www.wikidata.org/entity/Q546367|http://www.wikidata.org/entity/Q521891"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Karel Jan\u00e1k"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7764899"}, "Title": {"type": "literal", "value": "The Smell of Success"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14087086"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q328790|http://www.wikidata.org/entity/Q207506|http://www.wikidata.org/entity/Q202735|http://www.wikidata.org/entity/Q202475"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Michael Polish"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27665444"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28589416"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28589416"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "2016 film by Anca Miruna L\u0103z\u0103rescu"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q127897"}, "Title": {"type": "literal", "value": "Jersey Girl"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q489831"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q489831|http://www.wikidata.org/entity/Q17123364"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q175535|http://www.wikidata.org/entity/Q168763|http://www.wikidata.org/entity/Q150651|http://www.wikidata.org/entity/Q40715|http://www.wikidata.org/entity/Q40096|http://www.wikidata.org/entity/Q4960|http://www.wikidata.org/entity/Q19300018|http://www.wikidata.org/entity/Q1373450|http://www.wikidata.org/entity/Q1198897|http://www.wikidata.org/entity/Q483118|http://www.wikidata.org/entity/Q464320|http://www.wikidata.org/entity/Q463692|http://www.wikidata.org/entity/Q314421|http://www.wikidata.org/entity/Q267386"}, "Published": {"type": "literal", "value": "2004|2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2004 film by Kevin Smith"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2700070"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q54152512"}, "Title": {"type": "literal", "value": "Zwei im falschen Film"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23794228"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23794228"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q42303667|http://www.wikidata.org/entity/Q15428799|http://www.wikidata.org/entity/Q1892651|http://www.wikidata.org/entity/Q89672"}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Laura Lackmann"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21035716"}, "Title": {"type": "literal", "value": "Drei Stunden"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19275635"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19275635"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23788081|http://www.wikidata.org/entity/Q1097434"}, "Published": {"type": "literal", "value": "2013|2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2012 German film directed by Boris Kunz"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41635406"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15930087"}, "Title": {"type": "literal", "value": "\uae40\uad00\uc7a5 \ub300 \uae40\uad00\uc7a5 \ub300 \uae40\uad00\uc7a5"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4342295"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q594239"}, "Title": {"type": "literal", "value": "Bluff"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3484175|http://www.wikidata.org/entity/Q6755313"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3105869|http://www.wikidata.org/entity/Q3052583|http://www.wikidata.org/entity/Q3022947|http://www.wikidata.org/entity/Q2834584|http://www.wikidata.org/entity/Q2178753|http://www.wikidata.org/entity/Q2067444|http://www.wikidata.org/entity/Q746193|http://www.wikidata.org/entity/Q3484175|http://www.wikidata.org/entity/Q3420693|http://www.wikidata.org/entity/Q3383044|http://www.wikidata.org/entity/Q3340169|http://www.wikidata.org/entity/Q3288258|http://www.wikidata.org/entity/Q3189253"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Simon Olivier Fecteau, Marc-Andr\u00e9 Lavoie"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16958728"}, "Title": {"type": "literal", "value": "Clark: A Gonzomentary"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16728323"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16728323"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Daniel D.W."}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4984290"}, "Title": {"type": "literal", "value": "Colegas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10325104"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1791430"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2012 film by Marcelo Galv\u00e3o"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2120297"}, "Title": {"type": "literal", "value": "\u0422\u0430\u0440\u0438\u0444 \u041d\u043e\u0432\u043e\u0433\u043e\u0434\u043d\u0438\u0439"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4080580"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4253994|http://www.wikidata.org/entity/Q4069842|http://www.wikidata.org/entity/Q2375843|http://www.wikidata.org/entity/Q2115673|http://www.wikidata.org/entity/Q2086086|http://www.wikidata.org/entity/Q1968005|http://www.wikidata.org/entity/Q500404|http://www.wikidata.org/entity/Q4506194|http://www.wikidata.org/entity/Q4371549|http://www.wikidata.org/entity/Q4277765"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2973181|http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Yevgeny Bedarev"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q141336|http://www.wikidata.org/entity/Q4341103"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17515877"}, "Title": {"type": "literal", "value": "Desire Street"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17486474"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17524303|http://www.wikidata.org/entity/Q17486474"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Roberto F. Canuto & Xu Xiaoxi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17525024"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1665634"}, "Title": {"type": "literal", "value": "Jesus liebt mich"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q87432"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q87432"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2012 film by Florian David Fitz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3933658"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7487091"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q184885|http://www.wikidata.org/entity/Q7295837|http://www.wikidata.org/entity/Q3635459|http://www.wikidata.org/entity/Q834338|http://www.wikidata.org/entity/Q312781"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q860626"}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "2012 film by Shakun Batra"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1207592"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60738270"}, "Title": {"type": "literal", "value": "Fisherman's Friends"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19345276"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q38059723|http://www.wikidata.org/entity/Q7027565|http://www.wikidata.org/entity/Q62473152"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q665139|http://www.wikidata.org/entity/Q579571|http://www.wikidata.org/entity/Q360528|http://www.wikidata.org/entity/Q62473166|http://www.wikidata.org/entity/Q20684254|http://www.wikidata.org/entity/Q2476952|http://www.wikidata.org/entity/Q2460289"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q645928"}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "2019 film directed by Chris Foggin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21647443"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6090416"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5255185|http://www.wikidata.org/entity/Q6090416|http://www.wikidata.org/entity/Q6086012"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 Turkish film directed by Sermiyan Midyat"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21639859"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4525700"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4494681|http://www.wikidata.org/entity/Q4077949"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "76"}, "Description": {"type": "literal", "value": "2016 animated film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4403233|http://www.wikidata.org/entity/Q6813261"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7832801"}, "Title": {"type": "literal", "value": "Trailer Town"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1355409"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1355409"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3968110"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Giuseppe Andrews"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q640786"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22979596"}, "Title": {"type": "literal", "value": "Frei nach Plan"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1450153"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q45769929"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1497350|http://www.wikidata.org/entity/Q1083779|http://www.wikidata.org/entity/Q120418|http://www.wikidata.org/entity/Q65116"}, "Published": {"type": "literal", "value": "2008|2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Franziska Meletzky"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3887560"}, "Title": {"type": "literal", "value": "Outing - Fidanzati per sbaglio"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16268866"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16268866"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3934497|http://www.wikidata.org/entity/Q3679876|http://www.wikidata.org/entity/Q3615541|http://www.wikidata.org/entity/Q2677534|http://www.wikidata.org/entity/Q1237265|http://www.wikidata.org/entity/Q544401|http://www.wikidata.org/entity/Q377198"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2013 film by Matteo Vicino"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1707921"}, "Title": {"type": "literal", "value": "Las aventuras de Tadeo Jones"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5785736"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21043125|http://www.wikidata.org/entity/Q8559871|http://www.wikidata.org/entity/Q6988837|http://www.wikidata.org/entity/Q5913666|http://www.wikidata.org/entity/Q5785736"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2012 film by Enrique Gato"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2638120"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17325910"}, "Title": {"type": "literal", "value": "Rico, Oskar und die Tieferschatten"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1974092"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1080816"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20243262|http://www.wikidata.org/entity/Q19839425|http://www.wikidata.org/entity/Q1735906|http://www.wikidata.org/entity/Q1676772|http://www.wikidata.org/entity/Q1605003|http://www.wikidata.org/entity/Q1600639|http://www.wikidata.org/entity/Q1260674|http://www.wikidata.org/entity/Q1173856|http://www.wikidata.org/entity/Q500577|http://www.wikidata.org/entity/Q125596|http://www.wikidata.org/entity/Q104385|http://www.wikidata.org/entity/Q102450|http://www.wikidata.org/entity/Q77027|http://www.wikidata.org/entity/Q69640|http://www.wikidata.org/entity/Q61099|http://www.wikidata.org/entity/Q58065"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q2143665"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2014 film directed by Neele Vollmar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3059180"}, "Title": {"type": "literal", "value": "Et soudain, tout le monde me manque"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3177048"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16185230|http://www.wikidata.org/entity/Q3509994|http://www.wikidata.org/entity/Q3440698|http://www.wikidata.org/entity/Q3286702|http://www.wikidata.org/entity/Q3193265|http://www.wikidata.org/entity/Q3176042|http://www.wikidata.org/entity/Q3073999|http://www.wikidata.org/entity/Q2866947|http://www.wikidata.org/entity/Q2863158|http://www.wikidata.org/entity/Q2834044|http://www.wikidata.org/entity/Q2202755|http://www.wikidata.org/entity/Q1835077|http://www.wikidata.org/entity/Q1398256|http://www.wikidata.org/entity/Q553904|http://www.wikidata.org/entity/Q541690|http://www.wikidata.org/entity/Q460423|http://www.wikidata.org/entity/Q234581"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Jennifer Devold\u00e8re"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12251050"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12250381"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4166476"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Wael Ehsan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3073434"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2790028"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12301078"}, "Title": {"type": "literal", "value": "Alle for to"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12332904"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41730447|http://www.wikidata.org/entity/Q41236284|http://www.wikidata.org/entity/Q40523639|http://www.wikidata.org/entity/Q40012103|http://www.wikidata.org/entity/Q38052468|http://www.wikidata.org/entity/Q37491261|http://www.wikidata.org/entity/Q37491242|http://www.wikidata.org/entity/Q35984275|http://www.wikidata.org/entity/Q20202411|http://www.wikidata.org/entity/Q12333583|http://www.wikidata.org/entity/Q12331410|http://www.wikidata.org/entity/Q12330060|http://www.wikidata.org/entity/Q12327036|http://www.wikidata.org/entity/Q12326235|http://www.wikidata.org/entity/Q12321300|http://www.wikidata.org/entity/Q12320299|http://www.wikidata.org/entity/Q12315378|http://www.wikidata.org/entity/Q12314126|http://www.wikidata.org/entity/Q12313931|http://www.wikidata.org/entity/Q12308861|http://www.wikidata.org/entity/Q12306240|http://www.wikidata.org/entity/Q11958211|http://www.wikidata.org/entity/Q7295091|http://www.wikidata.org/entity/Q1801272|http://www.wikidata.org/entity/Q707827|http://www.wikidata.org/entity/Q456176|http://www.wikidata.org/entity/Q454310"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Rasmus Heide"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1156830"}, "Title": {"type": "literal", "value": "Diary of a Wimpy Kid: Rodrick Rules"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18558"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3093508|http://www.wikidata.org/entity/Q3176515"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7001736|http://www.wikidata.org/entity/Q2895467|http://www.wikidata.org/entity/Q2834731|http://www.wikidata.org/entity/Q2240987|http://www.wikidata.org/entity/Q28974275|http://www.wikidata.org/entity/Q26213699|http://www.wikidata.org/entity/Q15666053|http://www.wikidata.org/entity/Q15456399|http://www.wikidata.org/entity/Q1800733|http://www.wikidata.org/entity/Q1321271|http://www.wikidata.org/entity/Q1139898|http://www.wikidata.org/entity/Q637063|http://www.wikidata.org/entity/Q552896|http://www.wikidata.org/entity/Q491775|http://www.wikidata.org/entity/Q311704|http://www.wikidata.org/entity/Q267400|http://www.wikidata.org/entity/Q234299|http://www.wikidata.org/entity/Q139611|http://www.wikidata.org/entity/Q74689|http://www.wikidata.org/entity/Q74671"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2011 film by David Bowers"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5148553|http://www.wikidata.org/entity/Q3041294"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q39970"}, "Title": {"type": "literal", "value": "Buffy the Vampire Slayer"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2526865"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q298025"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q103784|http://www.wikidata.org/entity/Q93187|http://www.wikidata.org/entity/Q40128|http://www.wikidata.org/entity/Q40067|http://www.wikidata.org/entity/Q18938|http://www.wikidata.org/entity/Q7425090|http://www.wikidata.org/entity/Q4066455|http://www.wikidata.org/entity/Q3935047|http://www.wikidata.org/entity/Q3418797|http://www.wikidata.org/entity/Q2846666|http://www.wikidata.org/entity/Q720581|http://www.wikidata.org/entity/Q483118|http://www.wikidata.org/entity/Q464320|http://www.wikidata.org/entity/Q318165|http://www.wikidata.org/entity/Q294185|http://www.wikidata.org/entity/Q240467|http://www.wikidata.org/entity/Q238394|http://www.wikidata.org/entity/Q213574"}, "Published": {"type": "literal", "value": "1992"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2678111|http://www.wikidata.org/entity/Q2137852|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "1992 American horror comedy film directed by Fran Rubel Kuzui"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434841"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5427260"}, "Title": {"type": "literal", "value": "FUBAR 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3308160"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5236371"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Michael Dowse"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5967890"}, "Title": {"type": "literal", "value": "La primera vez"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8250879"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 film by Borja Cobeaga"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4328873"}, "Title": {"type": "literal", "value": "\u041e \u0447\u0451\u043c \u0435\u0449\u0451 \u0433\u043e\u0432\u043e\u0440\u044f\u0442 \u043c\u0443\u0436\u0447\u0438\u043d\u044b"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4171916"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4494681|http://www.wikidata.org/entity/Q4077949"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4494681|http://www.wikidata.org/entity/Q4254527|http://www.wikidata.org/entity/Q4157470|http://www.wikidata.org/entity/Q4077949"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192881"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2011 film by Dmitriy Dyachenko"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3515359"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16213716"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16202240"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2737207|http://www.wikidata.org/entity/Q1373345|http://www.wikidata.org/entity/Q729982"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "119"}, "Description": {"type": "literal", "value": "2011 film by Anand L. Rai"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q44797343"}, "Title": {"type": "literal", "value": "Stars 80, la suite"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q117147"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q117147"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1886630|http://www.wikidata.org/entity/Q466527|http://www.wikidata.org/entity/Q2926866"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "2017 film by Thomas Langmann"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3211552|http://www.wikidata.org/entity/Q3568109|http://www.wikidata.org/entity/Q2412906"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12118381"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11763135"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4319942"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Lubomyr Levytskyi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5101149"}, "Title": {"type": "literal", "value": "\u0b9a\u0bbf\u0ba9\u0bcd\u0ba9 \u0bae\u0bbe\u0baa\u0bcd\u0bb3\u0bc7"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7420144"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5183212"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7936508|http://www.wikidata.org/entity/Q7532422|http://www.wikidata.org/entity/Q7280194|http://www.wikidata.org/entity/Q4751231|http://www.wikidata.org/entity/Q3228884|http://www.wikidata.org/entity/Q277665"}, "Published": {"type": "literal", "value": "1993"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1993 film by Santhana Bharathi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17087419"}, "Title": {"type": "literal", "value": "WolfCop"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17151048"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17151048"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1189105|http://www.wikidata.org/entity/Q867364"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "76"}, "Description": {"type": "literal", "value": "2014 film directed by Lowell Dean"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15032092"}, "Title": {"type": "literal", "value": "\u0bb5\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0baa\u0bcd\u0baa\u0b9f\u0bbe\u0ba4 \u0bb5\u0bbe\u0bb2\u0bbf\u0baa\u0bb0\u0bcd \u0b9a\u0b99\u0bcd\u0b95\u0bae\u0bcd"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q48699392"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3531959"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film directed by Ponram"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16254646"}, "Title": {"type": "literal", "value": "\u0b9c\u0b95\u0b9c\u0bcd\u0b9c\u0bbe\u0bb2 \u0baa\u0bc1\u0b9c\u0baa\u0bb2 \u0ba4\u0bc6\u0ba9\u0bbe\u0bb2\u0bbf\u0bb0\u0bbe\u0bae\u0ba9\u0bcd"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8062165"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8062165"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q967495"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Yuvaraj Dhayalan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q382871"}, "Title": {"type": "literal", "value": "Russendisko"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2020663"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2020663"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18630023|http://www.wikidata.org/entity/Q17639926|http://www.wikidata.org/entity/Q11973726|http://www.wikidata.org/entity/Q1736478|http://www.wikidata.org/entity/Q1711632|http://www.wikidata.org/entity/Q1660211|http://www.wikidata.org/entity/Q1618848|http://www.wikidata.org/entity/Q1604088|http://www.wikidata.org/entity/Q1475959|http://www.wikidata.org/entity/Q1342322|http://www.wikidata.org/entity/Q1276507|http://www.wikidata.org/entity/Q1265330|http://www.wikidata.org/entity/Q1243529|http://www.wikidata.org/entity/Q1082288|http://www.wikidata.org/entity/Q1079558|http://www.wikidata.org/entity/Q97010|http://www.wikidata.org/entity/Q90820|http://www.wikidata.org/entity/Q89284|http://www.wikidata.org/entity/Q64645"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2012 film by Oliver Ziegenbalg"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3566895"}, "Title": {"type": "literal", "value": "We're the Millers"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2745616"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7612508|http://www.wikidata.org/entity/Q4932430|http://www.wikidata.org/entity/Q3934740|http://www.wikidata.org/entity/Q60341|http://www.wikidata.org/entity/Q21501583"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q980143|http://www.wikidata.org/entity/Q347395|http://www.wikidata.org/entity/Q328790|http://www.wikidata.org/entity/Q1319882|http://www.wikidata.org/entity/Q1319539|http://www.wikidata.org/entity/Q1108449|http://www.wikidata.org/entity/Q271986|http://www.wikidata.org/entity/Q228598|http://www.wikidata.org/entity/Q36195|http://www.wikidata.org/entity/Q32522|http://www.wikidata.org/entity/Q14539|http://www.wikidata.org/entity/Q20684461|http://www.wikidata.org/entity/Q3952813|http://www.wikidata.org/entity/Q2745616|http://www.wikidata.org/entity/Q1985488"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "2013 film by Rawson Marshall Thurber"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q126399"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1518391"}, "Title": {"type": "literal", "value": "Recep \u0130vedik"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7813033"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q388027"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q388027"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2008 film by Togan G\u00f6kbakar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q496718"}, "Title": {"type": "literal", "value": "\uc6f0\ucef4 \ud22c \ub3d9\ub9c9\uace8"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3544725"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7137772"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q490635|http://www.wikidata.org/entity/Q485773|http://www.wikidata.org/entity/Q485387|http://www.wikidata.org/entity/Q482800"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "133"}, "Description": {"type": "literal", "value": "2005 film by Park Gwang-hyun"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1140281"}, "Title": {"type": "literal", "value": "Farsan"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1345960"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1345960|http://www.wikidata.org/entity/Q328503"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2850193|http://www.wikidata.org/entity/Q444215|http://www.wikidata.org/entity/Q328503"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2010 film directed by Josef Fares"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4853260"}, "Title": {"type": "literal", "value": "Bam Margera Presents: Where the \u266f$&% Is Santa?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q297173"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6209915"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6209915|http://www.wikidata.org/entity/Q3390959|http://www.wikidata.org/entity/Q2632345|http://www.wikidata.org/entity/Q2631010|http://www.wikidata.org/entity/Q2453596|http://www.wikidata.org/entity/Q606523|http://www.wikidata.org/entity/Q297173|http://www.wikidata.org/entity/Q25378"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Bam Margera"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5554133"}, "Title": {"type": "literal", "value": "Get Ready to Be Boyzvoiced"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5398817"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5398817"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11975046|http://www.wikidata.org/entity/Q7845435|http://www.wikidata.org/entity/Q6271813|http://www.wikidata.org/entity/Q5398817|http://www.wikidata.org/entity/Q4580829|http://www.wikidata.org/entity/Q3356840"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2000 film by Espen Eckbo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18920927"}, "Title": {"type": "literal", "value": "Toute premi\u00e8re fois"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19630141|http://www.wikidata.org/entity/Q19629665"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19630141|http://www.wikidata.org/entity/Q19629665"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1139064"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by No\u00e9mie Saglio, Maxime Govare"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q913462|http://www.wikidata.org/entity/Q50491222|http://www.wikidata.org/entity/Q50491647"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7800629"}, "Title": {"type": "literal", "value": "Ticked-Off Trannies with Knives"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6404355"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6404355"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13218022|http://www.wikidata.org/entity/Q8003276|http://www.wikidata.org/entity/Q6439763"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q16950433|http://www.wikidata.org/entity/Q2254193|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Israel Luna"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1410288"}, "Title": {"type": "literal", "value": "The Chumscrubber"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4790340"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q206890|http://www.wikidata.org/entity/Q201976|http://www.wikidata.org/entity/Q129978|http://www.wikidata.org/entity/Q28493|http://www.wikidata.org/entity/Q708512|http://www.wikidata.org/entity/Q462327|http://www.wikidata.org/entity/Q431038|http://www.wikidata.org/entity/Q387072|http://www.wikidata.org/entity/Q372311|http://www.wikidata.org/entity/Q297071|http://www.wikidata.org/entity/Q234144|http://www.wikidata.org/entity/Q229560|http://www.wikidata.org/entity/Q229487|http://www.wikidata.org/entity/Q220335|http://www.wikidata.org/entity/Q214223"}, "Published": {"type": "literal", "value": "2006|2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q1146335"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2005 film by Arie Posin"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q514913|http://www.wikidata.org/entity/Q11882864"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29017122"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12327175"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12327175"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q40523755|http://www.wikidata.org/entity/Q40523671|http://www.wikidata.org/entity/Q28836391|http://www.wikidata.org/entity/Q28759508|http://www.wikidata.org/entity/Q12340134|http://www.wikidata.org/entity/Q12339791|http://www.wikidata.org/entity/Q12334659|http://www.wikidata.org/entity/Q12332888|http://www.wikidata.org/entity/Q12327678|http://www.wikidata.org/entity/Q12326235|http://www.wikidata.org/entity/Q12325345|http://www.wikidata.org/entity/Q12324627|http://www.wikidata.org/entity/Q12307120|http://www.wikidata.org/entity/Q6858699|http://www.wikidata.org/entity/Q4976428|http://www.wikidata.org/entity/Q4946759|http://www.wikidata.org/entity/Q443662"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Mikkel Munch-Fals"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7561089"}, "Title": {"type": "literal", "value": "Song for Marion"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5308381"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5308381"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2290416|http://www.wikidata.org/entity/Q347879|http://www.wikidata.org/entity/Q312380|http://www.wikidata.org/entity/Q255323|http://www.wikidata.org/entity/Q77298|http://www.wikidata.org/entity/Q19957132|http://www.wikidata.org/entity/Q7405046|http://www.wikidata.org/entity/Q7288487|http://www.wikidata.org/entity/Q4911128|http://www.wikidata.org/entity/Q2830582"}, "Published": {"type": "literal", "value": "2012|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2012 film by Paul Andrew Williams"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2708940"}, "Title": {"type": "literal", "value": "The Hangover Part III"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q362824"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q362824|http://www.wikidata.org/entity/Q1138605"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q328790|http://www.wikidata.org/entity/Q320204|http://www.wikidata.org/entity/Q311962|http://www.wikidata.org/entity/Q290370|http://www.wikidata.org/entity/Q232642|http://www.wikidata.org/entity/Q229048|http://www.wikidata.org/entity/Q224026|http://www.wikidata.org/entity/Q215072|http://www.wikidata.org/entity/Q205707|http://www.wikidata.org/entity/Q139325|http://www.wikidata.org/entity/Q110379|http://www.wikidata.org/entity/Q24852497|http://www.wikidata.org/entity/Q7106276|http://www.wikidata.org/entity/Q7087462|http://www.wikidata.org/entity/Q3964712|http://www.wikidata.org/entity/Q2395069|http://www.wikidata.org/entity/Q440910"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2013 American comedy film directed by Todd Phillips"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q621364"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19872548"}, "Title": {"type": "literal", "value": "War Dogs"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q362824"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6163503|http://www.wikidata.org/entity/Q362824"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26202699|http://www.wikidata.org/entity/Q24699885|http://www.wikidata.org/entity/Q16199296|http://www.wikidata.org/entity/Q5578715|http://www.wikidata.org/entity/Q2885767|http://www.wikidata.org/entity/Q698173|http://www.wikidata.org/entity/Q351812|http://www.wikidata.org/entity/Q313388|http://www.wikidata.org/entity/Q267330|http://www.wikidata.org/entity/Q205707|http://www.wikidata.org/entity/Q144643"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q645928|http://www.wikidata.org/entity/Q369747|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "2016 film by Todd Phillips"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q126399"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16484609"}, "Title": {"type": "literal", "value": "12 \u043c\u0435\u0441\u044f\u0446\u0435\u0432"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4078806"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4217961"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Aleksandr Barshak"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30879091"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15064148"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4234108"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4503115|http://www.wikidata.org/entity/Q4494015|http://www.wikidata.org/entity/Q4396438|http://www.wikidata.org/entity/Q4276601|http://www.wikidata.org/entity/Q4089110|http://www.wikidata.org/entity/Q3918727|http://www.wikidata.org/entity/Q26688"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "film directed by Oleg Assadulin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q41141185"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q107359"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Anja Jacobs"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55106060"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18141469"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by No Zin-soo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q303862"}, "Title": {"type": "literal", "value": "Waiting..."}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7340362"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7340362"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3853048|http://www.wikidata.org/entity/Q2830641|http://www.wikidata.org/entity/Q1721796|http://www.wikidata.org/entity/Q1109470|http://www.wikidata.org/entity/Q956021|http://www.wikidata.org/entity/Q471128|http://www.wikidata.org/entity/Q443672|http://www.wikidata.org/entity/Q359969|http://www.wikidata.org/entity/Q347395|http://www.wikidata.org/entity/Q342636|http://www.wikidata.org/entity/Q326440|http://www.wikidata.org/entity/Q298672|http://www.wikidata.org/entity/Q298173|http://www.wikidata.org/entity/Q241841|http://www.wikidata.org/entity/Q192682|http://www.wikidata.org/entity/Q164328|http://www.wikidata.org/entity/Q4491|http://www.wikidata.org/entity/Q17385901"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2005 film by Rob McKittrick"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q515869|http://www.wikidata.org/entity/Q6458647"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16184882"}, "Title": {"type": "literal", "value": "\uc88b\uc9c0 \uc544\ub2c8\ud55c\uac00"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6180299"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15630925|http://www.wikidata.org/entity/Q12614022|http://www.wikidata.org/entity/Q12595906|http://www.wikidata.org/entity/Q6652730|http://www.wikidata.org/entity/Q625534|http://www.wikidata.org/entity/Q490380|http://www.wikidata.org/entity/Q489930|http://www.wikidata.org/entity/Q486077|http://www.wikidata.org/entity/Q484338|http://www.wikidata.org/entity/Q196223"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Jeong Yun-cheol"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17165619"}, "Title": {"type": "literal", "value": "Klovn 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12327179"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q40523806|http://www.wikidata.org/entity/Q35985836|http://www.wikidata.org/entity/Q12333677|http://www.wikidata.org/entity/Q12328938|http://www.wikidata.org/entity/Q12319661|http://www.wikidata.org/entity/Q11989253|http://www.wikidata.org/entity/Q11213025|http://www.wikidata.org/entity/Q3427562|http://www.wikidata.org/entity/Q3424845|http://www.wikidata.org/entity/Q3362230|http://www.wikidata.org/entity/Q3362157|http://www.wikidata.org/entity/Q3073540|http://www.wikidata.org/entity/Q1344849|http://www.wikidata.org/entity/Q659009|http://www.wikidata.org/entity/Q445772|http://www.wikidata.org/entity/Q435097"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2015 film by Mikkel N\u00f8rgaard"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15673305"}, "Title": {"type": "literal", "value": "Brasserie Romantiek"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2486371"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3054299"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15873529|http://www.wikidata.org/entity/Q4791802|http://www.wikidata.org/entity/Q4771719|http://www.wikidata.org/entity/Q3429052|http://www.wikidata.org/entity/Q3155241|http://www.wikidata.org/entity/Q2919623|http://www.wikidata.org/entity/Q2649944|http://www.wikidata.org/entity/Q2103750|http://www.wikidata.org/entity/Q2094858|http://www.wikidata.org/entity/Q1880662|http://www.wikidata.org/entity/Q607613|http://www.wikidata.org/entity/Q545546"}, "Published": {"type": "literal", "value": "2015|2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Jo\u00ebl Vanhoebrouck"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48313910"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q231237"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q231237"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Karen Gillan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q59725888"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19610277"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Odunlade Adekola"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4658072"}, "Title": {"type": "literal", "value": "Ma\u00f0ur eins og \u00e9g"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7386482"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q445921"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by R\u00f3bert Ingi Douglas"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5648513"}, "Title": {"type": "literal", "value": "Hank and Mike"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6791656"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Matthiew Klinck"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60737704"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5346042"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Edward af Sill\u00e9n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27051174"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27051175"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "9"}, "Description": {"type": "literal", "value": "2016 documentary film directed by Waqar Ahmed"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6506901"}, "Title": {"type": "literal", "value": "Le Fear"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16203491"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16203491"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Jason Croot"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q58332779"}, "Title": {"type": "literal", "value": "Outside the Box"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2086284"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q58332929|http://www.wikidata.org/entity/Q2086284"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16856585|http://www.wikidata.org/entity/Q3765217|http://www.wikidata.org/entity/Q3497953|http://www.wikidata.org/entity/Q2530909|http://www.wikidata.org/entity/Q2522116|http://www.wikidata.org/entity/Q1808962|http://www.wikidata.org/entity/Q1292000|http://www.wikidata.org/entity/Q1279210|http://www.wikidata.org/entity/Q546106|http://www.wikidata.org/entity/Q106781|http://www.wikidata.org/entity/Q86336|http://www.wikidata.org/entity/Q70775|http://www.wikidata.org/entity/Q67881"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "2015 film by Philip Koch"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3662018"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2029648"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q684569"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3932639|http://www.wikidata.org/entity/Q3779018|http://www.wikidata.org/entity/Q3609087|http://www.wikidata.org/entity/Q2481109|http://www.wikidata.org/entity/Q1523677|http://www.wikidata.org/entity/Q599728|http://www.wikidata.org/entity/Q463732|http://www.wikidata.org/entity/Q156769"}, "Published": {"type": "literal", "value": "1976"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "1976 film by Oreste Coltellacci"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q57000010"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1908650"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q457268"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Mathieu Sapin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14514268"}, "Title": {"type": "literal", "value": "Paradise"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q230795"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q230795"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q232646"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Diablo Cody"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18347017"}, "Title": {"type": "literal", "value": "Fino a qui tutto bene"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3938128"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3938128"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2014 film by Roan Johnson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5269646"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12498974"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12499385"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5261649"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Monty Tiwa"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7317381"}, "Title": {"type": "literal", "value": "Returning Mickey Stern"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6833634"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6833634"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1706646"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Michael Prywes"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1769215"}, "Title": {"type": "literal", "value": "Vatertage \u2013 Opa \u00fcber Nacht"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1663184"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q63352080|http://www.wikidata.org/entity/Q2129236"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2012 film by Ingo Rasper"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16619313"}, "Title": {"type": "literal", "value": "Un fidanzato per mia moglie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3703572"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2014 film directed by Davide Marengo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23796643"}, "Title": {"type": "literal", "value": "The Lego Movie 2: The Second Part"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2507259"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q283700|http://www.wikidata.org/entity/Q3378803"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2019 film by Mike Mitchell"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1063455|http://www.wikidata.org/entity/Q3556262|http://www.wikidata.org/entity/Q47517081"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3546637"}, "Title": {"type": "literal", "value": "\u05d0\u05d9\u05e9 \u05dc\u05dc\u05d0 \u05e1\u05dc\u05d5\u05dc\u05e8\u05d9|Ish lelo selolari"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3470752"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3470752"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17556244|http://www.wikidata.org/entity/Q3515717|http://www.wikidata.org/entity/Q3421370|http://www.wikidata.org/entity/Q3257588|http://www.wikidata.org/entity/Q2874905|http://www.wikidata.org/entity/Q2842786"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2011 film by Sameh Zoabi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48527656"}, "Title": {"type": "literal", "value": "\u0c24\u0c4a\u0c32\u0c3f\u0c2a\u0c4d\u0c30\u0c47\u0c2e"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60690885"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27657032|http://www.wikidata.org/entity/Q19664637|http://www.wikidata.org/entity/Q17386171|http://www.wikidata.org/entity/Q17088940|http://www.wikidata.org/entity/Q16233459|http://www.wikidata.org/entity/Q15240676|http://www.wikidata.org/entity/Q467973"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 Telugu film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7586316"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3764194"}, "Title": {"type": "literal", "value": "\u0c0a\u0c38\u0c30\u0c35\u0c46\u0c32\u0c4d\u0c32\u0c3f"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7645646"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7909020"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7459917|http://www.wikidata.org/entity/Q3498996|http://www.wikidata.org/entity/Q278006|http://www.wikidata.org/entity/Q151798"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q40831"}, "Duration": {"type": "literal", "value": "162"}, "Description": {"type": "literal", "value": "2011 film by Surender Reddy"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7586316"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q783014"}, "Title": {"type": "literal", "value": "Tan de repente"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2086388"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2086388"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28100332|http://www.wikidata.org/entity/Q27949867|http://www.wikidata.org/entity/Q5724214|http://www.wikidata.org/entity/Q5413865|http://www.wikidata.org/entity/Q4750432|http://www.wikidata.org/entity/Q2883273"}, "Published": {"type": "literal", "value": "2003|2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2002 film by Diego Lerman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q902631"}, "Title": {"type": "literal", "value": "Starbuck"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1410263"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3295592"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3369573|http://www.wikidata.org/entity/Q3287863|http://www.wikidata.org/entity/Q3034866|http://www.wikidata.org/entity/Q2853678|http://www.wikidata.org/entity/Q534045|http://www.wikidata.org/entity/Q533225|http://www.wikidata.org/entity/Q445319|http://www.wikidata.org/entity/Q386593"}, "Published": {"type": "literal", "value": "2012|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2011 Canadian comedy film directed by Ken Scott"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21638226"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22045638"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3210335"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18008969|http://www.wikidata.org/entity/Q4516120|http://www.wikidata.org/entity/Q4494610|http://www.wikidata.org/entity/Q4425048|http://www.wikidata.org/entity/Q4079472|http://www.wikidata.org/entity/Q3033167|http://www.wikidata.org/entity/Q1385036|http://www.wikidata.org/entity/Q536524"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2015 film by Arman Gevorgyan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4504080"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55087336"}, "Title": {"type": "literal", "value": "Oh My Dear 3|\u090f \u092e\u0947\u0930\u094b \u0939\u091c\u0941\u0930 \u0969"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6190977"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6190977"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55104345|http://www.wikidata.org/entity/Q54957869|http://www.wikidata.org/entity/Q42199740|http://www.wikidata.org/entity/Q21932018|http://www.wikidata.org/entity/Q18638565"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "125"}, "Description": {"type": "literal", "value": "2019 film by Jharana Thapa"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q57334772"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21032710"}, "Title": {"type": "literal", "value": "The Meddler"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3259437"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3259437"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20973967|http://www.wikidata.org/entity/Q7422078|http://www.wikidata.org/entity/Q7301721|http://www.wikidata.org/entity/Q7291588|http://www.wikidata.org/entity/Q5056524|http://www.wikidata.org/entity/Q2844564|http://www.wikidata.org/entity/Q1384181|http://www.wikidata.org/entity/Q1132666|http://www.wikidata.org/entity/Q794599|http://www.wikidata.org/entity/Q673007|http://www.wikidata.org/entity/Q591238|http://www.wikidata.org/entity/Q567830|http://www.wikidata.org/entity/Q466016|http://www.wikidata.org/entity/Q438065|http://www.wikidata.org/entity/Q431362|http://www.wikidata.org/entity/Q313789|http://www.wikidata.org/entity/Q261579|http://www.wikidata.org/entity/Q234220|http://www.wikidata.org/entity/Q230686|http://www.wikidata.org/entity/Q228717|http://www.wikidata.org/entity/Q150482|http://www.wikidata.org/entity/Q133050"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 American comedy-drama film directed by Lorene Scafaria"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3306795"}, "Title": {"type": "literal", "value": "Mes stars et moi"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3216065"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3216065"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3189767|http://www.wikidata.org/entity/Q3164788|http://www.wikidata.org/entity/Q2966467|http://www.wikidata.org/entity/Q2959173|http://www.wikidata.org/entity/Q2896630|http://www.wikidata.org/entity/Q2863316|http://www.wikidata.org/entity/Q2830755|http://www.wikidata.org/entity/Q1775644|http://www.wikidata.org/entity/Q1387804|http://www.wikidata.org/entity/Q983159|http://www.wikidata.org/entity/Q715111|http://www.wikidata.org/entity/Q586054|http://www.wikidata.org/entity/Q465157|http://www.wikidata.org/entity/Q462376|http://www.wikidata.org/entity/Q346102|http://www.wikidata.org/entity/Q235115|http://www.wikidata.org/entity/Q106709|http://www.wikidata.org/entity/Q106458|http://www.wikidata.org/entity/Q106418|http://www.wikidata.org/entity/Q23767045|http://www.wikidata.org/entity/Q3474928|http://www.wikidata.org/entity/Q3369492|http://www.wikidata.org/entity/Q3340143|http://www.wikidata.org/entity/Q3216065"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film directed by L\u00e6titia Colombani"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q50778392"}, "Title": {"type": "literal", "value": "Frau2 sucht HappyEnd"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1291686"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1291686"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q109299|http://www.wikidata.org/entity/Q2277239|http://www.wikidata.org/entity/Q1975375|http://www.wikidata.org/entity/Q1673612|http://www.wikidata.org/entity/Q1529478|http://www.wikidata.org/entity/Q1514890|http://www.wikidata.org/entity/Q1374262|http://www.wikidata.org/entity/Q104747|http://www.wikidata.org/entity/Q98696|http://www.wikidata.org/entity/Q77968|http://www.wikidata.org/entity/Q70727|http://www.wikidata.org/entity/Q1251791|http://www.wikidata.org/entity/Q1051271|http://www.wikidata.org/entity/Q993135|http://www.wikidata.org/entity/Q120509"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 film by Edward Berger"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q33396925"}, "Title": {"type": "literal", "value": "V\u0161echno bude fajn"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60372117"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60372117"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q62050907|http://www.wikidata.org/entity/Q60167749|http://www.wikidata.org/entity/Q33107577"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Robin Kvapil"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15745145"}, "Title": {"type": "literal", "value": "Zoran, il mio nipote scemo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16577144"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1042623|http://www.wikidata.org/entity/Q82660"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2013 film by Matteo Oleotto"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q33588255"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28529218"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28529218"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q33283704|http://www.wikidata.org/entity/Q28548642"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 short film directed by Jodi Cilley"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61754809"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20873158"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15275292|http://www.wikidata.org/entity/Q2529116|http://www.wikidata.org/entity/Q1115481|http://www.wikidata.org/entity/Q271923"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Erwin van den Eshof"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4280097"}, "Title": {"type": "literal", "value": "\u041c\u0430\u043c\u044b"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4330970|http://www.wikidata.org/entity/Q4219916|http://www.wikidata.org/entity/Q4074981|http://www.wikidata.org/entity/Q4065391|http://www.wikidata.org/entity/Q2375843"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4330970|http://www.wikidata.org/entity/Q4065391"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2626768|http://www.wikidata.org/entity/Q2473251|http://www.wikidata.org/entity/Q2375843|http://www.wikidata.org/entity/Q1975389|http://www.wikidata.org/entity/Q1968005|http://www.wikidata.org/entity/Q1710233|http://www.wikidata.org/entity/Q473580|http://www.wikidata.org/entity/Q4494015|http://www.wikidata.org/entity/Q4163746|http://www.wikidata.org/entity/Q4123391|http://www.wikidata.org/entity/Q3740637|http://www.wikidata.org/entity/Q3313664|http://www.wikidata.org/entity/Q2782350|http://www.wikidata.org/entity/Q291942|http://www.wikidata.org/entity/Q203653"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2012 film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4038074"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61642164"}, "Title": {"type": "literal", "value": "La Flor: Segunda Parte"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5997811"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "327"}, "Description": {"type": "literal", "value": "2018 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7136506"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1718178"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6505245|http://www.wikidata.org/entity/Q6414811|http://www.wikidata.org/entity/Q6317475|http://www.wikidata.org/entity/Q3676086|http://www.wikidata.org/entity/Q3276006|http://www.wikidata.org/entity/Q2341578"}, "Published": {"type": "literal", "value": "1992"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1992 film by Kovelamudi Bapayya"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3935194"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3605038"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3605038"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3894259|http://www.wikidata.org/entity/Q3879056|http://www.wikidata.org/entity/Q3876852|http://www.wikidata.org/entity/Q3808037|http://www.wikidata.org/entity/Q3776045|http://www.wikidata.org/entity/Q3763524|http://www.wikidata.org/entity/Q3697467|http://www.wikidata.org/entity/Q3659638|http://www.wikidata.org/entity/Q1121806"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2012 film by Adamo Antonacci"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10342058"}, "Title": {"type": "literal", "value": "Os Penetras"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4759560"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2012 film by Andrucha Waddington"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20926268"}, "Title": {"type": "literal", "value": "Kevin Hart: What Now?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2005037"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q618352"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15137380|http://www.wikidata.org/entity/Q1033016|http://www.wikidata.org/entity/Q618352|http://www.wikidata.org/entity/Q469145|http://www.wikidata.org/entity/Q328790|http://www.wikidata.org/entity/Q272019"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 documentary film directed by Leslie Small"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16488007"}, "Title": {"type": "literal", "value": "Amori elementari"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18640187"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2014 film by Sergio Basso"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q680971"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3506295"}, "Title": {"type": "literal", "value": "\u0926\u0947\u0935-\u0921\u0940"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2839609"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2839609"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3192216|http://www.wikidata.org/entity/Q511589|http://www.wikidata.org/entity/Q487198"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q599558|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "144"}, "Description": {"type": "literal", "value": "2009 film by Anurag Kashyap"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3547550"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56279554"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23418649"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Ksshitij Chaudhary"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21009499"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19545053"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q514769"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Emma Luchini"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q958097"}, "Title": {"type": "literal", "value": "Da bing xiao jiang"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16239524"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q36970"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1087550|http://www.wikidata.org/entity/Q970882|http://www.wikidata.org/entity/Q251068|http://www.wikidata.org/entity/Q36970"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2011 film by Ding Sheng"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1955514"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2663764"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3054299"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3916779|http://www.wikidata.org/entity/Q3309950|http://www.wikidata.org/entity/Q2778822|http://www.wikidata.org/entity/Q2606423|http://www.wikidata.org/entity/Q2352394|http://www.wikidata.org/entity/Q2306338|http://www.wikidata.org/entity/Q2299306|http://www.wikidata.org/entity/Q2216334|http://www.wikidata.org/entity/Q2139517|http://www.wikidata.org/entity/Q2130507|http://www.wikidata.org/entity/Q2103868|http://www.wikidata.org/entity/Q1819814|http://www.wikidata.org/entity/Q545546|http://www.wikidata.org/entity/Q514769"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192881"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Geoffrey Enthoven"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q129874"}, "Title": {"type": "literal", "value": "Wrong"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q453691"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q453691"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22002466|http://www.wikidata.org/entity/Q7307946|http://www.wikidata.org/entity/Q5084321|http://www.wikidata.org/entity/Q3591196|http://www.wikidata.org/entity/Q2438427|http://www.wikidata.org/entity/Q1364933|http://www.wikidata.org/entity/Q953735|http://www.wikidata.org/entity/Q336824|http://www.wikidata.org/entity/Q241867|http://www.wikidata.org/entity/Q220335"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2012 French-American independent comedy film directed by Mr. Oizo"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1032540"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q495850"}, "Title": {"type": "literal", "value": "The Croods"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6415415|http://www.wikidata.org/entity/Q201641"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6415415|http://www.wikidata.org/entity/Q201641"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2013 American animated film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q500088"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2646683"}, "Title": {"type": "literal", "value": "Bling Bling"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5925685"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29055"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29055"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001\u00a0Da Ali G Show home video directed by James Bobin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60537548"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4016123"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13427396|http://www.wikidata.org/entity/Q4016123"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19403273|http://www.wikidata.org/entity/Q3894444|http://www.wikidata.org/entity/Q2704786|http://www.wikidata.org/entity/Q1237265|http://www.wikidata.org/entity/Q1041563|http://www.wikidata.org/entity/Q334170|http://www.wikidata.org/entity/Q254500"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Volfango De Biasi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3304113"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7637241"}, "Title": {"type": "literal", "value": "Verano"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25748680"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6112356"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 Chilean drama film written and directed by Jos\u00e9 Luis Torres Leiva"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15714197"}, "Title": {"type": "literal", "value": "Esercizi di stile"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4016123|http://www.wikidata.org/entity/Q3905288|http://www.wikidata.org/entity/Q2641366|http://www.wikidata.org/entity/Q976428|http://www.wikidata.org/entity/Q554468|http://www.wikidata.org/entity/Q531797|http://www.wikidata.org/entity/Q53034|http://www.wikidata.org/entity/Q53026"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1396080|http://www.wikidata.org/entity/Q697471|http://www.wikidata.org/entity/Q530176"}, "Published": {"type": "literal", "value": "1996"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "1996 film by Volfango De Biasi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q74535"}, "Title": {"type": "literal", "value": "The ABCs of Death"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5836844|http://www.wikidata.org/entity/Q5658534|http://www.wikidata.org/entity/Q4679987|http://www.wikidata.org/entity/Q4023328|http://www.wikidata.org/entity/Q4022902|http://www.wikidata.org/entity/Q3961130|http://www.wikidata.org/entity/Q3527989|http://www.wikidata.org/entity/Q3428903|http://www.wikidata.org/entity/Q2895597|http://www.wikidata.org/entity/Q2846120|http://www.wikidata.org/entity/Q2638166|http://www.wikidata.org/entity/Q1318058|http://www.wikidata.org/entity/Q17289068|http://www.wikidata.org/entity/Q16582250|http://www.wikidata.org/entity/Q16198328|http://www.wikidata.org/entity/Q15511907|http://www.wikidata.org/entity/Q6756212|http://www.wikidata.org/entity/Q6271517|http://www.wikidata.org/entity/Q935646|http://www.wikidata.org/entity/Q636817|http://www.wikidata.org/entity/Q382387|http://www.wikidata.org/entity/Q265991|http://www.wikidata.org/entity/Q60633865|http://www.wikidata.org/entity/Q18002672|http://www.wikidata.org/entity/Q18002669|http://www.wikidata.org/entity/Q18002667|http://www.wikidata.org/entity/Q18002645|http://www.wikidata.org/entity/Q17289127"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6271517|http://www.wikidata.org/entity/Q5658534|http://www.wikidata.org/entity/Q5836844|http://www.wikidata.org/entity/Q6756212|http://www.wikidata.org/entity/Q382387|http://www.wikidata.org/entity/Q2638166|http://www.wikidata.org/entity/Q3144727|http://www.wikidata.org/entity/Q3527989|http://www.wikidata.org/entity/Q4022902|http://www.wikidata.org/entity/Q4023328|http://www.wikidata.org/entity/Q3961130|http://www.wikidata.org/entity/Q15511907|http://www.wikidata.org/entity/Q16086745|http://www.wikidata.org/entity/Q17289068|http://www.wikidata.org/entity/Q18002667|http://www.wikidata.org/entity/Q18002672|http://www.wikidata.org/entity/Q18002669"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2419067|http://www.wikidata.org/entity/Q22250184|http://www.wikidata.org/entity/Q11376461|http://www.wikidata.org/entity/Q16832568"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q336144|http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "124"}, "Description": {"type": "literal", "value": "2012 anthology film with 26 segments"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q665342"}, "Title": {"type": "literal", "value": "Superstar"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2364234"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3289982|http://www.wikidata.org/entity/Q2364234|http://www.wikidata.org/entity/Q3479362"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3134621|http://www.wikidata.org/entity/Q3084132|http://www.wikidata.org/entity/Q2895292|http://www.wikidata.org/entity/Q2861185|http://www.wikidata.org/entity/Q17521763|http://www.wikidata.org/entity/Q17353975|http://www.wikidata.org/entity/Q16534621|http://www.wikidata.org/entity/Q13634875|http://www.wikidata.org/entity/Q3501539|http://www.wikidata.org/entity/Q3384770|http://www.wikidata.org/entity/Q3308651|http://www.wikidata.org/entity/Q3169536|http://www.wikidata.org/entity/Q3169474|http://www.wikidata.org/entity/Q3180346|http://www.wikidata.org/entity/Q2831829|http://www.wikidata.org/entity/Q1871396|http://www.wikidata.org/entity/Q983159|http://www.wikidata.org/entity/Q274722|http://www.wikidata.org/entity/Q236157"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "2012 film by Xavier Giannoli"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4777955"}, "Title": {"type": "literal", "value": "Anuvahood"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11849729"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11849729|http://www.wikidata.org/entity/Q8000017|http://www.wikidata.org/entity/Q6168451|http://www.wikidata.org/entity/Q5442801|http://www.wikidata.org/entity/Q1336963|http://www.wikidata.org/entity/Q726074"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5897543|http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 British urban comedy film directed by Adam Deacon"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14907655"}, "Title": {"type": "literal", "value": "Rock the Casbah"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q452016"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q452016"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3326116|http://www.wikidata.org/entity/Q3269248|http://www.wikidata.org/entity/Q2824177|http://www.wikidata.org/entity/Q1751820|http://www.wikidata.org/entity/Q462256|http://www.wikidata.org/entity/Q444193|http://www.wikidata.org/entity/Q266539|http://www.wikidata.org/entity/Q177993|http://www.wikidata.org/entity/Q170515"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by La\u00efla Marrakchi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q59335918"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29368920"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film directed by Petra Volpe"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29032471"}, "Title": {"type": "literal", "value": "Small Crimes"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18921688"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by E. L. Katz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22251894"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16944494"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16944494"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q42760915|http://www.wikidata.org/entity/Q15110806"}, "Published": {"type": "literal", "value": "2017|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2016 Saudi Arabian drama-comedy film directed by Mahmoud Sabbagh"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1413358"}, "Title": {"type": "literal", "value": "\u0420\u043e\u0441\u0441\u0438\u044f 88"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4078134"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4494015"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q459435|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2009 film by Pavel Bardin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q690651"}, "Title": {"type": "literal", "value": "De gr\u00f8nne slagtere"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q491314"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q491314"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12331627|http://www.wikidata.org/entity/Q12327197|http://www.wikidata.org/entity/Q11213025|http://www.wikidata.org/entity/Q5714417|http://www.wikidata.org/entity/Q4938062|http://www.wikidata.org/entity/Q2559831|http://www.wikidata.org/entity/Q1797671|http://www.wikidata.org/entity/Q1687501|http://www.wikidata.org/entity/Q952621|http://www.wikidata.org/entity/Q533028|http://www.wikidata.org/entity/Q441562|http://www.wikidata.org/entity/Q383754|http://www.wikidata.org/entity/Q323563|http://www.wikidata.org/entity/Q294647"}, "Published": {"type": "literal", "value": "2004|2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2003 film by Anders Thomas Jensen"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1375196"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2171533"}, "Title": {"type": "literal", "value": "Rubber"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q453691"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q453691"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3098765|http://www.wikidata.org/entity/Q2385752|http://www.wikidata.org/entity/Q2057091|http://www.wikidata.org/entity/Q1371096|http://www.wikidata.org/entity/Q1312328|http://www.wikidata.org/entity/Q1264331|http://www.wikidata.org/entity/Q967797|http://www.wikidata.org/entity/Q953735|http://www.wikidata.org/entity/Q546511|http://www.wikidata.org/entity/Q449082|http://www.wikidata.org/entity/Q376182|http://www.wikidata.org/entity/Q290063"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q53094"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "2010 film by Mr. Oizo"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1032540|http://www.wikidata.org/entity/Q8073"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15162647"}, "Title": {"type": "literal", "value": "Being Homer Simpson"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2863092"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2863092"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15163991|http://www.wikidata.org/entity/Q15069937|http://www.wikidata.org/entity/Q3564267|http://www.wikidata.org/entity/Q3380527|http://www.wikidata.org/entity/Q3369780|http://www.wikidata.org/entity/Q3369242|http://www.wikidata.org/entity/Q3169506|http://www.wikidata.org/entity/Q2966353|http://www.wikidata.org/entity/Q2939873|http://www.wikidata.org/entity/Q2929989|http://www.wikidata.org/entity/Q2863227|http://www.wikidata.org/entity/Q2863092|http://www.wikidata.org/entity/Q366272"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 French short film directed by Arnaud Demanche"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3791142"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3659956"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3659956|http://www.wikidata.org/entity/Q3615460"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3846018|http://www.wikidata.org/entity/Q3694222|http://www.wikidata.org/entity/Q3679866|http://www.wikidata.org/entity/Q3610255|http://www.wikidata.org/entity/Q772282|http://www.wikidata.org/entity/Q437927"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2011 film by Carlo Virz\u00ec"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3209729"}, "Title": {"type": "literal", "value": "A Cara que Mereces"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1890376"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5042824"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Miguel Gomes"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20737040"}, "Title": {"type": "literal", "value": "\u00c4kkil\u00e4ht\u00f6"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1261910"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1261910|http://www.wikidata.org/entity/Q23040635|http://www.wikidata.org/entity/Q16298620"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17381341|http://www.wikidata.org/entity/Q16990877|http://www.wikidata.org/entity/Q16989612|http://www.wikidata.org/entity/Q11852080|http://www.wikidata.org/entity/Q6303995|http://www.wikidata.org/entity/Q30585073"}, "Published": {"type": "literal", "value": "2017|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q628165"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2016 Finnish film directed by Tiina Lymi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2740839"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25397557"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3418669"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3418669"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3418669"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Ramzy Bedia"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19060256"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11243629"}, "Title": {"type": "literal", "value": "Brak"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12028530"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12028530"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60410374|http://www.wikidata.org/entity/Q19362142|http://www.wikidata.org/entity/Q17399685|http://www.wikidata.org/entity/Q12018961|http://www.wikidata.org/entity/Q11911163|http://www.wikidata.org/entity/Q2354248|http://www.wikidata.org/entity/Q807866|http://www.wikidata.org/entity/Q349116"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Karel Sp\u011bv\u00e1\u010dek"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5410747"}, "Title": {"type": "literal", "value": "S\u00faper ni\u00f1o bully"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3876520"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Nicol\u00e1s L\u00f3pez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20439586"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1470086"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1470086"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1120300|http://www.wikidata.org/entity/Q760856|http://www.wikidata.org/entity/Q540574|http://www.wikidata.org/entity/Q11977314|http://www.wikidata.org/entity/Q1501266|http://www.wikidata.org/entity/Q1470086"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Attila \u00c1rpa"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56683249"}, "Title": {"type": "literal", "value": "Sing Song"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3316225"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2017 film directed by Mischa Kamp"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60737609"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2514422"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3048171"}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Nat Faxon"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23017119"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19867575"}, "Title": {"type": "literal", "value": "Central Intelligence"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2745616"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2745616|http://www.wikidata.org/entity/Q739062"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q57614|http://www.wikidata.org/entity/Q10738|http://www.wikidata.org/entity/Q2502878|http://www.wikidata.org/entity/Q720754|http://www.wikidata.org/entity/Q618352|http://www.wikidata.org/entity/Q526654|http://www.wikidata.org/entity/Q302491|http://www.wikidata.org/entity/Q292214|http://www.wikidata.org/entity/Q284636|http://www.wikidata.org/entity/Q231203|http://www.wikidata.org/entity/Q229048"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4984974|http://www.wikidata.org/entity/Q2297927|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "2016 film by Rawson Marshall Thurber"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3986092"}, "Title": {"type": "literal", "value": "The Brass Teapot"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16217494"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16239393|http://www.wikidata.org/entity/Q5186320|http://www.wikidata.org/entity/Q2907990|http://www.wikidata.org/entity/Q2278533|http://www.wikidata.org/entity/Q2009145|http://www.wikidata.org/entity/Q794599|http://www.wikidata.org/entity/Q560896|http://www.wikidata.org/entity/Q466051|http://www.wikidata.org/entity/Q317024|http://www.wikidata.org/entity/Q288404|http://www.wikidata.org/entity/Q234434|http://www.wikidata.org/entity/Q192887"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2012 film by Ramaa Mosley"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48045800"}, "Title": {"type": "literal", "value": "\u0639\u0642\u062f\u0629 \u0627\u0644\u062e\u0648\u0627\u062c\u0629"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28529605"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20425820|http://www.wikidata.org/entity/Q12238122|http://www.wikidata.org/entity/Q12207885"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Peter Mimi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15522237"}, "Title": {"type": "literal", "value": "Love, Rosie|Els imprevistos de l'amor"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q104373"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21809765"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1139996|http://www.wikidata.org/entity/Q900719|http://www.wikidata.org/entity/Q366833|http://www.wikidata.org/entity/Q256042|http://www.wikidata.org/entity/Q229184|http://www.wikidata.org/entity/Q16235151|http://www.wikidata.org/entity/Q15069989"}, "Published": {"type": "literal", "value": "2014|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2014 English-German romantic comedy-drama film by Christian Ditter"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q564960|http://www.wikidata.org/entity/Q17076072"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4913767"}, "Title": {"type": "literal", "value": "Bin Bulaye Baraati"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5071373"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7403863"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7418358|http://www.wikidata.org/entity/Q6113138|http://www.wikidata.org/entity/Q3496304|http://www.wikidata.org/entity/Q3031096|http://www.wikidata.org/entity/Q2362968|http://www.wikidata.org/entity/Q80309"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Chandrakant Singh"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q39047231"}, "Title": {"type": "literal", "value": "Murder On The Blackpool Express"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7518602"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6162254"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1702422"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Simon Delaney"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21450480"}, "Title": {"type": "literal", "value": "Storks"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3037956|http://www.wikidata.org/entity/Q2624066"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2624066"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6382703|http://www.wikidata.org/entity/Q3371986|http://www.wikidata.org/entity/Q314640|http://www.wikidata.org/entity/Q248179|http://www.wikidata.org/entity/Q223830|http://www.wikidata.org/entity/Q196560|http://www.wikidata.org/entity/Q32522|http://www.wikidata.org/entity/Q25890"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2016 American animated film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1123917"}, "Title": {"type": "literal", "value": "Prime"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1983058"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1983058"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q873|http://www.wikidata.org/entity/Q4817144|http://www.wikidata.org/entity/Q2919454|http://www.wikidata.org/entity/Q1687792|http://www.wikidata.org/entity/Q454272|http://www.wikidata.org/entity/Q316602|http://www.wikidata.org/entity/Q127273|http://www.wikidata.org/entity/Q125017|http://www.wikidata.org/entity/Q4293"}, "Published": {"type": "literal", "value": "2006|2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q860626"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2005 romantic comedy movie directed by Ben Younger"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2702789"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q994137"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4707732"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6503922|http://www.wikidata.org/entity/Q6130710|http://www.wikidata.org/entity/Q1321598"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Pang Ho-cheung"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q94048"}, "Title": {"type": "literal", "value": "Soccer Dog: The Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1310139"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5000854|http://www.wikidata.org/entity/Q1433672|http://www.wikidata.org/entity/Q711898|http://www.wikidata.org/entity/Q372296|http://www.wikidata.org/entity/Q266361"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1999 film by Tony Giglio"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12199935"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12179146"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4120152|http://www.wikidata.org/entity/Q2827647"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Ahmed Yousry"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q893014"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q893129"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7967359|http://www.wikidata.org/entity/Q893129|http://www.wikidata.org/entity/Q704130|http://www.wikidata.org/entity/Q381074"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 Chinese film directed by Xu Zheng"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7417065"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q652149"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q652149"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2568389|http://www.wikidata.org/entity/Q2001803|http://www.wikidata.org/entity/Q1992008"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "125"}, "Description": {"type": "literal", "value": "2006 Bollywood comedy film directed by Anees Bazmee"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1643915"}, "Title": {"type": "literal", "value": "Schule"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1893857"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1893857"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17537133|http://www.wikidata.org/entity/Q1985803|http://www.wikidata.org/entity/Q1966176|http://www.wikidata.org/entity/Q1927678|http://www.wikidata.org/entity/Q1901626|http://www.wikidata.org/entity/Q1808962|http://www.wikidata.org/entity/Q1633322|http://www.wikidata.org/entity/Q1260298|http://www.wikidata.org/entity/Q1252195|http://www.wikidata.org/entity/Q1081259|http://www.wikidata.org/entity/Q697729|http://www.wikidata.org/entity/Q302094|http://www.wikidata.org/entity/Q124985|http://www.wikidata.org/entity/Q121582|http://www.wikidata.org/entity/Q108942|http://www.wikidata.org/entity/Q100506|http://www.wikidata.org/entity/Q95943|http://www.wikidata.org/entity/Q75187|http://www.wikidata.org/entity/Q72555|http://www.wikidata.org/entity/Q58592"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2000 film by Marco Petry"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q51158552"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50364741"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q44738929"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Ne\u00efl Beloufa"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16864688"}, "Title": {"type": "literal", "value": "Les Combattants"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19544017"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18179055|http://www.wikidata.org/entity/Q16832022|http://www.wikidata.org/entity/Q16637371|http://www.wikidata.org/entity/Q3568783|http://www.wikidata.org/entity/Q2925481|http://www.wikidata.org/entity/Q31353"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2014 film by Thomas Cailley"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7801837"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3041947"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3041947"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Dylan Verrechia"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q35868033"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4065391"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4065391"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4410803|http://www.wikidata.org/entity/Q4399708"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2017 film directed by Sarik Andreasyan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61450772"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2037657"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2020"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Tim Hill"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1785329|http://www.wikidata.org/entity/Q3313794|http://www.wikidata.org/entity/Q7135302|http://www.wikidata.org/entity/Q388234"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20000957"}, "Title": {"type": "literal", "value": "7 Chinese Brothers"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4931990"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4931990"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q313705"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Bob Byington"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25338550"}, "Title": {"type": "literal", "value": "We Love You, Sally Carmichael!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q347408"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3016681"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Christopher Gorham"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20649227"}, "Title": {"type": "literal", "value": "Free Fire"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2895597"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24532629|http://www.wikidata.org/entity/Q2895597"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28039572|http://www.wikidata.org/entity/Q6834458|http://www.wikidata.org/entity/Q3726488|http://www.wikidata.org/entity/Q2791895|http://www.wikidata.org/entity/Q705780|http://www.wikidata.org/entity/Q563177|http://www.wikidata.org/entity/Q520001|http://www.wikidata.org/entity/Q512353|http://www.wikidata.org/entity/Q374273|http://www.wikidata.org/entity/Q202589|http://www.wikidata.org/entity/Q29328"}, "Published": {"type": "literal", "value": "2017|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2678111|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2016 film by Ben Wheatley"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1108255"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q44727126"}, "Title": {"type": "literal", "value": "Gloria"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4250213"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q62002870|http://www.wikidata.org/entity/Q4250213"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q244234|http://www.wikidata.org/entity/Q16542977|http://www.wikidata.org/entity/Q331720|http://www.wikidata.org/entity/Q235198|http://www.wikidata.org/entity/Q234144|http://www.wikidata.org/entity/Q189351|http://www.wikidata.org/entity/Q120366|http://www.wikidata.org/entity/Q80405|http://www.wikidata.org/entity/Q309555"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2018 Chilean-American film written and directed by Sebasti\u00e1n Lelio"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19366218|http://www.wikidata.org/entity/Q5448895"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15629706"}, "Title": {"type": "literal", "value": "Pit\u00e4\u00e4k\u00f6 mun kaikki hoitaa?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15629649"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15878269"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11892451|http://www.wikidata.org/entity/Q11866494"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "7"}, "Description": {"type": "literal", "value": "2012 Finnish short film directed by Selma Vilhunen"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18689250"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1475778"}, "Title": {"type": "literal", "value": "Oh Boy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q126730"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q126730"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q53954433|http://www.wikidata.org/entity/Q21032067|http://www.wikidata.org/entity/Q2124501|http://www.wikidata.org/entity/Q1892651|http://www.wikidata.org/entity/Q1735906|http://www.wikidata.org/entity/Q1700270|http://www.wikidata.org/entity/Q1401649|http://www.wikidata.org/entity/Q567109|http://www.wikidata.org/entity/Q500577|http://www.wikidata.org/entity/Q111879|http://www.wikidata.org/entity/Q111070|http://www.wikidata.org/entity/Q106177|http://www.wikidata.org/entity/Q103544|http://www.wikidata.org/entity/Q102606|http://www.wikidata.org/entity/Q95673|http://www.wikidata.org/entity/Q70775|http://www.wikidata.org/entity/Q70727|http://www.wikidata.org/entity/Q67917|http://www.wikidata.org/entity/Q26763"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13209138|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2012 German tragicomedy film directed by Jan-Ole Gerster"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7729669"}, "Title": {"type": "literal", "value": "Delivery Man"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1410263"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1410263|http://www.wikidata.org/entity/Q3295592"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q218718|http://www.wikidata.org/entity/Q200566|http://www.wikidata.org/entity/Q107730|http://www.wikidata.org/entity/Q489|http://www.wikidata.org/entity/Q20993795|http://www.wikidata.org/entity/Q20027497|http://www.wikidata.org/entity/Q18043858|http://www.wikidata.org/entity/Q15965642|http://www.wikidata.org/entity/Q11685825|http://www.wikidata.org/entity/Q2907990|http://www.wikidata.org/entity/Q2791895|http://www.wikidata.org/entity/Q1898813|http://www.wikidata.org/entity/Q503706|http://www.wikidata.org/entity/Q235333"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2013 film by Ken Scott"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q497155|http://www.wikidata.org/entity/Q3634702|http://www.wikidata.org/entity/Q192557"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6152971"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4707732"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Pang Ho-cheung"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19622545"}, "Title": {"type": "literal", "value": "Saltwater"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q734207"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2655230"}, "Published": {"type": "literal", "value": "2001|2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2000 film by Conor McPherson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21445453"}, "Title": {"type": "literal", "value": "You\u2019re Ugly Too"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21693736"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21693736"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17350908|http://www.wikidata.org/entity/Q1508070|http://www.wikidata.org/entity/Q358032"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "81"}, "Description": {"type": "literal", "value": "2015 film directed by Mark Noonan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10468734"}, "Title": {"type": "literal", "value": "Den ryska d\u00f6rren"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5630110"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56435721"}, "Title": {"type": "literal", "value": "Auditorium 6"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q53820435"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 comedic horror film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2497065"}, "Title": {"type": "literal", "value": "Unter Umst\u00e4nden verliebt"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2370977"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15791708"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Sven Bohse"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1219329"}, "Title": {"type": "literal", "value": "O Palha\u00e7o"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4289700"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10325181|http://www.wikidata.org/entity/Q4289700"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7155242|http://www.wikidata.org/entity/Q5613873|http://www.wikidata.org/entity/Q4289700"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2011 film by Selton Mello"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1520721"}, "Title": {"type": "literal", "value": "\u091c\u092c \u0935\u0940 \u092e\u0947\u091f"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3149575"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319491|http://www.wikidata.org/entity/Q184885"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "142"}, "Description": {"type": "literal", "value": "2007 film by Imtiaz Ali"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55272444"}, "Title": {"type": "literal", "value": "Diamantino"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19955958"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5042824"}, "Published": {"type": "literal", "value": "2019|2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Gabriel Abrantes"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q52229110"}, "Title": {"type": "literal", "value": "Vorsicht vor Leuten"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q692308"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q47484898|http://www.wikidata.org/entity/Q111498"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20829652|http://www.wikidata.org/entity/Q15623309|http://www.wikidata.org/entity/Q11974288|http://www.wikidata.org/entity/Q2372579|http://www.wikidata.org/entity/Q2343105|http://www.wikidata.org/entity/Q1594355|http://www.wikidata.org/entity/Q1175671|http://www.wikidata.org/entity/Q1067500|http://www.wikidata.org/entity/Q102606|http://www.wikidata.org/entity/Q100841"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Arne Feldhusen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2455827"}, "Title": {"type": "literal", "value": "Without a Paddle: Nature's Calling"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1332531"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4741274|http://www.wikidata.org/entity/Q52345"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2009 film by Ellory Elkayem"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18703125"}, "Title": {"type": "literal", "value": "Dyke Hard"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19629905"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Bitte Andersson"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10495189"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3319369"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3428387"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2006 film by Berni Goldblat"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20851383"}, "Title": {"type": "literal", "value": "Schmitke"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q57155677"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q57155677"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56705918|http://www.wikidata.org/entity/Q15990501|http://www.wikidata.org/entity/Q12019405|http://www.wikidata.org/entity/Q11911163|http://www.wikidata.org/entity/Q2343282|http://www.wikidata.org/entity/Q1577817|http://www.wikidata.org/entity/Q26734"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1200678|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2014 film by \u0160t\u011bp\u00e1n Altrichter"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2933985"}, "Title": {"type": "literal", "value": "California Dreamin'"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q638096"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29455061|http://www.wikidata.org/entity/Q12720629|http://www.wikidata.org/entity/Q7386866|http://www.wikidata.org/entity/Q6761146|http://www.wikidata.org/entity/Q351247|http://www.wikidata.org/entity/Q310511"}, "Published": {"type": "literal", "value": "2009|2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "155"}, "Description": {"type": "literal", "value": "2007 film by Cristian Nemescu"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27590871"}, "Title": {"type": "literal", "value": "Paddington 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7151786"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7518724|http://www.wikidata.org/entity/Q7151786"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q185079|http://www.wikidata.org/entity/Q167774|http://www.wikidata.org/entity/Q163286|http://www.wikidata.org/entity/Q155775|http://www.wikidata.org/entity/Q19960315|http://www.wikidata.org/entity/Q15639406|http://www.wikidata.org/entity/Q3472307|http://www.wikidata.org/entity/Q1333118|http://www.wikidata.org/entity/Q816568|http://www.wikidata.org/entity/Q732661|http://www.wikidata.org/entity/Q563177|http://www.wikidata.org/entity/Q269835|http://www.wikidata.org/entity/Q261981|http://www.wikidata.org/entity/Q259679|http://www.wikidata.org/entity/Q254886|http://www.wikidata.org/entity/Q241962|http://www.wikidata.org/entity/Q233563|http://www.wikidata.org/entity/Q228747|http://www.wikidata.org/entity/Q206659"}, "Published": {"type": "literal", "value": "2017|2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2017 film by Paul King"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2415769|http://www.wikidata.org/entity/Q2450848|http://www.wikidata.org/entity/Q3700394"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23822706"}, "Title": {"type": "literal", "value": "El preg\u00f3n"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23663310"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q503459"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Dani de la Orden"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q498287"}, "Title": {"type": "literal", "value": "Hansel and Gretel: Witch Hunters"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2669356"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2669356"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q227123|http://www.wikidata.org/entity/Q190794|http://www.wikidata.org/entity/Q171687|http://www.wikidata.org/entity/Q97010|http://www.wikidata.org/entity/Q23365|http://www.wikidata.org/entity/Q6900353|http://www.wikidata.org/entity/Q4919937|http://www.wikidata.org/entity/Q4346488|http://www.wikidata.org/entity/Q3179653|http://www.wikidata.org/entity/Q2419067|http://www.wikidata.org/entity/Q616982|http://www.wikidata.org/entity/Q523373|http://www.wikidata.org/entity/Q295148|http://www.wikidata.org/entity/Q255323"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q2678111|http://www.wikidata.org/entity/Q909586|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q224700"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2013 film by Tommy Wirkola"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q159846|http://www.wikidata.org/entity/Q179200|http://www.wikidata.org/entity/Q1111024|http://www.wikidata.org/entity/Q3098606"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18405973"}, "Title": {"type": "literal", "value": "\u0413\u043e\u0440\u044c\u043a\u043e! 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16857528"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4503115"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8812380|http://www.wikidata.org/entity/Q192881"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2014 film by Zhora Kryzhovnikov"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2892410"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56884163"}, "Title": {"type": "literal", "value": "Co kdyby...?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56871589|http://www.wikidata.org/entity/Q526473|http://www.wikidata.org/entity/Q361032"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56871589|http://www.wikidata.org/entity/Q526473|http://www.wikidata.org/entity/Q361032"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1972"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "8"}, "Description": {"type": "literal", "value": "1972 animated film by Milo\u0161 Macourek, Adolf Born and Jaroslav Doubrava"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11081466"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48965024"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7489427"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7916220|http://www.wikidata.org/entity/Q7282998|http://www.wikidata.org/entity/Q465815"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Sharat Katariya"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1696916"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43079072"}, "Title": {"type": "literal", "value": "If I Were You"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q43079418"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q235384|http://www.wikidata.org/entity/Q228931"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "2012 film by Joan Carr-Wiggin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56302295"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1160223"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film directed by Daniel Burman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q466443"}, "Title": {"type": "literal", "value": "\u0915\u092d\u0940 \u0916\u0941\u0936\u0940 \u0915\u092d\u0940 \u0917\u093c\u092e"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q468442"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q468442"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3785692|http://www.wikidata.org/entity/Q3632832|http://www.wikidata.org/entity/Q2839215|http://www.wikidata.org/entity/Q2347167|http://www.wikidata.org/entity/Q983571|http://www.wikidata.org/entity/Q485557|http://www.wikidata.org/entity/Q464932|http://www.wikidata.org/entity/Q233619|http://www.wikidata.org/entity/Q184885|http://www.wikidata.org/entity/Q157803|http://www.wikidata.org/entity/Q147395|http://www.wikidata.org/entity/Q9570|http://www.wikidata.org/entity/Q9535"}, "Published": {"type": "literal", "value": "2003|2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "210"}, "Description": {"type": "literal", "value": "2001 Indian film directed by Karan Johar"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1207592"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55474374"}, "Title": {"type": "literal", "value": "Hello Ladies: The Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23814"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6513524|http://www.wikidata.org/entity/Q5531483"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16223299|http://www.wikidata.org/entity/Q3936377|http://www.wikidata.org/entity/Q708320|http://www.wikidata.org/entity/Q348952|http://www.wikidata.org/entity/Q298995|http://www.wikidata.org/entity/Q290156|http://www.wikidata.org/entity/Q281951|http://www.wikidata.org/entity/Q268271|http://www.wikidata.org/entity/Q37459|http://www.wikidata.org/entity/Q23814"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film directed by Stephen Merchant"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24807373"}, "Title": {"type": "literal", "value": "Well Wishes"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24743212"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24743212"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24852042"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Anderson Boyd"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21682626"}, "Title": {"type": "literal", "value": "Rico, Oskar und der Diebstahlstein"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1974092"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1903917"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23061313|http://www.wikidata.org/entity/Q21206530|http://www.wikidata.org/entity/Q19839425|http://www.wikidata.org/entity/Q11956074|http://www.wikidata.org/entity/Q1676772|http://www.wikidata.org/entity/Q1527740|http://www.wikidata.org/entity/Q1260674|http://www.wikidata.org/entity/Q559891|http://www.wikidata.org/entity/Q160305|http://www.wikidata.org/entity/Q125596|http://www.wikidata.org/entity/Q114624|http://www.wikidata.org/entity/Q111879|http://www.wikidata.org/entity/Q103544|http://www.wikidata.org/entity/Q91504|http://www.wikidata.org/entity/Q69092|http://www.wikidata.org/entity/Q62510|http://www.wikidata.org/entity/Q61099|http://www.wikidata.org/entity/Q58065"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2016 film by Neele Vollmar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5853907"}, "Title": {"type": "literal", "value": "FBI: Frikis Buscan Incordiar"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5927636"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Javier C\u00e0rdenas"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5600270"}, "Title": {"type": "literal", "value": "Great World of Sound"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5181627"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3368538"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Craig Zobel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15040917"}, "Title": {"type": "literal", "value": "22 Jump Street"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13638984|http://www.wikidata.org/entity/Q3378803"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q470282|http://www.wikidata.org/entity/Q313388|http://www.wikidata.org/entity/Q7357051|http://www.wikidata.org/entity/Q7146670|http://www.wikidata.org/entity/Q2262850"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q508404|http://www.wikidata.org/entity/Q444146|http://www.wikidata.org/entity/Q383930|http://www.wikidata.org/entity/Q374065|http://www.wikidata.org/entity/Q313388|http://www.wikidata.org/entity/Q1616538|http://www.wikidata.org/entity/Q1319744|http://www.wikidata.org/entity/Q1267727|http://www.wikidata.org/entity/Q16198576|http://www.wikidata.org/entity/Q15542608|http://www.wikidata.org/entity/Q12859526|http://www.wikidata.org/entity/Q6838621|http://www.wikidata.org/entity/Q6755544|http://www.wikidata.org/entity/Q17417513|http://www.wikidata.org/entity/Q15633838|http://www.wikidata.org/entity/Q4491|http://www.wikidata.org/entity/Q14537|http://www.wikidata.org/entity/Q533781|http://www.wikidata.org/entity/Q960809|http://www.wikidata.org/entity/Q1112005|http://www.wikidata.org/entity/Q173637|http://www.wikidata.org/entity/Q212064|http://www.wikidata.org/entity/Q295148|http://www.wikidata.org/entity/Q220308|http://www.wikidata.org/entity/Q276273|http://www.wikidata.org/entity/Q1985488|http://www.wikidata.org/entity/Q3400399|http://www.wikidata.org/entity/Q3952080"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q4984974|http://www.wikidata.org/entity/Q1146335"}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "2014 film by Phil Lord, Christopher Miller"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q179200|http://www.wikidata.org/entity/Q557387|http://www.wikidata.org/entity/Q2702789|http://www.wikidata.org/entity/Q2856187"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60852134"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q686366"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Judith Davis"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1997051"}, "Title": {"type": "literal", "value": "A Fistful of Fingers"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q522057"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q522057"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1994"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q622548|http://www.wikidata.org/entity/Q172980|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "78"}, "Description": {"type": "literal", "value": "1994 film by Edgar Wright"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20856821"}, "Title": {"type": "literal", "value": "All Creatures Big and Small"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22988070|http://www.wikidata.org/entity/Q1532740"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2015 film by Toby Genkel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4020832"}, "Title": {"type": "literal", "value": "Workers - Pronti a tutto"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3837102"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19788328"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3893815|http://www.wikidata.org/entity/Q3840387|http://www.wikidata.org/entity/Q3832540|http://www.wikidata.org/entity/Q3749631|http://www.wikidata.org/entity/Q3702561|http://www.wikidata.org/entity/Q3701841|http://www.wikidata.org/entity/Q3639426|http://www.wikidata.org/entity/Q3615555|http://www.wikidata.org/entity/Q3610339|http://www.wikidata.org/entity/Q808664|http://www.wikidata.org/entity/Q559570|http://www.wikidata.org/entity/Q512146|http://www.wikidata.org/entity/Q457841"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Lorenzo Vignolo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3319810"}, "Title": {"type": "literal", "value": "Finn on the Fly"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22236380"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7383872|http://www.wikidata.org/entity/Q2844979|http://www.wikidata.org/entity/Q714071"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Mark Jean"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3831473"}, "Title": {"type": "literal", "value": "Lezioni di cioccolato"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3680001"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13427396"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3972384|http://www.wikidata.org/entity/Q3804842|http://www.wikidata.org/entity/Q3783619|http://www.wikidata.org/entity/Q3338344|http://www.wikidata.org/entity/Q3320729|http://www.wikidata.org/entity/Q1223109|http://www.wikidata.org/entity/Q808664|http://www.wikidata.org/entity/Q455945"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2007 film by Claudio Cupellini"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3663776"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4905600"}, "Title": {"type": "literal", "value": "Big Dreams Little Tokyo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5228393"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5228393"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Dave Boyle"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4249907"}, "Title": {"type": "literal", "value": "Sandheden om m\u00e6nd"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2867634"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2867634|http://www.wikidata.org/entity/Q12332906|http://www.wikidata.org/entity/Q12323855"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12315378|http://www.wikidata.org/entity/Q12310008|http://www.wikidata.org/entity/Q12305454|http://www.wikidata.org/entity/Q11996468|http://www.wikidata.org/entity/Q5983810|http://www.wikidata.org/entity/Q3896343|http://www.wikidata.org/entity/Q3066309|http://www.wikidata.org/entity/Q2913347|http://www.wikidata.org/entity/Q5882039|http://www.wikidata.org/entity/Q5810625|http://www.wikidata.org/entity/Q5251588|http://www.wikidata.org/entity/Q4968553|http://www.wikidata.org/entity/Q1967835|http://www.wikidata.org/entity/Q1797671|http://www.wikidata.org/entity/Q1712212|http://www.wikidata.org/entity/Q1341671|http://www.wikidata.org/entity/Q984186|http://www.wikidata.org/entity/Q707827|http://www.wikidata.org/entity/Q508739|http://www.wikidata.org/entity/Q491315|http://www.wikidata.org/entity/Q468499|http://www.wikidata.org/entity/Q307929|http://www.wikidata.org/entity/Q155142|http://www.wikidata.org/entity/Q115988|http://www.wikidata.org/entity/Q12333487|http://www.wikidata.org/entity/Q12333484|http://www.wikidata.org/entity/Q12332888|http://www.wikidata.org/entity/Q12328974|http://www.wikidata.org/entity/Q12328505|http://www.wikidata.org/entity/Q12325827|http://www.wikidata.org/entity/Q12324648|http://www.wikidata.org/entity/Q12322113|http://www.wikidata.org/entity/Q12320462|http://www.wikidata.org/entity/Q12316399|http://www.wikidata.org/entity/Q12316265|http://www.wikidata.org/entity/Q41236196|http://www.wikidata.org/entity/Q40523840|http://www.wikidata.org/entity/Q38052532|http://www.wikidata.org/entity/Q37494099|http://www.wikidata.org/entity/Q37491150|http://www.wikidata.org/entity/Q35985647|http://www.wikidata.org/entity/Q28498467|http://www.wikidata.org/entity/Q12339206|http://www.wikidata.org/entity/Q12335233|http://www.wikidata.org/entity/Q12333677"}, "Published": {"type": "literal", "value": "2012|2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2010 film by Nikolaj Arcel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7831441"}, "Title": {"type": "literal", "value": "Traci Townsend"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5181397"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1755605|http://www.wikidata.org/entity/Q1719161|http://www.wikidata.org/entity/Q941922|http://www.wikidata.org/entity/Q374181"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Craig Ross, Jr."}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q967335"}, "Title": {"type": "literal", "value": "Beur sur la ville"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3032767"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3106333"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3499140|http://www.wikidata.org/entity/Q3483072|http://www.wikidata.org/entity/Q3471319|http://www.wikidata.org/entity/Q3460880|http://www.wikidata.org/entity/Q3440076|http://www.wikidata.org/entity/Q3418669|http://www.wikidata.org/entity/Q3397928|http://www.wikidata.org/entity/Q3386401|http://www.wikidata.org/entity/Q3362788|http://www.wikidata.org/entity/Q3286441|http://www.wikidata.org/entity/Q3196011|http://www.wikidata.org/entity/Q3192383|http://www.wikidata.org/entity/Q3189442|http://www.wikidata.org/entity/Q3189294|http://www.wikidata.org/entity/Q3158341|http://www.wikidata.org/entity/Q3155677|http://www.wikidata.org/entity/Q3018752|http://www.wikidata.org/entity/Q2964183|http://www.wikidata.org/entity/Q2910406|http://www.wikidata.org/entity/Q2905002|http://www.wikidata.org/entity/Q2869522|http://www.wikidata.org/entity/Q2602323|http://www.wikidata.org/entity/Q2050238|http://www.wikidata.org/entity/Q1450857|http://www.wikidata.org/entity/Q1341507|http://www.wikidata.org/entity/Q1031692|http://www.wikidata.org/entity/Q930862|http://www.wikidata.org/entity/Q728158|http://www.wikidata.org/entity/Q551873|http://www.wikidata.org/entity/Q465157|http://www.wikidata.org/entity/Q437254|http://www.wikidata.org/entity/Q328511|http://www.wikidata.org/entity/Q314972|http://www.wikidata.org/entity/Q308840|http://www.wikidata.org/entity/Q262822|http://www.wikidata.org/entity/Q259940|http://www.wikidata.org/entity/Q201810|http://www.wikidata.org/entity/Q171557"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2011 film by Djamel Bensalah"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3967460"}, "Title": {"type": "literal", "value": "Squeeze Play!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q944978|http://www.wikidata.org/entity/Q183347"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q183347"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q183347|http://www.wikidata.org/entity/Q983418|http://www.wikidata.org/entity/Q578612|http://www.wikidata.org/entity/Q273065|http://www.wikidata.org/entity/Q211913"}, "Published": {"type": "literal", "value": "1979"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "1979 film by Michael Herz, Lloyd Kaufman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q640786"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55539697"}, "Title": {"type": "literal", "value": "\u00cemi este indiferent dac\u0103 \u00een istorie vom intra ca barbari"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1248032"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1248032"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22687812|http://www.wikidata.org/entity/Q12720305"}, "Published": {"type": "literal", "value": "2019|2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17013749|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "140"}, "Description": {"type": "literal", "value": "2018 film directed by Radu Jude"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4072219"}, "Title": {"type": "literal", "value": "\u0410\u0442\u043e\u043c\u043d\u044b\u0439 \u0418\u0432\u0430\u043d"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4078762"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4078762"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2642325"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Vasily Barkhatov"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q59386394"}, "Title": {"type": "literal", "value": "Soltera Codiciada"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q59391272|http://www.wikidata.org/entity/Q5734480"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5564906|http://www.wikidata.org/entity/Q1261353|http://www.wikidata.org/entity/Q436854"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Bruno Ascenzo and Joanna Lombardi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28496988"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20971921"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Damien Manivel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61249167"}, "Title": {"type": "literal", "value": "Doble"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q44573328"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9073088|http://www.wikidata.org/entity/Q8193674|http://www.wikidata.org/entity/Q5954893|http://www.wikidata.org/entity/Q1562942|http://www.wikidata.org/entity/Q952433|http://www.wikidata.org/entity/Q861324"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 drama Colombian film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4463351"}, "Title": {"type": "literal", "value": "\u0422\u0440\u043e\u0435 \u0438 \u0421\u043d\u0435\u0436\u0438\u043d\u043a\u0430"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4078134"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q442830"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Pavel Bardin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18633955"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3194132"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3194132"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q465971|http://www.wikidata.org/entity/Q456360|http://www.wikidata.org/entity/Q440609|http://www.wikidata.org/entity/Q283513|http://www.wikidata.org/entity/Q127206|http://www.wikidata.org/entity/Q86336|http://www.wikidata.org/entity/Q3308651|http://www.wikidata.org/entity/Q3183504|http://www.wikidata.org/entity/Q2776777"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film directed by Katia Lewkowicz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15987821"}, "Title": {"type": "literal", "value": "Kill Buljo 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2022437"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7710517|http://www.wikidata.org/entity/Q2669356"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7710517|http://www.wikidata.org/entity/Q2419067"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 Norwegian film directed by Vegar Hoel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1199877"}, "Title": {"type": "literal", "value": "Jawbreaker"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5225170"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5225170"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3059248|http://www.wikidata.org/entity/Q2745996|http://www.wikidata.org/entity/Q1336685|http://www.wikidata.org/entity/Q451978|http://www.wikidata.org/entity/Q445445|http://www.wikidata.org/entity/Q342612|http://www.wikidata.org/entity/Q272141|http://www.wikidata.org/entity/Q270079|http://www.wikidata.org/entity/Q241681|http://www.wikidata.org/entity/Q240541|http://www.wikidata.org/entity/Q236189|http://www.wikidata.org/entity/Q235302|http://www.wikidata.org/entity/Q233862|http://www.wikidata.org/entity/Q230320|http://www.wikidata.org/entity/Q211040|http://www.wikidata.org/entity/Q186327"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "1999 film by Darren Stein"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3214264"}, "Title": {"type": "literal", "value": "La vraie vie est ailleurs"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2400882"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2400882"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q58208486|http://www.wikidata.org/entity/Q680173"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Fr\u00e9d\u00e9ric Choffat"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22696234"}, "Title": {"type": "literal", "value": "Osman Pazarlama"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7813033"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q388027"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Togan G\u00f6kbakar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3020363"}, "Title": {"type": "literal", "value": "De l'autre c\u00f4t\u00e9 du p\u00e9riph"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3017644"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3219319|http://www.wikidata.org/entity/Q3017644"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30728789|http://www.wikidata.org/entity/Q3572937|http://www.wikidata.org/entity/Q3369254|http://www.wikidata.org/entity/Q3219319|http://www.wikidata.org/entity/Q3194138|http://www.wikidata.org/entity/Q2848242|http://www.wikidata.org/entity/Q1341507|http://www.wikidata.org/entity/Q436888|http://www.wikidata.org/entity/Q357387|http://www.wikidata.org/entity/Q139052"}, "Published": {"type": "literal", "value": "2013|2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2012 film by David Charhon"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3117481"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18693377"}, "Title": {"type": "literal", "value": "Lovemilla"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11896737"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18720033|http://www.wikidata.org/entity/Q11896737"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2015 Finnish film directed by Teemu Nikki"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18759861"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q50821703"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12472095"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12525054|http://www.wikidata.org/entity/Q7478484|http://www.wikidata.org/entity/Q5653028|http://www.wikidata.org/entity/Q5262511"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1033891|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Indonesian comedy martial arts movie directed by Angga Dwimas Sasongko"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21427590"}, "Title": {"type": "literal", "value": "Les Malheurs de Sophie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q551772"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3106513|http://www.wikidata.org/entity/Q551772"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q37793145|http://www.wikidata.org/entity/Q3309608|http://www.wikidata.org/entity/Q3189528|http://www.wikidata.org/entity/Q2525146|http://www.wikidata.org/entity/Q464712|http://www.wikidata.org/entity/Q434051"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Christophe Honor\u00e9"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3232641"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3608281"}, "Title": {"type": "literal", "value": "Prince Avalanche"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2296698"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2296698"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1378226|http://www.wikidata.org/entity/Q420041|http://www.wikidata.org/entity/Q276525|http://www.wikidata.org/entity/Q244678"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2013 comedy-drama film directed by David Gordon Green"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5288342"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11989059"}, "Title": {"type": "literal", "value": "Mer eller mindre mann"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11988524"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11988524"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17194694|http://www.wikidata.org/entity/Q16175152|http://www.wikidata.org/entity/Q12007001|http://www.wikidata.org/entity/Q4978023|http://www.wikidata.org/entity/Q4807257"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "75"}, "Description": {"type": "literal", "value": "2012 Norwegian comedy film directed by Martin Lund"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q739440"}, "Title": {"type": "literal", "value": "Assassination of a High School President"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4962377"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7803274"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18156735|http://www.wikidata.org/entity/Q8073314|http://www.wikidata.org/entity/Q6246377|http://www.wikidata.org/entity/Q4013057|http://www.wikidata.org/entity/Q3810262|http://www.wikidata.org/entity/Q3574528|http://www.wikidata.org/entity/Q3545522|http://www.wikidata.org/entity/Q3308598|http://www.wikidata.org/entity/Q3288143|http://www.wikidata.org/entity/Q2820059|http://www.wikidata.org/entity/Q2050378|http://www.wikidata.org/entity/Q1290062|http://www.wikidata.org/entity/Q1060344|http://www.wikidata.org/entity/Q646189|http://www.wikidata.org/entity/Q460503|http://www.wikidata.org/entity/Q449626|http://www.wikidata.org/entity/Q350589|http://www.wikidata.org/entity/Q342252|http://www.wikidata.org/entity/Q232968|http://www.wikidata.org/entity/Q227129|http://www.wikidata.org/entity/Q207458|http://www.wikidata.org/entity/Q139385|http://www.wikidata.org/entity/Q2680"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q2421031"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2008 film by Brett Simon"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55007988"}, "Title": {"type": "literal", "value": "I Will Sing This Type of Song"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30302507"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q54957886|http://www.wikidata.org/entity/Q54855137|http://www.wikidata.org/entity/Q54854418|http://www.wikidata.org/entity/Q47464822|http://www.wikidata.org/entity/Q26705192"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 Nepalese film directed by Sudarshan Thapa"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7165100"}, "Title": {"type": "literal", "value": "Pentecost"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2655230"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2655230"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "11"}, "Description": {"type": "literal", "value": "2011 film by Peter McDonald"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1451835"}, "Title": {"type": "literal", "value": "Frauenparkplatz"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q115138"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "5"}, "Description": {"type": "literal", "value": "2004 film by Christopher Becker"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16653663"}, "Title": {"type": "literal", "value": "Le Dernier des immobiles"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3339906"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3386712|http://www.wikidata.org/entity/Q3339906|http://www.wikidata.org/entity/Q3309138|http://www.wikidata.org/entity/Q3299919|http://www.wikidata.org/entity/Q3028270"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Nicola Sornaga"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5650556"}, "Title": {"type": "literal", "value": "15 d\u00edas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1887437"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2000 film by Rodrigo Cort\u00e9s"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28671004"}, "Title": {"type": "literal", "value": "Omicidio all'italiana"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q921998"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q921998"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2017 film by Marcello Macchia"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q908473"}, "Title": {"type": "literal", "value": "DodgeBall: A True Underdog Story"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2745616"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2745616"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11221289|http://www.wikidata.org/entity/Q3475182|http://www.wikidata.org/entity/Q2745616|http://www.wikidata.org/entity/Q2620648|http://www.wikidata.org/entity/Q1077862|http://www.wikidata.org/entity/Q641050|http://www.wikidata.org/entity/Q512376|http://www.wikidata.org/entity/Q464320|http://www.wikidata.org/entity/Q443128|http://www.wikidata.org/entity/Q371786|http://www.wikidata.org/entity/Q349350|http://www.wikidata.org/entity/Q315864|http://www.wikidata.org/entity/Q313522|http://www.wikidata.org/entity/Q298672|http://www.wikidata.org/entity/Q284636|http://www.wikidata.org/entity/Q268303|http://www.wikidata.org/entity/Q242560|http://www.wikidata.org/entity/Q233786|http://www.wikidata.org/entity/Q233022|http://www.wikidata.org/entity/Q202056|http://www.wikidata.org/entity/Q201927|http://www.wikidata.org/entity/Q107730|http://www.wikidata.org/entity/Q47100|http://www.wikidata.org/entity/Q16297|http://www.wikidata.org/entity/Q2673|http://www.wikidata.org/entity/Q2172"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2004 film by Rawson Marshall Thurber"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434841|http://www.wikidata.org/entity/Q7304367"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30912346"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5657942"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Adolfo Aguilar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6750455"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6893585"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6122567"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Mohan Shankar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12327278"}, "Title": {"type": "literal", "value": "Min s\u00f8sters b\u00f8rn i sneen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q952621"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12338513|http://www.wikidata.org/entity/Q12326885"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q38052575|http://www.wikidata.org/entity/Q21208039|http://www.wikidata.org/entity/Q12341493|http://www.wikidata.org/entity/Q12337040|http://www.wikidata.org/entity/Q12328868|http://www.wikidata.org/entity/Q12328505|http://www.wikidata.org/entity/Q12327192|http://www.wikidata.org/entity/Q12326885|http://www.wikidata.org/entity/Q12324918|http://www.wikidata.org/entity/Q1967835|http://www.wikidata.org/entity/Q1789215|http://www.wikidata.org/entity/Q1772927"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Tomas Villum Jensen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4015634"}, "Title": {"type": "literal", "value": "Viva l'Italia"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3850996"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3850996"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3719651|http://www.wikidata.org/entity/Q3719608|http://www.wikidata.org/entity/Q3697462|http://www.wikidata.org/entity/Q3651404|http://www.wikidata.org/entity/Q3639283|http://www.wikidata.org/entity/Q3634624|http://www.wikidata.org/entity/Q3972506|http://www.wikidata.org/entity/Q3956119|http://www.wikidata.org/entity/Q3940278|http://www.wikidata.org/entity/Q3932495|http://www.wikidata.org/entity/Q3897832|http://www.wikidata.org/entity/Q3893598|http://www.wikidata.org/entity/Q3876322|http://www.wikidata.org/entity/Q3852654|http://www.wikidata.org/entity/Q3851083|http://www.wikidata.org/entity/Q3838468|http://www.wikidata.org/entity/Q3838012|http://www.wikidata.org/entity/Q3802324|http://www.wikidata.org/entity/Q3796647|http://www.wikidata.org/entity/Q3610116|http://www.wikidata.org/entity/Q1993073|http://www.wikidata.org/entity/Q1276918|http://www.wikidata.org/entity/Q1008634|http://www.wikidata.org/entity/Q772282|http://www.wikidata.org/entity/Q437455|http://www.wikidata.org/entity/Q434574|http://www.wikidata.org/entity/Q381110|http://www.wikidata.org/entity/Q380685"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2012 film by Massimiliano Bruno"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3804257|http://www.wikidata.org/entity/Q3929491"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26000006"}, "Title": {"type": "literal", "value": "El Rey Tuerto"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28575458"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21036173"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q40831"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Marc Crehuet"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2668305"}, "Title": {"type": "literal", "value": "Narco"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q552639|http://www.wikidata.org/entity/Q3539613"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q552639|http://www.wikidata.org/entity/Q2829519"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q714765|http://www.wikidata.org/entity/Q658664|http://www.wikidata.org/entity/Q576085|http://www.wikidata.org/entity/Q552639|http://www.wikidata.org/entity/Q466991|http://www.wikidata.org/entity/Q446842|http://www.wikidata.org/entity/Q441676|http://www.wikidata.org/entity/Q388744|http://www.wikidata.org/entity/Q319527|http://www.wikidata.org/entity/Q314403|http://www.wikidata.org/entity/Q308840|http://www.wikidata.org/entity/Q259940|http://www.wikidata.org/entity/Q139052|http://www.wikidata.org/entity/Q57118|http://www.wikidata.org/entity/Q3299848|http://www.wikidata.org/entity/Q3287898|http://www.wikidata.org/entity/Q3219319|http://www.wikidata.org/entity/Q3190701|http://www.wikidata.org/entity/Q3165613|http://www.wikidata.org/entity/Q3035225|http://www.wikidata.org/entity/Q2966467|http://www.wikidata.org/entity/Q2863129|http://www.wikidata.org/entity/Q2834662|http://www.wikidata.org/entity/Q1341507|http://www.wikidata.org/entity/Q954370|http://www.wikidata.org/entity/Q3591418|http://www.wikidata.org/entity/Q3588004|http://www.wikidata.org/entity/Q3580169|http://www.wikidata.org/entity/Q3559829|http://www.wikidata.org/entity/Q3484876|http://www.wikidata.org/entity/Q3380215|http://www.wikidata.org/entity/Q3380199|http://www.wikidata.org/entity/Q3350981|http://www.wikidata.org/entity/Q3349242"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2004 film by Gilles Lellouche"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22249125"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15039649"}, "Title": {"type": "literal", "value": "Nice Package"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16731753"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16734623"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q713173"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Dan Macarthur"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23709842"}, "Title": {"type": "literal", "value": "Grand Hotel"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11958682"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Arild Fr\u00f6hlich"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26769703"}, "Title": {"type": "literal", "value": "M\u00e4nnertag"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1624514"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1808962|http://www.wikidata.org/entity/Q1409320|http://www.wikidata.org/entity/Q1292000|http://www.wikidata.org/entity/Q1260674|http://www.wikidata.org/entity/Q865880|http://www.wikidata.org/entity/Q583792|http://www.wikidata.org/entity/Q124451|http://www.wikidata.org/entity/Q108942|http://www.wikidata.org/entity/Q95314|http://www.wikidata.org/entity/Q62929"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Holger Haase"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2363879"}, "Title": {"type": "literal", "value": "Suicide Club"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1248749"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1248749"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2010 film by Olaf Saumer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7397650"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7491056|http://www.wikidata.org/entity/Q6781094"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16217187"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7491056|http://www.wikidata.org/entity/Q6781094"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Shaurya Chauhan, Maryam Zakaria"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3203620"}, "Title": {"type": "literal", "value": "El hombre de al lado"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5526897|http://www.wikidata.org/entity/Q21191123|http://www.wikidata.org/entity/Q21191121"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q326187|http://www.wikidata.org/entity/Q28466027|http://www.wikidata.org/entity/Q27050725|http://www.wikidata.org/entity/Q21191123|http://www.wikidata.org/entity/Q21191121|http://www.wikidata.org/entity/Q5798126"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2010 film by Gast\u00f3n Duprat & Mariano Cohn"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2877819"}, "Title": {"type": "literal", "value": "Carmina o revienta"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3621855"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6004136"}, "Published": {"type": "literal", "value": "2014|2013|2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 Spanish comedy-drama film directed by Paco Le\u00f3n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26221034"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26214506"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26214506"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26214506"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Jordan Goldnadel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q47064265"}, "Title": {"type": "literal", "value": "Blindspotting"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5042294"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20973977|http://www.wikidata.org/entity/Q7282069"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q311976|http://www.wikidata.org/entity/Q264960|http://www.wikidata.org/entity/Q39986|http://www.wikidata.org/entity/Q29453375|http://www.wikidata.org/entity/Q20974000|http://www.wikidata.org/entity/Q20973977|http://www.wikidata.org/entity/Q7902890|http://www.wikidata.org/entity/Q7282069|http://www.wikidata.org/entity/Q383064"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2018 film directed by Carlos L\u00f3pez Estrada"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5139969|http://www.wikidata.org/entity/Q632323"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q649966"}, "Title": {"type": "literal", "value": "Dallas 362"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q314673"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q314673"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q723027|http://www.wikidata.org/entity/Q450714|http://www.wikidata.org/entity/Q362697|http://www.wikidata.org/entity/Q352203|http://www.wikidata.org/entity/Q314673|http://www.wikidata.org/entity/Q264748|http://www.wikidata.org/entity/Q242523|http://www.wikidata.org/entity/Q235072|http://www.wikidata.org/entity/Q228638|http://www.wikidata.org/entity/Q106706|http://www.wikidata.org/entity/Q95043"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2003 film by Scott Caan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q47063963"}, "Title": {"type": "literal", "value": "Apartment Troubles"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2646925"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film directed by Jess Weixler"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12377743"}, "Title": {"type": "literal", "value": "Umbkotid"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16407064|http://www.wikidata.org/entity/Q12359148"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16407064|http://www.wikidata.org/entity/Q12359148"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Andres Maimik and Rain Tolk"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19019142"}, "Title": {"type": "literal", "value": "\u0417\u0432\u0435\u0437\u0434\u0430"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4289477"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4289477"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50840112|http://www.wikidata.org/entity/Q28112146|http://www.wikidata.org/entity/Q27113807"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192881"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Anna Melikian"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7492085"}, "Title": {"type": "literal", "value": "She Wants Me"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7340338"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7340338"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6437798|http://www.wikidata.org/entity/Q3180255|http://www.wikidata.org/entity/Q1190319|http://www.wikidata.org/entity/Q718366|http://www.wikidata.org/entity/Q458512|http://www.wikidata.org/entity/Q449626|http://www.wikidata.org/entity/Q433618|http://www.wikidata.org/entity/Q311976|http://www.wikidata.org/entity/Q302930|http://www.wikidata.org/entity/Q256144|http://www.wikidata.org/entity/Q122020|http://www.wikidata.org/entity/Q103939"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2012 film by Rob Margolies"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q44491815"}, "Title": {"type": "literal", "value": "Long Shot"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1320930"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q42099156|http://www.wikidata.org/entity/Q5214442"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7291588|http://www.wikidata.org/entity/Q1713263|http://www.wikidata.org/entity/Q888178|http://www.wikidata.org/entity/Q310637|http://www.wikidata.org/entity/Q220308|http://www.wikidata.org/entity/Q206922|http://www.wikidata.org/entity/Q80046|http://www.wikidata.org/entity/Q19667862"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "125"}, "Description": {"type": "literal", "value": "2019 comedy film directed by Jonathan Levine"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17092493|http://www.wikidata.org/entity/Q23016773|http://www.wikidata.org/entity/Q27150184"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15805849"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60189101"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60189101"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2013 film by Andreas Schmied"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q51822263"}, "Title": {"type": "literal", "value": "Plaire, aimer et courir vite"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q551772"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q551772"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22248249|http://www.wikidata.org/entity/Q15904323|http://www.wikidata.org/entity/Q3559693|http://www.wikidata.org/entity/Q3490984|http://www.wikidata.org/entity/Q1187592"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "132"}, "Description": {"type": "literal", "value": "2018 film directed by Christophe Honor\u00e9"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18291583"}, "Title": {"type": "literal", "value": "K\u00e4rlek deluxe"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18169856"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4949423"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Kicki Kjellin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3446027"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5219645"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5219645"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12646341|http://www.wikidata.org/entity/Q12634890|http://www.wikidata.org/entity/Q3501477|http://www.wikidata.org/entity/Q3478613|http://www.wikidata.org/entity/Q1564017|http://www.wikidata.org/entity/Q1280064|http://www.wikidata.org/entity/Q1270642|http://www.wikidata.org/entity/Q1252125|http://www.wikidata.org/entity/Q434291|http://www.wikidata.org/entity/Q299977"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Danilo \u0160erbed\u017eija"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15106947"}, "Title": {"type": "literal", "value": "Last Weekend"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7815604"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7815604"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1706810|http://www.wikidata.org/entity/Q229268|http://www.wikidata.org/entity/Q3574528"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2014 film by Tom Dolby"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10544366"}, "Title": {"type": "literal", "value": "Katinkas kalas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5544917"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5544917"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4968250"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Levan Akin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23566245"}, "Title": {"type": "literal", "value": "Willkommen in L\u00fcsgraf"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1806295"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24039132"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2006 film by Lars Montag"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3110361"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3106429|http://www.wikidata.org/entity/Q3009076"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3529590|http://www.wikidata.org/entity/Q3499698|http://www.wikidata.org/entity/Q3165613|http://www.wikidata.org/entity/Q3142106|http://www.wikidata.org/entity/Q2977082|http://www.wikidata.org/entity/Q2864476|http://www.wikidata.org/entity/Q1685364|http://www.wikidata.org/entity/Q989586|http://www.wikidata.org/entity/Q778573|http://www.wikidata.org/entity/Q265782"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Cyril Sebas, Gilles Paquet-Brenner"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q83703"}, "Title": {"type": "literal", "value": "\u00c0 la folie... pas du tout"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3216065"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2940066"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3591351|http://www.wikidata.org/entity/Q3460757|http://www.wikidata.org/entity/Q2980691|http://www.wikidata.org/entity/Q943295|http://www.wikidata.org/entity/Q451107|http://www.wikidata.org/entity/Q304123|http://www.wikidata.org/entity/Q289032|http://www.wikidata.org/entity/Q274759"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2002 film by L\u00e6titia Colombani"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27908086"}, "Title": {"type": "literal", "value": "Alle for tre"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12332904"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12332904|http://www.wikidata.org/entity/Q6119355"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12333484|http://www.wikidata.org/entity/Q12327036|http://www.wikidata.org/entity/Q12323846|http://www.wikidata.org/entity/Q12320299|http://www.wikidata.org/entity/Q12301381|http://www.wikidata.org/entity/Q11980775|http://www.wikidata.org/entity/Q7295091|http://www.wikidata.org/entity/Q4961227|http://www.wikidata.org/entity/Q456176|http://www.wikidata.org/entity/Q454250|http://www.wikidata.org/entity/Q207149"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 Danish film by Rasmus Heide"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11072093"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q698533"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q698533"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Ronald Cheng"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20649194"}, "Title": {"type": "literal", "value": "Ut\u00f3\u00e9let"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29832585"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29832585"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2014 film by Vir\u00e1g Zombor\u00e1cz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18170283"}, "Title": {"type": "literal", "value": "Fratelli unici"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20971246"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1223109|http://www.wikidata.org/entity/Q1039164|http://www.wikidata.org/entity/Q676749|http://www.wikidata.org/entity/Q381110|http://www.wikidata.org/entity/Q202281"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2014 film by Alessio Maria Federici"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3929491"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1523194"}, "Title": {"type": "literal", "value": "\u0926\u093f\u0932 \u092c\u094b\u0932\u0947 \u0939\u0921\u093c\u0940\u092a\u094d\u092a\u093e"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17385584"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4779117"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7942575|http://www.wikidata.org/entity/Q7500361|http://www.wikidata.org/entity/Q3595934|http://www.wikidata.org/entity/Q3543017|http://www.wikidata.org/entity/Q560163|http://www.wikidata.org/entity/Q485557|http://www.wikidata.org/entity/Q319491"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "148"}, "Description": {"type": "literal", "value": "2009 film by Anurag Singh"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1194810"}, "Title": {"type": "literal", "value": "Daddy Day Camp"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q447392"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5534297|http://www.wikidata.org/entity/Q5237900"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26719071|http://www.wikidata.org/entity/Q3898137|http://www.wikidata.org/entity/Q1280821|http://www.wikidata.org/entity/Q912103|http://www.wikidata.org/entity/Q454035|http://www.wikidata.org/entity/Q136209|http://www.wikidata.org/entity/Q73930"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2007 film by Fred Savage"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2579492|http://www.wikidata.org/entity/Q1160868"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q510456"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q332998"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12615545|http://www.wikidata.org/entity/Q402179"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1033891|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 South Korean film directed by Ryoo Seung-wan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6407773"}, "Title": {"type": "literal", "value": "Killing Winston Jones"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q371786"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192165"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Joel David Moore"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28173417"}, "Title": {"type": "literal", "value": "Band Aid"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q218211"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q218211"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Zoe Lister-Jones"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1523217"}, "Title": {"type": "literal", "value": "Turbo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5239955"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2013 American 3D computer-animated comedy sports film directed by David Soren"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q500088"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24806853"}, "Title": {"type": "literal", "value": "The Little Hours"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26897001"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26897001"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19661595|http://www.wikidata.org/entity/Q2084523|http://www.wikidata.org/entity/Q1985488|http://www.wikidata.org/entity/Q1968839|http://www.wikidata.org/entity/Q522856|http://www.wikidata.org/entity/Q430922|http://www.wikidata.org/entity/Q383930|http://www.wikidata.org/entity/Q350589|http://www.wikidata.org/entity/Q239145|http://www.wikidata.org/entity/Q235328|http://www.wikidata.org/entity/Q223110|http://www.wikidata.org/entity/Q210547|http://www.wikidata.org/entity/Q14535"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2017 film by Jeff Baena"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30555900"}, "Title": {"type": "literal", "value": "Opening Night"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16222005"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Isaac Rentz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q39049013"}, "Title": {"type": "literal", "value": "Armomurhaaja"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11896737"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11896737"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16991279|http://www.wikidata.org/entity/Q16989565"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q53094"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2017 film by Teemu Nikki"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18759861"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18155444"}, "Title": {"type": "literal", "value": "The Night Before"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1320930"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3061320|http://www.wikidata.org/entity/Q1320930"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7291588|http://www.wikidata.org/entity/Q6163031|http://www.wikidata.org/entity/Q3061320|http://www.wikidata.org/entity/Q1255263|http://www.wikidata.org/entity/Q667979|http://www.wikidata.org/entity/Q539917|http://www.wikidata.org/entity/Q511554|http://www.wikidata.org/entity/Q21511825|http://www.wikidata.org/entity/Q16730037|http://www.wikidata.org/entity/Q16207915|http://www.wikidata.org/entity/Q16198576|http://www.wikidata.org/entity/Q11309114|http://www.wikidata.org/entity/Q460786|http://www.wikidata.org/entity/Q313486|http://www.wikidata.org/entity/Q306403|http://www.wikidata.org/entity/Q236578|http://www.wikidata.org/entity/Q220308|http://www.wikidata.org/entity/Q177311|http://www.wikidata.org/entity/Q41449|http://www.wikidata.org/entity/Q14542|http://www.wikidata.org/entity/Q4235"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2015 American Christmas comedy film directed by Jonathan Levine"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q186941"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11695671"}, "Title": {"type": "literal", "value": "Dziewczyna z szafy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9174981"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9174981"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9376690|http://www.wikidata.org/entity/Q723664"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Bodo Kox"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17382556"}, "Title": {"type": "literal", "value": "Mielens\u00e4pahoittaja"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2665374"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2665374|http://www.wikidata.org/entity/Q1711311"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16989760|http://www.wikidata.org/entity/Q16298229|http://www.wikidata.org/entity/Q5489641|http://www.wikidata.org/entity/Q4777419"}, "Published": {"type": "literal", "value": "2017|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2014 film by Dome Karukoski"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2740839"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11499336"}, "Title": {"type": "literal", "value": "\u6559\u7956\u8a95\u751f"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2445272"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1993"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "1993 film by Toshihiro Tenma"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18411201"}, "Title": {"type": "literal", "value": "Coming In"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q68855"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16891732|http://www.wikidata.org/entity/Q1085574|http://www.wikidata.org/entity/Q68855"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22312572|http://www.wikidata.org/entity/Q19888324|http://www.wikidata.org/entity/Q6572984|http://www.wikidata.org/entity/Q2504667|http://www.wikidata.org/entity/Q1963332|http://www.wikidata.org/entity/Q1878058|http://www.wikidata.org/entity/Q1748529|http://www.wikidata.org/entity/Q1618369|http://www.wikidata.org/entity/Q72046|http://www.wikidata.org/entity/Q71077|http://www.wikidata.org/entity/Q70775|http://www.wikidata.org/entity/Q68084|http://www.wikidata.org/entity/Q62346|http://www.wikidata.org/entity/Q520052|http://www.wikidata.org/entity/Q125750|http://www.wikidata.org/entity/Q120407|http://www.wikidata.org/entity/Q109360|http://www.wikidata.org/entity/Q108329|http://www.wikidata.org/entity/Q100417|http://www.wikidata.org/entity/Q90795|http://www.wikidata.org/entity/Q86498|http://www.wikidata.org/entity/Q76447|http://www.wikidata.org/entity/Q75187"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2014 film by Marco Kreuzpaintner"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30110172"}, "Title": {"type": "literal", "value": "\u0421\u043a\u0430\u0437 \u043e \u041f\u0435\u0442\u0440\u0435 \u0438 \u0424\u0435\u0432\u0440\u043e\u043d\u0438\u0438"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4402592|http://www.wikidata.org/entity/Q4245991"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 animated feature film directed by Yuriy Kulakov"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6781058"}, "Title": {"type": "literal", "value": "\u0c2e\u0c30\u0c4d\u0c2f\u0c3e\u0c26 \u0c30\u0c3e\u0c2e\u0c28\u0c4d"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3521531"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3521531"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25350277|http://www.wikidata.org/entity/Q13010095|http://www.wikidata.org/entity/Q7405699|http://www.wikidata.org/entity/Q5413313|http://www.wikidata.org/entity/Q3536811"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 Telugu film directed by S. S. Rajamouli"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16825423"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42859626"}, "Title": {"type": "literal", "value": "Jalouse"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3501757|http://www.wikidata.org/entity/Q325133"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3501757|http://www.wikidata.org/entity/Q325133"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23774012|http://www.wikidata.org/entity/Q3591137|http://www.wikidata.org/entity/Q3524049|http://www.wikidata.org/entity/Q3501757|http://www.wikidata.org/entity/Q3292012|http://www.wikidata.org/entity/Q2851072|http://www.wikidata.org/entity/Q434051|http://www.wikidata.org/entity/Q271944|http://www.wikidata.org/entity/Q116189"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2017 film by David Foenkinos & St\u00e9phane Foenkinos"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10498467|http://www.wikidata.org/entity/Q16662670|http://www.wikidata.org/entity/Q2450848"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20992288"}, "Title": {"type": "literal", "value": "Anderswo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22944045"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22944045|http://www.wikidata.org/entity/Q22944169"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12411265|http://www.wikidata.org/entity/Q7058152|http://www.wikidata.org/entity/Q4096293|http://www.wikidata.org/entity/Q1739698|http://www.wikidata.org/entity/Q1536641|http://www.wikidata.org/entity/Q287420|http://www.wikidata.org/entity/Q76946|http://www.wikidata.org/entity/Q18912935"}, "Published": {"type": "literal", "value": "2014|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192881|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2014 film directed by Ester Amrami"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27947209"}, "Title": {"type": "literal", "value": "O \u00daltimo Virgem"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q59230839"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Felipe  Bretas"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16551754"}, "Title": {"type": "literal", "value": "Eltern"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q99871"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q99871"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q69108|http://www.wikidata.org/entity/Q19888324|http://www.wikidata.org/entity/Q5126010|http://www.wikidata.org/entity/Q1682918|http://www.wikidata.org/entity/Q106816|http://www.wikidata.org/entity/Q85600"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2013 film by Robert Thalheim"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15070715"}, "Title": {"type": "literal", "value": "Beside Still Waters"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q703929"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q703929"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19538831|http://www.wikidata.org/entity/Q16198459|http://www.wikidata.org/entity/Q15144287|http://www.wikidata.org/entity/Q514020"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Chris Lowell"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q46201471"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q58640866"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18008984"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22687764|http://www.wikidata.org/entity/Q18907601|http://www.wikidata.org/entity/Q4249008|http://www.wikidata.org/entity/Q4103145|http://www.wikidata.org/entity/Q921496"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2018 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1651008"}, "Title": {"type": "literal", "value": "Valgaften"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q491314"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q491314"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12327197|http://www.wikidata.org/entity/Q12319347|http://www.wikidata.org/entity/Q12311098|http://www.wikidata.org/entity/Q3026010|http://www.wikidata.org/entity/Q2735848|http://www.wikidata.org/entity/Q1797671|http://www.wikidata.org/entity/Q382210|http://www.wikidata.org/entity/Q323563"}, "Published": {"type": "literal", "value": "1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "11"}, "Description": {"type": "literal", "value": "1998 film by Anders Thomas Jensen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3067157"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q737676"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q737676"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3559579|http://www.wikidata.org/entity/Q3481005|http://www.wikidata.org/entity/Q3423028|http://www.wikidata.org/entity/Q3375576|http://www.wikidata.org/entity/Q3242527|http://www.wikidata.org/entity/Q3063963|http://www.wikidata.org/entity/Q2900809|http://www.wikidata.org/entity/Q2866088|http://www.wikidata.org/entity/Q1685364|http://www.wikidata.org/entity/Q737676|http://www.wikidata.org/entity/Q726232|http://www.wikidata.org/entity/Q681451|http://www.wikidata.org/entity/Q360899|http://www.wikidata.org/entity/Q274113"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Micha\u00ebl Youn"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13655917"}, "Title": {"type": "literal", "value": "One Day in Europe"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q101288"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21032019|http://www.wikidata.org/entity/Q4696189|http://www.wikidata.org/entity/Q1639649|http://www.wikidata.org/entity/Q1497350|http://www.wikidata.org/entity/Q913571|http://www.wikidata.org/entity/Q275346|http://www.wikidata.org/entity/Q64823"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Hannes St\u00f6hr"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1169506"}, "Title": {"type": "literal", "value": "Das Leben des C. Brunner"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1084628"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 film by Christoph Brunner"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q9378052"}, "Title": {"type": "literal", "value": "Wo\u017conko"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9138174"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9138174"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Abelard Giza"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19866454"}, "Title": {"type": "literal", "value": "Preppies"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14327504"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1984"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1984 film by Chuck Vincent"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12839361"}, "Title": {"type": "literal", "value": "Evl\u0259ri g\u00f6yd\u0259l\u0259n yar"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16375795|http://www.wikidata.org/entity/Q4134063"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q633750"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4071343|http://www.wikidata.org/entity/Q1195686"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "117"}, "Description": {"type": "literal", "value": "2010 film by Ramiz Hasanoglu"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q616799"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17183934"}, "Title": {"type": "literal", "value": "Sisters"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q724795"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10346344"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19538831|http://www.wikidata.org/entity/Q19517962|http://www.wikidata.org/entity/Q15695313|http://www.wikidata.org/entity/Q7420433|http://www.wikidata.org/entity/Q4273978|http://www.wikidata.org/entity/Q3805729|http://www.wikidata.org/entity/Q2907990|http://www.wikidata.org/entity/Q2816311|http://www.wikidata.org/entity/Q1955147|http://www.wikidata.org/entity/Q1077635|http://www.wikidata.org/entity/Q739062|http://www.wikidata.org/entity/Q723057|http://www.wikidata.org/entity/Q528866|http://www.wikidata.org/entity/Q443891|http://www.wikidata.org/entity/Q315051|http://www.wikidata.org/entity/Q295233|http://www.wikidata.org/entity/Q261977|http://www.wikidata.org/entity/Q236755|http://www.wikidata.org/entity/Q236527|http://www.wikidata.org/entity/Q230203|http://www.wikidata.org/entity/Q217573|http://www.wikidata.org/entity/Q44437|http://www.wikidata.org/entity/Q14540"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "118"}, "Description": {"type": "literal", "value": "2015 comedy film directed by Jason Moore"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21009248"}, "Title": {"type": "literal", "value": "Nous trois ou rien"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3196131"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3196131"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q139052|http://www.wikidata.org/entity/Q23767057|http://www.wikidata.org/entity/Q3200883|http://www.wikidata.org/entity/Q3196131|http://www.wikidata.org/entity/Q3183342|http://www.wikidata.org/entity/Q2864476|http://www.wikidata.org/entity/Q2833411|http://www.wikidata.org/entity/Q2671216|http://www.wikidata.org/entity/Q1930952|http://www.wikidata.org/entity/Q1340950|http://www.wikidata.org/entity/Q1044296|http://www.wikidata.org/entity/Q958831"}, "Published": {"type": "literal", "value": "2015|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2015 film directed by Kheiron"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4402946"}, "Title": {"type": "literal", "value": "\u0421 \u043d\u043e\u0432\u044b\u043c \u0433\u043e\u0434\u043e\u043c, \u043c\u0430\u043c\u044b!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4065391"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28368075|http://www.wikidata.org/entity/Q4065391"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4112450|http://www.wikidata.org/entity/Q4077498|http://www.wikidata.org/entity/Q2398970|http://www.wikidata.org/entity/Q2213598|http://www.wikidata.org/entity/Q2064926|http://www.wikidata.org/entity/Q1975283|http://www.wikidata.org/entity/Q631058|http://www.wikidata.org/entity/Q500404|http://www.wikidata.org/entity/Q167548|http://www.wikidata.org/entity/Q106529|http://www.wikidata.org/entity/Q4495971|http://www.wikidata.org/entity/Q4402599|http://www.wikidata.org/entity/Q4399190|http://www.wikidata.org/entity/Q4396438|http://www.wikidata.org/entity/Q4243126|http://www.wikidata.org/entity/Q4196443"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Sarik Andreasyan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4038074"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11135305"}, "Title": {"type": "literal", "value": "Profe por accidente"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12201342"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3213595"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q242526"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3293174|http://www.wikidata.org/entity/Q3015148|http://www.wikidata.org/entity/Q2724026|http://www.wikidata.org/entity/Q576085|http://www.wikidata.org/entity/Q491766|http://www.wikidata.org/entity/Q291521|http://www.wikidata.org/entity/Q205868|http://www.wikidata.org/entity/Q106275"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Sylvie Testud"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q8051184"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5250647"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5250647"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q190071"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Deepshika"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23925083"}, "Title": {"type": "literal", "value": "Tour de France"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3416159"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3416159"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20745261|http://www.wikidata.org/entity/Q17496932|http://www.wikidata.org/entity/Q106508"}, "Published": {"type": "literal", "value": "2017|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2016 film by Rachid Dja\u00efdani"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q385380"}, "Title": {"type": "literal", "value": "I Want Candy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3498661"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q713032"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2439560|http://www.wikidata.org/entity/Q2217295|http://www.wikidata.org/entity/Q1333202|http://www.wikidata.org/entity/Q1273669|http://www.wikidata.org/entity/Q964454|http://www.wikidata.org/entity/Q850596|http://www.wikidata.org/entity/Q447614|http://www.wikidata.org/entity/Q447218|http://www.wikidata.org/entity/Q233707|http://www.wikidata.org/entity/Q185122|http://www.wikidata.org/entity/Q99036|http://www.wikidata.org/entity/Q45647|http://www.wikidata.org/entity/Q7816870|http://www.wikidata.org/entity/Q7493792|http://www.wikidata.org/entity/Q7295103|http://www.wikidata.org/entity/Q6776529|http://www.wikidata.org/entity/Q6148197"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q1146335"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2007 film by Stephen Surjik"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q72081"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3615192"}, "Title": {"type": "literal", "value": "Anche se \u00e8 amore non si vede"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4007762|http://www.wikidata.org/entity/Q3946049"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4007762|http://www.wikidata.org/entity/Q3946049|http://www.wikidata.org/entity/Q3080921"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4007762|http://www.wikidata.org/entity/Q3946049|http://www.wikidata.org/entity/Q3847239|http://www.wikidata.org/entity/Q3767179|http://www.wikidata.org/entity/Q3738111|http://www.wikidata.org/entity/Q3694286|http://www.wikidata.org/entity/Q2717287|http://www.wikidata.org/entity/Q441915|http://www.wikidata.org/entity/Q437455|http://www.wikidata.org/entity/Q178307"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2011 film by Salvatore Ficarra, Valentino Picone"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7148826"}, "Title": {"type": "literal", "value": "Pau et son fr\u00e8re"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q943885"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q352306"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5239637|http://www.wikidata.org/entity/Q3336549"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "2001 film by Marc Recha"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13424245"}, "Title": {"type": "literal", "value": "Viaggio sola"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3847526"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3847526|http://www.wikidata.org/entity/Q3804677|http://www.wikidata.org/entity/Q1440868"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3063990|http://www.wikidata.org/entity/Q2927023|http://www.wikidata.org/entity/Q444410|http://www.wikidata.org/entity/Q433565|http://www.wikidata.org/entity/Q201617|http://www.wikidata.org/entity/Q13427362|http://www.wikidata.org/entity/Q3992834|http://www.wikidata.org/entity/Q3763355|http://www.wikidata.org/entity/Q3610432"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2013 film by Maria Sole Tognazzi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3841837"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3749525"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3749525|http://www.wikidata.org/entity/Q3615460"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3749666|http://www.wikidata.org/entity/Q3701933|http://www.wikidata.org/entity/Q3667498|http://www.wikidata.org/entity/Q3611814|http://www.wikidata.org/entity/Q3362666|http://www.wikidata.org/entity/Q518369"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2006 film by Francesco Amato"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1305773"}, "Title": {"type": "literal", "value": "Quick Change"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3141551|http://www.wikidata.org/entity/Q29250"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3141551"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1388111|http://www.wikidata.org/entity/Q1292127|http://www.wikidata.org/entity/Q973065|http://www.wikidata.org/entity/Q487094|http://www.wikidata.org/entity/Q366834|http://www.wikidata.org/entity/Q317228|http://www.wikidata.org/entity/Q316647|http://www.wikidata.org/entity/Q296630|http://www.wikidata.org/entity/Q280098|http://www.wikidata.org/entity/Q223117|http://www.wikidata.org/entity/Q107249|http://www.wikidata.org/entity/Q29250"}, "Published": {"type": "literal", "value": "1990"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q496523|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "1990 film by Bill Murray, Howard Franklin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q47544971"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5068430"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20195451"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5276830"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Chakri Toleti"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17081430"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41794758"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7801672"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q233748"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Abhishek Sharma"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7752961"}, "Title": {"type": "literal", "value": "The Myth of the American Sleepover"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19815594"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19815594"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28215302|http://www.wikidata.org/entity/Q7035096|http://www.wikidata.org/entity/Q4749378|http://www.wikidata.org/entity/Q439554|http://www.wikidata.org/entity/Q435647"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by David Robert Mitchell"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11243539"}, "Title": {"type": "literal", "value": "BrainStorm"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6203818"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12035281"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20057955|http://www.wikidata.org/entity/Q12024009|http://www.wikidata.org/entity/Q12018955|http://www.wikidata.org/entity/Q12008147|http://www.wikidata.org/entity/Q5825305|http://www.wikidata.org/entity/Q5179830|http://www.wikidata.org/entity/Q3506639|http://www.wikidata.org/entity/Q2064616|http://www.wikidata.org/entity/Q1675647|http://www.wikidata.org/entity/Q1418808|http://www.wikidata.org/entity/Q866999|http://www.wikidata.org/entity/Q741577|http://www.wikidata.org/entity/Q430017|http://www.wikidata.org/entity/Q265560|http://www.wikidata.org/entity/Q220119|http://www.wikidata.org/entity/Q159693"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Ji\u0159\u00ed Strach"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4317271"}, "Title": {"type": "literal", "value": "\u041d\u0435\u043f\u0430\u043b \u0444\u043e\u0440\u0435\u0432\u0430"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4370993"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4370993"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2013 documentary film directed by Alyona Polunina"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56243656"}, "Title": {"type": "literal", "value": "Empeliculados"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5274593"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Diego Bustamante"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18674502"}, "Title": {"type": "literal", "value": "El Ciudadano Ilustre"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21191121|http://www.wikidata.org/entity/Q21191123"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5797435|http://www.wikidata.org/entity/Q5621412|http://www.wikidata.org/entity/Q4755088|http://www.wikidata.org/entity/Q3357012|http://www.wikidata.org/entity/Q610174|http://www.wikidata.org/entity/Q28465997|http://www.wikidata.org/entity/Q28065415|http://www.wikidata.org/entity/Q28065414|http://www.wikidata.org/entity/Q28065408|http://www.wikidata.org/entity/Q28065309|http://www.wikidata.org/entity/Q16298341|http://www.wikidata.org/entity/Q6756539|http://www.wikidata.org/entity/Q5994539"}, "Published": {"type": "literal", "value": "2017|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "120|118"}, "Description": {"type": "literal", "value": "2016 film by Gast\u00f3n Duprat & Mariano Cohn"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27703695"}, "Title": {"type": "literal", "value": "Casi leyendas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30917151"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5707135|http://www.wikidata.org/entity/Q5274770|http://www.wikidata.org/entity/Q4820006|http://www.wikidata.org/entity/Q704160|http://www.wikidata.org/entity/Q605380|http://www.wikidata.org/entity/Q526112|http://www.wikidata.org/entity/Q509900|http://www.wikidata.org/entity/Q326187"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Gabriel Nesci"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12336764"}, "Title": {"type": "literal", "value": "Spr\u00e6ngfarlig bombe"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q952621"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q491314"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21246616|http://www.wikidata.org/entity/Q12343520|http://www.wikidata.org/entity/Q12342694|http://www.wikidata.org/entity/Q12338513|http://www.wikidata.org/entity/Q12337161|http://www.wikidata.org/entity/Q12328868|http://www.wikidata.org/entity/Q12327197|http://www.wikidata.org/entity/Q12326885|http://www.wikidata.org/entity/Q12326830|http://www.wikidata.org/entity/Q12326087|http://www.wikidata.org/entity/Q12325206|http://www.wikidata.org/entity/Q12319764|http://www.wikidata.org/entity/Q12316041|http://www.wikidata.org/entity/Q12307115|http://www.wikidata.org/entity/Q12303096|http://www.wikidata.org/entity/Q12301854|http://www.wikidata.org/entity/Q11993648|http://www.wikidata.org/entity/Q11989253|http://www.wikidata.org/entity/Q7239361|http://www.wikidata.org/entity/Q7176561|http://www.wikidata.org/entity/Q6858699|http://www.wikidata.org/entity/Q6491701|http://www.wikidata.org/entity/Q5650628|http://www.wikidata.org/entity/Q4568029|http://www.wikidata.org/entity/Q3365380|http://www.wikidata.org/entity/Q3066309|http://www.wikidata.org/entity/Q2648022|http://www.wikidata.org/entity/Q1789215|http://www.wikidata.org/entity/Q1744038|http://www.wikidata.org/entity/Q1080249|http://www.wikidata.org/entity/Q1044460|http://www.wikidata.org/entity/Q952621|http://www.wikidata.org/entity/Q728020|http://www.wikidata.org/entity/Q533028|http://www.wikidata.org/entity/Q443361|http://www.wikidata.org/entity/Q383754|http://www.wikidata.org/entity/Q382210|http://www.wikidata.org/entity/Q84084"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Tomas Villum Jensen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10611490"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q33436919|http://www.wikidata.org/entity/Q17089131"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q33436919|http://www.wikidata.org/entity/Q17089131"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12339172|http://www.wikidata.org/entity/Q5386449|http://www.wikidata.org/entity/Q4947416|http://www.wikidata.org/entity/Q3358372|http://www.wikidata.org/entity/Q1797902|http://www.wikidata.org/entity/Q768899|http://www.wikidata.org/entity/Q740244|http://www.wikidata.org/entity/Q530997|http://www.wikidata.org/entity/Q468499|http://www.wikidata.org/entity/Q448968|http://www.wikidata.org/entity/Q289924|http://www.wikidata.org/entity/Q138232"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Antonio Tubl\u00e9n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18633256"}, "Title": {"type": "literal", "value": "Zu mir oder zu dir?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1663184"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16320787"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2014 film by Ingo Rasper"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q859131"}, "Title": {"type": "literal", "value": "Big Nothing"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3163830"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3163830"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3950325|http://www.wikidata.org/entity/Q501750|http://www.wikidata.org/entity/Q499644|http://www.wikidata.org/entity/Q238464|http://www.wikidata.org/entity/Q233054|http://www.wikidata.org/entity/Q232786|http://www.wikidata.org/entity/Q229237|http://www.wikidata.org/entity/Q203205|http://www.wikidata.org/entity/Q188792"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2006 film by Jean-Baptiste Andrea"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1544011"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q52151500"}, "Title": {"type": "literal", "value": "Papi Chulo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30123055"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q315340|http://www.wikidata.org/entity/Q165296"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by John Butler"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25112056"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20647184"}, "Title": {"type": "literal", "value": "Drunk Wedding"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19578231"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20644935|http://www.wikidata.org/entity/Q1139996"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Nick Weiss"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q38887345"}, "Title": {"type": "literal", "value": "Die Pfefferk\u00f6rner und der Fluch des Schwarzen K\u00f6nigs"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1082076"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1227739"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Christian Theede"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12593876"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21825013"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1997"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1997 film directed by Lee Sangwoo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30740341"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3021834"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3021834"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2865970"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Delphine Gleize"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60852007"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q233347"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Clea DuVall"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3095001"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3588126"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q242526|http://www.wikidata.org/entity/Q3293783|http://www.wikidata.org/entity/Q3287782|http://www.wikidata.org/entity/Q1775644|http://www.wikidata.org/entity/Q462256|http://www.wikidata.org/entity/Q451107|http://www.wikidata.org/entity/Q271553"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film directed by \u00c9l\u00e9onore Faucher"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56358983"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5929474"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Bahman Goudarzi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q33730613"}, "Title": {"type": "literal", "value": "Public Schooled"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22280032"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Kyle Rideout"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48757642"}, "Title": {"type": "literal", "value": "Ast\u00e9rix : Le Secret de la potion magique"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61875074|http://www.wikidata.org/entity/Q2833411"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2833411"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019|2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Alexandre Astier"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3117481"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56284115"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7441419"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2000 film directed by Sean S. Baker"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3824068"}, "Title": {"type": "literal", "value": "La scoperta dell'alba"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3978256"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3978256"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3978256|http://www.wikidata.org/entity/Q3833073|http://www.wikidata.org/entity/Q1041904|http://www.wikidata.org/entity/Q698000|http://www.wikidata.org/entity/Q697816|http://www.wikidata.org/entity/Q201617"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2013 film by Susanna Nicchiarelli"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3739211|http://www.wikidata.org/entity/Q3929491"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3666098"}, "Title": {"type": "literal", "value": "Chance"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q456862"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q456862"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2452126|http://www.wikidata.org/entity/Q526106|http://www.wikidata.org/entity/Q456862|http://www.wikidata.org/entity/Q391445|http://www.wikidata.org/entity/Q312885"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "75"}, "Description": {"type": "literal", "value": "2002 film film by Amber Benson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27959196"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q652149"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2475741"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Anees Bazmee"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13522749"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4648046"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6428713"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q642827|http://www.wikidata.org/entity/Q158533|http://www.wikidata.org/entity/Q63730"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by A. Karunakaran"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5529977"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26260226"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26258249"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26258249"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "2017 film directed by Arne K\u00f6rner"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18611400"}, "Title": {"type": "literal", "value": "\u0416\u0438\u0432\u0438 \u043b\u0435\u0433\u0435\u043d\u0434\u0438"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4199248"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18637197|http://www.wikidata.org/entity/Q12289328|http://www.wikidata.org/entity/Q4199248"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Niki Iliev"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q830452"}, "Title": {"type": "literal", "value": "Beste Gegend"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q96164"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1429616|http://www.wikidata.org/entity/Q1405763|http://www.wikidata.org/entity/Q562212|http://www.wikidata.org/entity/Q98469"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2008 film by Marcus H. Rosenm\u00fcller"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22078020"}, "Title": {"type": "literal", "value": "Girlfriend's Day"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6834610"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7184604|http://www.wikidata.org/entity/Q888178"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q58443690|http://www.wikidata.org/entity/Q5902748|http://www.wikidata.org/entity/Q888178|http://www.wikidata.org/entity/Q231128"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Michael Stephenson"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17128241"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1509644"}, "Title": {"type": "literal", "value": "Itty Bitty Titty Committee"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q441722"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5245814|http://www.wikidata.org/entity/Q3180255|http://www.wikidata.org/entity/Q1189470|http://www.wikidata.org/entity/Q469579|http://www.wikidata.org/entity/Q461082|http://www.wikidata.org/entity/Q449626|http://www.wikidata.org/entity/Q447584|http://www.wikidata.org/entity/Q447289|http://www.wikidata.org/entity/Q432710|http://www.wikidata.org/entity/Q267243|http://www.wikidata.org/entity/Q260241|http://www.wikidata.org/entity/Q235905"}, "Published": {"type": "literal", "value": "2008|2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2007 feminist comedy film directed by Jamie Babbit"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29535057"}, "Title": {"type": "literal", "value": "\u00d4tez-moi d'un doute"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2938811"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29537187|http://www.wikidata.org/entity/Q3310148|http://www.wikidata.org/entity/Q2938811"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3375576|http://www.wikidata.org/entity/Q1270509|http://www.wikidata.org/entity/Q523442|http://www.wikidata.org/entity/Q510002|http://www.wikidata.org/entity/Q236157|http://www.wikidata.org/entity/Q164976"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Carine Tardieu"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3193645|http://www.wikidata.org/entity/Q3488561|http://www.wikidata.org/entity/Q3547244|http://www.wikidata.org/entity/Q525894"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61125332"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6781975"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6781975"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q841515"}, "Title": {"type": "literal", "value": "Road Trip"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q362824"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q362824"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7812258|http://www.wikidata.org/entity/Q3809587|http://www.wikidata.org/entity/Q3805760|http://www.wikidata.org/entity/Q2978917|http://www.wikidata.org/entity/Q2278533|http://www.wikidata.org/entity/Q1778472|http://www.wikidata.org/entity/Q1181609|http://www.wikidata.org/entity/Q921470|http://www.wikidata.org/entity/Q458512|http://www.wikidata.org/entity/Q445878|http://www.wikidata.org/entity/Q445638|http://www.wikidata.org/entity/Q367094|http://www.wikidata.org/entity/Q362824|http://www.wikidata.org/entity/Q360674|http://www.wikidata.org/entity/Q350714|http://www.wikidata.org/entity/Q315826|http://www.wikidata.org/entity/Q314610|http://www.wikidata.org/entity/Q269673|http://www.wikidata.org/entity/Q235272|http://www.wikidata.org/entity/Q230510|http://www.wikidata.org/entity/Q193212|http://www.wikidata.org/entity/Q39983|http://www.wikidata.org/entity/Q18933|http://www.wikidata.org/entity/Q14450|http://www.wikidata.org/entity/Q4914"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2000 film by Todd Phillips"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7752106"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20538757"}, "Title": {"type": "literal", "value": "Staten Island Summer"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30122028"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5145253"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q229325|http://www.wikidata.org/entity/Q189992|http://www.wikidata.org/entity/Q14535|http://www.wikidata.org/entity/Q22771087|http://www.wikidata.org/entity/Q16215980|http://www.wikidata.org/entity/Q15220926|http://www.wikidata.org/entity/Q14954903|http://www.wikidata.org/entity/Q7114391|http://www.wikidata.org/entity/Q5679698|http://www.wikidata.org/entity/Q5145253|http://www.wikidata.org/entity/Q5056524|http://www.wikidata.org/entity/Q3296147|http://www.wikidata.org/entity/Q2935069|http://www.wikidata.org/entity/Q2907990|http://www.wikidata.org/entity/Q2093638|http://www.wikidata.org/entity/Q1823463|http://www.wikidata.org/entity/Q1319744|http://www.wikidata.org/entity/Q1150276|http://www.wikidata.org/entity/Q512986|http://www.wikidata.org/entity/Q298694|http://www.wikidata.org/entity/Q229979"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2015 American comedy film directed by Rhys Thomas"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6683799"}, "Title": {"type": "literal", "value": "Lost & Found in Armenia"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27960476"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20508470"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23664206|http://www.wikidata.org/entity/Q4147975|http://www.wikidata.org/entity/Q2090275|http://www.wikidata.org/entity/Q553895"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Gor Kirakosyan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19562413"}, "Title": {"type": "literal", "value": "M\u00e6nd og H\u00f8ns"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q491314"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q491314"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q40012158|http://www.wikidata.org/entity/Q40012103|http://www.wikidata.org/entity/Q12337210|http://www.wikidata.org/entity/Q12333484|http://www.wikidata.org/entity/Q12324614|http://www.wikidata.org/entity/Q11980775|http://www.wikidata.org/entity/Q5968094|http://www.wikidata.org/entity/Q2559831|http://www.wikidata.org/entity/Q1797671|http://www.wikidata.org/entity/Q1744038|http://www.wikidata.org/entity/Q768899|http://www.wikidata.org/entity/Q443662|http://www.wikidata.org/entity/Q383754|http://www.wikidata.org/entity/Q323563|http://www.wikidata.org/entity/Q294647|http://www.wikidata.org/entity/Q84081"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2015 film by Anders Thomas Jensen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22000239"}, "Title": {"type": "literal", "value": "Meu Passado Me Condena 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16940454"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16940866"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10286900"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2015 film by J\u00falia Rezende"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29514884"}, "Title": {"type": "literal", "value": "Happy Death Day"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3675834"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3675834|http://www.wikidata.org/entity/Q2542057"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q31833598|http://www.wikidata.org/entity/Q28374210|http://www.wikidata.org/entity/Q14807038"}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q53094"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2017 horror, black comedy film directed by Christopher B. Landon"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16984664"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10729092"}, "Title": {"type": "literal", "value": "Kalde f\u00f8tter"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11957305"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9358514"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22282567|http://www.wikidata.org/entity/Q22282512|http://www.wikidata.org/entity/Q22282321|http://www.wikidata.org/entity/Q22282279|http://www.wikidata.org/entity/Q22281622|http://www.wikidata.org/entity/Q17113457|http://www.wikidata.org/entity/Q17096616|http://www.wikidata.org/entity/Q15678591|http://www.wikidata.org/entity/Q14193606|http://www.wikidata.org/entity/Q11978210|http://www.wikidata.org/entity/Q11967927|http://www.wikidata.org/entity/Q11957305|http://www.wikidata.org/entity/Q11175618|http://www.wikidata.org/entity/Q7825276|http://www.wikidata.org/entity/Q7710693|http://www.wikidata.org/entity/Q6765710|http://www.wikidata.org/entity/Q5110728|http://www.wikidata.org/entity/Q4951828|http://www.wikidata.org/entity/Q818046"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q193979|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2006 Norwegian film directed by Alexander Eik"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3221419"}, "Title": {"type": "literal", "value": "Le Ciel, les Oiseaux et... ta m\u00e8re !"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3032767"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3106333|http://www.wikidata.org/entity/Q3032767"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23926410|http://www.wikidata.org/entity/Q18179234|http://www.wikidata.org/entity/Q3591196|http://www.wikidata.org/entity/Q3502082|http://www.wikidata.org/entity/Q3470502|http://www.wikidata.org/entity/Q3418669|http://www.wikidata.org/entity/Q3189442|http://www.wikidata.org/entity/Q3189067|http://www.wikidata.org/entity/Q3166862|http://www.wikidata.org/entity/Q2625575|http://www.wikidata.org/entity/Q1713457|http://www.wikidata.org/entity/Q312661|http://www.wikidata.org/entity/Q266881"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "1999 film by Djamel Bensalah"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q525894|http://www.wikidata.org/entity/Q1032540|http://www.wikidata.org/entity/Q3488610|http://www.wikidata.org/entity/Q29577770"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27703651"}, "Title": {"type": "literal", "value": "\u00c7alg\u0131 \u00c7engi \u0130kimiz"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6052251"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6052251"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6097675"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Sel\u00e7uk Aydemir"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42955507"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q47492960"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Prabhakar Sharan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20762674"}, "Title": {"type": "literal", "value": "Going in Style"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q139330"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19517847"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6761145|http://www.wikidata.org/entity/Q3854103|http://www.wikidata.org/entity/Q2050378|http://www.wikidata.org/entity/Q723256|http://www.wikidata.org/entity/Q457991|http://www.wikidata.org/entity/Q232059|http://www.wikidata.org/entity/Q210094|http://www.wikidata.org/entity/Q193070|http://www.wikidata.org/entity/Q123351|http://www.wikidata.org/entity/Q112536|http://www.wikidata.org/entity/Q109324|http://www.wikidata.org/entity/Q108283|http://www.wikidata.org/entity/Q48337"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q496523|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2017 film by Zach Braff"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q179200"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q52946182"}, "Title": {"type": "literal", "value": "De Rolling 2: por el sue\u00f1o mundialista"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16302557"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Harold Trompetero"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29913451"}, "Title": {"type": "literal", "value": "Hampstead"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q595112"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q444410|http://www.wikidata.org/entity/Q276165|http://www.wikidata.org/entity/Q206659|http://www.wikidata.org/entity/Q102642|http://www.wikidata.org/entity/Q15990205|http://www.wikidata.org/entity/Q8003106|http://www.wikidata.org/entity/Q6163711|http://www.wikidata.org/entity/Q4727316|http://www.wikidata.org/entity/Q2924983|http://www.wikidata.org/entity/Q915916|http://www.wikidata.org/entity/Q731187"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2017 film by Joel Hopkins"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22078002"}, "Title": {"type": "literal", "value": "The Disaster Artist"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q306403"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16886480|http://www.wikidata.org/entity/Q5965293"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188137|http://www.wikidata.org/entity/Q178882|http://www.wikidata.org/entity/Q139330|http://www.wikidata.org/entity/Q62975|http://www.wikidata.org/entity/Q45229|http://www.wikidata.org/entity/Q23547|http://www.wikidata.org/entity/Q489831|http://www.wikidata.org/entity/Q454494|http://www.wikidata.org/entity/Q383930|http://www.wikidata.org/entity/Q336400|http://www.wikidata.org/entity/Q325396|http://www.wikidata.org/entity/Q306403|http://www.wikidata.org/entity/Q241897|http://www.wikidata.org/entity/Q236578|http://www.wikidata.org/entity/Q235328|http://www.wikidata.org/entity/Q231536|http://www.wikidata.org/entity/Q220308|http://www.wikidata.org/entity/Q217004|http://www.wikidata.org/entity/Q201842|http://www.wikidata.org/entity/Q7153461|http://www.wikidata.org/entity/Q6382703|http://www.wikidata.org/entity/Q5649155|http://www.wikidata.org/entity/Q3776439|http://www.wikidata.org/entity/Q2301339|http://www.wikidata.org/entity/Q1713263|http://www.wikidata.org/entity/Q888178|http://www.wikidata.org/entity/Q860114"}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2017 film directed by James Franco about The Room"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q79202|http://www.wikidata.org/entity/Q3041294|http://www.wikidata.org/entity/Q17092493|http://www.wikidata.org/entity/Q21178818|http://www.wikidata.org/entity/Q27150184"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q57314399"}, "Title": {"type": "literal", "value": "Playmobil: The Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23409740"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28977435|http://www.wikidata.org/entity/Q25796519"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20882479|http://www.wikidata.org/entity/Q20740875"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28968258|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "2019 film directed by Lino DiSalvo"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3352864"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16661269"}, "Title": {"type": "literal", "value": "Lou ! Journal infime"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3189602"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3189602"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19843756|http://www.wikidata.org/entity/Q18414684|http://www.wikidata.org/entity/Q15170433|http://www.wikidata.org/entity/Q3200883|http://www.wikidata.org/entity/Q3167077|http://www.wikidata.org/entity/Q3085730|http://www.wikidata.org/entity/Q966378|http://www.wikidata.org/entity/Q233742|http://www.wikidata.org/entity/Q106573"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film directed by Julien Neel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3236871"}, "Title": {"type": "literal", "value": "Let My People Go!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3313145"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3313145|http://www.wikidata.org/entity/Q551772"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15726975|http://www.wikidata.org/entity/Q6227752|http://www.wikidata.org/entity/Q3350916|http://www.wikidata.org/entity/Q3340587|http://www.wikidata.org/entity/Q3308651|http://www.wikidata.org/entity/Q2980691|http://www.wikidata.org/entity/Q2964946|http://www.wikidata.org/entity/Q2493753|http://www.wikidata.org/entity/Q2018222|http://www.wikidata.org/entity/Q1684856|http://www.wikidata.org/entity/Q1210548|http://www.wikidata.org/entity/Q693534|http://www.wikidata.org/entity/Q514190|http://www.wikidata.org/entity/Q271553|http://www.wikidata.org/entity/Q234807|http://www.wikidata.org/entity/Q136221|http://www.wikidata.org/entity/Q116314"}, "Published": {"type": "literal", "value": "2012|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Mikael Buch"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q482944"}, "Title": {"type": "literal", "value": "\uc9c0\uad6c\ub97c \uc9c0\ucf1c\ub77c!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6153892"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6153892"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16092768|http://www.wikidata.org/entity/Q490635|http://www.wikidata.org/entity/Q483517"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q761469|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 South Korean film directed by Jang Jun-hwan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30235606"}, "Title": {"type": "literal", "value": "Orecchie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q59311592"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2016 film by Alessandro Aronadio"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4305836"}, "Title": {"type": "literal", "value": "\u041c\u0443\u0436\u0441\u043a\u0430\u044f \u0436\u0435\u043d\u0441\u043a\u0430\u044f \u0438\u0433\u0440\u0430"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13218078"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3553677"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film directed by Marija Makhanko"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1918046"}, "Title": {"type": "literal", "value": "Meine sch\u00f6ne Bescherung"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q104726"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q114012|http://www.wikidata.org/entity/Q77758|http://www.wikidata.org/entity/Q66771|http://www.wikidata.org/entity/Q445550|http://www.wikidata.org/entity/Q117700|http://www.wikidata.org/entity/Q65511|http://www.wikidata.org/entity/Q65111|http://www.wikidata.org/entity/Q64008"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2007 film by Vanessa Jopp"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q312538"}, "Title": {"type": "literal", "value": "Soul Kitchen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q77061"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q77061|http://www.wikidata.org/entity/Q72883"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q90820|http://www.wikidata.org/entity/Q77035|http://www.wikidata.org/entity/Q74258|http://www.wikidata.org/entity/Q72883|http://www.wikidata.org/entity/Q58603|http://www.wikidata.org/entity/Q25839|http://www.wikidata.org/entity/Q22280962|http://www.wikidata.org/entity/Q18626259|http://www.wikidata.org/entity/Q2803698|http://www.wikidata.org/entity/Q2433429|http://www.wikidata.org/entity/Q2287499|http://www.wikidata.org/entity/Q2076077|http://www.wikidata.org/entity/Q1896020|http://www.wikidata.org/entity/Q1892651|http://www.wikidata.org/entity/Q1806325|http://www.wikidata.org/entity/Q1778862|http://www.wikidata.org/entity/Q1745408|http://www.wikidata.org/entity/Q1727545|http://www.wikidata.org/entity/Q1605129|http://www.wikidata.org/entity/Q1556252|http://www.wikidata.org/entity/Q1531684|http://www.wikidata.org/entity/Q1248009|http://www.wikidata.org/entity/Q1053243|http://www.wikidata.org/entity/Q1051271|http://www.wikidata.org/entity/Q1020694|http://www.wikidata.org/entity/Q720344|http://www.wikidata.org/entity/Q527047|http://www.wikidata.org/entity/Q197977|http://www.wikidata.org/entity/Q122925|http://www.wikidata.org/entity/Q112062|http://www.wikidata.org/entity/Q104741|http://www.wikidata.org/entity/Q98286|http://www.wikidata.org/entity/Q97620"}, "Published": {"type": "literal", "value": "2010|2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2009 film by Fatih Ak\u0131n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2001579"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q329409"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014|2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "2012 film by Aleksey Igudesman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18633959"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028908"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028908"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Thomas Salvador"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18920944"}, "Title": {"type": "literal", "value": "Discount"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19630268"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19630268"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3350797"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Louis-Julien Petit"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1678196"}, "Title": {"type": "literal", "value": "Wholly Moses!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2078767"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16216793"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7153429|http://www.wikidata.org/entity/Q3018248|http://www.wikidata.org/entity/Q2149007|http://www.wikidata.org/entity/Q769205|http://www.wikidata.org/entity/Q555182|http://www.wikidata.org/entity/Q446290|http://www.wikidata.org/entity/Q348209|http://www.wikidata.org/entity/Q315734|http://www.wikidata.org/entity/Q314812|http://www.wikidata.org/entity/Q310343|http://www.wikidata.org/entity/Q294912|http://www.wikidata.org/entity/Q234068"}, "Published": {"type": "literal", "value": "1980"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "1980 film by Gary Weis"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4185458"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q354554"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5619623|http://www.wikidata.org/entity/Q704130"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 Chinese film directed by Ning Hao"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24648157"}, "Title": {"type": "literal", "value": "La Loi de la jungle"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14833406"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3559719|http://www.wikidata.org/entity/Q3559331|http://www.wikidata.org/entity/Q746932"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Antonin Peretjatko"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20111009"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5956887"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4975440"}, "Title": {"type": "literal", "value": "Brother's Justice"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56285770|http://www.wikidata.org/entity/Q462354"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q462354"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by David Palmer and Dax Shepard"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3358108"}, "Title": {"type": "literal", "value": "Ouf"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19521240"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15148942|http://www.wikidata.org/entity/Q3592761|http://www.wikidata.org/entity/Q3503482|http://www.wikidata.org/entity/Q3308651|http://www.wikidata.org/entity/Q3166719|http://www.wikidata.org/entity/Q3046281|http://www.wikidata.org/entity/Q2925490|http://www.wikidata.org/entity/Q1647279|http://www.wikidata.org/entity/Q1345210|http://www.wikidata.org/entity/Q1306432|http://www.wikidata.org/entity/Q449240|http://www.wikidata.org/entity/Q292545|http://www.wikidata.org/entity/Q288180|http://www.wikidata.org/entity/Q230710"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film directed by Yann Coridian"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6683587"}, "Title": {"type": "literal", "value": "Kaybedenler Kul\u00fcb\u00fc"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7814245"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21526588|http://www.wikidata.org/entity/Q7814245"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17045521|http://www.wikidata.org/entity/Q8080044|http://www.wikidata.org/entity/Q6100684|http://www.wikidata.org/entity/Q6098512|http://www.wikidata.org/entity/Q6088955|http://www.wikidata.org/entity/Q6082472|http://www.wikidata.org/entity/Q6079985|http://www.wikidata.org/entity/Q4117946|http://www.wikidata.org/entity/Q3337865|http://www.wikidata.org/entity/Q930862|http://www.wikidata.org/entity/Q913571"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Tolga \u00d6rnek"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13224620"}, "Title": {"type": "literal", "value": "\u042d\u043d\u0442\u0440\u043e\u043f\u0438\u044f"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13218104"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4506333|http://www.wikidata.org/entity/Q4172072|http://www.wikidata.org/entity/Q468621|http://www.wikidata.org/entity/Q287099"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q53094|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "75"}, "Description": {"type": "literal", "value": "2012 film by Maria Sahakyan"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4822165"}, "Title": {"type": "literal", "value": "Torrance Rises"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6483320"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q259913"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1999 film by Lance Bangs"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1999"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60188951"}, "Title": {"type": "literal", "value": "Love Machine"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60189101"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60189033|http://www.wikidata.org/entity/Q33516309|http://www.wikidata.org/entity/Q28520849|http://www.wikidata.org/entity/Q21582242|http://www.wikidata.org/entity/Q1944541|http://www.wikidata.org/entity/Q1711858|http://www.wikidata.org/entity/Q1648072|http://www.wikidata.org/entity/Q1624616|http://www.wikidata.org/entity/Q1587263|http://www.wikidata.org/entity/Q1541921|http://www.wikidata.org/entity/Q1428994|http://www.wikidata.org/entity/Q1328659|http://www.wikidata.org/entity/Q1281189|http://www.wikidata.org/entity/Q1097560|http://www.wikidata.org/entity/Q354474|http://www.wikidata.org/entity/Q77807"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film by Andreas Schmied"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1369459"}, "Published": {"type": "literal", "value": "2019"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15731572"}, "Title": {"type": "literal", "value": "Les Grandes Ondes (\u00e0 l'ouest)"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3241813"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3241813"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3369588|http://www.wikidata.org/entity/Q3241813|http://www.wikidata.org/entity/Q3170007|http://www.wikidata.org/entity/Q3090038|http://www.wikidata.org/entity/Q1930952|http://www.wikidata.org/entity/Q130092|http://www.wikidata.org/entity/Q116128"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2013 film by Lionel Baier"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3232641|http://www.wikidata.org/entity/Q17145684"}, "Published": {"type": "literal", "value": "2014|2013"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q62021253"}, "Title": {"type": "literal", "value": "Befreite Zone"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q62021621"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q62021621"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1696958|http://www.wikidata.org/entity/Q102450|http://www.wikidata.org/entity/Q78197|http://www.wikidata.org/entity/Q64823"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2003 film by Norbert Baumgarten"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2004|2003"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7752552"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2394473"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by David Hicks"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1607312"}, "Published": {"type": "literal", "value": "2012"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3823681"}, "Title": {"type": "literal", "value": "La prima notte di nozze"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3694301"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3694301"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4000160|http://www.wikidata.org/entity/Q3847540|http://www.wikidata.org/entity/Q3827856|http://www.wikidata.org/entity/Q3751198|http://www.wikidata.org/entity/Q3749314|http://www.wikidata.org/entity/Q3745905|http://www.wikidata.org/entity/Q3733965|http://www.wikidata.org/entity/Q3721421|http://www.wikidata.org/entity/Q3641985|http://www.wikidata.org/entity/Q3617074|http://www.wikidata.org/entity/Q3609295|http://www.wikidata.org/entity/Q2653134|http://www.wikidata.org/entity/Q2481109|http://www.wikidata.org/entity/Q935640|http://www.wikidata.org/entity/Q555828|http://www.wikidata.org/entity/Q77456"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "1976 film by Corrado Prisco"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1976"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25336867"}, "Title": {"type": "literal", "value": "O man\u00edaco do Facebook"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10278413"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "125"}, "Description": {"type": "literal", "value": "2016 film by Evandro Berlesi"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3110682"}, "Title": {"type": "literal", "value": "Good Neighbors"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434244"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434244"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3311377|http://www.wikidata.org/entity/Q3052376|http://www.wikidata.org/entity/Q2850841|http://www.wikidata.org/entity/Q1309821|http://www.wikidata.org/entity/Q551861|http://www.wikidata.org/entity/Q336131|http://www.wikidata.org/entity/Q316756"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2421031|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 Canadian comedy/thriller film directed by Jacob Tierney"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48672800"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3298525"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6984068"}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Whitney Cummings"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28496933"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1930523"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1930523"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Michael Cohen"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16857388"}, "Title": {"type": "literal", "value": "Feast"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17521924"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17521924|http://www.wikidata.org/entity/Q3421133"}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1919632|http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "7|6"}, "Description": {"type": "literal", "value": "2014 computer-animated short film directed by Patrick Osborne"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1047410"}, "Published": {"type": "literal", "value": "2015|2014"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10959765"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5073156"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6370538|http://www.wikidata.org/entity/Q4120263|http://www.wikidata.org/entity/Q591801|http://www.wikidata.org/entity/Q432164"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2000 film by Sandra Nashaat"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2000"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2550185"}, "Title": {"type": "literal", "value": "Was nicht passt, wird passend gemacht"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2078661"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1908448"}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2002 film by Peter Thorwarth"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2002"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q645405"}, "Title": {"type": "literal", "value": "Alpha and Omega"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2895448|http://www.wikidata.org/entity/Q2852811"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2964698"}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2010 American computer animated comedy drama film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1433174|http://www.wikidata.org/entity/Q2702789"}, "Published": {"type": "literal", "value": "2010"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3791225"}, "Title": {"type": "literal", "value": "I racconti di Canterbury N. 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1873491"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3840114"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3845497|http://www.wikidata.org/entity/Q3839271|http://www.wikidata.org/entity/Q3726621|http://www.wikidata.org/entity/Q3634653|http://www.wikidata.org/entity/Q1156919|http://www.wikidata.org/entity/Q1040908|http://www.wikidata.org/entity/Q515997"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "1972 film by Lucio Giachin"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1972"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13499767"}, "Title": {"type": "literal", "value": "Tadeo Jones 2: El secreto del rey Midas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5785736"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "81"}, "Description": {"type": "literal", "value": "2017 animated film directed by Enrique Gato"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018|2017"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20476212"}, "Title": {"type": "literal", "value": "Ali Baba ve Yedi C\u00fcceler"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q732915"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q732915"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q732915"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 Turkish film directed by Cem Y\u0131lmaz"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17059620"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7135164"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7377514"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Parambrata Chatterjee"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18700753"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11585892"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1154775"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Jun'ichi Ishikawa"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3991647"}, "Title": {"type": "literal", "value": "Tiny Furniture"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q288359"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q288359"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5902748|http://www.wikidata.org/entity/Q5591098|http://www.wikidata.org/entity/Q4749378|http://www.wikidata.org/entity/Q3219659|http://www.wikidata.org/entity/Q2084523|http://www.wikidata.org/entity/Q440189|http://www.wikidata.org/entity/Q288359|http://www.wikidata.org/entity/Q39958"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2010 film by Lena Dunham"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61477873"}, "Title": {"type": "literal", "value": "Bajo el mismo techo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5953837"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5953837"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5798422|http://www.wikidata.org/entity/Q3807924|http://www.wikidata.org/entity/Q3698926|http://www.wikidata.org/entity/Q251636|http://www.wikidata.org/entity/Q242410|http://www.wikidata.org/entity/Q129501|http://www.wikidata.org/entity/Q46551267|http://www.wikidata.org/entity/Q16630420|http://www.wikidata.org/entity/Q9048555|http://www.wikidata.org/entity/Q8198107"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Spanish 2019 comedy film directed by Juana Mac\u00edas"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2577308"}, "Title": {"type": "literal", "value": "The Infidel"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6288595"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q526242"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q468241"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2010 comedy film directed by Josh Appignanesi"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011|2010"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19934668"}, "Title": {"type": "literal", "value": "High Performance \u2013 Mandarinen l\u00fcgen nicht"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15821424"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15821424"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1603396|http://www.wikidata.org/entity/Q1328659|http://www.wikidata.org/entity/Q355662|http://www.wikidata.org/entity/Q89703|http://www.wikidata.org/entity/Q16504482|http://www.wikidata.org/entity/Q2091760|http://www.wikidata.org/entity/Q1683750"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2014 film by Johanna Moder"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014|2015"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23930094"}, "Title": {"type": "literal", "value": "Simon sagt auf Wiedersehen zu seiner Vorhaut"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27929944"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2015 film directed by Viviane Andereggen"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q33105131"}, "Title": {"type": "literal", "value": "Mid-90s"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q313388"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q313388"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q47467684|http://www.wikidata.org/entity/Q17488953|http://www.wikidata.org/entity/Q15222780"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2018 film directed by Jonah Hill"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16248298|http://www.wikidata.org/entity/Q17295709"}, "Published": {"type": "literal", "value": "2018"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56278697"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5980564"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6212645"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Iain Morris"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1253937"}, "Title": {"type": "literal", "value": "Dr. Jekyll and Ms. Hyde"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q332804"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q332804"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q446481|http://www.wikidata.org/entity/Q376131|http://www.wikidata.org/entity/Q351479|http://www.wikidata.org/entity/Q328074|http://www.wikidata.org/entity/Q315083|http://www.wikidata.org/entity/Q267976|http://www.wikidata.org/entity/Q267051|http://www.wikidata.org/entity/Q230736"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "1995 British-American comedy film directed by David Price"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1995"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q46028619"}, "Title": {"type": "literal", "value": "Sophelikoptern"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6172133"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6172133"}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film directed by Jonas Selberg Augusts\u00e9n"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17182410"}, "Title": {"type": "literal", "value": "Gregory Go Boom"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27773793"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27773793"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q309555"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Janicza Bravo"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15270658"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4139036"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1957385|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 animated film directed by Georgi Gitis"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4401085"}, "Published": {"type": "literal", "value": "2013"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19364012"}, "Title": {"type": "literal", "value": "Zeroville"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q306403"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23796638|http://www.wikidata.org/entity/Q926912|http://www.wikidata.org/entity/Q921470|http://www.wikidata.org/entity/Q383930|http://www.wikidata.org/entity/Q336400|http://www.wikidata.org/entity/Q306403|http://www.wikidata.org/entity/Q256884|http://www.wikidata.org/entity/Q241897|http://www.wikidata.org/entity/Q220308|http://www.wikidata.org/entity/Q218503|http://www.wikidata.org/entity/Q112536|http://www.wikidata.org/entity/Q80069"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2017 film by James Franco"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21178818"}, "Published": {"type": "literal", "value": "2017"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17277457"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q470841"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5443398"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Han Han"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16949685"}, "Title": {"type": "literal", "value": "Coffee Town"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4953855"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4953855"}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Brad Copeland"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2604282"}, "Title": {"type": "literal", "value": "The People I've Slept With"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q706016"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6426462"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7291588|http://www.wikidata.org/entity/Q1729395|http://www.wikidata.org/entity/Q1400297|http://www.wikidata.org/entity/Q1190037|http://www.wikidata.org/entity/Q633905|http://www.wikidata.org/entity/Q530166|http://www.wikidata.org/entity/Q507888|http://www.wikidata.org/entity/Q433962"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Quentin Lee"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16549745"}, "Title": {"type": "literal", "value": "Dimmi che destino avr\u00f2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3900890"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2012 film by Peter Marcias"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1476932"}, "Title": {"type": "literal", "value": "Queens Logic"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2632767"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7823470"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q234137|http://www.wikidata.org/entity/Q204393|http://www.wikidata.org/entity/Q184805|http://www.wikidata.org/entity/Q172261|http://www.wikidata.org/entity/Q106997|http://www.wikidata.org/entity/Q15947345|http://www.wikidata.org/entity/Q10841812|http://www.wikidata.org/entity/Q7823470|http://www.wikidata.org/entity/Q3454165|http://www.wikidata.org/entity/Q3161916|http://www.wikidata.org/entity/Q3156746|http://www.wikidata.org/entity/Q2935069|http://www.wikidata.org/entity/Q2052465|http://www.wikidata.org/entity/Q1822688|http://www.wikidata.org/entity/Q1198176|http://www.wikidata.org/entity/Q1190150|http://www.wikidata.org/entity/Q509117|http://www.wikidata.org/entity/Q276269|http://www.wikidata.org/entity/Q237247"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "1991 film by Steve Rash"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1991"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56305361"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4264563"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film directed by Sergey Loban"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27526166"}, "Title": {"type": "literal", "value": "Adios Amigos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21283233"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q461653"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192881"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2016 film by Albert Jan van Rees"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4809073"}, "Title": {"type": "literal", "value": "Assisted Living"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5365486"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16727580"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Elliot Greenebaum"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2003"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3437951"}, "Title": {"type": "literal", "value": "\u0930\u0949\u0915\u0947\u091f \u0938\u093f\u0902\u0939"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3482121"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6123531"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7491730|http://www.wikidata.org/entity/Q5527641|http://www.wikidata.org/entity/Q3401588|http://www.wikidata.org/entity/Q1063412"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Shimit Amin"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20826390"}, "Title": {"type": "literal", "value": "R\u00f3zsasz\u00edn sajt"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60538546"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Barnab\u00e1s T\u00f3th"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18711335"}, "Title": {"type": "literal", "value": "Maikol Yordan de Viaje Perdido"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20015283"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 Costa Rican film directed by Miguel Alejandro G\u00f3mez"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12835389"}, "Title": {"type": "literal", "value": "Adam ol! 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12846298"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Sarkhan Karamoglu"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15679974"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q908962"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1154232"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "78"}, "Description": {"type": "literal", "value": "2013 film by Nobuhiro Yamashita"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1382322"}, "Title": {"type": "literal", "value": "Evet, ich will!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q98255"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q98255"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22294679|http://www.wikidata.org/entity/Q21035816|http://www.wikidata.org/entity/Q6081791|http://www.wikidata.org/entity/Q2511663|http://www.wikidata.org/entity/Q2455413|http://www.wikidata.org/entity/Q2020358|http://www.wikidata.org/entity/Q2005315|http://www.wikidata.org/entity/Q1959302|http://www.wikidata.org/entity/Q1824918|http://www.wikidata.org/entity/Q1652293|http://www.wikidata.org/entity/Q1617763|http://www.wikidata.org/entity/Q1575584|http://www.wikidata.org/entity/Q1534215|http://www.wikidata.org/entity/Q1459956|http://www.wikidata.org/entity/Q1349407|http://www.wikidata.org/entity/Q1308271|http://www.wikidata.org/entity/Q1273627|http://www.wikidata.org/entity/Q1222375|http://www.wikidata.org/entity/Q928700|http://www.wikidata.org/entity/Q832186|http://www.wikidata.org/entity/Q755917|http://www.wikidata.org/entity/Q390675|http://www.wikidata.org/entity/Q389042|http://www.wikidata.org/entity/Q273637|http://www.wikidata.org/entity/Q197977|http://www.wikidata.org/entity/Q125744|http://www.wikidata.org/entity/Q124280|http://www.wikidata.org/entity/Q114624|http://www.wikidata.org/entity/Q111244|http://www.wikidata.org/entity/Q109299|http://www.wikidata.org/entity/Q106744|http://www.wikidata.org/entity/Q104696|http://www.wikidata.org/entity/Q100700|http://www.wikidata.org/entity/Q100240|http://www.wikidata.org/entity/Q98255|http://www.wikidata.org/entity/Q90890|http://www.wikidata.org/entity/Q90869|http://www.wikidata.org/entity/Q75177"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2008 film by Sinan Akku\u015f"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009|2008"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20091396"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4330970"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film directed by Karen Oganesyan"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14509721"}, "Title": {"type": "literal", "value": "You Are Here"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q139325|http://www.wikidata.org/entity/Q924283|http://www.wikidata.org/entity/Q230203|http://www.wikidata.org/entity/Q161916"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q924283"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23054715|http://www.wikidata.org/entity/Q15712264|http://www.wikidata.org/entity/Q5302371|http://www.wikidata.org/entity/Q1394940|http://www.wikidata.org/entity/Q1392931|http://www.wikidata.org/entity/Q1176588|http://www.wikidata.org/entity/Q536437|http://www.wikidata.org/entity/Q265285|http://www.wikidata.org/entity/Q262862|http://www.wikidata.org/entity/Q238877|http://www.wikidata.org/entity/Q236364|http://www.wikidata.org/entity/Q230203|http://www.wikidata.org/entity/Q225239|http://www.wikidata.org/entity/Q161916|http://www.wikidata.org/entity/Q158250|http://www.wikidata.org/entity/Q139325"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "2013 American Comedy film"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12246396"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16297557"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12241008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q53094"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1171584"}, "Title": {"type": "literal", "value": "Sorority Boys"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1400238"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2528430|http://www.wikidata.org/entity/Q1740243|http://www.wikidata.org/entity/Q1343650|http://www.wikidata.org/entity/Q1275214|http://www.wikidata.org/entity/Q448522|http://www.wikidata.org/entity/Q311613|http://www.wikidata.org/entity/Q302265|http://www.wikidata.org/entity/Q288680|http://www.wikidata.org/entity/Q242206|http://www.wikidata.org/entity/Q236755|http://www.wikidata.org/entity/Q31741"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2002 comedy film directed by Wallace Wolodarsky"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q497155"}, "Published": {"type": "literal", "value": "2002"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28127569"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23882438"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3522919"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Kannan Thamarakkulam"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21031044"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q682762"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20048062|http://www.wikidata.org/entity/Q6003470|http://www.wikidata.org/entity/Q5476218|http://www.wikidata.org/entity/Q2972747"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2013 film by Marco Berger"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15209986"}, "Title": {"type": "literal", "value": "Chappie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q715838"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q435705|http://www.wikidata.org/entity/Q715838"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18378828|http://www.wikidata.org/entity/Q15856666|http://www.wikidata.org/entity/Q10623856|http://www.wikidata.org/entity/Q5611881|http://www.wikidata.org/entity/Q5070338|http://www.wikidata.org/entity/Q2084794|http://www.wikidata.org/entity/Q613471|http://www.wikidata.org/entity/Q512353|http://www.wikidata.org/entity/Q458337|http://www.wikidata.org/entity/Q350014|http://www.wikidata.org/entity/Q316997|http://www.wikidata.org/entity/Q245075|http://www.wikidata.org/entity/Q129591|http://www.wikidata.org/entity/Q102124|http://www.wikidata.org/entity/Q21518548|http://www.wikidata.org/entity/Q21031714"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2678111|http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q20443008|http://www.wikidata.org/entity/Q761469|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q471839"}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "2015 film by Neill Blomkamp"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22807052|http://www.wikidata.org/entity/Q2856187"}, "Published": {"type": "literal", "value": "2015"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16492264"}, "Title": {"type": "literal", "value": "El ciudadano Kramer"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q868516"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q868516"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Stefan Kramer"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26844369"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4316314"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4316314|http://www.wikidata.org/entity/Q3479732"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26904119|http://www.wikidata.org/entity/Q4424820|http://www.wikidata.org/entity/Q3479732"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2016 film by Aleksandr Nezlobin"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1975145"}, "Published": {"type": "literal", "value": "2016"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26990213"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1894395"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16890266|http://www.wikidata.org/entity/Q2437931|http://www.wikidata.org/entity/Q1405744|http://www.wikidata.org/entity/Q1273429|http://www.wikidata.org/entity/Q95932"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2016 film directed by Marcus Ulbricht"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3716128"}, "Title": {"type": "literal", "value": "\u09a6\u09c1\u0987 \u09aa\u09c3\u09a5\u09bf\u09ac\u09c0"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3194810"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6951550"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5299396|http://www.wikidata.org/entity/Q5266378|http://www.wikidata.org/entity/Q4860999|http://www.wikidata.org/entity/Q402203"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "150"}, "Description": {"type": "literal", "value": "2010 film by Raj Chakraborty"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20814850"}, "Title": {"type": "literal", "value": "L\u2019Avenir"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3307854"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3307854"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23816434|http://www.wikidata.org/entity/Q16677381|http://www.wikidata.org/entity/Q2848242|http://www.wikidata.org/entity/Q273803|http://www.wikidata.org/entity/Q106365"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2016 film by Mia Hansen-L\u00f8ve"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q51845240"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1271549"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55849622|http://www.wikidata.org/entity/Q1910207|http://www.wikidata.org/entity/Q1271549"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q120509"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Manuel Flurin Hendry"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018|2017"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28657118"}, "Title": {"type": "literal", "value": "Ron Goossens, Low Budget Stuntman"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q943006"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2017 film by Steffen Haars"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15340352"}, "Title": {"type": "literal", "value": "In a World..."}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q241686"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q241686"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55585213|http://www.wikidata.org/entity/Q7801308|http://www.wikidata.org/entity/Q6835627|http://www.wikidata.org/entity/Q6812678|http://www.wikidata.org/entity/Q3180023|http://www.wikidata.org/entity/Q1985488|http://www.wikidata.org/entity/Q1378118|http://www.wikidata.org/entity/Q983082|http://www.wikidata.org/entity/Q980143|http://www.wikidata.org/entity/Q717951|http://www.wikidata.org/entity/Q510966|http://www.wikidata.org/entity/Q449126|http://www.wikidata.org/entity/Q446045|http://www.wikidata.org/entity/Q280098|http://www.wikidata.org/entity/Q269309|http://www.wikidata.org/entity/Q241686|http://www.wikidata.org/entity/Q163263|http://www.wikidata.org/entity/Q127113"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2013 film by Lake Bell"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q203108"}, "Title": {"type": "literal", "value": "TMNT"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q975134"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q975134"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1147104|http://www.wikidata.org/entity/Q489831|http://www.wikidata.org/entity/Q488335|http://www.wikidata.org/entity/Q318885|http://www.wikidata.org/entity/Q313266|http://www.wikidata.org/entity/Q193048|http://www.wikidata.org/entity/Q180852|http://www.wikidata.org/entity/Q180665|http://www.wikidata.org/entity/Q178348|http://www.wikidata.org/entity/Q16296|http://www.wikidata.org/entity/Q6849459|http://www.wikidata.org/entity/Q2536187"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q761469|http://www.wikidata.org/entity/Q188473"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2007 science fiction/martial arts CGI film directed by Kevin Munroe"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3043485"}, "Published": {"type": "literal", "value": "2007|2008"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18220864"}, "Title": {"type": "literal", "value": "Im Alter von Ellen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6517532"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6517532"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1683837|http://www.wikidata.org/entity/Q1555527|http://www.wikidata.org/entity/Q1504267|http://www.wikidata.org/entity/Q270005|http://www.wikidata.org/entity/Q109444|http://www.wikidata.org/entity/Q90374"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2010 film by Pia Marais"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011|2010"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3057240"}, "Title": {"type": "literal", "value": "Ernest et C\u00e9lestine"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3559781|http://www.wikidata.org/entity/Q3501563|http://www.wikidata.org/entity/Q2896206"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3094148|http://www.wikidata.org/entity/Q332689"}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "77"}, "Description": {"type": "literal", "value": "2012 animated movie"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3230674"}, "Published": {"type": "literal", "value": "2013|2012"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19842746"}, "Title": {"type": "literal", "value": "Teenage Mutant Ninja Turtles: Half Shell"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19720623"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6288593"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q913132|http://www.wikidata.org/entity/Q781176|http://www.wikidata.org/entity/Q24702631|http://www.wikidata.org/entity/Q20090990|http://www.wikidata.org/entity/Q3342656|http://www.wikidata.org/entity/Q2126049|http://www.wikidata.org/entity/Q1164810|http://www.wikidata.org/entity/Q960721|http://www.wikidata.org/entity/Q929291|http://www.wikidata.org/entity/Q926963|http://www.wikidata.org/entity/Q369109|http://www.wikidata.org/entity/Q355116|http://www.wikidata.org/entity/Q331720|http://www.wikidata.org/entity/Q271866|http://www.wikidata.org/entity/Q223281|http://www.wikidata.org/entity/Q222039|http://www.wikidata.org/entity/Q151859|http://www.wikidata.org/entity/Q129041|http://www.wikidata.org/entity/Q80069|http://www.wikidata.org/entity/Q60478|http://www.wikidata.org/entity/Q686301|http://www.wikidata.org/entity/Q616960|http://www.wikidata.org/entity/Q555396|http://www.wikidata.org/entity/Q376031"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1033891|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q188473"}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "2016 American 3D science fiction action comedy film directed by Dave Green"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q159846"}, "Published": {"type": "literal", "value": "2016"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16253773"}, "Title": {"type": "literal", "value": "Obvious Child"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18153579"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18153579"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6124807|http://www.wikidata.org/entity/Q744166|http://www.wikidata.org/entity/Q449959|http://www.wikidata.org/entity/Q362332|http://www.wikidata.org/entity/Q292381|http://www.wikidata.org/entity/Q274812"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2014 film by Gillian Robespierre"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1066199"}, "Title": {"type": "literal", "value": "\u30ea\u30f3\u30c0 \u30ea\u30f3\u30c0 \u30ea\u30f3\u30c0"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q908962"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11415886|http://www.wikidata.org/entity/Q908962"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11563549|http://www.wikidata.org/entity/Q11467963|http://www.wikidata.org/entity/Q10855296|http://www.wikidata.org/entity/Q3548366|http://www.wikidata.org/entity/Q3545152|http://www.wikidata.org/entity/Q1144033|http://www.wikidata.org/entity/Q1093071|http://www.wikidata.org/entity/Q1041015|http://www.wikidata.org/entity/Q360986|http://www.wikidata.org/entity/Q269742"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "2005 film by Nobuhiro Yamashita"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2005"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20899738"}, "Title": {"type": "literal", "value": "Good Kids"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5107394"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5107394"}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Chris McCoy"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7563717"}, "Title": {"type": "literal", "value": "Sorry, Thanks"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18351577"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q251809"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Dia Sokol Savage"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1103638"}, "Title": {"type": "literal", "value": "Blinkende lygter"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q491314"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q491314"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41730460|http://www.wikidata.org/entity/Q38052610|http://www.wikidata.org/entity/Q12331627|http://www.wikidata.org/entity/Q12328694|http://www.wikidata.org/entity/Q12327673|http://www.wikidata.org/entity/Q12323855|http://www.wikidata.org/entity/Q12316066|http://www.wikidata.org/entity/Q7176561|http://www.wikidata.org/entity/Q7113315|http://www.wikidata.org/entity/Q5882039|http://www.wikidata.org/entity/Q5586759|http://www.wikidata.org/entity/Q4968553|http://www.wikidata.org/entity/Q4955475|http://www.wikidata.org/entity/Q2778476|http://www.wikidata.org/entity/Q2347440|http://www.wikidata.org/entity/Q2033737|http://www.wikidata.org/entity/Q1912647|http://www.wikidata.org/entity/Q1797707|http://www.wikidata.org/entity/Q1797681|http://www.wikidata.org/entity/Q1760754|http://www.wikidata.org/entity/Q952621|http://www.wikidata.org/entity/Q740244|http://www.wikidata.org/entity/Q470023|http://www.wikidata.org/entity/Q435097|http://www.wikidata.org/entity/Q383754|http://www.wikidata.org/entity/Q382210|http://www.wikidata.org/entity/Q323563|http://www.wikidata.org/entity/Q294647|http://www.wikidata.org/entity/Q264696|http://www.wikidata.org/entity/Q186501"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "2000 film by Anders Thomas Jensen"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2002|2000"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3213382"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2938811"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3310148"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3506158|http://www.wikidata.org/entity/Q3473336|http://www.wikidata.org/entity/Q3367400|http://www.wikidata.org/entity/Q3335761|http://www.wikidata.org/entity/Q3242498|http://www.wikidata.org/entity/Q3190953|http://www.wikidata.org/entity/Q3161671|http://www.wikidata.org/entity/Q2966467|http://www.wikidata.org/entity/Q2964183|http://www.wikidata.org/entity/Q2820822|http://www.wikidata.org/entity/Q983159|http://www.wikidata.org/entity/Q271944|http://www.wikidata.org/entity/Q212873"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Carine Tardieu"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19245400"}, "Title": {"type": "literal", "value": "Digging for Fire"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6212564"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6212564|http://www.wikidata.org/entity/Q171525"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20090365|http://www.wikidata.org/entity/Q16226409|http://www.wikidata.org/entity/Q5576465|http://www.wikidata.org/entity/Q3195292|http://www.wikidata.org/entity/Q1077549|http://www.wikidata.org/entity/Q744166|http://www.wikidata.org/entity/Q528126|http://www.wikidata.org/entity/Q436360|http://www.wikidata.org/entity/Q354031|http://www.wikidata.org/entity/Q316446|http://www.wikidata.org/entity/Q311314|http://www.wikidata.org/entity/Q238900|http://www.wikidata.org/entity/Q236956|http://www.wikidata.org/entity/Q235905|http://www.wikidata.org/entity/Q171525|http://www.wikidata.org/entity/Q67701|http://www.wikidata.org/entity/Q44467|http://www.wikidata.org/entity/Q29328"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2015 film by Joe Swanberg"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16496329"}, "Title": {"type": "literal", "value": "Balas & Bolinhos - O Regresso"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1670730"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2004 film by Lu\u00eds Ismael"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2004"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3851940"}, "Title": {"type": "literal", "value": "Matrimoni e altri disastri"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q516541"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3080921|http://www.wikidata.org/entity/Q516541"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3851224|http://www.wikidata.org/entity/Q3763387|http://www.wikidata.org/entity/Q3749413|http://www.wikidata.org/entity/Q3620029|http://www.wikidata.org/entity/Q2721648|http://www.wikidata.org/entity/Q2575446|http://www.wikidata.org/entity/Q1227029|http://www.wikidata.org/entity/Q285419|http://www.wikidata.org/entity/Q201617"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2010 Italian film directed by Nina Di Majo"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11708615"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2721147"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2721147"}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Dariusz Zawi\u015blak"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19898063"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2734356"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2734356"}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2015 film by Corneliu Porumboiu"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7198637"}, "Title": {"type": "literal", "value": "Pitbullterje"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11958682"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q329546"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3356840|http://www.wikidata.org/entity/Q501324"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Arild Fr\u00f6hlich"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2005"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17101080"}, "Title": {"type": "literal", "value": "The Dirties"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25209047"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Matt Johnson"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17478880"}, "Title": {"type": "literal", "value": "Confusi e felici"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3850996"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2014 film by Massimiliano Bruno"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3804257"}, "Published": {"type": "literal", "value": "2014"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20950352"}, "Title": {"type": "literal", "value": "Fack ju G\u00f6hte 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q112352"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q112352"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20564196|http://www.wikidata.org/entity/Q19958947|http://www.wikidata.org/entity/Q19946297|http://www.wikidata.org/entity/Q18411528|http://www.wikidata.org/entity/Q17479630|http://www.wikidata.org/entity/Q17353105|http://www.wikidata.org/entity/Q16218089|http://www.wikidata.org/entity/Q66771|http://www.wikidata.org/entity/Q62346|http://www.wikidata.org/entity/Q61099|http://www.wikidata.org/entity/Q15890988|http://www.wikidata.org/entity/Q2777390|http://www.wikidata.org/entity/Q2669267|http://www.wikidata.org/entity/Q2530909|http://www.wikidata.org/entity/Q1913731|http://www.wikidata.org/entity/Q1876677|http://www.wikidata.org/entity/Q1686699|http://www.wikidata.org/entity/Q1600532|http://www.wikidata.org/entity/Q824272|http://www.wikidata.org/entity/Q449665|http://www.wikidata.org/entity/Q227409|http://www.wikidata.org/entity/Q215565|http://www.wikidata.org/entity/Q112684|http://www.wikidata.org/entity/Q100841|http://www.wikidata.org/entity/Q89832|http://www.wikidata.org/entity/Q78766|http://www.wikidata.org/entity/Q69669"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "2015 film directed by Bora Da\u011ftekin"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q564960"}, "Published": {"type": "literal", "value": "2015"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29615846"}, "Title": {"type": "literal", "value": "Aurore"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2906097"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3524049|http://www.wikidata.org/entity/Q240521"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Blandine Lenoir"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3193645"}, "Published": {"type": "literal", "value": "2018|2017"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20538741"}, "Title": {"type": "literal", "value": "Nos futurs"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2080043"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2080043"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41672830|http://www.wikidata.org/entity/Q16670062|http://www.wikidata.org/entity/Q16535251|http://www.wikidata.org/entity/Q14609928|http://www.wikidata.org/entity/Q3530821|http://www.wikidata.org/entity/Q3471241|http://www.wikidata.org/entity/Q3307961|http://www.wikidata.org/entity/Q3218847|http://www.wikidata.org/entity/Q3200883|http://www.wikidata.org/entity/Q3169590|http://www.wikidata.org/entity/Q3169522|http://www.wikidata.org/entity/Q2821516|http://www.wikidata.org/entity/Q1139064|http://www.wikidata.org/entity/Q777528|http://www.wikidata.org/entity/Q462376|http://www.wikidata.org/entity/Q449082|http://www.wikidata.org/entity/Q139052"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q663106"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2015 film by R\u00e9mi Bezan\u00e7on"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q525894|http://www.wikidata.org/entity/Q913462"}, "Published": {"type": "literal", "value": "2015"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23660760"}, "Title": {"type": "literal", "value": "Maremmamara"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3837059"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3837059"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23655841|http://www.wikidata.org/entity/Q19408742|http://www.wikidata.org/entity/Q13469193|http://www.wikidata.org/entity/Q3837059|http://www.wikidata.org/entity/Q3634619|http://www.wikidata.org/entity/Q3615668|http://www.wikidata.org/entity/Q3290121|http://www.wikidata.org/entity/Q315258"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2016 film by Lorenzo Renzi"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18603039"}, "Title": {"type": "literal", "value": "Paper Towns"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6124973"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16886480|http://www.wikidata.org/entity/Q5965293"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q630446|http://www.wikidata.org/entity/Q513169|http://www.wikidata.org/entity/Q289540|http://www.wikidata.org/entity/Q16156312|http://www.wikidata.org/entity/Q13426679|http://www.wikidata.org/entity/Q6166571|http://www.wikidata.org/entity/Q3486491|http://www.wikidata.org/entity/Q1395624|http://www.wikidata.org/entity/Q1249010|http://www.wikidata.org/entity/Q22058479|http://www.wikidata.org/entity/Q20741007|http://www.wikidata.org/entity/Q19934239|http://www.wikidata.org/entity/Q17579921|http://www.wikidata.org/entity/Q16194006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q1200678|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "2015 film directed by Jake Schreier"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434841"}, "Published": {"type": "literal", "value": "2015"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48671641"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7289434"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Ramesh Pisharody"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17502379"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11549838"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q857410"}, "Title": {"type": "literal", "value": "The Calcium Kid"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4716899"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1900097|http://www.wikidata.org/entity/Q1190134|http://www.wikidata.org/entity/Q1139433|http://www.wikidata.org/entity/Q527303|http://www.wikidata.org/entity/Q470746|http://www.wikidata.org/entity/Q468241|http://www.wikidata.org/entity/Q359488|http://www.wikidata.org/entity/Q151113|http://www.wikidata.org/entity/Q44467"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1339864|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2004 film by Alex De Rakoff"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2060840|http://www.wikidata.org/entity/Q2450848"}, "Published": {"type": "literal", "value": "2004"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q8240308"}, "Title": {"type": "literal", "value": "Bajo las estrellas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20492764"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5444600"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3326153|http://www.wikidata.org/entity/Q2602857"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22236109"}, "Title": {"type": "literal", "value": "Hunt for the Wilderpeople"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2388576"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2388576"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q51845341|http://www.wikidata.org/entity/Q24189388|http://www.wikidata.org/entity/Q16213557|http://www.wikidata.org/entity/Q7106074|http://www.wikidata.org/entity/Q2388576|http://www.wikidata.org/entity/Q2330139|http://www.wikidata.org/entity/Q1806933|http://www.wikidata.org/entity/Q214309"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2016 film by Taika Waititi"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7730459"}, "Title": {"type": "literal", "value": "The Do-Deca-Pentathlon"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6166571|http://www.wikidata.org/entity/Q3273787"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Mark Duplass, Jay Duplass"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19868263"}, "Published": {"type": "literal", "value": "2012"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2464426"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2005799"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2005799"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6399296"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "2010 film by Ahmad Abdalla"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6416788"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7418444"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q731854|http://www.wikidata.org/entity/Q262665"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Sanjay Khanduri"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24278847"}, "Title": {"type": "literal", "value": "Ali's Wedding"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q723820"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7105673"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "2016 film by Jeffrey Walker"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q47952256"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q453691"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q453691"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q189422"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Mr. Oizo"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4425747"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q374286"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q374286"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q471215"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by James Wan"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q44492608"}, "Title": {"type": "literal", "value": "El paseo 4"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50358500"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film directed by Juan Camilo Pinz\u00f3n"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q175017"}, "Title": {"type": "literal", "value": "12 Meter ohne Kopf"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2371376"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1910207"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q880320|http://www.wikidata.org/entity/Q215565|http://www.wikidata.org/entity/Q99064|http://www.wikidata.org/entity/Q91504|http://www.wikidata.org/entity/Q86919|http://www.wikidata.org/entity/Q69092|http://www.wikidata.org/entity/Q64645|http://www.wikidata.org/entity/Q23061988|http://www.wikidata.org/entity/Q21400435|http://www.wikidata.org/entity/Q17149503|http://www.wikidata.org/entity/Q2020120|http://www.wikidata.org/entity/Q1713608|http://www.wikidata.org/entity/Q1676772|http://www.wikidata.org/entity/Q1620586|http://www.wikidata.org/entity/Q1619430|http://www.wikidata.org/entity/Q1577817|http://www.wikidata.org/entity/Q1555527|http://www.wikidata.org/entity/Q1533711|http://www.wikidata.org/entity/Q1260674|http://www.wikidata.org/entity/Q1223694"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2009 German film directed by Sven Taddicken"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5672071"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5953208"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2581611"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q684771"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1995"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "1995 film by Bill L. Norton"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q52715708"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19667309"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Onur Tukel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5368427"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860820"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860820"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Kankur\u014d Kud\u014d"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12323344"}, "Title": {"type": "literal", "value": "K\u00e6rlighed ved f\u00f8rste hik"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12305706|http://www.wikidata.org/entity/Q952621"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12338513|http://www.wikidata.org/entity/Q5258586"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q38052540|http://www.wikidata.org/entity/Q12333598|http://www.wikidata.org/entity/Q12332885|http://www.wikidata.org/entity/Q12331303|http://www.wikidata.org/entity/Q12323948|http://www.wikidata.org/entity/Q12321367|http://www.wikidata.org/entity/Q12320284|http://www.wikidata.org/entity/Q12319764|http://www.wikidata.org/entity/Q12318313|http://www.wikidata.org/entity/Q12300808|http://www.wikidata.org/entity/Q11958211|http://www.wikidata.org/entity/Q7239357|http://www.wikidata.org/entity/Q4971290|http://www.wikidata.org/entity/Q4968553|http://www.wikidata.org/entity/Q4947416|http://www.wikidata.org/entity/Q2804024|http://www.wikidata.org/entity/Q2297454|http://www.wikidata.org/entity/Q1957570|http://www.wikidata.org/entity/Q1789215|http://www.wikidata.org/entity/Q1662462|http://www.wikidata.org/entity/Q1098466|http://www.wikidata.org/entity/Q740244|http://www.wikidata.org/entity/Q186501"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1999 film by Tomas Villum Jensen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q9335043"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1189562"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1189562"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2228657|http://www.wikidata.org/entity/Q1900519|http://www.wikidata.org/entity/Q1570556|http://www.wikidata.org/entity/Q1407936|http://www.wikidata.org/entity/Q694341|http://www.wikidata.org/entity/Q521891|http://www.wikidata.org/entity/Q88747|http://www.wikidata.org/entity/Q58431245|http://www.wikidata.org/entity/Q15855347"}, "Published": {"type": "literal", "value": "2011|2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Dennis Todorovi\u0107"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2946975"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2778106|http://www.wikidata.org/entity/Q74428"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2778106|http://www.wikidata.org/entity/Q74428"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3571575|http://www.wikidata.org/entity/Q3554229|http://www.wikidata.org/entity/Q3524285|http://www.wikidata.org/entity/Q3173186|http://www.wikidata.org/entity/Q3086968|http://www.wikidata.org/entity/Q3051724|http://www.wikidata.org/entity/Q2941947|http://www.wikidata.org/entity/Q2884036|http://www.wikidata.org/entity/Q2861469|http://www.wikidata.org/entity/Q2834188|http://www.wikidata.org/entity/Q2413166|http://www.wikidata.org/entity/Q1713457|http://www.wikidata.org/entity/Q1341507|http://www.wikidata.org/entity/Q357387"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 short film directed by Olivier Nakache and \u00c9ric Toledano"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3425443"}, "Title": {"type": "literal", "value": "Rengaine"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3416159"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3416159"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3502082|http://www.wikidata.org/entity/Q3486697|http://www.wikidata.org/entity/Q3302043|http://www.wikidata.org/entity/Q466926"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Rachid Dja\u00efdani"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27067930"}, "Title": {"type": "literal", "value": "Willkommen bei den Hartmanns"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q78367"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q78367"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28005167|http://www.wikidata.org/entity/Q23067905|http://www.wikidata.org/entity/Q20474668|http://www.wikidata.org/entity/Q19960215|http://www.wikidata.org/entity/Q1676742|http://www.wikidata.org/entity/Q1317642|http://www.wikidata.org/entity/Q1018220|http://www.wikidata.org/entity/Q186692|http://www.wikidata.org/entity/Q101059|http://www.wikidata.org/entity/Q97423|http://www.wikidata.org/entity/Q90849|http://www.wikidata.org/entity/Q87432|http://www.wikidata.org/entity/Q78766|http://www.wikidata.org/entity/Q62310"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "2016 film by Simon Verhoeven"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2511253"}, "Title": {"type": "literal", "value": "Vater Morgana"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2433397"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16739240|http://www.wikidata.org/entity/Q2477368|http://www.wikidata.org/entity/Q2450169|http://www.wikidata.org/entity/Q1928471|http://www.wikidata.org/entity/Q1892651|http://www.wikidata.org/entity/Q1795154|http://www.wikidata.org/entity/Q1584617|http://www.wikidata.org/entity/Q1578055|http://www.wikidata.org/entity/Q1252553|http://www.wikidata.org/entity/Q111879|http://www.wikidata.org/entity/Q109299|http://www.wikidata.org/entity/Q99340|http://www.wikidata.org/entity/Q92095|http://www.wikidata.org/entity/Q89446|http://www.wikidata.org/entity/Q77991|http://www.wikidata.org/entity/Q70727|http://www.wikidata.org/entity/Q63003"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2010 film by Till Endemann"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6092795"}, "Title": {"type": "literal", "value": "Kelo\u011flan Karaprens'e Kar\u015f\u0131"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6079743"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6079743"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q382114"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2006 film by Tayfun G\u00fcneyer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10712070"}, "Title": {"type": "literal", "value": "Vaktm\u00e4staren och professorn"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5553881"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5553881"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5603150"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Anders Andersson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1517621"}, "Title": {"type": "literal", "value": "In the Land of Women"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q132058"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q132058"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q290103|http://www.wikidata.org/entity/Q286745|http://www.wikidata.org/entity/Q265547|http://www.wikidata.org/entity/Q240949|http://www.wikidata.org/entity/Q237809|http://www.wikidata.org/entity/Q230188|http://www.wikidata.org/entity/Q167498|http://www.wikidata.org/entity/Q126599|http://www.wikidata.org/entity/Q113206|http://www.wikidata.org/entity/Q109522|http://www.wikidata.org/entity/Q24951338|http://www.wikidata.org/entity/Q3113275|http://www.wikidata.org/entity/Q1191180|http://www.wikidata.org/entity/Q469914|http://www.wikidata.org/entity/Q294372"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2007 film by Jon Kasdan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15302998"}, "Title": {"type": "literal", "value": "Une villa \u00e0 Los Angeles"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2837071"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2837071"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3166719"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Aliocha"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1393003"}, "Title": {"type": "literal", "value": "Behaving Badly"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9358715"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23927006|http://www.wikidata.org/entity/Q15662709|http://www.wikidata.org/entity/Q4204710|http://www.wikidata.org/entity/Q1764846|http://www.wikidata.org/entity/Q1321346|http://www.wikidata.org/entity/Q1321323|http://www.wikidata.org/entity/Q1249010|http://www.wikidata.org/entity/Q449850|http://www.wikidata.org/entity/Q359061|http://www.wikidata.org/entity/Q343564|http://www.wikidata.org/entity/Q312081|http://www.wikidata.org/entity/Q311093|http://www.wikidata.org/entity/Q229957|http://www.wikidata.org/entity/Q224026|http://www.wikidata.org/entity/Q207852|http://www.wikidata.org/entity/Q177394|http://www.wikidata.org/entity/Q83287|http://www.wikidata.org/entity/Q53120|http://www.wikidata.org/entity/Q34086|http://www.wikidata.org/entity/Q4960"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2014 film by Tim Garrick"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13582568"}, "Title": {"type": "literal", "value": "A Million Ways to Die in the West"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188492"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188492|http://www.wikidata.org/entity/Q6241864|http://www.wikidata.org/entity/Q4714271"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q485310|http://www.wikidata.org/entity/Q463285|http://www.wikidata.org/entity/Q350819|http://www.wikidata.org/entity/Q232307|http://www.wikidata.org/entity/Q229013|http://www.wikidata.org/entity/Q16940304|http://www.wikidata.org/entity/Q4714271|http://www.wikidata.org/entity/Q2947843|http://www.wikidata.org/entity/Q1847082|http://www.wikidata.org/entity/Q1768022|http://www.wikidata.org/entity/Q1187274|http://www.wikidata.org/entity/Q1029535|http://www.wikidata.org/entity/Q967130|http://www.wikidata.org/entity/Q741473|http://www.wikidata.org/entity/Q529443|http://www.wikidata.org/entity/Q224081|http://www.wikidata.org/entity/Q221464|http://www.wikidata.org/entity/Q192682|http://www.wikidata.org/entity/Q189226|http://www.wikidata.org/entity/Q188492|http://www.wikidata.org/entity/Q171905|http://www.wikidata.org/entity/Q165518|http://www.wikidata.org/entity/Q116219|http://www.wikidata.org/entity/Q109324|http://www.wikidata.org/entity/Q80046|http://www.wikidata.org/entity/Q58444|http://www.wikidata.org/entity/Q16759|http://www.wikidata.org/entity/Q16296|http://www.wikidata.org/entity/Q489"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q172980|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "2014 film by Seth MacFarlane"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1754127"}, "Title": {"type": "literal", "value": "A fost sau n-a fost?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2734356"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2734356"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18547685|http://www.wikidata.org/entity/Q12742058|http://www.wikidata.org/entity/Q4116979"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2006 film by Corneliu Porumboiu"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q201379"}, "Title": {"type": "literal", "value": "Forgetting Sarah Marshall"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2624066"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q202304"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6415432|http://www.wikidata.org/entity/Q5363059|http://www.wikidata.org/entity/Q3702254|http://www.wikidata.org/entity/Q2903607|http://www.wikidata.org/entity/Q2827706|http://www.wikidata.org/entity/Q1713263|http://www.wikidata.org/entity/Q656258|http://www.wikidata.org/entity/Q560896|http://www.wikidata.org/entity/Q433241|http://www.wikidata.org/entity/Q432281|http://www.wikidata.org/entity/Q313546|http://www.wikidata.org/entity/Q313388|http://www.wikidata.org/entity/Q296609|http://www.wikidata.org/entity/Q284636|http://www.wikidata.org/entity/Q276525|http://www.wikidata.org/entity/Q231382|http://www.wikidata.org/entity/Q202304|http://www.wikidata.org/entity/Q178882|http://www.wikidata.org/entity/Q131866|http://www.wikidata.org/entity/Q37628|http://www.wikidata.org/entity/Q14537"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "2008 film by Nicholas Stoller"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q618091"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12125177"}, "Title": {"type": "literal", "value": "It's a Disaster"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3992157"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3992157"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1237204|http://www.wikidata.org/entity/Q362332|http://www.wikidata.org/entity/Q219402|http://www.wikidata.org/entity/Q210120"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q846544|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Todd Berger"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3480756"}, "Title": {"type": "literal", "value": "Seuls Two"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3591196|http://www.wikidata.org/entity/Q3418669"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3418669|http://www.wikidata.org/entity/Q3380199"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15965529|http://www.wikidata.org/entity/Q3591196|http://www.wikidata.org/entity/Q3418669|http://www.wikidata.org/entity/Q3272811|http://www.wikidata.org/entity/Q3086968|http://www.wikidata.org/entity/Q2851057|http://www.wikidata.org/entity/Q539703|http://www.wikidata.org/entity/Q357387|http://www.wikidata.org/entity/Q274227|http://www.wikidata.org/entity/Q236138|http://www.wikidata.org/entity/Q208590|http://www.wikidata.org/entity/Q164976"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Ramzy Bedia and \u00c9ric Judor"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3824902"}, "Title": {"type": "literal", "value": "La vida es un carnaval"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3946676"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3946676|http://www.wikidata.org/entity/Q3851211|http://www.wikidata.org/entity/Q3634619"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2006 film by Samuele Sbrighi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23900097"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3703628"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "119"}, "Description": {"type": "literal", "value": "2016 film by Davide Simon Mazzoli"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q46082771"}, "Title": {"type": "literal", "value": "La M\u00e9lodie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3416169"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3416169"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q983159"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Mohamed Rachid Hami"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14906074"}, "Title": {"type": "literal", "value": "A Haunted House 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21066677"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q310785"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2151597|http://www.wikidata.org/entity/Q1990727|http://www.wikidata.org/entity/Q936507|http://www.wikidata.org/entity/Q492327|http://www.wikidata.org/entity/Q310785|http://www.wikidata.org/entity/Q233786|http://www.wikidata.org/entity/Q231197|http://www.wikidata.org/entity/Q177394|http://www.wikidata.org/entity/Q2738010"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3272147|http://www.wikidata.org/entity/Q622548|http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2014 film by Michael Tiddes"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18693337"}, "Title": {"type": "literal", "value": "Juoppohullun p\u00e4iv\u00e4kirja"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16985950"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16985950"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14116154|http://www.wikidata.org/entity/Q11892451|http://www.wikidata.org/entity/Q11866918|http://www.wikidata.org/entity/Q3321553"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2012 Finnish film directed by Lauri Maijala"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16858303"}, "Title": {"type": "literal", "value": "\u00dcber-Ich und Du"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q90929"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q90929"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18221849|http://www.wikidata.org/entity/Q16438755|http://www.wikidata.org/entity/Q2077727|http://www.wikidata.org/entity/Q2060156|http://www.wikidata.org/entity/Q1944541|http://www.wikidata.org/entity/Q1929867|http://www.wikidata.org/entity/Q1756778|http://www.wikidata.org/entity/Q1616382|http://www.wikidata.org/entity/Q1529478|http://www.wikidata.org/entity/Q1504267|http://www.wikidata.org/entity/Q1331348|http://www.wikidata.org/entity/Q1330169|http://www.wikidata.org/entity/Q1317642|http://www.wikidata.org/entity/Q850066|http://www.wikidata.org/entity/Q523442|http://www.wikidata.org/entity/Q499769|http://www.wikidata.org/entity/Q118393|http://www.wikidata.org/entity/Q106466|http://www.wikidata.org/entity/Q88307|http://www.wikidata.org/entity/Q86714|http://www.wikidata.org/entity/Q61831710|http://www.wikidata.org/entity/Q22675926|http://www.wikidata.org/entity/Q20243235"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2014 film dramedy by Benjamin Heisenberg"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1766235"}, "Title": {"type": "literal", "value": "Et maintenant, on va o\u00f9?|\u0648\u0647\u0644\u0651\u0623 \u0644\u0648\u064a\u0646\u061f|w halla' la wayn\u200e"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q266539"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13518238|http://www.wikidata.org/entity/Q3470519|http://www.wikidata.org/entity/Q266539"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q266539|http://www.wikidata.org/entity/Q62353|http://www.wikidata.org/entity/Q12222229|http://www.wikidata.org/entity/Q670311"}, "Published": {"type": "literal", "value": "2012|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2011 film by Nadine Labaki"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1552765"}, "Title": {"type": "literal", "value": "I'm Still Here"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q270730"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q270730|http://www.wikidata.org/entity/Q185140"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q216936|http://www.wikidata.org/entity/Q211415|http://www.wikidata.org/entity/Q192165|http://www.wikidata.org/entity/Q186485|http://www.wikidata.org/entity/Q185140|http://www.wikidata.org/entity/Q171905|http://www.wikidata.org/entity/Q163286|http://www.wikidata.org/entity/Q47100|http://www.wikidata.org/entity/Q44221|http://www.wikidata.org/entity/Q39792|http://www.wikidata.org/entity/Q38875|http://www.wikidata.org/entity/Q37876|http://www.wikidata.org/entity/Q26806|http://www.wikidata.org/entity/Q2680|http://www.wikidata.org/entity/Q76|http://www.wikidata.org/entity/Q18666096|http://www.wikidata.org/entity/Q3376508|http://www.wikidata.org/entity/Q3177495|http://www.wikidata.org/entity/Q486740|http://www.wikidata.org/entity/Q272972|http://www.wikidata.org/entity/Q270730|http://www.wikidata.org/entity/Q217298"}, "Published": {"type": "literal", "value": "2011|2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q459435"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2010 film by Casey Affleck"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19603873"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16262629"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21065355"}, "Title": {"type": "literal", "value": "Er ist wieder da"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1177226"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1663348|http://www.wikidata.org/entity/Q1177226"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2020417|http://www.wikidata.org/entity/Q1806325|http://www.wikidata.org/entity/Q1702610|http://www.wikidata.org/entity/Q1553141|http://www.wikidata.org/entity/Q1477214|http://www.wikidata.org/entity/Q1465489|http://www.wikidata.org/entity/Q1232005|http://www.wikidata.org/entity/Q1159909|http://www.wikidata.org/entity/Q1145137|http://www.wikidata.org/entity/Q546822|http://www.wikidata.org/entity/Q119439|http://www.wikidata.org/entity/Q109360|http://www.wikidata.org/entity/Q105338|http://www.wikidata.org/entity/Q104670|http://www.wikidata.org/entity/Q104094|http://www.wikidata.org/entity/Q101524|http://www.wikidata.org/entity/Q53954433|http://www.wikidata.org/entity/Q21400435|http://www.wikidata.org/entity/Q20243329|http://www.wikidata.org/entity/Q15992055|http://www.wikidata.org/entity/Q15851238|http://www.wikidata.org/entity/Q2343282|http://www.wikidata.org/entity/Q2057655|http://www.wikidata.org/entity/Q90731|http://www.wikidata.org/entity/Q88570|http://www.wikidata.org/entity/Q62346|http://www.wikidata.org/entity/Q45387"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q52162262"}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "2015 German film directed by David Wnendt"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22251974"}, "Title": {"type": "literal", "value": "Joshy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26897001"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26897001"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19661595|http://www.wikidata.org/entity/Q16239393|http://www.wikidata.org/entity/Q6212564|http://www.wikidata.org/entity/Q4717719|http://www.wikidata.org/entity/Q4241574|http://www.wikidata.org/entity/Q1968839|http://www.wikidata.org/entity/Q744166|http://www.wikidata.org/entity/Q430922|http://www.wikidata.org/entity/Q350589|http://www.wikidata.org/entity/Q235328|http://www.wikidata.org/entity/Q229197|http://www.wikidata.org/entity/Q228755|http://www.wikidata.org/entity/Q210547|http://www.wikidata.org/entity/Q171525"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Jeff Baena"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4411137"}, "Title": {"type": "literal", "value": "\u0421\u0432\u043e\u0431\u043e\u0434\u043d\u043e\u0435 \u043f\u043b\u0430\u0432\u0430\u043d\u0438\u0435"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4231887"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4231887"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4539768"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Boris Khlebnikov"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27890955"}, "Title": {"type": "literal", "value": "Strawberry Bubblegums"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q817710"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2016 German television film directed by Benjamin Teske"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q47162336"}, "Title": {"type": "literal", "value": "M\u00e4nner zeigen Filme & Frauen ihre Br\u00fcste"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24228993"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25493066|http://www.wikidata.org/entity/Q15623301|http://www.wikidata.org/entity/Q1910381"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Isabell \u0160uba"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7207814"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4648088"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12072044|http://www.wikidata.org/entity/Q6918985|http://www.wikidata.org/entity/Q6373531|http://www.wikidata.org/entity/Q6261997|http://www.wikidata.org/entity/Q3595284|http://www.wikidata.org/entity/Q3523308|http://www.wikidata.org/entity/Q3521977|http://www.wikidata.org/entity/Q2460693"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by A. L. Vijay"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2745595"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3023829"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1192227|http://www.wikidata.org/entity/Q1142399|http://www.wikidata.org/entity/Q1057734|http://www.wikidata.org/entity/Q988955|http://www.wikidata.org/entity/Q945665|http://www.wikidata.org/entity/Q355173|http://www.wikidata.org/entity/Q271859"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15712918|http://www.wikidata.org/entity/Q15286013|http://www.wikidata.org/entity/Q1782964|http://www.wikidata.org/entity/Q761469|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Hiroyuki Imaishi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q735670"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6305601"}, "Title": {"type": "literal", "value": "\u0c1c\u0c41\u0c32\u0c3e\u0c2f\u0c3f"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7844679"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7844679"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26221429|http://www.wikidata.org/entity/Q22278958|http://www.wikidata.org/entity/Q19898405|http://www.wikidata.org/entity/Q17495881|http://www.wikidata.org/entity/Q13551326|http://www.wikidata.org/entity/Q12999076|http://www.wikidata.org/entity/Q7994331|http://www.wikidata.org/entity/Q7683304|http://www.wikidata.org/entity/Q7492544|http://www.wikidata.org/entity/Q7296651|http://www.wikidata.org/entity/Q7293689|http://www.wikidata.org/entity/Q7237601|http://www.wikidata.org/entity/Q6433821|http://www.wikidata.org/entity/Q5710886|http://www.wikidata.org/entity/Q5516315|http://www.wikidata.org/entity/Q5269357|http://www.wikidata.org/entity/Q3765029|http://www.wikidata.org/entity/Q3629983|http://www.wikidata.org/entity/Q2573055|http://www.wikidata.org/entity/Q642827"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q496523|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "152"}, "Description": {"type": "literal", "value": "2012 Telugu film directed by Trivikram Srinivas"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q39048679"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16251100"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5431079"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5431079"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3299726"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Faisal Saif"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q37325985"}, "Title": {"type": "literal", "value": "The Royal Hibiscus Hotel"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6080052"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6080052"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18684496"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Ishaya Bako"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q49872132"}, "Title": {"type": "literal", "value": "Puoi baciare lo sposo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3610041"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019|2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2018 film directed by Alessandro Genovesi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3304113"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2799863"}, "Title": {"type": "literal", "value": "Schlussmacher"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q64645"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1246111"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23019108|http://www.wikidata.org/entity/Q21899404|http://www.wikidata.org/entity/Q21206530|http://www.wikidata.org/entity/Q4107061|http://www.wikidata.org/entity/Q2514109|http://www.wikidata.org/entity/Q1929298|http://www.wikidata.org/entity/Q1904647|http://www.wikidata.org/entity/Q1891839|http://www.wikidata.org/entity/Q1681719|http://www.wikidata.org/entity/Q1539548|http://www.wikidata.org/entity/Q1527740|http://www.wikidata.org/entity/Q1302143|http://www.wikidata.org/entity/Q1260674|http://www.wikidata.org/entity/Q825931|http://www.wikidata.org/entity/Q108346|http://www.wikidata.org/entity/Q98286|http://www.wikidata.org/entity/Q97423|http://www.wikidata.org/entity/Q91031|http://www.wikidata.org/entity/Q64645|http://www.wikidata.org/entity/Q62929|http://www.wikidata.org/entity/Q60863"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "2013 film by Matthias Schweigh\u00f6fer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3077297"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3340019"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3340019"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "9"}, "Description": {"type": "literal", "value": "2004 film by Nicolas Alberny"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1773338"}, "Title": {"type": "literal", "value": "Rosenstiehl"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1425637"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "37"}, "Description": {"type": "literal", "value": "2005 film by Stefan Wei\u00df"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q502876"}, "Title": {"type": "literal", "value": "Eddie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2632767"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2660468|http://www.wikidata.org/entity/Q1342300|http://www.wikidata.org/entity/Q1306231|http://www.wikidata.org/entity/Q1140971|http://www.wikidata.org/entity/Q982558|http://www.wikidata.org/entity/Q964468|http://www.wikidata.org/entity/Q727048|http://www.wikidata.org/entity/Q451978|http://www.wikidata.org/entity/Q434802|http://www.wikidata.org/entity/Q382295|http://www.wikidata.org/entity/Q380802|http://www.wikidata.org/entity/Q352935|http://www.wikidata.org/entity/Q313266|http://www.wikidata.org/entity/Q313043|http://www.wikidata.org/entity/Q310944|http://www.wikidata.org/entity/Q303538|http://www.wikidata.org/entity/Q278203|http://www.wikidata.org/entity/Q201608|http://www.wikidata.org/entity/Q49001|http://www.wikidata.org/entity/Q22686"}, "Published": {"type": "literal", "value": "1996"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "1996 film by Steve Rash"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q190585|http://www.wikidata.org/entity/Q1348264|http://www.wikidata.org/entity/Q1983457"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16140116"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1015952"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film directed by Poj Arnon"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4158396"}, "Title": {"type": "literal", "value": "\u0414\u0435\u043d\u044c \u0440\u0430\u0434\u0438\u043e"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4171916"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4494681|http://www.wikidata.org/entity/Q4369318|http://www.wikidata.org/entity/Q4283562|http://www.wikidata.org/entity/Q4282642|http://www.wikidata.org/entity/Q4254527|http://www.wikidata.org/entity/Q4234388|http://www.wikidata.org/entity/Q4227042|http://www.wikidata.org/entity/Q4216525|http://www.wikidata.org/entity/Q4163746|http://www.wikidata.org/entity/Q4157470|http://www.wikidata.org/entity/Q4112451|http://www.wikidata.org/entity/Q4112450|http://www.wikidata.org/entity/Q4083462|http://www.wikidata.org/entity/Q4077949|http://www.wikidata.org/entity/Q4074470|http://www.wikidata.org/entity/Q4063900|http://www.wikidata.org/entity/Q3856333|http://www.wikidata.org/entity/Q2029106|http://www.wikidata.org/entity/Q1965416|http://www.wikidata.org/entity/Q1658597|http://www.wikidata.org/entity/Q380407"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2008 film by Dmitry Dyachenko"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4504080"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4438260"}, "Title": {"type": "literal", "value": "Going Down in LA-LA Land"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5049076"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5049076"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22350777|http://www.wikidata.org/entity/Q5049076|http://www.wikidata.org/entity/Q991864|http://www.wikidata.org/entity/Q510713|http://www.wikidata.org/entity/Q318108"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Casper Andreas"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28542233"}, "Title": {"type": "literal", "value": "Lommbock"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1082448"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1082448"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15391954|http://www.wikidata.org/entity/Q1871731|http://www.wikidata.org/entity/Q1778862|http://www.wikidata.org/entity/Q1721422|http://www.wikidata.org/entity/Q586772|http://www.wikidata.org/entity/Q77758|http://www.wikidata.org/entity/Q74258|http://www.wikidata.org/entity/Q58603"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2017 film by Christian Z\u00fcbert"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6641398"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13013699"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13020250"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q154935"}, "Title": {"type": "literal", "value": "(500) Days of Summer"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q357998"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16886480|http://www.wikidata.org/entity/Q5965293"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191719|http://www.wikidata.org/entity/Q177311"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2009 American comedy drama film directed by Marc Webb"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5171873"}, "Title": {"type": "literal", "value": "Cornman: American Vegetable Hero"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4858225"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1535153|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 film by Barak Epstein"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14835086"}, "Title": {"type": "literal", "value": "Annelie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15436637"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15436637"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1504267"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "2012 film by Antej Farac"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1018477"}, "Title": {"type": "literal", "value": "Bye Bye Berlusconi!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q108302"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3838444|http://www.wikidata.org/entity/Q108302"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3904193|http://www.wikidata.org/entity/Q3903715|http://www.wikidata.org/entity/Q3838444|http://www.wikidata.org/entity/Q108302"}, "Published": {"type": "literal", "value": "2006|2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2005 film by Jan Henrik Stahlberg"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18170108"}, "Title": {"type": "literal", "value": "Kamara's Tree"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5264710"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16733669"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Desmond Elliot"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23773162"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3763185"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2016 film by Gianluca Ansanelli"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q40187"}, "Title": {"type": "literal", "value": "Dogma"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q489831"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q489831"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q204393|http://www.wikidata.org/entity/Q175535|http://www.wikidata.org/entity/Q150651|http://www.wikidata.org/entity/Q130742|http://www.wikidata.org/entity/Q125106|http://www.wikidata.org/entity/Q106481|http://www.wikidata.org/entity/Q40143|http://www.wikidata.org/entity/Q39982|http://www.wikidata.org/entity/Q4960|http://www.wikidata.org/entity/Q4109|http://www.wikidata.org/entity/Q5318153|http://www.wikidata.org/entity/Q4980184|http://www.wikidata.org/entity/Q1140895|http://www.wikidata.org/entity/Q723672|http://www.wikidata.org/entity/Q489831|http://www.wikidata.org/entity/Q483118|http://www.wikidata.org/entity/Q447584|http://www.wikidata.org/entity/Q354010|http://www.wikidata.org/entity/Q316627|http://www.wikidata.org/entity/Q314610"}, "Published": {"type": "literal", "value": "1999|2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "1999 film by Kevin Smith"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2700070"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21095949"}, "Title": {"type": "literal", "value": "Familienfest"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q103486"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1975375|http://www.wikidata.org/entity/Q1930074|http://www.wikidata.org/entity/Q1892651|http://www.wikidata.org/entity/Q1806191|http://www.wikidata.org/entity/Q1161422|http://www.wikidata.org/entity/Q108956|http://www.wikidata.org/entity/Q90847|http://www.wikidata.org/entity/Q84414|http://www.wikidata.org/entity/Q77777"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Lars Kraume"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3814997"}, "Title": {"type": "literal", "value": "A Matter of Hair"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5155259"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Ana Torres-\u00c1lvarez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3011034"}, "Title": {"type": "literal", "value": "D.E.B.S."}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q459542"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q459542"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3481446|http://www.wikidata.org/entity/Q461712|http://www.wikidata.org/entity/Q444190|http://www.wikidata.org/entity/Q275246|http://www.wikidata.org/entity/Q260455"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Angela Robinson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56045055"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q73608"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 American comedy film directed by Michael Manasseri"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2061070"}, "Title": {"type": "literal", "value": "Wide Awake"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q51489"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q51489"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1706810|http://www.wikidata.org/entity/Q1159104|http://www.wikidata.org/entity/Q361238|http://www.wikidata.org/entity/Q310283|http://www.wikidata.org/entity/Q272929|http://www.wikidata.org/entity/Q234514|http://www.wikidata.org/entity/Q228925|http://www.wikidata.org/entity/Q210120"}, "Published": {"type": "literal", "value": "1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "1998 film by M. Night Shyamalan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3077738"}, "Title": {"type": "literal", "value": "The Bling Ring"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q193628"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q193628|http://www.wikidata.org/entity/Q6962760"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q229011|http://www.wikidata.org/entity/Q220949|http://www.wikidata.org/entity/Q128828|http://www.wikidata.org/entity/Q76478|http://www.wikidata.org/entity/Q47899|http://www.wikidata.org/entity/Q44903|http://www.wikidata.org/entity/Q44467|http://www.wikidata.org/entity/Q39476|http://www.wikidata.org/entity/Q6755482|http://www.wikidata.org/entity/Q513169|http://www.wikidata.org/entity/Q508960|http://www.wikidata.org/entity/Q459638|http://www.wikidata.org/entity/Q432743|http://www.wikidata.org/entity/Q389017|http://www.wikidata.org/entity/Q239595|http://www.wikidata.org/entity/Q237259|http://www.wikidata.org/entity/Q230169|http://www.wikidata.org/entity/Q16235655|http://www.wikidata.org/entity/Q14807038|http://www.wikidata.org/entity/Q14105322|http://www.wikidata.org/entity/Q13560256"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2013 film by Sofia Coppola"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q467348|http://www.wikidata.org/entity/Q1544011|http://www.wikidata.org/entity/Q2450848|http://www.wikidata.org/entity/Q3992245|http://www.wikidata.org/entity/Q5448895|http://www.wikidata.org/entity/Q6952279"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29588607"}, "Title": {"type": "literal", "value": "Spider-Man: Into the Spider-Verse"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7357051|http://www.wikidata.org/entity/Q7176523"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7182133"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019|2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q40831|http://www.wikidata.org/entity/Q1535153|http://www.wikidata.org/entity/Q471839"}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "2018 American computer-animated superhero film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1416835|http://www.wikidata.org/entity/Q186941|http://www.wikidata.org/entity/Q1200552"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30131659"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3587949"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q695190"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by \u00c9lise Girard"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q629596"}, "Title": {"type": "literal", "value": "Friends with Benefits"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2576503"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2576503"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q229268|http://www.wikidata.org/entity/Q229249|http://www.wikidata.org/entity/Q202304|http://www.wikidata.org/entity/Q201279|http://www.wikidata.org/entity/Q147077|http://www.wikidata.org/entity/Q43432|http://www.wikidata.org/entity/Q37628|http://www.wikidata.org/entity/Q15622421|http://www.wikidata.org/entity/Q1549708|http://www.wikidata.org/entity/Q552085|http://www.wikidata.org/entity/Q540608|http://www.wikidata.org/entity/Q339864|http://www.wikidata.org/entity/Q316602|http://www.wikidata.org/entity/Q314640|http://www.wikidata.org/entity/Q313043|http://www.wikidata.org/entity/Q309503|http://www.wikidata.org/entity/Q288656"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q860626"}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "2011 film by Will Gluck"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q622848|http://www.wikidata.org/entity/Q1370297"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12209107"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12178530"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12178878"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Ahmed El Guindi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q50318891"}, "Title": {"type": "literal", "value": "Les Bigorneaux"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27862255"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50318929|http://www.wikidata.org/entity/Q27862255"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "24"}, "Description": {"type": "literal", "value": "2017 short film directed by Alice Vial"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50318955"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17450876"}, "Title": {"type": "literal", "value": "Sa\u011f Salim"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q31189612"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25473584|http://www.wikidata.org/entity/Q6076632|http://www.wikidata.org/entity/Q6050795"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Ersoy G\u00fcler"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29549638"}, "Title": {"type": "literal", "value": "\u0416\u0438\u0437\u043d\u044c \u0432\u043f\u0435\u0440\u0435\u0434\u0438"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4330970"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16857528"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25384451|http://www.wikidata.org/entity/Q21183528|http://www.wikidata.org/entity/Q16271982|http://www.wikidata.org/entity/Q14491922|http://www.wikidata.org/entity/Q4521700|http://www.wikidata.org/entity/Q4378600|http://www.wikidata.org/entity/Q4287998|http://www.wikidata.org/entity/Q4112450|http://www.wikidata.org/entity/Q2865340|http://www.wikidata.org/entity/Q536524"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2017 film by Karen Oganesyan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q574625"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q45351973"}, "Title": {"type": "literal", "value": "Leg dich nicht mit Klara an"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q45352058"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12912091|http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Mia Spengler"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2093198"}, "Title": {"type": "literal", "value": "Undercover Brother"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3843845"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q362930"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1369418|http://www.wikidata.org/entity/Q741909|http://www.wikidata.org/entity/Q485310|http://www.wikidata.org/entity/Q471128|http://www.wikidata.org/entity/Q461762|http://www.wikidata.org/entity/Q441888|http://www.wikidata.org/entity/Q376031|http://www.wikidata.org/entity/Q358345|http://www.wikidata.org/entity/Q206833|http://www.wikidata.org/entity/Q93818|http://www.wikidata.org/entity/Q40321|http://www.wikidata.org/entity/Q5950|http://www.wikidata.org/entity/Q2159005"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q622548|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2002 film by Malcolm D. Lee"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q511731"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2930360"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3194132"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3194132"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16682289|http://www.wikidata.org/entity/Q3380199|http://www.wikidata.org/entity/Q3218874|http://www.wikidata.org/entity/Q182991|http://www.wikidata.org/entity/Q130092"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Katia Lewkowicz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q544992"}, "Title": {"type": "literal", "value": "\u0633\u0643\u0631 \u0628\u0646\u0627\u062a|Sekkar banat\u200e"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q266539"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q266539"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12222229|http://www.wikidata.org/entity/Q8049841|http://www.wikidata.org/entity/Q266539"}, "Published": {"type": "literal", "value": "2008|2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q5442753|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2007 film by Nadine Labaki"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15074451"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7146964"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Patrick Kong"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15055043"}, "Title": {"type": "literal", "value": "Kung Fu Panda 3"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18811838|http://www.wikidata.org/entity/Q705711"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22976557|http://www.wikidata.org/entity/Q16643813"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q358990|http://www.wikidata.org/entity/Q318110|http://www.wikidata.org/entity/Q308840|http://www.wikidata.org/entity/Q220308|http://www.wikidata.org/entity/Q188375|http://www.wikidata.org/entity/Q169946|http://www.wikidata.org/entity/Q483907|http://www.wikidata.org/entity/Q362332|http://www.wikidata.org/entity/Q42930|http://www.wikidata.org/entity/Q36970|http://www.wikidata.org/entity/Q23547|http://www.wikidata.org/entity/Q13909|http://www.wikidata.org/entity/Q150482"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q1033891|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2016 film by Jennifer Yuh Nelson, Alessandro Carloni"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q500088"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20744358"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27528493"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27528493"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18035575"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "22"}, "Description": {"type": "literal", "value": "2014 short film directed by Asaf Epstein"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18736633"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3149763"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3149763"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3149763"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Ina Mihalache"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23767825"}, "Title": {"type": "literal", "value": "No Vacancy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4102539"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q973456|http://www.wikidata.org/entity/Q509026|http://www.wikidata.org/entity/Q310493|http://www.wikidata.org/entity/Q309835|http://www.wikidata.org/entity/Q242472|http://www.wikidata.org/entity/Q240901|http://www.wikidata.org/entity/Q188432|http://www.wikidata.org/entity/Q184103|http://www.wikidata.org/entity/Q125354"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q40831"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1999 film by Maryus Vaysberg"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60853514"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q511485"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Jos\u00e9phine de Meaux"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11187871"}, "Title": {"type": "literal", "value": "The Four-Faced Liar"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3157528"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q43559317"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q43559317|http://www.wikidata.org/entity/Q21511977|http://www.wikidata.org/entity/Q5216755"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Jacob Chase"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q50819320"}, "Title": {"type": "literal", "value": "\u0a17\u0a4b\u0a32\u0a15 \u0a2c\u0a41\u0a17\u0a28\u0a40 \u0a2c\u0a48\u0a02\u0a15 \u0a24\u0a47 \u0a2c\u0a1f\u0a42\u0a06"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23418649"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20195451"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30641582|http://www.wikidata.org/entity/Q29440063|http://www.wikidata.org/entity/Q16222116|http://www.wikidata.org/entity/Q6164373|http://www.wikidata.org/entity/Q4748646|http://www.wikidata.org/entity/Q4683044"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 Indian Punjabi film directed by Ksshitij Chaudhary"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3180198"}, "Title": {"type": "literal", "value": "Eat Me!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22137027"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2000 film by Joe Talbott"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1988727"}, "Title": {"type": "literal", "value": "Air Bud: World Pup"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2903106"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q42608106|http://www.wikidata.org/entity/Q5228469|http://www.wikidata.org/entity/Q5072624|http://www.wikidata.org/entity/Q4971615|http://www.wikidata.org/entity/Q3959254|http://www.wikidata.org/entity/Q2275851|http://www.wikidata.org/entity/Q1157858|http://www.wikidata.org/entity/Q976754|http://www.wikidata.org/entity/Q935122|http://www.wikidata.org/entity/Q718338|http://www.wikidata.org/entity/Q444820|http://www.wikidata.org/entity/Q311517"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2000 film by Bill Bannerman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q908662"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12199836"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12213023"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4120152"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Rami Imam"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12228489"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20422996"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1391164"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12249036|http://www.wikidata.org/entity/Q12246410|http://www.wikidata.org/entity/Q12244972|http://www.wikidata.org/entity/Q12237872|http://www.wikidata.org/entity/Q12223700|http://www.wikidata.org/entity/Q6482021|http://www.wikidata.org/entity/Q1391164|http://www.wikidata.org/entity/Q1386100"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Mohamed Samy"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27590564"}, "Title": {"type": "literal", "value": "Welcome to Happiness"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7087871"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 American comedy film written and directed by Oliver Thompson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6345269"}, "Title": {"type": "literal", "value": "Cinema Parabicho"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3802240"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Isabel S\u00e1nchez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43383203"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4236310"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4254086|http://www.wikidata.org/entity/Q129190"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1393540|http://www.wikidata.org/entity/Q521665|http://www.wikidata.org/entity/Q271630"}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192881"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2017 film by Vladimir Kott"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29832059"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28022334"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Vignesh Karthick"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15852475"}, "Title": {"type": "literal", "value": "Vaterfreuden"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q64645"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18596028|http://www.wikidata.org/entity/Q1953755"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15623309|http://www.wikidata.org/entity/Q2642431|http://www.wikidata.org/entity/Q1963332|http://www.wikidata.org/entity/Q1684854|http://www.wikidata.org/entity/Q1673573|http://www.wikidata.org/entity/Q1527740|http://www.wikidata.org/entity/Q1342322|http://www.wikidata.org/entity/Q1331348|http://www.wikidata.org/entity/Q1292000|http://www.wikidata.org/entity/Q1260674|http://www.wikidata.org/entity/Q691917|http://www.wikidata.org/entity/Q103544|http://www.wikidata.org/entity/Q97394|http://www.wikidata.org/entity/Q91031|http://www.wikidata.org/entity/Q87594|http://www.wikidata.org/entity/Q70727|http://www.wikidata.org/entity/Q69092|http://www.wikidata.org/entity/Q64645|http://www.wikidata.org/entity/Q62929|http://www.wikidata.org/entity/Q20683338"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2014 film by Matthias Schweigh\u00f6fer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3631674"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q676233"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q676233"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3846163|http://www.wikidata.org/entity/Q3660558|http://www.wikidata.org/entity/Q2708170|http://www.wikidata.org/entity/Q676233"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2003 film by Edoardo Gabbriellini"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20032098"}, "Title": {"type": "literal", "value": "Papeles En eL Biento"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2885371"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2885371"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8353654|http://www.wikidata.org/entity/Q7132075|http://www.wikidata.org/entity/Q5759788|http://www.wikidata.org/entity/Q5667597|http://www.wikidata.org/entity/Q5274770|http://www.wikidata.org/entity/Q3290318|http://www.wikidata.org/entity/Q2422720|http://www.wikidata.org/entity/Q704160"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "99|98"}, "Description": {"type": "literal", "value": "2010 film by Juan Taratuto"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q784514"}, "Title": {"type": "literal", "value": "Clerks II"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q489831"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q489831"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19300018|http://www.wikidata.org/entity/Q5327254|http://www.wikidata.org/entity/Q1140895|http://www.wikidata.org/entity/Q917638|http://www.wikidata.org/entity/Q723672|http://www.wikidata.org/entity/Q708320|http://www.wikidata.org/entity/Q598158|http://www.wikidata.org/entity/Q489831|http://www.wikidata.org/entity/Q488335|http://www.wikidata.org/entity/Q483118|http://www.wikidata.org/entity/Q463692|http://www.wikidata.org/entity/Q412822|http://www.wikidata.org/entity/Q354010|http://www.wikidata.org/entity/Q332937|http://www.wikidata.org/entity/Q316627|http://www.wikidata.org/entity/Q314610|http://www.wikidata.org/entity/Q237194|http://www.wikidata.org/entity/Q228692|http://www.wikidata.org/entity/Q4960"}, "Published": {"type": "literal", "value": "2007|2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2006 American comedy film directed by Kevin Smith"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2700070"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55246967"}, "Title": {"type": "literal", "value": "Lovely Louise"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q850030"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2597852|http://www.wikidata.org/entity/Q850030|http://www.wikidata.org/entity/Q29368920"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1319602|http://www.wikidata.org/entity/Q546822|http://www.wikidata.org/entity/Q120509|http://www.wikidata.org/entity/Q117375|http://www.wikidata.org/entity/Q52834817|http://www.wikidata.org/entity/Q14906908|http://www.wikidata.org/entity/Q7599998"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Bettina Oberli"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1235358|http://www.wikidata.org/entity/Q57594934"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13024413"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1015952"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film directed by Poj Arnon"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48734430"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4746882"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56731876|http://www.wikidata.org/entity/Q28316728|http://www.wikidata.org/entity/Q6986875|http://www.wikidata.org/entity/Q4831843|http://www.wikidata.org/entity/Q1290010"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Amit Sharma"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q893815"}, "Title": {"type": "literal", "value": "Boris - Il film"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1522089|http://www.wikidata.org/entity/Q18540296|http://www.wikidata.org/entity/Q3838311"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1993073|http://www.wikidata.org/entity/Q1050695|http://www.wikidata.org/entity/Q1042185|http://www.wikidata.org/entity/Q808664|http://www.wikidata.org/entity/Q795628|http://www.wikidata.org/entity/Q202281|http://www.wikidata.org/entity/Q3904256|http://www.wikidata.org/entity/Q3893835|http://www.wikidata.org/entity/Q3851223|http://www.wikidata.org/entity/Q3838008|http://www.wikidata.org/entity/Q3659538|http://www.wikidata.org/entity/Q3616028|http://www.wikidata.org/entity/Q3610339|http://www.wikidata.org/entity/Q2639369"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2011 film by Giacomo Ciarrapico, Luca Vendruscolo"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3929491"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23564963"}, "Title": {"type": "literal", "value": "Nur ein kleines bisschen schwanger"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1806295"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1238933"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24574356|http://www.wikidata.org/entity/Q23639523|http://www.wikidata.org/entity/Q23561346|http://www.wikidata.org/entity/Q1736707|http://www.wikidata.org/entity/Q1668420|http://www.wikidata.org/entity/Q374812|http://www.wikidata.org/entity/Q122997|http://www.wikidata.org/entity/Q100545|http://www.wikidata.org/entity/Q100417|http://www.wikidata.org/entity/Q96086"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2007 film directed by Lars Montag"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3635302"}, "Title": {"type": "literal", "value": "Bartleby"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6274096"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4985"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2474995|http://www.wikidata.org/entity/Q951634|http://www.wikidata.org/entity/Q708153|http://www.wikidata.org/entity/Q449602|http://www.wikidata.org/entity/Q373989|http://www.wikidata.org/entity/Q310060|http://www.wikidata.org/entity/Q266425"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q52162262"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2001 film by Jonathan Parker"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q387958"}, "Title": {"type": "literal", "value": "What a Man"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q64645"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1246111"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1824918|http://www.wikidata.org/entity/Q1684854|http://www.wikidata.org/entity/Q1527740|http://www.wikidata.org/entity/Q1409622|http://www.wikidata.org/entity/Q1342322|http://www.wikidata.org/entity/Q1298649|http://www.wikidata.org/entity/Q1260674|http://www.wikidata.org/entity/Q1246111|http://www.wikidata.org/entity/Q995430|http://www.wikidata.org/entity/Q108590|http://www.wikidata.org/entity/Q103544|http://www.wikidata.org/entity/Q78766|http://www.wikidata.org/entity/Q22280962|http://www.wikidata.org/entity/Q76447|http://www.wikidata.org/entity/Q64645|http://www.wikidata.org/entity/Q63682|http://www.wikidata.org/entity/Q63228|http://www.wikidata.org/entity/Q57614"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q860626"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2011 film by Matthias Schweigh\u00f6fer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60789319"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28804044"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28804044"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60789764|http://www.wikidata.org/entity/Q60789659|http://www.wikidata.org/entity/Q60788293|http://www.wikidata.org/entity/Q23054724|http://www.wikidata.org/entity/Q20976962|http://www.wikidata.org/entity/Q12045139|http://www.wikidata.org/entity/Q12035539|http://www.wikidata.org/entity/Q12033020|http://www.wikidata.org/entity/Q12025330|http://www.wikidata.org/entity/Q12023662|http://www.wikidata.org/entity/Q12022294|http://www.wikidata.org/entity/Q12021457|http://www.wikidata.org/entity/Q11925857|http://www.wikidata.org/entity/Q265560|http://www.wikidata.org/entity/Q168916"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1339864|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film project directed by Petr Kolecko"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12103758"}, "Title": {"type": "literal", "value": "The Boxtrolls"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5592627|http://www.wikidata.org/entity/Q4773504"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2014 film by Graham Annable, Anthony Stacchi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1314323"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1758468"}, "Title": {"type": "literal", "value": "Kick-Ass 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3176610"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3176610|http://www.wikidata.org/entity/Q2570|http://www.wikidata.org/entity/Q2543"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q260490|http://www.wikidata.org/entity/Q16233699|http://www.wikidata.org/entity/Q16213687|http://www.wikidata.org/entity/Q3726488|http://www.wikidata.org/entity/Q3530246|http://www.wikidata.org/entity/Q3329808|http://www.wikidata.org/entity/Q3320714|http://www.wikidata.org/entity/Q2659353|http://www.wikidata.org/entity/Q1339924|http://www.wikidata.org/entity/Q1331706|http://www.wikidata.org/entity/Q541428|http://www.wikidata.org/entity/Q526886|http://www.wikidata.org/entity/Q512818|http://www.wikidata.org/entity/Q510970|http://www.wikidata.org/entity/Q472053|http://www.wikidata.org/entity/Q440956|http://www.wikidata.org/entity/Q380050|http://www.wikidata.org/entity/Q371430|http://www.wikidata.org/entity/Q314819|http://www.wikidata.org/entity/Q295233|http://www.wikidata.org/entity/Q45923|http://www.wikidata.org/entity/Q40504|http://www.wikidata.org/entity/Q4509|http://www.wikidata.org/entity/Q2570|http://www.wikidata.org/entity/Q2543|http://www.wikidata.org/entity/Q229914"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5778924|http://www.wikidata.org/entity/Q1535153|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q622548|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2013 British-American superhero parody action comedy film directed by Jeff Wadlow"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28252|http://www.wikidata.org/entity/Q168383|http://www.wikidata.org/entity/Q2593|http://www.wikidata.org/entity/Q1906017"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19644634"}, "Title": {"type": "literal", "value": "Ein Geschenk der G\u00f6tter"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19899646"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19899646"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25291398|http://www.wikidata.org/entity/Q24054378|http://www.wikidata.org/entity/Q23062057|http://www.wikidata.org/entity/Q23015770|http://www.wikidata.org/entity/Q19899655|http://www.wikidata.org/entity/Q15431507|http://www.wikidata.org/entity/Q1452625|http://www.wikidata.org/entity/Q1335125|http://www.wikidata.org/entity/Q1266977|http://www.wikidata.org/entity/Q108299|http://www.wikidata.org/entity/Q98976|http://www.wikidata.org/entity/Q90374|http://www.wikidata.org/entity/Q72883"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2014 film directed by Oliver Haffner"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18343093"}, "Title": {"type": "literal", "value": "Young and Wild"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28035446"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2014 film directed by Felix Maxim Eller"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7753878"}, "Title": {"type": "literal", "value": "The Newest Pledge"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6163110"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6163110"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q316627|http://www.wikidata.org/entity/Q280793|http://www.wikidata.org/entity/Q271627"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Jason Michael Brescia"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q36092"}, "Title": {"type": "literal", "value": "Lilo & Stitch"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1181049|http://www.wikidata.org/entity/Q201641"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1181049|http://www.wikidata.org/entity/Q201641"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28968511|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2002 American animated science fiction comedy-drama film produced by Walt Disney Feature Animation"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191224"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19299876"}, "Title": {"type": "literal", "value": "Noi e la Giulia"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3719608"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3845969"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28874538|http://www.wikidata.org/entity/Q3732277|http://www.wikidata.org/entity/Q3719608|http://www.wikidata.org/entity/Q3617706|http://www.wikidata.org/entity/Q1223109|http://www.wikidata.org/entity/Q1085895|http://www.wikidata.org/entity/Q1038705|http://www.wikidata.org/entity/Q472414"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "2015 film by Edoardo Leo"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3804257"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21869292"}, "Title": {"type": "literal", "value": "\u6076\u68cd\u5929\u4f7f"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1140540"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2547121|http://www.wikidata.org/entity/Q1140540"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "124"}, "Description": {"type": "literal", "value": "2015 Chinese film directed by Deng Chao"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10890670"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17222872"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11457164"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11457164"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Katsuya Tomita"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q50825261"}, "Title": {"type": "literal", "value": "Die Nacht der N\u00e4chte"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q120534|http://www.wikidata.org/entity/Q90892"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q120534|http://www.wikidata.org/entity/Q90892"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 documentary film directed by Yasemin \u015eamdereli and Nesrin \u015eamdereli"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q449041"}, "Title": {"type": "literal", "value": "Impy's Island"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13704719|http://www.wikidata.org/entity/Q8670824"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2006 film by Holger Tappe, Reinhard Klooss"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3156874"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3183504"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3183504"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3591418|http://www.wikidata.org/entity/Q3588004|http://www.wikidata.org/entity/Q3559693|http://www.wikidata.org/entity/Q3515175|http://www.wikidata.org/entity/Q3336772|http://www.wikidata.org/entity/Q3183504|http://www.wikidata.org/entity/Q3164195|http://www.wikidata.org/entity/Q2959207|http://www.wikidata.org/entity/Q2825177|http://www.wikidata.org/entity/Q983159|http://www.wikidata.org/entity/Q658220|http://www.wikidata.org/entity/Q552639|http://www.wikidata.org/entity/Q460201|http://www.wikidata.org/entity/Q452106|http://www.wikidata.org/entity/Q291521"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Jonathan Zacca\u00ef"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29110284"}, "Title": {"type": "literal", "value": "Carnage"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q978769"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q978769"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Simon Amstell"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4446124"}, "Title": {"type": "literal", "value": "\u0421\u0443\u043d\u0434\u0443\u043a \u043f\u0440\u0435\u0434\u043a\u043e\u0432"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20629895"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q446883"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2006 film by Nurbek Egen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3838029"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1582781"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1395456|http://www.wikidata.org/entity/Q265091"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Naoko Ogigami"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3517386"}, "Title": {"type": "literal", "value": "Tellement proches"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q74428|http://www.wikidata.org/entity/Q2778106"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2778106|http://www.wikidata.org/entity/Q74428"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3299879|http://www.wikidata.org/entity/Q3242498|http://www.wikidata.org/entity/Q3218893|http://www.wikidata.org/entity/Q3217601|http://www.wikidata.org/entity/Q3187449|http://www.wikidata.org/entity/Q3169135|http://www.wikidata.org/entity/Q3085922|http://www.wikidata.org/entity/Q3008989|http://www.wikidata.org/entity/Q2941947|http://www.wikidata.org/entity/Q2866088|http://www.wikidata.org/entity/Q2864476|http://www.wikidata.org/entity/Q2829888|http://www.wikidata.org/entity/Q1685364|http://www.wikidata.org/entity/Q1450857|http://www.wikidata.org/entity/Q18009985|http://www.wikidata.org/entity/Q17497104|http://www.wikidata.org/entity/Q16832022|http://www.wikidata.org/entity/Q15676192|http://www.wikidata.org/entity/Q3591288|http://www.wikidata.org/entity/Q3514504|http://www.wikidata.org/entity/Q3499140|http://www.wikidata.org/entity/Q3479884|http://www.wikidata.org/entity/Q3427154|http://www.wikidata.org/entity/Q3358299|http://www.wikidata.org/entity/Q1341507|http://www.wikidata.org/entity/Q721337|http://www.wikidata.org/entity/Q693534|http://www.wikidata.org/entity/Q642952|http://www.wikidata.org/entity/Q541690|http://www.wikidata.org/entity/Q511485|http://www.wikidata.org/entity/Q510056|http://www.wikidata.org/entity/Q357387|http://www.wikidata.org/entity/Q289032|http://www.wikidata.org/entity/Q204394|http://www.wikidata.org/entity/Q177840"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2009 film by Olivier Nakache, \u00c9ric Toledano"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5905027"}, "Title": {"type": "literal", "value": "Horrid Henry: The Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3876026"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7781490|http://www.wikidata.org/entity/Q5273581|http://www.wikidata.org/entity/Q380856|http://www.wikidata.org/entity/Q268017|http://www.wikidata.org/entity/Q190998"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Nick Moore"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1907179"}, "Title": {"type": "literal", "value": "Maskeli Be\u015fler: Irak"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3328043"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3328043"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5058838|http://www.wikidata.org/entity/Q382106|http://www.wikidata.org/entity/Q8082387|http://www.wikidata.org/entity/Q6812382"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2007 film by Murat Aslan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q718996"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4187176"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4201152"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11036795"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4199390"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Nia Dinata"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25489777"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7079736"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7079736"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Ofir Lobel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1524217"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2735655"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3242422"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3339792|http://www.wikidata.org/entity/Q1338401|http://www.wikidata.org/entity/Q951634|http://www.wikidata.org/entity/Q621490|http://www.wikidata.org/entity/Q447892|http://www.wikidata.org/entity/Q329700|http://www.wikidata.org/entity/Q234207|http://www.wikidata.org/entity/Q102642"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2001 film by Greg Yaitanes"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18340955"}, "Title": {"type": "literal", "value": "Soap opera"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3610041"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3610041"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3737674|http://www.wikidata.org/entity/Q2963238|http://www.wikidata.org/entity/Q1052875|http://www.wikidata.org/entity/Q1050695|http://www.wikidata.org/entity/Q440335|http://www.wikidata.org/entity/Q291413|http://www.wikidata.org/entity/Q34922"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2014 film by Alessandro Genovesi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3304113"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17539414"}, "Title": {"type": "literal", "value": "Die Mamba"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1679707"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1679707"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2399957|http://www.wikidata.org/entity/Q1972418|http://www.wikidata.org/entity/Q1912675|http://www.wikidata.org/entity/Q112743|http://www.wikidata.org/entity/Q106390|http://www.wikidata.org/entity/Q104670|http://www.wikidata.org/entity/Q90506|http://www.wikidata.org/entity/Q90118|http://www.wikidata.org/entity/Q88796|http://www.wikidata.org/entity/Q87930"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2014 film by Ali Samadi Ahadi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17067918"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6893585"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6893585"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7289374"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Mohan Shankar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q959335"}, "Title": {"type": "literal", "value": "Cats & Dogs: The Revenge of Kitty Galore"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1114465"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7363966|http://www.wikidata.org/entity/Q7611920"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q223033|http://www.wikidata.org/entity/Q190631|http://www.wikidata.org/entity/Q188280|http://www.wikidata.org/entity/Q188018|http://www.wikidata.org/entity/Q150482|http://www.wikidata.org/entity/Q134333|http://www.wikidata.org/entity/Q123174|http://www.wikidata.org/entity/Q107069|http://www.wikidata.org/entity/Q106706|http://www.wikidata.org/entity/Q14535|http://www.wikidata.org/entity/Q234144|http://www.wikidata.org/entity/Q2848685|http://www.wikidata.org/entity/Q2791343|http://www.wikidata.org/entity/Q1075796|http://www.wikidata.org/entity/Q560896|http://www.wikidata.org/entity/Q557948|http://www.wikidata.org/entity/Q485901|http://www.wikidata.org/entity/Q485310|http://www.wikidata.org/entity/Q483148|http://www.wikidata.org/entity/Q439939|http://www.wikidata.org/entity/Q356541|http://www.wikidata.org/entity/Q326939|http://www.wikidata.org/entity/Q311103|http://www.wikidata.org/entity/Q311068|http://www.wikidata.org/entity/Q296883|http://www.wikidata.org/entity/Q258255"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "2010 film by Brad Peyton"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q622668|http://www.wikidata.org/entity/Q126399"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q576373"}, "Title": {"type": "literal", "value": "FUBAR"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3308160"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3308160"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "76"}, "Description": {"type": "literal", "value": "2002 film by Michael Dowse"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q442353"}, "Title": {"type": "literal", "value": "The Future"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q256671"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q256671"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q533461|http://www.wikidata.org/entity/Q515717|http://www.wikidata.org/entity/Q256671|http://www.wikidata.org/entity/Q2156496|http://www.wikidata.org/entity/Q1508944|http://www.wikidata.org/entity/Q558301"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2011 film by Miranda July"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1916337"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4638652"}, "Title": {"type": "literal", "value": "48 Shades"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q369113"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q369113"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7927077|http://www.wikidata.org/entity/Q7330024|http://www.wikidata.org/entity/Q5372897|http://www.wikidata.org/entity/Q4275835"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Daniel Lapaine"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2715076"}, "Title": {"type": "literal", "value": "The Sapphires"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1506091"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23879990|http://www.wikidata.org/entity/Q16607908|http://www.wikidata.org/entity/Q7489628|http://www.wikidata.org/entity/Q6451591|http://www.wikidata.org/entity/Q5548256|http://www.wikidata.org/entity/Q3532579|http://www.wikidata.org/entity/Q1152289|http://www.wikidata.org/entity/Q933129|http://www.wikidata.org/entity/Q568179|http://www.wikidata.org/entity/Q443892"}, "Published": {"type": "literal", "value": "2013|2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q645928|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2012 film by Wayne Blair"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5575218"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2026031"}, "Title": {"type": "literal", "value": "Operation Dance Sensation"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1456645"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1456645|http://www.wikidata.org/entity/Q99064"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1904271|http://www.wikidata.org/entity/Q1456645|http://www.wikidata.org/entity/Q99064|http://www.wikidata.org/entity/Q77462|http://www.wikidata.org/entity/Q77027|http://www.wikidata.org/entity/Q61244"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "2003 German film by Thilo Gosejohann"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15320806"}, "Title": {"type": "literal", "value": "Les \u00c2mes de papier"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3559700"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3085951"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3501805|http://www.wikidata.org/entity/Q3183504|http://www.wikidata.org/entity/Q435925|http://www.wikidata.org/entity/Q315243"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Vincent Lannoo"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2866005|http://www.wikidata.org/entity/Q15321663|http://www.wikidata.org/entity/Q16466235"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q886857"}, "Title": {"type": "literal", "value": "Blutzbr\u00fcdaz"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q98997"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q98997"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13270011|http://www.wikidata.org/entity/Q2584733|http://www.wikidata.org/entity/Q2434366|http://www.wikidata.org/entity/Q2263101|http://www.wikidata.org/entity/Q1935942|http://www.wikidata.org/entity/Q1905543|http://www.wikidata.org/entity/Q1243836|http://www.wikidata.org/entity/Q1158532|http://www.wikidata.org/entity/Q1154066|http://www.wikidata.org/entity/Q1097434|http://www.wikidata.org/entity/Q449665|http://www.wikidata.org/entity/Q213670|http://www.wikidata.org/entity/Q109358|http://www.wikidata.org/entity/Q90636|http://www.wikidata.org/entity/Q88400|http://www.wikidata.org/entity/Q73092|http://www.wikidata.org/entity/Q71588|http://www.wikidata.org/entity/Q1745408|http://www.wikidata.org/entity/Q1624623|http://www.wikidata.org/entity/Q1486110|http://www.wikidata.org/entity/Q1463417|http://www.wikidata.org/entity/Q1454554"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2011 film by \u00d6zg\u00fcr Y\u0131ld\u0131r\u0131m"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3319980"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3473148"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3473148"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16185718|http://www.wikidata.org/entity/Q3335761|http://www.wikidata.org/entity/Q3333007|http://www.wikidata.org/entity/Q3190704|http://www.wikidata.org/entity/Q2884015|http://www.wikidata.org/entity/Q2851178|http://www.wikidata.org/entity/Q2583177|http://www.wikidata.org/entity/Q600051"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Saphia Azzeddine"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42947885"}, "Title": {"type": "literal", "value": "S&M Sally"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6837009"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Michelle Ehlen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q876851"}, "Title": {"type": "literal", "value": "Diamonds"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1057926"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q51564|http://www.wikidata.org/entity/Q7372690|http://www.wikidata.org/entity/Q6761758|http://www.wikidata.org/entity/Q6297411|http://www.wikidata.org/entity/Q1305333|http://www.wikidata.org/entity/Q978857|http://www.wikidata.org/entity/Q712647|http://www.wikidata.org/entity/Q455646|http://www.wikidata.org/entity/Q326984|http://www.wikidata.org/entity/Q230993|http://www.wikidata.org/entity/Q105221|http://www.wikidata.org/entity/Q104027|http://www.wikidata.org/entity/Q104000|http://www.wikidata.org/entity/Q60493"}, "Published": {"type": "literal", "value": "1999|2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "1999 American comedy film directed by John Mallory Asher"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42165807"}, "Title": {"type": "literal", "value": "Toc toc"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6161380"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2017 spanish comedy movie directed by Vicente Villanueva"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12250170"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12218751"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4120252"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Sherif Mandour"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3414725"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15070019"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15070019"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6531360|http://www.wikidata.org/entity/Q3382884"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Alexandre Coffre"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18157191"}, "Title": {"type": "literal", "value": "Zombeavers"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23819589"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23819589"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q909704|http://www.wikidata.org/entity/Q463285|http://www.wikidata.org/entity/Q369872|http://www.wikidata.org/entity/Q13412374|http://www.wikidata.org/entity/Q3545522|http://www.wikidata.org/entity/Q1135627"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3072049|http://www.wikidata.org/entity/Q1342372|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2014 film by Jordan Rubin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18810305"}, "Title": {"type": "literal", "value": "K\u00fcck\u00fcckskind"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1085794"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23824545"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2013 film by Christoph Schnee"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3089073"}, "Title": {"type": "literal", "value": "Sykt lykkelig"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17107235"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22482805"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17194694|http://www.wikidata.org/entity/Q11978658|http://www.wikidata.org/entity/Q5699667|http://www.wikidata.org/entity/Q4976428|http://www.wikidata.org/entity/Q394570"}, "Published": {"type": "literal", "value": "2012|2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2010 Norwegian comedy film directed by Anne Sewitsky"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6736868"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q471596"}, "Title": {"type": "literal", "value": "The Lucky Ones"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q706300"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q706300"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q336824|http://www.wikidata.org/entity/Q190386|http://www.wikidata.org/entity/Q95048|http://www.wikidata.org/entity/Q41340|http://www.wikidata.org/entity/Q947748|http://www.wikidata.org/entity/Q566923|http://www.wikidata.org/entity/Q462327|http://www.wikidata.org/entity/Q370817|http://www.wikidata.org/entity/Q359488"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "113"}, "Description": {"type": "literal", "value": "2008 film by Neil Burger"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17068202"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5388719"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Erik Matti"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29832055"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17060898"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17060898"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16233843"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by K. P. Jagannath"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17221018"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5365238"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5365238"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1041739|http://www.wikidata.org/entity/Q253690"}, "Published": {"type": "literal", "value": "2014|2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Sh\u014dgo Kawashima"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2155483"}, "Title": {"type": "literal", "value": "Diary of a Wimpy Kid: Dog Days"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18558"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1400238"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1321271|http://www.wikidata.org/entity/Q637063|http://www.wikidata.org/entity/Q552896|http://www.wikidata.org/entity/Q491775|http://www.wikidata.org/entity/Q267400|http://www.wikidata.org/entity/Q234299|http://www.wikidata.org/entity/Q139611|http://www.wikidata.org/entity/Q74689|http://www.wikidata.org/entity/Q74671|http://www.wikidata.org/entity/Q28974275|http://www.wikidata.org/entity/Q26213699|http://www.wikidata.org/entity/Q7001736|http://www.wikidata.org/entity/Q2834731|http://www.wikidata.org/entity/Q1800733"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q52162262"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2012 film by David Bowers"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5148553|http://www.wikidata.org/entity/Q434841"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28142555"}, "Title": {"type": "literal", "value": "Selbstkritik eines buergerlichen Hundes"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28142536"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28142536"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28792318|http://www.wikidata.org/entity/Q28142536"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2017 film directed by Julian Radlmaier"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19720688"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4901341"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q901649"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film directed by Bhaskar"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24906550"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12126903"}, "Title": {"type": "literal", "value": "Phil the Alien"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2156090"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2156090"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2156090|http://www.wikidata.org/entity/Q311169|http://www.wikidata.org/entity/Q238168"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Rob Stefaniuk"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55380520"}, "Title": {"type": "literal", "value": "Little Girl Blue"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q561754"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1650253|http://www.wikidata.org/entity/Q561754"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1900185|http://www.wikidata.org/entity/Q1817337"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Anna Luif"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1262133"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q41527984"}, "Title": {"type": "literal", "value": "Fikkefuchs"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q108302"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q108302|http://www.wikidata.org/entity/Q76284"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23794603|http://www.wikidata.org/entity/Q17537095|http://www.wikidata.org/entity/Q16064485|http://www.wikidata.org/entity/Q2369147|http://www.wikidata.org/entity/Q108302"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Jan Henrik Stahlberg"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18603050"}, "Title": {"type": "literal", "value": "\u0935\u0948\u0932\u094d\u0915\u092e \u091f\u0942 \u0915\u0930\u093e\u091a\u0940"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4805156"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7942575"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q704859"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Ashish R Mohan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3561465"}, "Title": {"type": "literal", "value": "Vive la France"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q737676"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q737676"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q778451"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2013 French comedy film directed by Micha\u00ebl Youn"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q50822485"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q43439860"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q43439860"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6148788|http://www.wikidata.org/entity/Q3163137|http://www.wikidata.org/entity/Q2687792"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 Spanish comedy film by Carlo Padial"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19007230"}, "Title": {"type": "literal", "value": "From A to B"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4725069"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4725069"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5429493"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2015 film by Ali Mustafa"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3831472"}, "Title": {"type": "literal", "value": "Lezioni di cioccolato 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20971246"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13427396"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4013506|http://www.wikidata.org/entity/Q3972384|http://www.wikidata.org/entity/Q3869776|http://www.wikidata.org/entity/Q3802324|http://www.wikidata.org/entity/Q3783619|http://www.wikidata.org/entity/Q3765221|http://www.wikidata.org/entity/Q3679830|http://www.wikidata.org/entity/Q3634624|http://www.wikidata.org/entity/Q1237584|http://www.wikidata.org/entity/Q1223109"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2011 film by Alessio Maria Federici"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3663776"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q51867653"}, "Title": {"type": "literal", "value": "Goosebumps: Haunted Halloween"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q653911"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27922207|http://www.wikidata.org/entity/Q25999313|http://www.wikidata.org/entity/Q16980120|http://www.wikidata.org/entity/Q1077635|http://www.wikidata.org/entity/Q483907|http://www.wikidata.org/entity/Q440910|http://www.wikidata.org/entity/Q165296|http://www.wikidata.org/entity/Q39739164"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q224700"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 American film by Ari Sandel"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q557387|http://www.wikidata.org/entity/Q1155729|http://www.wikidata.org/entity/Q1416835|http://www.wikidata.org/entity/Q186941"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6676053"}, "Title": {"type": "literal", "value": "\u0932\u0942\u091f"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16198160"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16198160"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16731881"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 Nepali film by Nischal Basnet"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21014186"}, "Title": {"type": "literal", "value": "Pecore in erba"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21207514"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2015 film by Alberto Caviglia"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q54860504"}, "Title": {"type": "literal", "value": "Like Father"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3218835"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3218835"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q220308|http://www.wikidata.org/entity/Q196560|http://www.wikidata.org/entity/Q178882"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2018 film project directed by Lauren Miller"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1632425"}, "Title": {"type": "literal", "value": "Can't Hardly Wait"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3020873|http://www.wikidata.org/entity/Q3127820"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3127820|http://www.wikidata.org/entity/Q3020873"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q362697|http://www.wikidata.org/entity/Q362236|http://www.wikidata.org/entity/Q360674|http://www.wikidata.org/entity/Q314819|http://www.wikidata.org/entity/Q293042|http://www.wikidata.org/entity/Q264748|http://www.wikidata.org/entity/Q258854|http://www.wikidata.org/entity/Q240199|http://www.wikidata.org/entity/Q233347|http://www.wikidata.org/entity/Q232098|http://www.wikidata.org/entity/Q231197|http://www.wikidata.org/entity/Q429777|http://www.wikidata.org/entity/Q383064|http://www.wikidata.org/entity/Q378672|http://www.wikidata.org/entity/Q229249|http://www.wikidata.org/entity/Q202304|http://www.wikidata.org/entity/Q192052|http://www.wikidata.org/entity/Q186757|http://www.wikidata.org/entity/Q175104|http://www.wikidata.org/entity/Q168763|http://www.wikidata.org/entity/Q1066934|http://www.wikidata.org/entity/Q1062316|http://www.wikidata.org/entity/Q959052|http://www.wikidata.org/entity/Q726165|http://www.wikidata.org/entity/Q530790|http://www.wikidata.org/entity/Q518128|http://www.wikidata.org/entity/Q5405327|http://www.wikidata.org/entity/Q3557605|http://www.wikidata.org/entity/Q3480189|http://www.wikidata.org/entity/Q3180255|http://www.wikidata.org/entity/Q3163247|http://www.wikidata.org/entity/Q3127820|http://www.wikidata.org/entity/Q3020873|http://www.wikidata.org/entity/Q2923718|http://www.wikidata.org/entity/Q2669372|http://www.wikidata.org/entity/Q1820773|http://www.wikidata.org/entity/Q1631627|http://www.wikidata.org/entity/Q1422655|http://www.wikidata.org/entity/Q461082|http://www.wikidata.org/entity/Q456862|http://www.wikidata.org/entity/Q454035|http://www.wikidata.org/entity/Q451894|http://www.wikidata.org/entity/Q438841"}, "Published": {"type": "literal", "value": "1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q860626"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "1998 film by Deborah Kaplan, Harry Elfont"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q186941"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55080334"}, "Title": {"type": "literal", "value": "Les Go\u00fbts et les Couleurs"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3331501"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2018 film direct by Myriam Aziza"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q907311"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48862213"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q58799185"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50999396"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50999396|http://www.wikidata.org/entity/Q48845347|http://www.wikidata.org/entity/Q17544549|http://www.wikidata.org/entity/Q11772277|http://www.wikidata.org/entity/Q11766088|http://www.wikidata.org/entity/Q9281760|http://www.wikidata.org/entity/Q9152498|http://www.wikidata.org/entity/Q5298221|http://www.wikidata.org/entity/Q1797671|http://www.wikidata.org/entity/Q459661"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9143596"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20408360"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22245610"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12249943"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14948579"}, "Title": {"type": "literal", "value": "Let's Be Cops"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q322842"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q322842"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3530789|http://www.wikidata.org/entity/Q4910422|http://www.wikidata.org/entity/Q1966357|http://www.wikidata.org/entity/Q1616538|http://www.wikidata.org/entity/Q1158726|http://www.wikidata.org/entity/Q744002|http://www.wikidata.org/entity/Q717194|http://www.wikidata.org/entity/Q674255|http://www.wikidata.org/entity/Q322842|http://www.wikidata.org/entity/Q189415|http://www.wikidata.org/entity/Q183439|http://www.wikidata.org/entity/Q171525|http://www.wikidata.org/entity/Q164869|http://www.wikidata.org/entity/Q17488223|http://www.wikidata.org/entity/Q13560502|http://www.wikidata.org/entity/Q7925457|http://www.wikidata.org/entity/Q6382703"}, "Published": {"type": "literal", "value": "2014|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4984974|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q663106"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2014 film by Luke Greenfield"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27590232"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3972430"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3972430"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "74"}, "Description": {"type": "literal", "value": "2004 film by Stefano Chiantini"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21008412"}, "Title": {"type": "literal", "value": "Halbe Br\u00fcder"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q78383"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1246111"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19593891|http://www.wikidata.org/entity/Q15855347|http://www.wikidata.org/entity/Q2399957|http://www.wikidata.org/entity/Q1732788|http://www.wikidata.org/entity/Q1577922|http://www.wikidata.org/entity/Q1545055|http://www.wikidata.org/entity/Q1348711|http://www.wikidata.org/entity/Q1265330|http://www.wikidata.org/entity/Q1251322|http://www.wikidata.org/entity/Q1246296|http://www.wikidata.org/entity/Q1161422|http://www.wikidata.org/entity/Q1145137|http://www.wikidata.org/entity/Q1067500|http://www.wikidata.org/entity/Q560312|http://www.wikidata.org/entity/Q213670|http://www.wikidata.org/entity/Q124985|http://www.wikidata.org/entity/Q114624|http://www.wikidata.org/entity/Q106781|http://www.wikidata.org/entity/Q106649|http://www.wikidata.org/entity/Q104879|http://www.wikidata.org/entity/Q90041|http://www.wikidata.org/entity/Q89032|http://www.wikidata.org/entity/Q78121|http://www.wikidata.org/entity/Q76447|http://www.wikidata.org/entity/Q71487|http://www.wikidata.org/entity/Q70808|http://www.wikidata.org/entity/Q69092|http://www.wikidata.org/entity/Q64577|http://www.wikidata.org/entity/Q45387"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "2015 film by Christian Alvart"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q58701890"}, "Title": {"type": "literal", "value": "Cats"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q295912"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1811812|http://www.wikidata.org/entity/Q295912"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q32999647|http://www.wikidata.org/entity/Q26704283|http://www.wikidata.org/entity/Q16968300|http://www.wikidata.org/entity/Q767499|http://www.wikidata.org/entity/Q442897|http://www.wikidata.org/entity/Q342604|http://www.wikidata.org/entity/Q243639|http://www.wikidata.org/entity/Q192410|http://www.wikidata.org/entity/Q170510|http://www.wikidata.org/entity/Q28054|http://www.wikidata.org/entity/Q26876"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q2743"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film by Tom Hooper"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q457893|http://www.wikidata.org/entity/Q2060840|http://www.wikidata.org/entity/Q4044503|http://www.wikidata.org/entity/Q7301319"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3976245"}, "Title": {"type": "literal", "value": "Stuck on You!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q944978|http://www.wikidata.org/entity/Q183347"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q944978|http://www.wikidata.org/entity/Q183347"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21403123|http://www.wikidata.org/entity/Q6075016"}, "Published": {"type": "literal", "value": "1982"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1982 film by Michael Herz, Lloyd Kaufman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q640786"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26869645"}, "Title": {"type": "literal", "value": "Tschick"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q77061"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28152|http://www.wikidata.org/entity/Q77061"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1555527|http://www.wikidata.org/entity/Q1097463|http://www.wikidata.org/entity/Q123015|http://www.wikidata.org/entity/Q111879|http://www.wikidata.org/entity/Q107805|http://www.wikidata.org/entity/Q71497|http://www.wikidata.org/entity/Q26880638|http://www.wikidata.org/entity/Q19839425|http://www.wikidata.org/entity/Q17521534|http://www.wikidata.org/entity/Q1892651|http://www.wikidata.org/entity/Q1721304"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q628165|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2016 film by Fatih Ak\u0131n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1140607"}, "Title": {"type": "literal", "value": "\u0935\u0940 \u0906\u0930 \u092b\u0948\u092e\u093f\u0932\u0940"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3483111"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7039895|http://www.wikidata.org/entity/Q3483111|http://www.wikidata.org/entity/Q3103782"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12415781|http://www.wikidata.org/entity/Q184885|http://www.wikidata.org/entity/Q147395|http://www.wikidata.org/entity/Q4661551|http://www.wikidata.org/entity/Q442668"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q93196|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "2010 film by Sidharth Malhotran"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q186941|http://www.wikidata.org/entity/Q1207592"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28000925"}, "Title": {"type": "literal", "value": "Mister Felicit\u00e0"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q769800"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q769800"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q769800"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2017 Italian film directed by Alessandro Siani"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20856802"}, "Title": {"type": "literal", "value": "La La Land"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18350026"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18350026"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24444473|http://www.wikidata.org/entity/Q19665276|http://www.wikidata.org/entity/Q15790902|http://www.wikidata.org/entity/Q5450687|http://www.wikidata.org/entity/Q3303794|http://www.wikidata.org/entity/Q1683907|http://www.wikidata.org/entity/Q967833|http://www.wikidata.org/entity/Q494393|http://www.wikidata.org/entity/Q351171|http://www.wikidata.org/entity/Q236956|http://www.wikidata.org/entity/Q193815|http://www.wikidata.org/entity/Q150482|http://www.wikidata.org/entity/Q147077|http://www.wikidata.org/entity/Q44857"}, "Published": {"type": "literal", "value": "2017|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "128"}, "Description": {"type": "literal", "value": "2016 musical film by Damien Chazelle"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q515869|http://www.wikidata.org/entity/Q632323"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18633954"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28494066"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28494066"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q232470|http://www.wikidata.org/entity/Q16683524|http://www.wikidata.org/entity/Q3573897|http://www.wikidata.org/entity/Q3559331|http://www.wikidata.org/entity/Q3471989|http://www.wikidata.org/entity/Q3063751|http://www.wikidata.org/entity/Q2966123|http://www.wikidata.org/entity/Q2863068|http://www.wikidata.org/entity/Q2489060|http://www.wikidata.org/entity/Q1827804|http://www.wikidata.org/entity/Q983020|http://www.wikidata.org/entity/Q287427"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by St\u00e9phane Demoustier"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1781285"}, "Title": {"type": "literal", "value": "Spring Breakers"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q528949"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q528949"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q206032|http://www.wikidata.org/entity/Q123174|http://www.wikidata.org/entity/Q83287|http://www.wikidata.org/entity/Q3787526|http://www.wikidata.org/entity/Q352873|http://www.wikidata.org/entity/Q306403|http://www.wikidata.org/entity/Q230609|http://www.wikidata.org/entity/Q229349"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q599558|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q2421031|http://www.wikidata.org/entity/Q1776156|http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q851213"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2013 film by Harmony Korine"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q530719|http://www.wikidata.org/entity/Q5284436"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6353264"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2280863"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7425153"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7914889|http://www.wikidata.org/entity/Q6750439|http://www.wikidata.org/entity/Q6122089|http://www.wikidata.org/entity/Q3522919"}, "Published": {"type": "literal", "value": "1996"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1996 film by Sibi Malayil"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q840872"}, "Title": {"type": "literal", "value": "Thank You for Smoking"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q314502"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1086549|http://www.wikidata.org/entity/Q314502"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q296505|http://www.wikidata.org/entity/Q294372|http://www.wikidata.org/entity/Q15630234|http://www.wikidata.org/entity/Q2942050|http://www.wikidata.org/entity/Q2820073|http://www.wikidata.org/entity/Q2778807|http://www.wikidata.org/entity/Q2438469|http://www.wikidata.org/entity/Q1365036|http://www.wikidata.org/entity/Q731628|http://www.wikidata.org/entity/Q529411|http://www.wikidata.org/entity/Q467496|http://www.wikidata.org/entity/Q460355|http://www.wikidata.org/entity/Q452019|http://www.wikidata.org/entity/Q311314|http://www.wikidata.org/entity/Q269901|http://www.wikidata.org/entity/Q269894|http://www.wikidata.org/entity/Q229220|http://www.wikidata.org/entity/Q224159|http://www.wikidata.org/entity/Q192643|http://www.wikidata.org/entity/Q174346|http://www.wikidata.org/entity/Q171736|http://www.wikidata.org/entity/Q164328|http://www.wikidata.org/entity/Q150482"}, "Published": {"type": "literal", "value": "2005|2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2005 film by Jason Reitman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q953040"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18693376"}, "Title": {"type": "literal", "value": "Napapiirin sankarit 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11896917"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5411720"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16989439|http://www.wikidata.org/entity/Q11892451|http://www.wikidata.org/entity/Q11222319|http://www.wikidata.org/entity/Q6303995|http://www.wikidata.org/entity/Q3742950|http://www.wikidata.org/entity/Q3742931|http://www.wikidata.org/entity/Q468517"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2015 Finnish film directed by Teppo Airaksinen"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11902589"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4328871"}, "Title": {"type": "literal", "value": "\u041e \u0447\u0451\u043c \u0433\u043e\u0432\u043e\u0440\u044f\u0442 \u043c\u0443\u0436\u0447\u0438\u043d\u044b"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4171916"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4494681|http://www.wikidata.org/entity/Q4077949"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4494681|http://www.wikidata.org/entity/Q4254527|http://www.wikidata.org/entity/Q4157470|http://www.wikidata.org/entity/Q4077949"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q628165|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2010 film by Dmitriy Dyachenko"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3599039"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3938128|http://www.wikidata.org/entity/Q3680001"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q433601|http://www.wikidata.org/entity/Q3944358|http://www.wikidata.org/entity/Q3940278|http://www.wikidata.org/entity/Q3856584|http://www.wikidata.org/entity/Q3851426|http://www.wikidata.org/entity/Q3749413|http://www.wikidata.org/entity/Q3617706|http://www.wikidata.org/entity/Q2884676|http://www.wikidata.org/entity/Q1523696|http://www.wikidata.org/entity/Q1052746|http://www.wikidata.org/entity/Q1044154|http://www.wikidata.org/entity/Q1042623|http://www.wikidata.org/entity/Q1042185"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "2006 film by Claudio Cupellini, Roan Johnson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1077221"}, "Title": {"type": "literal", "value": "Ice Age: A Mammoth Christmas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2701677"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7407579|http://www.wikidata.org/entity/Q2446929"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "25"}, "Description": {"type": "literal", "value": "2011 animation film directed by Karen Disher"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q885885|http://www.wikidata.org/entity/Q7306853"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5914661"}, "Title": {"type": "literal", "value": "Imp\u00e1vido"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6404813"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q53094"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Carlos Ther\u00f3n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q50682520"}, "Title": {"type": "literal", "value": "Once Machos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5664461"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Aldo Miyashiro"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19336182"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11529724"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4244195"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "2014 film by Daigo Matsui"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1091012"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q549513"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5364986"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3234563|http://www.wikidata.org/entity/Q2271234|http://www.wikidata.org/entity/Q1188862|http://www.wikidata.org/entity/Q1154232|http://www.wikidata.org/entity/Q1058963|http://www.wikidata.org/entity/Q1041739|http://www.wikidata.org/entity/Q934330"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q1339864|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Makoto Tanaka"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q875920"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q949718"}, "Title": {"type": "literal", "value": "The Battle of Shaker Heights"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6451383|http://www.wikidata.org/entity/Q5347580"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3640043|http://www.wikidata.org/entity/Q1384407|http://www.wikidata.org/entity/Q951113|http://www.wikidata.org/entity/Q570006|http://www.wikidata.org/entity/Q236696|http://www.wikidata.org/entity/Q235272|http://www.wikidata.org/entity/Q230686|http://www.wikidata.org/entity/Q180942|http://www.wikidata.org/entity/Q152542"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2003 film by Efram Potelle, Kyle Rankin"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6654572"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16354845"}, "Title": {"type": "literal", "value": "American Ultra"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2319466"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3302192"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q516690|http://www.wikidata.org/entity/Q315763|http://www.wikidata.org/entity/Q295233|http://www.wikidata.org/entity/Q277978|http://www.wikidata.org/entity/Q235519|http://www.wikidata.org/entity/Q219512|http://www.wikidata.org/entity/Q126599|http://www.wikidata.org/entity/Q20858955|http://www.wikidata.org/entity/Q18655744|http://www.wikidata.org/entity/Q15901095|http://www.wikidata.org/entity/Q7626601|http://www.wikidata.org/entity/Q6900353|http://www.wikidata.org/entity/Q6502479|http://www.wikidata.org/entity/Q6267426|http://www.wikidata.org/entity/Q6113318|http://www.wikidata.org/entity/Q1027551|http://www.wikidata.org/entity/Q948751|http://www.wikidata.org/entity/Q601032"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q16950433|http://www.wikidata.org/entity/Q2297927"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2015 film by Nima Nourizadeh"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15869103"}, "Title": {"type": "literal", "value": "The Voorman Problem"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16866317"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16866317|http://www.wikidata.org/entity/Q16843495|http://www.wikidata.org/entity/Q40479"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q309486"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "13"}, "Description": {"type": "literal", "value": "2013 film by Mark Gill"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15091512"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2020499"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1562353"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16937488"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2013 film by Oliver Rihs"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28549113"}, "Title": {"type": "literal", "value": "Birthday Wish"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q31210486"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q31210486"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q31270372|http://www.wikidata.org/entity/Q28548642|http://www.wikidata.org/entity/Q28369701|http://www.wikidata.org/entity/Q28367228|http://www.wikidata.org/entity/Q27656034"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "13"}, "Description": {"type": "literal", "value": "2014 short by Ryan Casselman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1518840"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4778056"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13113668"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7499333|http://www.wikidata.org/entity/Q6150807|http://www.wikidata.org/entity/Q3534464|http://www.wikidata.org/entity/Q3520472|http://www.wikidata.org/entity/Q2721855"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Anwar Rasheed"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17586640"}, "Title": {"type": "literal", "value": "She's Dating the Gangster"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5053417"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "150"}, "Description": {"type": "literal", "value": "2014 film directed by Cathy Garcia-Molina"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3387234"}, "Title": {"type": "literal", "value": "Chillerama"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6211034|http://www.wikidata.org/entity/Q808769|http://www.wikidata.org/entity/Q466552|http://www.wikidata.org/entity/Q350710"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3072049|http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "2011 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1587974"}, "Title": {"type": "literal", "value": "Harvie Krumpet"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q349248"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q349248"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "23"}, "Description": {"type": "literal", "value": "2003 Australian animated short film directed by Adam Elliot"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4824145|http://www.wikidata.org/entity/Q5448979|http://www.wikidata.org/entity/Q7389008"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18890297"}, "Title": {"type": "literal", "value": "Dope"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7331376"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7331376"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16237562|http://www.wikidata.org/entity/Q16236922"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5897543|http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2015 film directed by Rick Famuyiwa"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1458649"}, "Title": {"type": "literal", "value": "Muppets from Space"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2037657"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1349850"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q181936|http://www.wikidata.org/entity/Q174346|http://www.wikidata.org/entity/Q165283|http://www.wikidata.org/entity/Q44176|http://www.wikidata.org/entity/Q34939|http://www.wikidata.org/entity/Q2761980|http://www.wikidata.org/entity/Q2284236|http://www.wikidata.org/entity/Q2272355|http://www.wikidata.org/entity/Q1029467|http://www.wikidata.org/entity/Q472282|http://www.wikidata.org/entity/Q468028|http://www.wikidata.org/entity/Q432437|http://www.wikidata.org/entity/Q320204|http://www.wikidata.org/entity/Q311319|http://www.wikidata.org/entity/Q294185|http://www.wikidata.org/entity/Q219653|http://www.wikidata.org/entity/Q211280|http://www.wikidata.org/entity/Q208558|http://www.wikidata.org/entity/Q192217"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q761469|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "1999 film by Tim Hill"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3808345"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2812793"}, "Title": {"type": "literal", "value": "1981"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3430333"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3430333"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3471976|http://www.wikidata.org/entity/Q3442355|http://www.wikidata.org/entity/Q3430333|http://www.wikidata.org/entity/Q3386076|http://www.wikidata.org/entity/Q3169942|http://www.wikidata.org/entity/Q786347"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Ricardo Trogi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28843477"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q726544"}, "Title": {"type": "literal", "value": "A Room for Romeo Brass"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1372134"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1372134"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1711840|http://www.wikidata.org/entity/Q1372134|http://www.wikidata.org/entity/Q590830|http://www.wikidata.org/entity/Q498389|http://www.wikidata.org/entity/Q434201|http://www.wikidata.org/entity/Q211283"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "1999 film by Shane Meadows"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9531|http://www.wikidata.org/entity/Q3880776"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1415029"}, "Title": {"type": "literal", "value": "Your Highness"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2296698"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q816440|http://www.wikidata.org/entity/Q336400"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3644509|http://www.wikidata.org/entity/Q2686633|http://www.wikidata.org/entity/Q2504253|http://www.wikidata.org/entity/Q920094|http://www.wikidata.org/entity/Q342533|http://www.wikidata.org/entity/Q342419|http://www.wikidata.org/entity/Q336400|http://www.wikidata.org/entity/Q316596|http://www.wikidata.org/entity/Q309690|http://www.wikidata.org/entity/Q306403|http://www.wikidata.org/entity/Q281544|http://www.wikidata.org/entity/Q222390|http://www.wikidata.org/entity/Q191719|http://www.wikidata.org/entity/Q122473|http://www.wikidata.org/entity/Q37876|http://www.wikidata.org/entity/Q7295103"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2011 film by David Gordon Green"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383|http://www.wikidata.org/entity/Q7437329"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2891067"}, "Title": {"type": "literal", "value": "La suerte en tus manos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1160223"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1160223"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28746686|http://www.wikidata.org/entity/Q6700387|http://www.wikidata.org/entity/Q6128626|http://www.wikidata.org/entity/Q6117401|http://www.wikidata.org/entity/Q5873561|http://www.wikidata.org/entity/Q5850378|http://www.wikidata.org/entity/Q5680400|http://www.wikidata.org/entity/Q3325953|http://www.wikidata.org/entity/Q543506|http://www.wikidata.org/entity/Q240136"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Daniel Burman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1551169"}, "Title": {"type": "literal", "value": "Temporada de patos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q710314"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q710314"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3027370"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2004 comedy film by Fernando Eimbcke"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19961281"}, "Title": {"type": "literal", "value": "Expelled"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16232128"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16232128"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20031673|http://www.wikidata.org/entity/Q3018069|http://www.wikidata.org/entity/Q706142"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2015 film by Alex Goyette"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18636485"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2213842"}, "Title": {"type": "literal", "value": "\u0938\u0932\u093e\u092e-\u090f-\u0907\u0936\u094d\u0915\u093c"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2332619"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16201528|http://www.wikidata.org/entity/Q7935930|http://www.wikidata.org/entity/Q7488862|http://www.wikidata.org/entity/Q6447875|http://www.wikidata.org/entity/Q6323460|http://www.wikidata.org/entity/Q4879891|http://www.wikidata.org/entity/Q4765768|http://www.wikidata.org/entity/Q1992008|http://www.wikidata.org/entity/Q983053|http://www.wikidata.org/entity/Q466974|http://www.wikidata.org/entity/Q427623|http://www.wikidata.org/entity/Q421581|http://www.wikidata.org/entity/Q313956|http://www.wikidata.org/entity/Q313025|http://www.wikidata.org/entity/Q159166|http://www.wikidata.org/entity/Q158957|http://www.wikidata.org/entity/Q158745|http://www.wikidata.org/entity/Q158450|http://www.wikidata.org/entity/Q9543"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "201"}, "Description": {"type": "literal", "value": "2007 film by Nikhil Advani"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5390894"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2573669"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192881"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Marc van Uchelen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q9321426"}, "Title": {"type": "literal", "value": "Finding Dory"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q328723|http://www.wikidata.org/entity/Q17386294"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24290079|http://www.wikidata.org/entity/Q17386294|http://www.wikidata.org/entity/Q740682|http://www.wikidata.org/entity/Q328723"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2016 animated film produced by Pixar Animation Studios"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q127552|http://www.wikidata.org/entity/Q191224"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q62788429"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q62655108"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q62655108"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Paolo Zucca"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12192077"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12250381"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4120152"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Wael Ehsan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18020115"}, "Title": {"type": "literal", "value": "Familienfieber"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18026371"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21032030|http://www.wikidata.org/entity/Q17353072|http://www.wikidata.org/entity/Q1736532|http://www.wikidata.org/entity/Q121322"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "78"}, "Description": {"type": "literal", "value": "2014 film by Nico Sommer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16828640"}, "Title": {"type": "literal", "value": "Anina"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q42394286"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2013 animated film by Alfredo Soderguit"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16641860"}, "Title": {"type": "literal", "value": "Hippocrate"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2364139"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2364139"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3559693|http://www.wikidata.org/entity/Q3422822|http://www.wikidata.org/entity/Q3380605|http://www.wikidata.org/entity/Q3092547|http://www.wikidata.org/entity/Q2966416|http://www.wikidata.org/entity/Q1352534|http://www.wikidata.org/entity/Q1044296|http://www.wikidata.org/entity/Q273342"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Thomas Lilti"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2344361"}, "Title": {"type": "literal", "value": "Derecho de familia"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1160223"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1160223"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28466456|http://www.wikidata.org/entity/Q28074323|http://www.wikidata.org/entity/Q17566611|http://www.wikidata.org/entity/Q6171365|http://www.wikidata.org/entity/Q5996654|http://www.wikidata.org/entity/Q5984311|http://www.wikidata.org/entity/Q4801746|http://www.wikidata.org/entity/Q2887161|http://www.wikidata.org/entity/Q2272014|http://www.wikidata.org/entity/Q586715"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2006 film by Daniel Burman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1729298"}, "Title": {"type": "literal", "value": "Sommer der Gaukler"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q96164"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q106886|http://www.wikidata.org/entity/Q1745883"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1928284|http://www.wikidata.org/entity/Q1608370|http://www.wikidata.org/entity/Q1429928|http://www.wikidata.org/entity/Q1080816|http://www.wikidata.org/entity/Q1018220|http://www.wikidata.org/entity/Q562212|http://www.wikidata.org/entity/Q115010|http://www.wikidata.org/entity/Q97153|http://www.wikidata.org/entity/Q96937|http://www.wikidata.org/entity/Q88900|http://www.wikidata.org/entity/Q88861|http://www.wikidata.org/entity/Q42335|http://www.wikidata.org/entity/Q17325805|http://www.wikidata.org/entity/Q1984941"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17013749|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "2011 feature film directed by Marcus H. Rosenm\u00fcller"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21498249"}, "Title": {"type": "literal", "value": "Sarnie \u017cniwo, czyli pokusa statuetkowego szlaku"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9166187"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Bartosz Walaszek"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9390232"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16249045"}, "Title": {"type": "literal", "value": "Unfinished Business"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1410263"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7614580"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20871771|http://www.wikidata.org/entity/Q18921335|http://www.wikidata.org/entity/Q3381855|http://www.wikidata.org/entity/Q2965628|http://www.wikidata.org/entity/Q1892860|http://www.wikidata.org/entity/Q1713263|http://www.wikidata.org/entity/Q1536641|http://www.wikidata.org/entity/Q1410263|http://www.wikidata.org/entity/Q1173856|http://www.wikidata.org/entity/Q546106|http://www.wikidata.org/entity/Q485901|http://www.wikidata.org/entity/Q451394|http://www.wikidata.org/entity/Q383930|http://www.wikidata.org/entity/Q363400|http://www.wikidata.org/entity/Q211322|http://www.wikidata.org/entity/Q193458|http://www.wikidata.org/entity/Q186692|http://www.wikidata.org/entity/Q118393|http://www.wikidata.org/entity/Q107730|http://www.wikidata.org/entity/Q105153|http://www.wikidata.org/entity/Q86280|http://www.wikidata.org/entity/Q34586426"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2015 film by Ken Scott"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20677453"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3210335"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3210335"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3919521"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192881|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "61"}, "Description": {"type": "literal", "value": "2015 film by Andrei Kureichik"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q48954781"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q8073851"}, "Title": {"type": "literal", "value": "Zonad"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3181205"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by John Carney"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60854384"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4016123"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Volfango De Biasi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3304113"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22000365"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17466090"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17466090"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17466090"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Lisa Gornick"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7602355"}, "Title": {"type": "literal", "value": "Stars in Shorts"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q965498|http://www.wikidata.org/entity/Q314659|http://www.wikidata.org/entity/Q3157528"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5106314"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q455781|http://www.wikidata.org/entity/Q3569399|http://www.wikidata.org/entity/Q368037|http://www.wikidata.org/entity/Q311754|http://www.wikidata.org/entity/Q295803|http://www.wikidata.org/entity/Q261579|http://www.wikidata.org/entity/Q257442|http://www.wikidata.org/entity/Q235460|http://www.wikidata.org/entity/Q229271|http://www.wikidata.org/entity/Q210120|http://www.wikidata.org/entity/Q199929|http://www.wikidata.org/entity/Q162492|http://www.wikidata.org/entity/Q72749|http://www.wikidata.org/entity/Q55294|http://www.wikidata.org/entity/Q42581|http://www.wikidata.org/entity/Q28054|http://www.wikidata.org/entity/Q3806787|http://www.wikidata.org/entity/Q2589077|http://www.wikidata.org/entity/Q554315"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Neil LaBute"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10298666"}, "Title": {"type": "literal", "value": "How to Train Your Dragon 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1181049"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8007645|http://www.wikidata.org/entity/Q1181049|http://www.wikidata.org/entity/Q201641"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q188473"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2014 animated film directed by Dean DeBlois"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q500088"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19007208"}, "Title": {"type": "literal", "value": "Don Verdean"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2480656"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19629675|http://www.wikidata.org/entity/Q1319744|http://www.wikidata.org/entity/Q439315|http://www.wikidata.org/entity/Q336400|http://www.wikidata.org/entity/Q316446|http://www.wikidata.org/entity/Q239453|http://www.wikidata.org/entity/Q231203"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Jared Hess"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2996718"}, "Title": {"type": "literal", "value": "Copacabana"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3246668"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3246668"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3271707|http://www.wikidata.org/entity/Q3242498|http://www.wikidata.org/entity/Q3008989|http://www.wikidata.org/entity/Q2956253|http://www.wikidata.org/entity/Q2941870|http://www.wikidata.org/entity/Q2494759|http://www.wikidata.org/entity/Q2130507|http://www.wikidata.org/entity/Q1661394|http://www.wikidata.org/entity/Q1345210|http://www.wikidata.org/entity/Q553904|http://www.wikidata.org/entity/Q440609|http://www.wikidata.org/entity/Q291521|http://www.wikidata.org/entity/Q106365|http://www.wikidata.org/entity/Q18067290|http://www.wikidata.org/entity/Q3591351|http://www.wikidata.org/entity/Q3276523|http://www.wikidata.org/entity/Q3271925"}, "Published": {"type": "literal", "value": "2012|2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "2010 film by Marc Fitoussi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3400588"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3539613|http://www.wikidata.org/entity/Q552639"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3130760|http://www.wikidata.org/entity/Q552639|http://www.wikidata.org/entity/Q441676"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Gilles Lellouche, Tristan Aurouet"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6029587"}, "Title": {"type": "literal", "value": "Infestation"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6451383"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6451383"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5248247|http://www.wikidata.org/entity/Q530646|http://www.wikidata.org/entity/Q422310|http://www.wikidata.org/entity/Q254775|http://www.wikidata.org/entity/Q241873"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q224700"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2009 film by Kyle Rankin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16077874"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5094228"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5094228"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2568122|http://www.wikidata.org/entity/Q704027|http://www.wikidata.org/entity/Q701930|http://www.wikidata.org/entity/Q701039|http://www.wikidata.org/entity/Q590914|http://www.wikidata.org/entity/Q16781"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Cheuk Wan Chi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56266782"}, "Title": {"type": "literal", "value": "Nadie sabe para qui\u00e9n trabaja"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16302557"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Harold Trompetero"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20965644"}, "Title": {"type": "literal", "value": "Reuber"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15784859"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1189418"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21032030|http://www.wikidata.org/entity/Q1594698"}, "Published": {"type": "literal", "value": "2015|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 German film by Axel Ranisch"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20972616"}, "Title": {"type": "literal", "value": "Dessau Dancers"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22928204"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1520844"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17480788|http://www.wikidata.org/entity/Q2590455|http://www.wikidata.org/entity/Q1618848|http://www.wikidata.org/entity/Q1533711|http://www.wikidata.org/entity/Q824272|http://www.wikidata.org/entity/Q717013|http://www.wikidata.org/entity/Q203806|http://www.wikidata.org/entity/Q97010|http://www.wikidata.org/entity/Q92078|http://www.wikidata.org/entity/Q88891"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2014 film by Jan Martin Scharf"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3897240"}, "Title": {"type": "literal", "value": "Passato prossimo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3847526"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3847526"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q555241|http://www.wikidata.org/entity/Q117899|http://www.wikidata.org/entity/Q3765371|http://www.wikidata.org/entity/Q3763355|http://www.wikidata.org/entity/Q3680061|http://www.wikidata.org/entity/Q3610432|http://www.wikidata.org/entity/Q3148244|http://www.wikidata.org/entity/Q1042721|http://www.wikidata.org/entity/Q959138"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2003 film by Maria Sole Tognazzi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17264034"}, "Title": {"type": "literal", "value": "Knerten gifter seg"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11988524"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11961117"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11956951"}, "Published": {"type": "literal", "value": "2012|2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 Norwegian film directed by Martin Lund"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q63247471"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q551772"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Christophe Honor\u00e9"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28496667"}, "Title": {"type": "literal", "value": "Rock'n Roll"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q314403"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q314403"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16666759|http://www.wikidata.org/entity/Q3591418|http://www.wikidata.org/entity/Q3571886|http://www.wikidata.org/entity/Q3380199|http://www.wikidata.org/entity/Q2829519|http://www.wikidata.org/entity/Q2202755|http://www.wikidata.org/entity/Q724208|http://www.wikidata.org/entity/Q552639|http://www.wikidata.org/entity/Q314403|http://www.wikidata.org/entity/Q311804|http://www.wikidata.org/entity/Q212015|http://www.wikidata.org/entity/Q106349|http://www.wikidata.org/entity/Q8927"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "123"}, "Description": {"type": "literal", "value": "2017 film by Guillaume Canet"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3224718"}, "Title": {"type": "literal", "value": "Urmel voll in Fahrt"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13704719|http://www.wikidata.org/entity/Q8670824"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2008 film by Reinhard Klooss, Holger Tappe"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q741257"}, "Title": {"type": "literal", "value": "Meet the Spartans"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q302690|http://www.wikidata.org/entity/Q936338"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q936338|http://www.wikidata.org/entity/Q302690"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q185122|http://www.wikidata.org/entity/Q259798|http://www.wikidata.org/entity/Q10306924|http://www.wikidata.org/entity/Q4346488|http://www.wikidata.org/entity/Q2094185|http://www.wikidata.org/entity/Q1371134|http://www.wikidata.org/entity/Q739062|http://www.wikidata.org/entity/Q622864|http://www.wikidata.org/entity/Q562827|http://www.wikidata.org/entity/Q449947|http://www.wikidata.org/entity/Q433692|http://www.wikidata.org/entity/Q428796|http://www.wikidata.org/entity/Q313655|http://www.wikidata.org/entity/Q298995|http://www.wikidata.org/entity/Q298694"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q622548|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2008 film by Jason Friedberg, Aaron Seltzer"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q466459"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7751215"}, "Title": {"type": "literal", "value": "The Mexican Dream"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q972856"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Gustavo Hern\u00e1ndez P\u00e9rez"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q207460"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25350235"}, "Title": {"type": "literal", "value": "Status Update"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2424025"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q259047"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Scott Speer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16261153"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q486039"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1998 film directed by Jang Jin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4506847"}, "Title": {"type": "literal", "value": "\u0427\u0430\u0439\u043d\u044b\u0439 \u043f\u044c\u044f\u043d\u0438\u0446\u0430"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3986754"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3986754"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3986754"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2973181|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film directed by Basta"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22000649"}, "Title": {"type": "literal", "value": "Tick Tock Lullaby"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17466090"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17466090"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7294433"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Lisa Gornick"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17112726"}, "Title": {"type": "literal", "value": "The One I Love"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21872603"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3273787|http://www.wikidata.org/entity/Q381203|http://www.wikidata.org/entity/Q233466"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2014 film directed by Charlie McDowell"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19622410"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3181205"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3181205"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1996"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "1996 film by John Carney"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3795960"}, "Title": {"type": "literal", "value": "Il supplente"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3615794"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3615794"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4007739|http://www.wikidata.org/entity/Q3876185|http://www.wikidata.org/entity/Q3833350|http://www.wikidata.org/entity/Q3615794"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "16"}, "Description": {"type": "literal", "value": "2006 film by Andrea Jublin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61002330"}, "Title": {"type": "literal", "value": "B\u00da\u00c9K"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1011297"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23821621|http://www.wikidata.org/entity/Q1011297"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "2018 film directed by Krisztina Goda"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3695143"}, "Title": {"type": "literal", "value": "Cosimo e Nicole"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3749525"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3749525"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3616747|http://www.wikidata.org/entity/Q3615555|http://www.wikidata.org/entity/Q3362666|http://www.wikidata.org/entity/Q2975505|http://www.wikidata.org/entity/Q133787"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2012 film by Francesco Amato"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2032325"}, "Title": {"type": "literal", "value": "Year of the Dog"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1378351"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1378351"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3012305|http://www.wikidata.org/entity/Q2050378|http://www.wikidata.org/entity/Q514527|http://www.wikidata.org/entity/Q315099|http://www.wikidata.org/entity/Q241335|http://www.wikidata.org/entity/Q239145|http://www.wikidata.org/entity/Q234544|http://www.wikidata.org/entity/Q223110|http://www.wikidata.org/entity/Q220901"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2007 film by Mike White"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28252"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q46918"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2347167"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2347167"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q330315|http://www.wikidata.org/entity/Q252290|http://www.wikidata.org/entity/Q184885"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2008 computer animated film by Jugal Hansraj"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1696916"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q886187"}, "Title": {"type": "literal", "value": "Fun Size"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q728217"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q58816195"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16239393|http://www.wikidata.org/entity/Q3990695|http://www.wikidata.org/entity/Q2885767|http://www.wikidata.org/entity/Q2844979|http://www.wikidata.org/entity/Q2708237|http://www.wikidata.org/entity/Q967833|http://www.wikidata.org/entity/Q728217|http://www.wikidata.org/entity/Q535451|http://www.wikidata.org/entity/Q452618|http://www.wikidata.org/entity/Q327217|http://www.wikidata.org/entity/Q295034|http://www.wikidata.org/entity/Q262502|http://www.wikidata.org/entity/Q200194|http://www.wikidata.org/entity/Q171687|http://www.wikidata.org/entity/Q120406|http://www.wikidata.org/entity/Q117619"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2012 film by Josh Schwartz"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1785329|http://www.wikidata.org/entity/Q5431462"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29344739"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7376583"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7376583"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9543"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Ruchi Narain"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q730639"}, "Title": {"type": "literal", "value": "Sex and Breakfast"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6851327"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6851327"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6759968|http://www.wikidata.org/entity/Q712936|http://www.wikidata.org/entity/Q463734|http://www.wikidata.org/entity/Q387830|http://www.wikidata.org/entity/Q374038|http://www.wikidata.org/entity/Q290091|http://www.wikidata.org/entity/Q241867|http://www.wikidata.org/entity/Q241160|http://www.wikidata.org/entity/Q210200|http://www.wikidata.org/entity/Q103578"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "81"}, "Description": {"type": "literal", "value": "2007 film by Miles Brandman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12054232"}, "Title": {"type": "literal", "value": "Sign\u00e1l"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12059363"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12035281"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15870612|http://www.wikidata.org/entity/Q12041042|http://www.wikidata.org/entity/Q12025905|http://www.wikidata.org/entity/Q12021140|http://www.wikidata.org/entity/Q11985153|http://www.wikidata.org/entity/Q11925857|http://www.wikidata.org/entity/Q676173|http://www.wikidata.org/entity/Q530954|http://www.wikidata.org/entity/Q463683|http://www.wikidata.org/entity/Q352030"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Tom\u00e1\u0161 \u0158eho\u0159ek"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30964191"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30959974"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30959974"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30961843|http://www.wikidata.org/entity/Q30959278|http://www.wikidata.org/entity/Q4222310|http://www.wikidata.org/entity/Q4089456|http://www.wikidata.org/entity/Q540915"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "2018 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28495133"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3120713"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Guizmo"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3566715"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16185798"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q46010092"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by M\u00e1rk Bodzs\u00e1r"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3500469"}, "Title": {"type": "literal", "value": "Bachelor Party 2: The Last Temptation"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3161385"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3337574|http://www.wikidata.org/entity/Q263607"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5606142|http://www.wikidata.org/entity/Q3237664|http://www.wikidata.org/entity/Q1275214|http://www.wikidata.org/entity/Q901137|http://www.wikidata.org/entity/Q373594|http://www.wikidata.org/entity/Q267914|http://www.wikidata.org/entity/Q237897|http://www.wikidata.org/entity/Q231739"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by James Ryan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434841"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26054120"}, "Title": {"type": "literal", "value": "Hotel Rock'n'Roll"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1603845|http://www.wikidata.org/entity/Q1145137"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1145137|http://www.wikidata.org/entity/Q90300"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2091760|http://www.wikidata.org/entity/Q1698671|http://www.wikidata.org/entity/Q1618198|http://www.wikidata.org/entity/Q1603845|http://www.wikidata.org/entity/Q1504267|http://www.wikidata.org/entity/Q1496622|http://www.wikidata.org/entity/Q1145137|http://www.wikidata.org/entity/Q544690|http://www.wikidata.org/entity/Q69092"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2016 film directed by Michael Ostrowski and Helmut K\u00f6pping"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1243548"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4997882"}, "Title": {"type": "literal", "value": "Bunny and the Bull"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7151786"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q310012|http://www.wikidata.org/entity/Q291443|http://www.wikidata.org/entity/Q7518724|http://www.wikidata.org/entity/Q3048553|http://www.wikidata.org/entity/Q1388430|http://www.wikidata.org/entity/Q1333118|http://www.wikidata.org/entity/Q936756|http://www.wikidata.org/entity/Q456850"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2009 film by Paul King"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q922857|http://www.wikidata.org/entity/Q3568109|http://www.wikidata.org/entity/Q5448886|http://www.wikidata.org/entity/Q7309238|http://www.wikidata.org/entity/Q7969872"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21843265"}, "Title": {"type": "literal", "value": "\u0414\u0435\u043d\u044c \u0432\u044b\u0431\u043e\u0440\u043e\u0432 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4078806"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4494681|http://www.wikidata.org/entity/Q4077949"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4494681|http://www.wikidata.org/entity/Q4478881|http://www.wikidata.org/entity/Q4254527|http://www.wikidata.org/entity/Q4157473|http://www.wikidata.org/entity/Q4112450|http://www.wikidata.org/entity/Q4077949|http://www.wikidata.org/entity/Q2665274|http://www.wikidata.org/entity/Q2373179|http://www.wikidata.org/entity/Q2029106"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2016 film by Aleksandr Barshak"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17479288"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16832192"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2012 film by Laura Chiossone"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13512523"}, "Title": {"type": "literal", "value": "Computer Chess"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q503951"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q503951"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5549473|http://www.wikidata.org/entity/Q251809"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Andrew Bujalski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2073855"}, "Title": {"type": "literal", "value": "Another Happy Day"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7407789"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7407789"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17612516|http://www.wikidata.org/entity/Q508049|http://www.wikidata.org/entity/Q457991|http://www.wikidata.org/entity/Q443343|http://www.wikidata.org/entity/Q311615|http://www.wikidata.org/entity/Q298818|http://www.wikidata.org/entity/Q242805|http://www.wikidata.org/entity/Q236822|http://www.wikidata.org/entity/Q229234|http://www.wikidata.org/entity/Q211144|http://www.wikidata.org/entity/Q43044"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "119"}, "Description": {"type": "literal", "value": "2011 film by Sam Levinson"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16252933"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1968484"}, "Title": {"type": "literal", "value": "\u0425\u043e\u0442\u0442\u0430\u0431\u044b\u0447"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4461540"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4461540"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4537735|http://www.wikidata.org/entity/Q4459812|http://www.wikidata.org/entity/Q4134891"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2973181|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2006 film by Pyotr Tochilin"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4403233|http://www.wikidata.org/entity/Q6813261"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26802446"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16916439|http://www.wikidata.org/entity/Q2460716"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16916439|http://www.wikidata.org/entity/Q2460716"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19677216"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Jessica Woodworth, Peter Brosens"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1197869"}, "Title": {"type": "literal", "value": "Footloose"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q723252"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q723252|http://www.wikidata.org/entity/Q5246414"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q269894|http://www.wikidata.org/entity/Q267330|http://www.wikidata.org/entity/Q232646|http://www.wikidata.org/entity/Q208558|http://www.wikidata.org/entity/Q200768|http://www.wikidata.org/entity/Q17518837|http://www.wikidata.org/entity/Q6730221|http://www.wikidata.org/entity/Q3292628|http://www.wikidata.org/entity/Q3082658|http://www.wikidata.org/entity/Q2073496|http://www.wikidata.org/entity/Q917638|http://www.wikidata.org/entity/Q471081"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q842256"}, "Duration": {"type": "literal", "value": "113"}, "Description": {"type": "literal", "value": "2011 film by Craig Brewer"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1111024|http://www.wikidata.org/entity/Q512858"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11262985"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11380486"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Takayuki It\u014d"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48757706"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2857539"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3092547"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Antony Cordier"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2963165"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q970408"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3093531"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3479397|http://www.wikidata.org/entity/Q3295476|http://www.wikidata.org/entity/Q3063805|http://www.wikidata.org/entity/Q2825427|http://www.wikidata.org/entity/Q970408|http://www.wikidata.org/entity/Q778451|http://www.wikidata.org/entity/Q556578|http://www.wikidata.org/entity/Q543814|http://www.wikidata.org/entity/Q296287|http://www.wikidata.org/entity/Q270146"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Samuel Benchetrit"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30014813"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16223555"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6750439"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 Malayalam film directed by Sajid Yahya"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5991798"}, "Title": {"type": "literal", "value": "Mansacue"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q966522"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Marco Enr\u00edquez-Ominami"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3223319"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3499131"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3013871"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3554229|http://www.wikidata.org/entity/Q3501524|http://www.wikidata.org/entity/Q3499131|http://www.wikidata.org/entity/Q3219022|http://www.wikidata.org/entity/Q3123803|http://www.wikidata.org/entity/Q2980691|http://www.wikidata.org/entity/Q2410284|http://www.wikidata.org/entity/Q1836495|http://www.wikidata.org/entity/Q1799529|http://www.wikidata.org/entity/Q1341507|http://www.wikidata.org/entity/Q951825|http://www.wikidata.org/entity/Q715111|http://www.wikidata.org/entity/Q576085|http://www.wikidata.org/entity/Q354873|http://www.wikidata.org/entity/Q28487"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Steve Suissa"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17089799"}, "Title": {"type": "literal", "value": "White Reindeer"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13305138"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13305138"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Zach Clark"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q39739419"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q546714"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q89703|http://www.wikidata.org/entity/Q87594|http://www.wikidata.org/entity/Q71662|http://www.wikidata.org/entity/Q62346|http://www.wikidata.org/entity/Q62868209|http://www.wikidata.org/entity/Q50384541|http://www.wikidata.org/entity/Q21880688|http://www.wikidata.org/entity/Q20748299|http://www.wikidata.org/entity/Q17521534|http://www.wikidata.org/entity/Q1682918"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Anika Decker"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24937068"}, "Title": {"type": "literal", "value": "Willy 1er"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24935767"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24935767"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Ludovic Boukherma"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22075050"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22075549"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22075549"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "15"}, "Description": {"type": "literal", "value": "2015 film by Basil Khalil"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q58943182"}, "Title": {"type": "literal", "value": "\u0639\u0634\u0642 \u0628\u0647 \u0633\u0628\u06a9 \u0641\u0627\u0631\u0633\u06cc (\u0633\u0644\u0627\u0645 \u0627\u06cc \u0627\u06cc\u0631\u0627\u0646)"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q120045"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1445385"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q48920420|http://www.wikidata.org/entity/Q7161003|http://www.wikidata.org/entity/Q2391445|http://www.wikidata.org/entity/Q1696908|http://www.wikidata.org/entity/Q120291|http://www.wikidata.org/entity/Q90847"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 television film directed by Florian Baxmeyer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1607185"}, "Title": {"type": "literal", "value": "Swinging with the Finkels"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6274003"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6274003"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5209690|http://www.wikidata.org/entity/Q2131672|http://www.wikidata.org/entity/Q729828|http://www.wikidata.org/entity/Q517576|http://www.wikidata.org/entity/Q453740|http://www.wikidata.org/entity/Q316857|http://www.wikidata.org/entity/Q309486|http://www.wikidata.org/entity/Q233575|http://www.wikidata.org/entity/Q187832"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "81"}, "Description": {"type": "literal", "value": "2011 film by Jonathan Newman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3634702"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4805922"}, "Title": {"type": "literal", "value": "\u0c05\u0c37\u0c4d\u0c1f\u0c3e-\u0c1a\u0c2e\u0c4d\u0c2e\u0c3e"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6893545"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6893545"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18687931|http://www.wikidata.org/entity/Q7683304|http://www.wikidata.org/entity/Q7586442|http://www.wikidata.org/entity/Q6963590|http://www.wikidata.org/entity/Q4901277"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q40831"}, "Duration": {"type": "literal", "value": "186"}, "Description": {"type": "literal", "value": "2008 Telugu film directed by Mohan Krishna Indraganti"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23780457"}, "Title": {"type": "literal", "value": "Kingsman: The Golden Circle"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2593"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q32661|http://www.wikidata.org/entity/Q2593"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21592498|http://www.wikidata.org/entity/Q18379490|http://www.wikidata.org/entity/Q16239385|http://www.wikidata.org/entity/Q14752155|http://www.wikidata.org/entity/Q1334874|http://www.wikidata.org/entity/Q1033016|http://www.wikidata.org/entity/Q879616|http://www.wikidata.org/entity/Q725519|http://www.wikidata.org/entity/Q342788|http://www.wikidata.org/entity/Q312712|http://www.wikidata.org/entity/Q270559|http://www.wikidata.org/entity/Q229535|http://www.wikidata.org/entity/Q212064|http://www.wikidata.org/entity/Q203545|http://www.wikidata.org/entity/Q174843|http://www.wikidata.org/entity/Q172678|http://www.wikidata.org/entity/Q162492|http://www.wikidata.org/entity/Q80405"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2678111|http://www.wikidata.org/entity/Q2297927|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "141"}, "Description": {"type": "literal", "value": "2017 film by Matthew Vaughn"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434841"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6963574"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7409513"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7409513"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5318280|http://www.wikidata.org/entity/Q48619"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Samir Karnik"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23308961"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4171916"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4077949"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Dmitriy Dyachenko"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18722273"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3849424"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30610263"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28968258|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 animated film directed by Thurop Van Orman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q186941"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q44092005"}, "Title": {"type": "literal", "value": "Anchor and Hope|Tierra firme"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18542926"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18542926"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23728778|http://www.wikidata.org/entity/Q17364500|http://www.wikidata.org/entity/Q7839484|http://www.wikidata.org/entity/Q7183135|http://www.wikidata.org/entity/Q459348|http://www.wikidata.org/entity/Q232163|http://www.wikidata.org/entity/Q230636"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "2017 film by Carlos Marques-Marcet"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q54020369"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60485079"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6911832"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1749383"}, "Title": {"type": "literal", "value": "Who's Your Daddy?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q525725"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7152054|http://www.wikidata.org/entity/Q5240620|http://www.wikidata.org/entity/Q5085592|http://www.wikidata.org/entity/Q4980447|http://www.wikidata.org/entity/Q2627090|http://www.wikidata.org/entity/Q2178032|http://www.wikidata.org/entity/Q2158643|http://www.wikidata.org/entity/Q1328715|http://www.wikidata.org/entity/Q716343|http://www.wikidata.org/entity/Q552806|http://www.wikidata.org/entity/Q495487|http://www.wikidata.org/entity/Q462937|http://www.wikidata.org/entity/Q451108|http://www.wikidata.org/entity/Q449822|http://www.wikidata.org/entity/Q367469|http://www.wikidata.org/entity/Q272176|http://www.wikidata.org/entity/Q264946|http://www.wikidata.org/entity/Q261953|http://www.wikidata.org/entity/Q229920|http://www.wikidata.org/entity/Q176945"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2004 film by Andy Fickman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61642203"}, "Title": {"type": "literal", "value": "Bangla"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61641256"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61641256"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61641256|http://www.wikidata.org/entity/Q50772725|http://www.wikidata.org/entity/Q3904256|http://www.wikidata.org/entity/Q3857845"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2019 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16675434"}, "Title": {"type": "literal", "value": "Samba"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2778106|http://www.wikidata.org/entity/Q74428"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3021818|http://www.wikidata.org/entity/Q2778106|http://www.wikidata.org/entity/Q74428|http://www.wikidata.org/entity/Q27513138"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2979699|http://www.wikidata.org/entity/Q2965785|http://www.wikidata.org/entity/Q2941870|http://www.wikidata.org/entity/Q2824177|http://www.wikidata.org/entity/Q2778106|http://www.wikidata.org/entity/Q981690|http://www.wikidata.org/entity/Q357387|http://www.wikidata.org/entity/Q276005|http://www.wikidata.org/entity/Q115201|http://www.wikidata.org/entity/Q3157743|http://www.wikidata.org/entity/Q3156516|http://www.wikidata.org/entity/Q3144876|http://www.wikidata.org/entity/Q74428|http://www.wikidata.org/entity/Q18326681|http://www.wikidata.org/entity/Q14435846|http://www.wikidata.org/entity/Q3340076|http://www.wikidata.org/entity/Q3302714"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "118"}, "Description": {"type": "literal", "value": "2014 film directed by Olivier Nakache and \u00c9ric Toledano"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q384923"}, "Title": {"type": "literal", "value": "\u0b9a\u0bb0\u0bcb\u0b9c\u0bbe"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3524112"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3524112"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7499231"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Venkat Prabhu"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21775905"}, "Title": {"type": "literal", "value": "\u4e07\u4e07\u6ca1\u60f3\u5230"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24287376"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20062520|http://www.wikidata.org/entity/Q18109600|http://www.wikidata.org/entity/Q15900137|http://www.wikidata.org/entity/Q1061218|http://www.wikidata.org/entity/Q706933"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2015 Chinese film directed by Jiaoshou"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2399153"}, "Title": {"type": "literal", "value": "\u0401\u043b\u043a\u0438"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q344854|http://www.wikidata.org/entity/Q4122763|http://www.wikidata.org/entity/Q20503316|http://www.wikidata.org/entity/Q4222061"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q344854"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3479732|http://www.wikidata.org/entity/Q3291006|http://www.wikidata.org/entity/Q2865340|http://www.wikidata.org/entity/Q2626247|http://www.wikidata.org/entity/Q2329850|http://www.wikidata.org/entity/Q777625|http://www.wikidata.org/entity/Q631058|http://www.wikidata.org/entity/Q558666|http://www.wikidata.org/entity/Q442830|http://www.wikidata.org/entity/Q438799|http://www.wikidata.org/entity/Q23530"}, "Published": {"type": "literal", "value": "2011|2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2010 film by Timur Bekmambetov"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2892410"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q188439"}, "Title": {"type": "literal", "value": "Tangled"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028506|http://www.wikidata.org/entity/Q1018606"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5213495"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011|2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28968258|http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2010 computer-animated musical fantasy-comedy film by Disney"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1047410"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16938163"}, "Title": {"type": "literal", "value": "Carmina y am\u00e9n"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3621855"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3621855"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6004136|http://www.wikidata.org/entity/Q5752752|http://www.wikidata.org/entity/Q3572483"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2014 film by Paco Le\u00f3n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22672807"}, "Title": {"type": "literal", "value": "Adopte un veuf"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3084424"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3189060|http://www.wikidata.org/entity/Q2929989|http://www.wikidata.org/entity/Q2863100|http://www.wikidata.org/entity/Q518457"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Fran\u00e7ois Desagnat"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5733720"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5155259"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Ana Torres-\u00c1lvarez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22000124"}, "Title": {"type": "literal", "value": "Eu odeio o Big Br\u00f3der"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10278413"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "127"}, "Description": {"type": "literal", "value": "2013 film by Evandro Berlesi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15279283"}, "Title": {"type": "literal", "value": "\u540d\u63a2\u5075\u30b3\u30ca\u30f3 \u7570\u6b21\u5143\u306e\u72d9\u6483\u624b"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9372608"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q1200678|http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by K\u014dbun Shizuno"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054807"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25315589"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25315761"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12470600"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film directed by Anggy Umbara"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19751757"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4386089"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4330970"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4234108"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3015088"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Karen Oganesyan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4504080"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11613749"}, "Title": {"type": "literal", "value": "\u821f\u3092\u7de8\u3080"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8062226"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2279206"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11678345|http://www.wikidata.org/entity/Q11539551|http://www.wikidata.org/entity/Q11500522|http://www.wikidata.org/entity/Q11449896|http://www.wikidata.org/entity/Q11410217|http://www.wikidata.org/entity/Q11378875|http://www.wikidata.org/entity/Q6875103|http://www.wikidata.org/entity/Q5359721|http://www.wikidata.org/entity/Q3546783|http://www.wikidata.org/entity/Q3544184|http://www.wikidata.org/entity/Q3286682|http://www.wikidata.org/entity/Q1347933|http://www.wikidata.org/entity/Q1039639|http://www.wikidata.org/entity/Q684967|http://www.wikidata.org/entity/Q326335|http://www.wikidata.org/entity/Q288114|http://www.wikidata.org/entity/Q253873"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Yuya Ishii"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18573369"}, "Title": {"type": "literal", "value": "Ein Mord mit Aussicht"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1682199"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q47468852"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56055270|http://www.wikidata.org/entity/Q54605668|http://www.wikidata.org/entity/Q54324477|http://www.wikidata.org/entity/Q28055835|http://www.wikidata.org/entity/Q21996473|http://www.wikidata.org/entity/Q18679286|http://www.wikidata.org/entity/Q2057667|http://www.wikidata.org/entity/Q1927678|http://www.wikidata.org/entity/Q1917760|http://www.wikidata.org/entity/Q1910132|http://www.wikidata.org/entity/Q1696765|http://www.wikidata.org/entity/Q1478392|http://www.wikidata.org/entity/Q1173172|http://www.wikidata.org/entity/Q1043589|http://www.wikidata.org/entity/Q879361|http://www.wikidata.org/entity/Q546822|http://www.wikidata.org/entity/Q497927|http://www.wikidata.org/entity/Q96068"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2321734|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2015 German television film directed by Jan Schomburg"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q59964749"}, "Title": {"type": "literal", "value": "Swingers"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q468517"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12327175|http://www.wikidata.org/entity/Q11884411|http://www.wikidata.org/entity/Q468517"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11898057|http://www.wikidata.org/entity/Q11882539|http://www.wikidata.org/entity/Q11880982|http://www.wikidata.org/entity/Q11871841|http://www.wikidata.org/entity/Q5375691|http://www.wikidata.org/entity/Q3313763|http://www.wikidata.org/entity/Q3299182|http://www.wikidata.org/entity/Q3183562|http://www.wikidata.org/entity/Q26720311|http://www.wikidata.org/entity/Q16990337"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Pamela Tola"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11854643"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55593651"}, "Title": {"type": "literal", "value": "\u041a\u043e\u0440\u043e\u0442\u043a\u0438\u0435 \u0432\u043e\u043b\u043d\u044b"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q42296268"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q42296268"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27927321|http://www.wikidata.org/entity/Q4539548|http://www.wikidata.org/entity/Q1688694"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q224133"}, "Title": {"type": "literal", "value": "30 Minutes or Less"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q521691"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4962181|http://www.wikidata.org/entity/Q984077|http://www.wikidata.org/entity/Q369482|http://www.wikidata.org/entity/Q359488|http://www.wikidata.org/entity/Q350714|http://www.wikidata.org/entity/Q15832826|http://www.wikidata.org/entity/Q336400|http://www.wikidata.org/entity/Q247088|http://www.wikidata.org/entity/Q219512|http://www.wikidata.org/entity/Q113431"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2678111|http://www.wikidata.org/entity/Q1200678|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2011 film by Ruben Fleischer"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2856187|http://www.wikidata.org/entity/Q7304367|http://www.wikidata.org/entity/Q186941"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5004118"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q722137|http://www.wikidata.org/entity/Q3162772"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3162772|http://www.wikidata.org/entity/Q28976038"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12035874|http://www.wikidata.org/entity/Q12023655|http://www.wikidata.org/entity/Q12023459|http://www.wikidata.org/entity/Q12022576|http://www.wikidata.org/entity/Q12008907|http://www.wikidata.org/entity/Q10854033|http://www.wikidata.org/entity/Q10854022|http://www.wikidata.org/entity/Q7820613|http://www.wikidata.org/entity/Q6376034|http://www.wikidata.org/entity/Q31933536|http://www.wikidata.org/entity/Q15730021|http://www.wikidata.org/entity/Q12054281|http://www.wikidata.org/entity/Q12050932|http://www.wikidata.org/entity/Q12050166|http://www.wikidata.org/entity/Q12044114|http://www.wikidata.org/entity/Q12042457|http://www.wikidata.org/entity/Q12037934|http://www.wikidata.org/entity/Q12036810|http://www.wikidata.org/entity/Q5126954|http://www.wikidata.org/entity/Q3090526|http://www.wikidata.org/entity/Q2356044|http://www.wikidata.org/entity/Q2354248|http://www.wikidata.org/entity/Q2173011|http://www.wikidata.org/entity/Q2064639|http://www.wikidata.org/entity/Q1930399|http://www.wikidata.org/entity/Q444097|http://www.wikidata.org/entity/Q430017"}, "Published": {"type": "literal", "value": "1995"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1995 film by Jaroslav Soukup"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26720603"}, "Title": {"type": "literal", "value": "Ingrid Goes West"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27685115"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27685115|http://www.wikidata.org/entity/Q28595298"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15542608|http://www.wikidata.org/entity/Q3395911|http://www.wikidata.org/entity/Q794599|http://www.wikidata.org/entity/Q234644|http://www.wikidata.org/entity/Q210547|http://www.wikidata.org/entity/Q19667862"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2017 American comedy-drama film directed by Matt Spicer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25136772"}, "Title": {"type": "literal", "value": "Dreamland"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2001430"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Robert Coppola Schwartzman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19059800"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2452247"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2839854"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Jon Karthaus"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16530861"}, "Title": {"type": "literal", "value": "Babysitting"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3340086|http://www.wikidata.org/entity/Q3380121"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3380121|http://www.wikidata.org/entity/Q17175096"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17175096|http://www.wikidata.org/entity/Q16832036|http://www.wikidata.org/entity/Q15973762|http://www.wikidata.org/entity/Q3559579|http://www.wikidata.org/entity/Q3380121|http://www.wikidata.org/entity/Q3379789|http://www.wikidata.org/entity/Q3379440|http://www.wikidata.org/entity/Q3118479|http://www.wikidata.org/entity/Q28105126|http://www.wikidata.org/entity/Q3018751|http://www.wikidata.org/entity/Q3018364|http://www.wikidata.org/entity/Q2960978|http://www.wikidata.org/entity/Q2836561|http://www.wikidata.org/entity/Q2833411|http://www.wikidata.org/entity/Q728158|http://www.wikidata.org/entity/Q443516"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3272147|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2014 French film by Nicolas Benamou, Philippe Lacheau"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22100100"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q703779"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22774261|http://www.wikidata.org/entity/Q9370539|http://www.wikidata.org/entity/Q7967359|http://www.wikidata.org/entity/Q7820932"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1200678|http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "136"}, "Description": {"type": "literal", "value": "2015 film by Chen Sicheng"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24206373|http://www.wikidata.org/entity/Q24895635|http://www.wikidata.org/entity/Q27694781"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q63248374"}, "Title": {"type": "literal", "value": "Bad Trip"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q63546532"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2394603"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21067271|http://www.wikidata.org/entity/Q5386029"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 comedy film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q891732"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q113149"}, "Title": {"type": "literal", "value": "Take This Waltz"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q234212"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q234212"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4661797|http://www.wikidata.org/entity/Q3181396|http://www.wikidata.org/entity/Q2820018|http://www.wikidata.org/entity/Q1315493|http://www.wikidata.org/entity/Q655762|http://www.wikidata.org/entity/Q229013|http://www.wikidata.org/entity/Q220308|http://www.wikidata.org/entity/Q156796"}, "Published": {"type": "literal", "value": "2013|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "2011 film by Sarah Polley"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q186941"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23899211"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3509959"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3509959"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16670062"}, "Published": {"type": "literal", "value": "2017|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by S\u00e9bastien Betbeder"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3991078"}, "Title": {"type": "literal", "value": "Ti stimo fratello"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3768343"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3768343"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3978317|http://www.wikidata.org/entity/Q3851381|http://www.wikidata.org/entity/Q3768343|http://www.wikidata.org/entity/Q3707258|http://www.wikidata.org/entity/Q3660210|http://www.wikidata.org/entity/Q3637342|http://www.wikidata.org/entity/Q3608096|http://www.wikidata.org/entity/Q3362666|http://www.wikidata.org/entity/Q3301697|http://www.wikidata.org/entity/Q34922"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2012 film by Giovanni Vernia"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3683611"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q641492"}, "Title": {"type": "literal", "value": "Herbie: Fully Loaded"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q459542"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1074029|http://www.wikidata.org/entity/Q622651|http://www.wikidata.org/entity/Q548479|http://www.wikidata.org/entity/Q1319539"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q548479|http://www.wikidata.org/entity/Q439070|http://www.wikidata.org/entity/Q380127|http://www.wikidata.org/entity/Q360674|http://www.wikidata.org/entity/Q313565|http://www.wikidata.org/entity/Q298672|http://www.wikidata.org/entity/Q275246|http://www.wikidata.org/entity/Q272917|http://www.wikidata.org/entity/Q217238|http://www.wikidata.org/entity/Q193070|http://www.wikidata.org/entity/Q138005|http://www.wikidata.org/entity/Q44903|http://www.wikidata.org/entity/Q566037|http://www.wikidata.org/entity/Q18638563|http://www.wikidata.org/entity/Q2830641|http://www.wikidata.org/entity/Q2469967|http://www.wikidata.org/entity/Q1387836|http://www.wikidata.org/entity/Q1319539|http://www.wikidata.org/entity/Q1189470|http://www.wikidata.org/entity/Q1095544|http://www.wikidata.org/entity/Q946087|http://www.wikidata.org/entity/Q818078"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2005 American comedy film directed by Angela Robinson"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17343522|http://www.wikidata.org/entity/Q191224"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17400618"}, "Title": {"type": "literal", "value": "Kvinnen i mitt liv"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11957305"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7790021"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Alexander Eik"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q990490"}, "Title": {"type": "literal", "value": "Neun Szenen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1223694"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1223694|http://www.wikidata.org/entity/Q96937"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2006 film by Dietrich Br\u00fcggemann"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q461684"}, "Title": {"type": "literal", "value": "M\u00e4dchen, M\u00e4dchen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60766"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1884029|http://www.wikidata.org/entity/Q1082448"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16440266|http://www.wikidata.org/entity/Q1759048|http://www.wikidata.org/entity/Q1708406|http://www.wikidata.org/entity/Q1676742|http://www.wikidata.org/entity/Q1330248|http://www.wikidata.org/entity/Q1018220|http://www.wikidata.org/entity/Q556857|http://www.wikidata.org/entity/Q95368|http://www.wikidata.org/entity/Q89484|http://www.wikidata.org/entity/Q78766|http://www.wikidata.org/entity/Q76172|http://www.wikidata.org/entity/Q66027|http://www.wikidata.org/entity/Q64823|http://www.wikidata.org/entity/Q63003|http://www.wikidata.org/entity/Q61099|http://www.wikidata.org/entity/Q60766"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2001 film by Dennis Gansel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17479299"}, "Title": {"type": "literal", "value": "Tutta colpa della SIP"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1313474"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1313474"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1988"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "1988 film directed by Gianfranco Bullo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12127154"}, "Title": {"type": "literal", "value": "Ride Along"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2005037"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3116203"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q971145|http://www.wikidata.org/entity/Q748404|http://www.wikidata.org/entity/Q618352|http://www.wikidata.org/entity/Q447960|http://www.wikidata.org/entity/Q295233|http://www.wikidata.org/entity/Q193048|http://www.wikidata.org/entity/Q173637|http://www.wikidata.org/entity/Q3076630|http://www.wikidata.org/entity/Q1139526"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q4984974|http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q188473"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2014 action comedy film by Tim Story"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7284877"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16144100"}, "Title": {"type": "literal", "value": "5x Favela - Agora por N\u00f3s Mesmos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16939601"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2010 film by Cacau Amaral"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7078976"}, "Title": {"type": "literal", "value": "Off the Ledge"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4974466"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6968881|http://www.wikidata.org/entity/Q2518113"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Brooke Mikey Anderson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42561120"}, "Title": {"type": "literal", "value": "Smetto quando voglio - Ad honorem"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16611774"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16611774"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2017 film by Sydney Sibilia"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3739211"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q32067415"}, "Title": {"type": "literal", "value": "Action Point"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7803777"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16844704"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q295034"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Tim Kirkby"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16838897"}, "Title": {"type": "literal", "value": "Get Santa"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q966124"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q966124"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q185079"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2014 film by Christopher Smith"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3476213"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28497242"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3340065"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Nicolas Bary"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19060256"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18176063"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16175177"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q490918"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Jeong Gi-hun"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55106047"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12611857"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6406891"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7931370"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7931370"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7296358|http://www.wikidata.org/entity/Q4806897|http://www.wikidata.org/entity/Q4699975|http://www.wikidata.org/entity/Q7585694|http://www.wikidata.org/entity/Q7410100"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 Malayalam film directed by Vinay Govind"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17479273"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20056585"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20056585"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2014 film by Gabriele Pignotta"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2167073"}, "Title": {"type": "literal", "value": "Rosencrantz and Guildenstern Are Undead"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q337578"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q337578"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1338401|http://www.wikidata.org/entity/Q720777|http://www.wikidata.org/entity/Q230817"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2137852|http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2009 film by Jordan Galland"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4655076"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11426076"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12606859|http://www.wikidata.org/entity/Q1064542"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q599558|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2012 film by Hideo J\u014dj\u014d"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1621289"}, "Title": {"type": "literal", "value": "Sie haben Knut"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2336829"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q109834"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q68448|http://www.wikidata.org/entity/Q2097122|http://www.wikidata.org/entity/Q125372|http://www.wikidata.org/entity/Q86919|http://www.wikidata.org/entity/Q77758"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "2003 film by Stefan Krohmer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1008801"}, "Title": {"type": "literal", "value": "\u0c05\u0c26\u0c41\u0c30\u0c4d\u0c38\u0c4d"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7906291"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7906291|http://www.wikidata.org/entity/Q6428713"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7683304|http://www.wikidata.org/entity/Q7492340|http://www.wikidata.org/entity/Q7429093|http://www.wikidata.org/entity/Q15298330|http://www.wikidata.org/entity/Q7994331|http://www.wikidata.org/entity/Q7920464|http://www.wikidata.org/entity/Q3089275|http://www.wikidata.org/entity/Q7282980|http://www.wikidata.org/entity/Q6428971|http://www.wikidata.org/entity/Q3765029|http://www.wikidata.org/entity/Q3595538|http://www.wikidata.org/entity/Q3595438|http://www.wikidata.org/entity/Q3521977|http://www.wikidata.org/entity/Q3498996|http://www.wikidata.org/entity/Q2876219|http://www.wikidata.org/entity/Q2748319"}, "Published": {"type": "literal", "value": "2010|2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q1150666|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 Telugu film directed by V. V. Vinayak"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4768004"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q963323"}, "Title": {"type": "literal", "value": "Norberto apenas tarde"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2272014"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2272014"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17566626|http://www.wikidata.org/entity/Q5850378"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2010 film by Daniel Hendler"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q44484831"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14252646"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Nawell Madani"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4905679"}, "Title": {"type": "literal", "value": "Big Fellas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7184290"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5611881|http://www.wikidata.org/entity/Q5562832"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Philip Roberts"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3010450"}, "Title": {"type": "literal", "value": "Hit and Run"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56285770|http://www.wikidata.org/entity/Q462354"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q462354"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q462354|http://www.wikidata.org/entity/Q353755|http://www.wikidata.org/entity/Q311613|http://www.wikidata.org/entity/Q309640|http://www.wikidata.org/entity/Q284636|http://www.wikidata.org/entity/Q267422|http://www.wikidata.org/entity/Q231811|http://www.wikidata.org/entity/Q223033|http://www.wikidata.org/entity/Q205707|http://www.wikidata.org/entity/Q178882|http://www.wikidata.org/entity/Q164328|http://www.wikidata.org/entity/Q7611767|http://www.wikidata.org/entity/Q720754"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 American action comedy film directed by David Palmer and Dax Shepard"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20724384"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55598540"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55598540"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q289032"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Marie Belhomme"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4299853"}, "Title": {"type": "literal", "value": "Foster"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6274003"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6274003"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5209690|http://www.wikidata.org/entity/Q2290416|http://www.wikidata.org/entity/Q380856|http://www.wikidata.org/entity/Q295974|http://www.wikidata.org/entity/Q237805|http://www.wikidata.org/entity/Q229291"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2011 television film directed by Jonathan Newman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12180635"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12213023"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q353690"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Rami Imam"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13553877"}, "Title": {"type": "literal", "value": "La Fille du 14 juillet"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14833406"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14833406"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14609928|http://www.wikidata.org/entity/Q3559719|http://www.wikidata.org/entity/Q3559331|http://www.wikidata.org/entity/Q3379937|http://www.wikidata.org/entity/Q1569147|http://www.wikidata.org/entity/Q993671"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 French film directed by Antonin Peretjatko"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2412059"}, "Title": {"type": "literal", "value": "Clockwatchers"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3808290"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3808290"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15489819|http://www.wikidata.org/entity/Q7072015|http://www.wikidata.org/entity/Q2830641|http://www.wikidata.org/entity/Q2683767|http://www.wikidata.org/entity/Q1678770|http://www.wikidata.org/entity/Q708097|http://www.wikidata.org/entity/Q621490|http://www.wikidata.org/entity/Q547801|http://www.wikidata.org/entity/Q467709|http://www.wikidata.org/entity/Q355133|http://www.wikidata.org/entity/Q256144|http://www.wikidata.org/entity/Q229291|http://www.wikidata.org/entity/Q204586|http://www.wikidata.org/entity/Q179041|http://www.wikidata.org/entity/Q60422"}, "Published": {"type": "literal", "value": "1998|1997"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1997 film by Jill Sprecher"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2138792"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27044987"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27044988"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q645928|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2016 film by Chris Goodwin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16699697"}, "Title": {"type": "literal", "value": "\u0421\u043e\u0440\u043e\u0447\u0438\u043d\u0441\u043a\u0430\u044f \u044f\u0440\u043c\u0430\u0440\u043a\u0430"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4173781"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4173781"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4172541|http://www.wikidata.org/entity/Q2391534|http://www.wikidata.org/entity/Q275875|http://www.wikidata.org/entity/Q43137"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q2743"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2004 film by Semyon Gorov"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22671149"}, "Title": {"type": "literal", "value": "La Vache"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028520"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23021082|http://www.wikidata.org/entity/Q16028520|http://www.wikidata.org/entity/Q2404088"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23021082|http://www.wikidata.org/entity/Q312661|http://www.wikidata.org/entity/Q115735"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2016 film by Mohamed Hamidi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q164951"}, "Title": {"type": "literal", "value": "Solino"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q77061"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1520844"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21189003|http://www.wikidata.org/entity/Q3751367|http://www.wikidata.org/entity/Q3702372|http://www.wikidata.org/entity/Q3639389|http://www.wikidata.org/entity/Q2437312|http://www.wikidata.org/entity/Q2129710|http://www.wikidata.org/entity/Q2076077|http://www.wikidata.org/entity/Q1778862|http://www.wikidata.org/entity/Q1611949|http://www.wikidata.org/entity/Q1523693|http://www.wikidata.org/entity/Q1437173|http://www.wikidata.org/entity/Q1283065|http://www.wikidata.org/entity/Q1082059|http://www.wikidata.org/entity/Q500913|http://www.wikidata.org/entity/Q455007|http://www.wikidata.org/entity/Q333190|http://www.wikidata.org/entity/Q111267|http://www.wikidata.org/entity/Q102833|http://www.wikidata.org/entity/Q84414|http://www.wikidata.org/entity/Q72883|http://www.wikidata.org/entity/Q58603|http://www.wikidata.org/entity/Q36107"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "124"}, "Description": {"type": "literal", "value": "2002 film by Fatih Ak\u0131n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5916271"}, "Title": {"type": "literal", "value": "Housos vs. Authority"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7150609"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7150609"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6110025"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Paul Fenech"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2559560"}, "Title": {"type": "literal", "value": "Me and You and Everyone We Know"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q256671"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q256671"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1963890|http://www.wikidata.org/entity/Q641408|http://www.wikidata.org/entity/Q459384|http://www.wikidata.org/entity/Q453774|http://www.wikidata.org/entity/Q256671|http://www.wikidata.org/entity/Q6204076|http://www.wikidata.org/entity/Q4957028"}, "Published": {"type": "literal", "value": "2006|2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2005 American romantic comedy-drama film directed by Miranda July"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1108255"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q44069111"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2526855"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15557950"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1966"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "1966 film by Vincenzo Cascino"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30067999"}, "Title": {"type": "literal", "value": "\u092c\u093f\u0930 \u092c\u093f\u0915\u094d\u0930\u092e|Bir Bikram"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30070289"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16734870"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "t1434607517"}, "Description": {"type": "literal", "value": "2016 Nepalese blockbuster film directed by Milan Chams"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10975963"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12250381"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6370538"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Wael Ehsan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11751120"}, "Title": {"type": "literal", "value": "Kup teraz"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11817800"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11817800"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11817800"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Piotr Matwiejczyk"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20856878"}, "Title": {"type": "literal", "value": "Demon"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10827785"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10827785"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1675238|http://www.wikidata.org/entity/Q514958"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2015 film by Marcin Wrona"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17093259"}, "Title": {"type": "literal", "value": "Land Ho!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16210586|http://www.wikidata.org/entity/Q4662138"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film directed by Martha Stephens and Aaron Katz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17636311"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028205"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q951025|http://www.wikidata.org/entity/Q291521|http://www.wikidata.org/entity/Q242526"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Sylvie Ohayon"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12006724"}, "Title": {"type": "literal", "value": "Tommys inferno"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22269507"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22269507"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17194694|http://www.wikidata.org/entity/Q17097163|http://www.wikidata.org/entity/Q11995178|http://www.wikidata.org/entity/Q11991504|http://www.wikidata.org/entity/Q11982752|http://www.wikidata.org/entity/Q11958332|http://www.wikidata.org/entity/Q4764329|http://www.wikidata.org/entity/Q4580829|http://www.wikidata.org/entity/Q3720735|http://www.wikidata.org/entity/Q3356840"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2005 Norwegian film directed by Ove Raymond Gylden\u00e5s"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22269313"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1532274"}, "Title": {"type": "literal", "value": "El abrazo partido"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1160223"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1160223"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28746810|http://www.wikidata.org/entity/Q28465997|http://www.wikidata.org/entity/Q27921941|http://www.wikidata.org/entity/Q16274750|http://www.wikidata.org/entity/Q9048206|http://www.wikidata.org/entity/Q6812438|http://www.wikidata.org/entity/Q6300538|http://www.wikidata.org/entity/Q6277892|http://www.wikidata.org/entity/Q6128626|http://www.wikidata.org/entity/Q6117401|http://www.wikidata.org/entity/Q5806279|http://www.wikidata.org/entity/Q5710826|http://www.wikidata.org/entity/Q5397172|http://www.wikidata.org/entity/Q2887161|http://www.wikidata.org/entity/Q2272014"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2004 film by Daniel Burman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61978152"}, "Title": {"type": "literal", "value": "Turbo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5239955"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1339864|http://www.wikidata.org/entity/Q202866|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2013 animated film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q500088"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5574988"}, "Title": {"type": "literal", "value": "Go for Broke"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6169127"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6169127"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22943994|http://www.wikidata.org/entity/Q6169127|http://www.wikidata.org/entity/Q3307977|http://www.wikidata.org/entity/Q3023394|http://www.wikidata.org/entity/Q724868|http://www.wikidata.org/entity/Q594738|http://www.wikidata.org/entity/Q311241|http://www.wikidata.org/entity/Q39972"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Jean-Claude La Marre"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12429398"}, "Title": {"type": "literal", "value": "\u091c\u094b\u0915\u0930"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3959623"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3959623"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2726196|http://www.wikidata.org/entity/Q614907|http://www.wikidata.org/entity/Q365007|http://www.wikidata.org/entity/Q233748"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2012 film by Shirish Kunder"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15046565"}, "Title": {"type": "literal", "value": "Lovesick"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6702134"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3051228|http://www.wikidata.org/entity/Q761697|http://www.wikidata.org/entity/Q435839|http://www.wikidata.org/entity/Q350746|http://www.wikidata.org/entity/Q310926|http://www.wikidata.org/entity/Q267400|http://www.wikidata.org/entity/Q234096|http://www.wikidata.org/entity/Q201994|http://www.wikidata.org/entity/Q186896"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Luke Matheny"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q964350"}, "Title": {"type": "literal", "value": "Puff, Puff, Pass"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q119676"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6460949|http://www.wikidata.org/entity/Q432973|http://www.wikidata.org/entity/Q374220|http://www.wikidata.org/entity/Q358306|http://www.wikidata.org/entity/Q316032|http://www.wikidata.org/entity/Q271464|http://www.wikidata.org/entity/Q198638|http://www.wikidata.org/entity/Q119676|http://www.wikidata.org/entity/Q7366020"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Mekhi Phifer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43182044"}, "Title": {"type": "literal", "value": "27: El club de los malditos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24960799"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24960799|http://www.wikidata.org/entity/Q778865"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5798126|http://www.wikidata.org/entity/Q5274602|http://www.wikidata.org/entity/Q4310171|http://www.wikidata.org/entity/Q3394200|http://www.wikidata.org/entity/Q533571|http://www.wikidata.org/entity/Q175991"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q53094"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2018 film by Nicanor Loreti"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3818482"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3972430"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3972430|http://www.wikidata.org/entity/Q1008634"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3849352|http://www.wikidata.org/entity/Q3659538|http://www.wikidata.org/entity/Q3610339|http://www.wikidata.org/entity/Q1008634|http://www.wikidata.org/entity/Q556039|http://www.wikidata.org/entity/Q49026"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2008 film by Stefano Chiantini"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23654294"}, "Title": {"type": "literal", "value": "All I want for Christmas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3128032"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10366878|http://www.wikidata.org/entity/Q7347286|http://www.wikidata.org/entity/Q6201072|http://www.wikidata.org/entity/Q1139435|http://www.wikidata.org/entity/Q900426|http://www.wikidata.org/entity/Q740511|http://www.wikidata.org/entity/Q437799|http://www.wikidata.org/entity/Q290103|http://www.wikidata.org/entity/Q270743"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2007 film by Harvey Frost"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2519061"}, "Title": {"type": "literal", "value": "Sweet Valentine"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19545053"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16682309"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16682309|http://www.wikidata.org/entity/Q3479397|http://www.wikidata.org/entity/Q3106155|http://www.wikidata.org/entity/Q2964192|http://www.wikidata.org/entity/Q2582571|http://www.wikidata.org/entity/Q721337|http://www.wikidata.org/entity/Q269873"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 French film directed by Emma Luchini"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27957927"}, "Title": {"type": "literal", "value": "Tully"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q314502"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q230795"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16337574|http://www.wikidata.org/entity/Q16238721|http://www.wikidata.org/entity/Q3273787|http://www.wikidata.org/entity/Q528126|http://www.wikidata.org/entity/Q80046"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2018 film by Jason Reitman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23016773|http://www.wikidata.org/entity/Q649649|http://www.wikidata.org/entity/Q16954085"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26708840"}, "Title": {"type": "literal", "value": "Doggie Heaven"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q374286"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by James Wan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4499335"}, "Title": {"type": "literal", "value": "Cold Souls"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3490844"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3490844"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22212873|http://www.wikidata.org/entity/Q310318|http://www.wikidata.org/entity/Q268298|http://www.wikidata.org/entity/Q232098|http://www.wikidata.org/entity/Q229535|http://www.wikidata.org/entity/Q208649"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2009 film by Sophie Barthes"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12229413"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12213023"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12249717"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Rami Imam"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3279058"}, "Title": {"type": "literal", "value": "Drake & Josh: Really Big Shrimp"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2237602|http://www.wikidata.org/entity/Q261812"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q444344|http://www.wikidata.org/entity/Q349928|http://www.wikidata.org/entity/Q311779|http://www.wikidata.org/entity/Q263737|http://www.wikidata.org/entity/Q261812|http://www.wikidata.org/entity/Q5104"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Drake Bell, Steve Hoefer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25136684"}, "Title": {"type": "literal", "value": "The Lie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q679110"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1378842"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3104324|http://www.wikidata.org/entity/Q2838329|http://www.wikidata.org/entity/Q2646925|http://www.wikidata.org/entity/Q1378842|http://www.wikidata.org/entity/Q1091285|http://www.wikidata.org/entity/Q679110|http://www.wikidata.org/entity/Q466051|http://www.wikidata.org/entity/Q440302|http://www.wikidata.org/entity/Q264996|http://www.wikidata.org/entity/Q44273"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Joshua Leonard"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2893674"}, "Title": {"type": "literal", "value": "\u0401\u043b\u043a\u0438 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4222061|http://www.wikidata.org/entity/Q4130936|http://www.wikidata.org/entity/Q4077720|http://www.wikidata.org/entity/Q2833792"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7510890|http://www.wikidata.org/entity/Q4317349|http://www.wikidata.org/entity/Q344854"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3479732|http://www.wikidata.org/entity/Q1966992|http://www.wikidata.org/entity/Q442830|http://www.wikidata.org/entity/Q282818"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2011 film by Dmitriy Kiselev"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2892410"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60040457"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60199216|http://www.wikidata.org/entity/Q90384"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6042909|http://www.wikidata.org/entity/Q1396278|http://www.wikidata.org/entity/Q90384"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "science fiction film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48671382"}, "Title": {"type": "literal", "value": "Good Posture"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5289370"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5289370"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q44416691|http://www.wikidata.org/entity/Q28957276|http://www.wikidata.org/entity/Q16241504|http://www.wikidata.org/entity/Q7806781|http://www.wikidata.org/entity/Q5484158|http://www.wikidata.org/entity/Q4391317|http://www.wikidata.org/entity/Q1279993|http://www.wikidata.org/entity/Q1249010|http://www.wikidata.org/entity/Q230308"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "film directed by Dolly Wells"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18112021"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7544363"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q379157"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Smeep Kang"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6933585"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18529992"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2338332|http://www.wikidata.org/entity/Q1826953|http://www.wikidata.org/entity/Q938613"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "1999 film by Stefano Bambini, Lino D\u2019Angi\u00f2, Alan De Luca"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56402968"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3735074"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Aleksi Salmenper\u00e4"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1370934"}, "Title": {"type": "literal", "value": "Fatso"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11958682"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11958682|http://www.wikidata.org/entity/Q7710835"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17100163|http://www.wikidata.org/entity/Q11991481|http://www.wikidata.org/entity/Q11982752|http://www.wikidata.org/entity/Q4569518|http://www.wikidata.org/entity/Q521487"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1257444|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2008 Norwegian film directed by Arild Fr\u00f6hlich"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22260745"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18378994"}, "Title": {"type": "literal", "value": "Bridge and Tunnel"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6163110"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6163110"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Jason Michael Brescia"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16318968"}, "Title": {"type": "literal", "value": "Tristesse Club"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29052800"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29052800"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18633968|http://www.wikidata.org/entity/Q3559719|http://www.wikidata.org/entity/Q3380605|http://www.wikidata.org/entity/Q3219319|http://www.wikidata.org/entity/Q2850968|http://www.wikidata.org/entity/Q1238309|http://www.wikidata.org/entity/Q440609|http://www.wikidata.org/entity/Q233742"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Vincent Mariette"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42427934"}, "Title": {"type": "literal", "value": "Minu n\u00e4oga onu"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12366619|http://www.wikidata.org/entity/Q12359148"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16407064|http://www.wikidata.org/entity/Q12374189|http://www.wikidata.org/entity/Q12362505"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Andres Maimik"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q58971925"}, "Title": {"type": "literal", "value": "L'ospite"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18170234"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56296150|http://www.wikidata.org/entity/Q23857249|http://www.wikidata.org/entity/Q18170234|http://www.wikidata.org/entity/Q3938128"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21207691|http://www.wikidata.org/entity/Q3990763|http://www.wikidata.org/entity/Q3617662"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2018 film by Duccio Chiarini"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q798613"}, "Title": {"type": "literal", "value": "Mon idole"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q314403"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6292322|http://www.wikidata.org/entity/Q3380199|http://www.wikidata.org/entity/Q314403"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17377232|http://www.wikidata.org/entity/Q16185220|http://www.wikidata.org/entity/Q3591288|http://www.wikidata.org/entity/Q3380199|http://www.wikidata.org/entity/Q3380140|http://www.wikidata.org/entity/Q3219319|http://www.wikidata.org/entity/Q3157743|http://www.wikidata.org/entity/Q2966467|http://www.wikidata.org/entity/Q2863129|http://www.wikidata.org/entity/Q2848938|http://www.wikidata.org/entity/Q965873|http://www.wikidata.org/entity/Q949391|http://www.wikidata.org/entity/Q576085|http://www.wikidata.org/entity/Q552639|http://www.wikidata.org/entity/Q535127|http://www.wikidata.org/entity/Q466991|http://www.wikidata.org/entity/Q443516|http://www.wikidata.org/entity/Q314403|http://www.wikidata.org/entity/Q57118"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "2002 film by Guillaume Canet"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3071502"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28146958"}, "Title": {"type": "literal", "value": "Fletcher and Jenks"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28140054"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28528756"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28563563|http://www.wikidata.org/entity/Q28140026"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "7"}, "Description": {"type": "literal", "value": "2016 short film by Tony Olmos"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28485489"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18674922"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16989960"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Marja Pyykk\u00f6"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56241654"}, "Title": {"type": "literal", "value": "Todas para uno"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16302557"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Harold Trompetero"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11320214"}, "Title": {"type": "literal", "value": "D\u00eds"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16425993"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Silja Hauksd\u00f3ttir"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27964571"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7933508"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7933508"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7645142"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Vipul Mehta"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21643356"}, "Title": {"type": "literal", "value": "Sex & Crime"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23197748"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1097434|http://www.wikidata.org/entity/Q113799|http://www.wikidata.org/entity/Q104094|http://www.wikidata.org/entity/Q102709|http://www.wikidata.org/entity/Q90820|http://www.wikidata.org/entity/Q74258"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "2016 German film directed by Paul Florian M\u00fcller"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2771452"}, "Title": {"type": "literal", "value": "Jezus is een Palestijn"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2657944"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q388679|http://www.wikidata.org/entity/Q2100206|http://www.wikidata.org/entity/Q1235490"}, "Published": {"type": "literal", "value": "1999|2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1999 film by Lodewijk Crijns"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1847868"}, "Title": {"type": "literal", "value": "Everyone's Hero"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5218823|http://www.wikidata.org/entity/Q5144905|http://www.wikidata.org/entity/Q174311"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q707804|http://www.wikidata.org/entity/Q449959|http://www.wikidata.org/entity/Q313545|http://www.wikidata.org/entity/Q312521|http://www.wikidata.org/entity/Q310493|http://www.wikidata.org/entity/Q287607|http://www.wikidata.org/entity/Q267097|http://www.wikidata.org/entity/Q235685|http://www.wikidata.org/entity/Q224159|http://www.wikidata.org/entity/Q188648|http://www.wikidata.org/entity/Q182763|http://www.wikidata.org/entity/Q49001"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2006 film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3304113"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4410010"}, "Title": {"type": "literal", "value": "\u0421\u0432\u0430\u0442\u044b 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4536851"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Andrey Yakovlev"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15042128"}, "Title": {"type": "literal", "value": "O Concurso"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7159986"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10286900"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2013 film by Pedro Vasconcellos"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24659706"}, "Title": {"type": "literal", "value": "Looking: The Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2846620"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19202167|http://www.wikidata.org/entity/Q2846620"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19661595|http://www.wikidata.org/entity/Q19609557|http://www.wikidata.org/entity/Q18921514|http://www.wikidata.org/entity/Q6939119|http://www.wikidata.org/entity/Q1160718|http://www.wikidata.org/entity/Q716998|http://www.wikidata.org/entity/Q556644"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2016 television film directed by Andrew Haigh"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17592289"}, "Title": {"type": "literal", "value": "Silvi"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18026371"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2013 film by Nico Sommer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14948585"}, "Title": {"type": "literal", "value": "Plastic"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1253831"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16218494|http://www.wikidata.org/entity/Q7396645|http://www.wikidata.org/entity/Q1253831"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q552026|http://www.wikidata.org/entity/Q523420|http://www.wikidata.org/entity/Q454481|http://www.wikidata.org/entity/Q345038|http://www.wikidata.org/entity/Q242104|http://www.wikidata.org/entity/Q233474|http://www.wikidata.org/entity/Q167774|http://www.wikidata.org/entity/Q6809611|http://www.wikidata.org/entity/Q5372939|http://www.wikidata.org/entity/Q4805390|http://www.wikidata.org/entity/Q2823942|http://www.wikidata.org/entity/Q1655655|http://www.wikidata.org/entity/Q1319882|http://www.wikidata.org/entity/Q973762|http://www.wikidata.org/entity/Q609464|http://www.wikidata.org/entity/Q57614"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q496523|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q2678111"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2014 British action comedy-crime film directed by Julian Gilbey"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5527238"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20001462"}, "Title": {"type": "literal", "value": "Popstar: Never Stop Never Stopping|Popstar: Sem Parar, Sem Limites"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q419466|http://www.wikidata.org/entity/Q545634"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q419466|http://www.wikidata.org/entity/Q314640|http://www.wikidata.org/entity/Q545634"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q616982|http://www.wikidata.org/entity/Q335680|http://www.wikidata.org/entity/Q322915|http://www.wikidata.org/entity/Q314640|http://www.wikidata.org/entity/Q272946|http://www.wikidata.org/entity/Q7612835|http://www.wikidata.org/entity/Q7153461|http://www.wikidata.org/entity/Q5576465|http://www.wikidata.org/entity/Q5386029|http://www.wikidata.org/entity/Q5090122|http://www.wikidata.org/entity/Q1322660|http://www.wikidata.org/entity/Q1319744|http://www.wikidata.org/entity/Q784009|http://www.wikidata.org/entity/Q2632|http://www.wikidata.org/entity/Q545634|http://www.wikidata.org/entity/Q449531|http://www.wikidata.org/entity/Q52447|http://www.wikidata.org/entity/Q43432|http://www.wikidata.org/entity/Q419466|http://www.wikidata.org/entity/Q372559|http://www.wikidata.org/entity/Q355116|http://www.wikidata.org/entity/Q21032133|http://www.wikidata.org/entity/Q41076|http://www.wikidata.org/entity/Q14537|http://www.wikidata.org/entity/Q8349|http://www.wikidata.org/entity/Q6096|http://www.wikidata.org/entity/Q6060|http://www.wikidata.org/entity/Q263024|http://www.wikidata.org/entity/Q237012|http://www.wikidata.org/entity/Q236527|http://www.wikidata.org/entity/Q233061|http://www.wikidata.org/entity/Q229013|http://www.wikidata.org/entity/Q219631|http://www.wikidata.org/entity/Q218091|http://www.wikidata.org/entity/Q215546|http://www.wikidata.org/entity/Q214227|http://www.wikidata.org/entity/Q194220|http://www.wikidata.org/entity/Q184572|http://www.wikidata.org/entity/Q165911|http://www.wikidata.org/entity/Q162629|http://www.wikidata.org/entity/Q160009|http://www.wikidata.org/entity/Q147077"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2016 American mockumentary comedy film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q618091"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17450842"}, "Title": {"type": "literal", "value": "Mc Dandik"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6075603"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Ragga Oktay"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13469360"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13445909"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Luigi Cecinelli"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13423391"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4197782"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Taisia Igumentseva"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q759896"}, "Title": {"type": "literal", "value": "On the Buses"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5667433"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1240154"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2471996|http://www.wikidata.org/entity/Q2171085|http://www.wikidata.org/entity/Q2052248|http://www.wikidata.org/entity/Q1914884|http://www.wikidata.org/entity/Q679983|http://www.wikidata.org/entity/Q518175"}, "Published": {"type": "literal", "value": "1971"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "1971 film by Harry Booth"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1433745"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q517934"}, "Title": {"type": "literal", "value": "Time Freak"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4756399"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4756399"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "11"}, "Description": {"type": "literal", "value": "2011 short film directed by Andrew Bowler"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q754742"}, "Title": {"type": "literal", "value": "Bandidas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1782299|http://www.wikidata.org/entity/Q3368851"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1893631|http://www.wikidata.org/entity/Q484779"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q491775|http://www.wikidata.org/entity/Q294583|http://www.wikidata.org/entity/Q125106|http://www.wikidata.org/entity/Q39666|http://www.wikidata.org/entity/Q3112903|http://www.wikidata.org/entity/Q3022516|http://www.wikidata.org/entity/Q2176223|http://www.wikidata.org/entity/Q713099"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5442753|http://www.wikidata.org/entity/Q496523|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q172980|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2006 film by Joachim R\u00f8nning, Espen Sandberg"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434841"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12216901"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12243777"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12179049"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 Egyptian film directed by Moataz El Touni"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25389633"}, "Title": {"type": "literal", "value": "Women Who Kill"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24266090"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24266090"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24266090|http://www.wikidata.org/entity/Q16224020|http://www.wikidata.org/entity/Q2915471|http://www.wikidata.org/entity/Q2328935|http://www.wikidata.org/entity/Q231135"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Ingrid Jungermann"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24451650"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4259298"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4259298"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2302686"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Vladimir Lert"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55163823"}, "Title": {"type": "literal", "value": "\u75af\u72c2\u7684\u5916\u661f\u4eba"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q354554"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q607588"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21018157|http://www.wikidata.org/entity/Q3992514|http://www.wikidata.org/entity/Q704130|http://www.wikidata.org/entity/Q294812"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "2019 a Chinese film directed by Ning Hao"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7617165"}, "Title": {"type": "literal", "value": "Still Waiting..."}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6173265"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7340362"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17385901|http://www.wikidata.org/entity/Q7340362|http://www.wikidata.org/entity/Q6415432|http://www.wikidata.org/entity/Q5389146|http://www.wikidata.org/entity/Q3853048|http://www.wikidata.org/entity/Q2830641|http://www.wikidata.org/entity/Q2620648|http://www.wikidata.org/entity/Q1285062|http://www.wikidata.org/entity/Q1109470|http://www.wikidata.org/entity/Q1077862|http://www.wikidata.org/entity/Q967130|http://www.wikidata.org/entity/Q471128|http://www.wikidata.org/entity/Q460513|http://www.wikidata.org/entity/Q443672|http://www.wikidata.org/entity/Q347395|http://www.wikidata.org/entity/Q298672|http://www.wikidata.org/entity/Q285409|http://www.wikidata.org/entity/Q233786|http://www.wikidata.org/entity/Q232481|http://www.wikidata.org/entity/Q230176|http://www.wikidata.org/entity/Q164328|http://www.wikidata.org/entity/Q4119"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Jeff Balis"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6593070"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12757208"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q385312"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16088526|http://www.wikidata.org/entity/Q16084153|http://www.wikidata.org/entity/Q12752008|http://www.wikidata.org/entity/Q12750302|http://www.wikidata.org/entity/Q11141512|http://www.wikidata.org/entity/Q8074337|http://www.wikidata.org/entity/Q7035619|http://www.wikidata.org/entity/Q2897602|http://www.wikidata.org/entity/Q1711470|http://www.wikidata.org/entity/Q1563211|http://www.wikidata.org/entity/Q1560952|http://www.wikidata.org/entity/Q284488"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Petar Pa\u0161i\u0107"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15904094"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9334957"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6131875"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Tien-Lun Yeh"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16248542"}, "Title": {"type": "literal", "value": "Back in the Day"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q311613"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1275214|http://www.wikidata.org/entity/Q984077|http://www.wikidata.org/entity/Q726708|http://www.wikidata.org/entity/Q714380|http://www.wikidata.org/entity/Q579100|http://www.wikidata.org/entity/Q311613|http://www.wikidata.org/entity/Q231100|http://www.wikidata.org/entity/Q231091|http://www.wikidata.org/entity/Q40470"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Michael Rosenbaum"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16612088"}, "Title": {"type": "literal", "value": "No s\u00e9 si cortarme las venas o dej\u00e1rmelas largas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q59974187"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5983543|http://www.wikidata.org/entity/Q5943686|http://www.wikidata.org/entity/Q3545808|http://www.wikidata.org/entity/Q1414640|http://www.wikidata.org/entity/Q1165261|http://www.wikidata.org/entity/Q1057307|http://www.wikidata.org/entity/Q827369|http://www.wikidata.org/entity/Q660476|http://www.wikidata.org/entity/Q647275|http://www.wikidata.org/entity/Q615653|http://www.wikidata.org/entity/Q266626|http://www.wikidata.org/entity/Q256152|http://www.wikidata.org/entity/Q21010275|http://www.wikidata.org/entity/Q6700515|http://www.wikidata.org/entity/Q6101331"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q58875268"}, "Title": {"type": "literal", "value": "Superl\u00f3pez"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5928180"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8250879|http://www.wikidata.org/entity/Q8559871"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q235391|http://www.wikidata.org/entity/Q41899519|http://www.wikidata.org/entity/Q26838760|http://www.wikidata.org/entity/Q20876386|http://www.wikidata.org/entity/Q12255669|http://www.wikidata.org/entity/Q8964703|http://www.wikidata.org/entity/Q8353578|http://www.wikidata.org/entity/Q6457544|http://www.wikidata.org/entity/Q6068440|http://www.wikidata.org/entity/Q5883909|http://www.wikidata.org/entity/Q2833293"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1535153|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2018 film by Javier Ruiz Caldera"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2638120|http://www.wikidata.org/entity/Q5641909|http://www.wikidata.org/entity/Q16928132"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21463782"}, "Title": {"type": "literal", "value": "War Machine"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3018459"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3018459"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30015344|http://www.wikidata.org/entity/Q23767051|http://www.wikidata.org/entity/Q20676357|http://www.wikidata.org/entity/Q16762370|http://www.wikidata.org/entity/Q13563393|http://www.wikidata.org/entity/Q9033587|http://www.wikidata.org/entity/Q6246377|http://www.wikidata.org/entity/Q4772688|http://www.wikidata.org/entity/Q2287888|http://www.wikidata.org/entity/Q1319882|http://www.wikidata.org/entity/Q566037|http://www.wikidata.org/entity/Q498263|http://www.wikidata.org/entity/Q470260|http://www.wikidata.org/entity/Q361215|http://www.wikidata.org/entity/Q277978|http://www.wikidata.org/entity/Q236705|http://www.wikidata.org/entity/Q200534|http://www.wikidata.org/entity/Q173158|http://www.wikidata.org/entity/Q129817|http://www.wikidata.org/entity/Q117415|http://www.wikidata.org/entity/Q35332"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "122"}, "Description": {"type": "literal", "value": "2017 American satirical war film directed by David Mich\u00f4d"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q907311"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55164107"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12083915"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12083915|http://www.wikidata.org/entity/Q12075874"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q47489819"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2018 Ukrainian film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4292433"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4252102"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4077105"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4458928"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Yevgeny Lavrentyev"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23709819"}, "Title": {"type": "literal", "value": "Na Quebrada"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3249020"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2014 film by Fernando Grostein Andrade"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7804539"}, "Title": {"type": "literal", "value": "Tim and Eric's Billion Dollar Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5387705|http://www.wikidata.org/entity/Q7803640"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7803640|http://www.wikidata.org/entity/Q5387705"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q361238|http://www.wikidata.org/entity/Q106706|http://www.wikidata.org/entity/Q81489|http://www.wikidata.org/entity/Q16185578|http://www.wikidata.org/entity/Q7803640|http://www.wikidata.org/entity/Q5387705|http://www.wikidata.org/entity/Q1319744|http://www.wikidata.org/entity/Q495487|http://www.wikidata.org/entity/Q229747|http://www.wikidata.org/entity/Q223110|http://www.wikidata.org/entity/Q218503|http://www.wikidata.org/entity/Q139325"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Tim Heidecker, Eric Wareheim"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q727561|http://www.wikidata.org/entity/Q3098606|http://www.wikidata.org/entity/Q4632862"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4729965"}, "Title": {"type": "literal", "value": "Alle for \u00e9n"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12332904"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41236307|http://www.wikidata.org/entity/Q40523565|http://www.wikidata.org/entity/Q12342860|http://www.wikidata.org/entity/Q12335232|http://www.wikidata.org/entity/Q12327036|http://www.wikidata.org/entity/Q12321303|http://www.wikidata.org/entity/Q12321300|http://www.wikidata.org/entity/Q12320299|http://www.wikidata.org/entity/Q12314126|http://www.wikidata.org/entity/Q7295091|http://www.wikidata.org/entity/Q6858699|http://www.wikidata.org/entity/Q5934629|http://www.wikidata.org/entity/Q2651539|http://www.wikidata.org/entity/Q1797902|http://www.wikidata.org/entity/Q456176|http://www.wikidata.org/entity/Q323563|http://www.wikidata.org/entity/Q213574|http://www.wikidata.org/entity/Q84081"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Rasmus Heide"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11849530"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11896737"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Teemu Nikki"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q9291938"}, "Title": {"type": "literal", "value": "Hi way"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11715216"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11715216"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Jacek Borusi\u0144ski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15732456"}, "Title": {"type": "literal", "value": "The FP"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15732460|http://www.wikidata.org/entity/Q15732459"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 American independent action comedy film directed by Brandon Trost and Jason Trost"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2159172"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2066995"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2066995"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19629034|http://www.wikidata.org/entity/Q13817318|http://www.wikidata.org/entity/Q2839854|http://www.wikidata.org/entity/Q2136816|http://www.wikidata.org/entity/Q2117480|http://www.wikidata.org/entity/Q1933451|http://www.wikidata.org/entity/Q1738544|http://www.wikidata.org/entity/Q388679|http://www.wikidata.org/entity/Q311016|http://www.wikidata.org/entity/Q82246"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Arne Toonen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17478195"}, "Title": {"type": "literal", "value": "Pancho, el perro millonario"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23695803"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2014 film by Tom Fern\u00e1ndez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18647981"}, "Title": {"type": "literal", "value": "Moana"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q930209|http://www.wikidata.org/entity/Q735440|http://www.wikidata.org/entity/Q18921842|http://www.wikidata.org/entity/Q1077862"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q930209|http://www.wikidata.org/entity/Q735440|http://www.wikidata.org/entity/Q27915692|http://www.wikidata.org/entity/Q27915686|http://www.wikidata.org/entity/Q20995253|http://www.wikidata.org/entity/Q18921842|http://www.wikidata.org/entity/Q7129243|http://www.wikidata.org/entity/Q2388576|http://www.wikidata.org/entity/Q1077862"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q28968258"}, "Duration": {"type": "literal", "value": "107|113"}, "Description": {"type": "literal", "value": "2016 computer animated film produced by Walt Disney Animation Studios"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1047410|http://www.wikidata.org/entity/Q191224"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q579895"}, "Title": {"type": "literal", "value": "Balls of Fury"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q548479"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1319539"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18738765|http://www.wikidata.org/entity/Q3293708|http://www.wikidata.org/entity/Q2852954|http://www.wikidata.org/entity/Q1319539|http://www.wikidata.org/entity/Q614774|http://www.wikidata.org/entity/Q449947|http://www.wikidata.org/entity/Q381799|http://www.wikidata.org/entity/Q374263|http://www.wikidata.org/entity/Q358990|http://www.wikidata.org/entity/Q335226|http://www.wikidata.org/entity/Q309503|http://www.wikidata.org/entity/Q272977|http://www.wikidata.org/entity/Q271464|http://www.wikidata.org/entity/Q241800|http://www.wikidata.org/entity/Q185051|http://www.wikidata.org/entity/Q73035"}, "Published": {"type": "literal", "value": "2008|2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1033891|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2007 American sports comedy film directed by Ben Garant"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q512858"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6529968"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12238850"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11042198|http://www.wikidata.org/entity/Q4120152|http://www.wikidata.org/entity/Q591801"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 film by Magdy Al Hawary"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4328801"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21154379"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3651828"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4343990|http://www.wikidata.org/entity/Q4241301|http://www.wikidata.org/entity/Q4230993|http://www.wikidata.org/entity/Q1967150|http://www.wikidata.org/entity/Q726105|http://www.wikidata.org/entity/Q502070|http://www.wikidata.org/entity/Q471740"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2009 film by Eduard Parri"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q47005865"}, "Title": {"type": "literal", "value": "Mazie laup\u012bt\u0101ji"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50301569"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50301582"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3741119|http://www.wikidata.org/entity/Q684168"}, "Published": {"type": "literal", "value": "2010|2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Armands Zvirbulis"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12228681"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12250381"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4166476"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Wael Ehsan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55188039"}, "Title": {"type": "literal", "value": "Bier Royal"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1082614"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23979077"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29113528|http://www.wikidata.org/entity/Q28837877|http://www.wikidata.org/entity/Q23059937|http://www.wikidata.org/entity/Q22973053|http://www.wikidata.org/entity/Q21014941|http://www.wikidata.org/entity/Q20638662|http://www.wikidata.org/entity/Q19960215|http://www.wikidata.org/entity/Q18020332|http://www.wikidata.org/entity/Q16787776|http://www.wikidata.org/entity/Q15623585|http://www.wikidata.org/entity/Q11953755|http://www.wikidata.org/entity/Q1736707|http://www.wikidata.org/entity/Q1676742|http://www.wikidata.org/entity/Q1287530|http://www.wikidata.org/entity/Q497443|http://www.wikidata.org/entity/Q97153|http://www.wikidata.org/entity/Q76450|http://www.wikidata.org/entity/Q43766"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 television film directed by Christiane Balthasar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1526817"}, "Title": {"type": "literal", "value": "Bring It On: Fight to the Finish"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1058003"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16208587|http://www.wikidata.org/entity/Q5516062|http://www.wikidata.org/entity/Q2740278|http://www.wikidata.org/entity/Q1189370|http://www.wikidata.org/entity/Q553359|http://www.wikidata.org/entity/Q441451|http://www.wikidata.org/entity/Q434741|http://www.wikidata.org/entity/Q230501"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2009 film by Bille Woodruff"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21681007"}, "Title": {"type": "literal", "value": "Gut zu V\u00f6geln"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23197738"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1912577|http://www.wikidata.org/entity/Q1901626|http://www.wikidata.org/entity/Q1639649|http://www.wikidata.org/entity/Q865881|http://www.wikidata.org/entity/Q115010|http://www.wikidata.org/entity/Q102480|http://www.wikidata.org/entity/Q97619|http://www.wikidata.org/entity/Q97241|http://www.wikidata.org/entity/Q94096|http://www.wikidata.org/entity/Q91004|http://www.wikidata.org/entity/Q76149|http://www.wikidata.org/entity/Q75707|http://www.wikidata.org/entity/Q63228"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Mira Thiel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q50376367"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1892483"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q45769929|http://www.wikidata.org/entity/Q1892483"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 german television movie"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23925073"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q31188826"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q31188826"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Mehmet Can Merto\u011flu"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1653410"}, "Title": {"type": "literal", "value": "\u0421\u0443\u043f\u0435\u0440\u043c\u0435\u043d\u0435\u0434\u0436\u0435\u0440, \u0438\u043b\u0438 \u041c\u043e\u0442\u044b\u0433\u0430 \u0441\u0443\u0434\u044c\u0431\u044b"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4168320"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q140738"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "78"}, "Description": {"type": "literal", "value": "2011 film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4403233"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18209382"}, "Title": {"type": "literal", "value": "Our Brand Is Crisis"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2296698"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7177144"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q202735|http://www.wikidata.org/entity/Q188432|http://www.wikidata.org/entity/Q40791|http://www.wikidata.org/entity/Q24008487|http://www.wikidata.org/entity/Q18977890|http://www.wikidata.org/entity/Q2558129|http://www.wikidata.org/entity/Q566037|http://www.wikidata.org/entity/Q511554|http://www.wikidata.org/entity/Q218210"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q645928|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2015 film by David Gordon Green"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10706553"}, "Title": {"type": "literal", "value": "Turist|Force Majeure|Snow Therapy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q211228"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q211228"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6438398|http://www.wikidata.org/entity/Q5564082|http://www.wikidata.org/entity/Q897115|http://www.wikidata.org/entity/Q18816549|http://www.wikidata.org/entity/Q17100163"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "118"}, "Description": {"type": "literal", "value": "2014 Swedish film by Ruben \u00d6stlund"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2748604"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19867340"}, "Title": {"type": "literal", "value": "Saugatuck Cures"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20684442"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1372431"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Matthew Ladensack"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18914954"}, "Title": {"type": "literal", "value": "Elvis & Nixon"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1866610"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25144"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q645928"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2016 film by Liza Johnson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28542228"}, "Title": {"type": "literal", "value": "Fack ju G\u00f6hte 3"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q112352"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q112352"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2048644|http://www.wikidata.org/entity/Q1974089|http://www.wikidata.org/entity/Q1913731|http://www.wikidata.org/entity/Q1686699|http://www.wikidata.org/entity/Q1367636|http://www.wikidata.org/entity/Q824272|http://www.wikidata.org/entity/Q215565|http://www.wikidata.org/entity/Q100841|http://www.wikidata.org/entity/Q89832|http://www.wikidata.org/entity/Q87397|http://www.wikidata.org/entity/Q78766|http://www.wikidata.org/entity/Q78441|http://www.wikidata.org/entity/Q70808|http://www.wikidata.org/entity/Q70003|http://www.wikidata.org/entity/Q69669|http://www.wikidata.org/entity/Q65116|http://www.wikidata.org/entity/Q62346|http://www.wikidata.org/entity/Q23788081|http://www.wikidata.org/entity/Q23067905|http://www.wikidata.org/entity/Q23062405|http://www.wikidata.org/entity/Q19839425|http://www.wikidata.org/entity/Q17479630|http://www.wikidata.org/entity/Q17353105|http://www.wikidata.org/entity/Q16504473|http://www.wikidata.org/entity/Q16218089|http://www.wikidata.org/entity/Q15890988"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Bora Da\u011ftekin"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q564960"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11785073"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5520821"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16217187"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7296641|http://www.wikidata.org/entity/Q3494290|http://www.wikidata.org/entity/Q2362968|http://www.wikidata.org/entity/Q2086574|http://www.wikidata.org/entity/Q1992008|http://www.wikidata.org/entity/Q292967|http://www.wikidata.org/entity/Q158533"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Ganesh Acharya"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18170566"}, "Title": {"type": "literal", "value": "Two 4 One"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21070479"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21070479"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Maureen Bradley"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6901845"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6993709"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6993709"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1527527"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2005 film by Etsion Nimrod"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27910183"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6836963"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6836963"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6836963|http://www.wikidata.org/entity/Q5090910|http://www.wikidata.org/entity/Q702549"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Michelle Chong"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21646580"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19561112"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19561112"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20649862|http://www.wikidata.org/entity/Q7929207"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Nalan Kumarasamy"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20962234"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21006664"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Jhonny Obando"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30646818"}, "Title": {"type": "literal", "value": "Changeland"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q186757"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q186757"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24068363|http://www.wikidata.org/entity/Q15823293|http://www.wikidata.org/entity/Q439198|http://www.wikidata.org/entity/Q360674|http://www.wikidata.org/entity/Q186757|http://www.wikidata.org/entity/Q180011|http://www.wikidata.org/entity/Q103578|http://www.wikidata.org/entity/Q44449"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Seth Green"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3499746"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27981586"}, "Title": {"type": "literal", "value": "Holmes and Watson"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q925413"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q925413"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28493|http://www.wikidata.org/entity/Q24891605|http://www.wikidata.org/entity/Q15712264|http://www.wikidata.org/entity/Q2322261|http://www.wikidata.org/entity/Q230534|http://www.wikidata.org/entity/Q230383|http://www.wikidata.org/entity/Q223110|http://www.wikidata.org/entity/Q218503|http://www.wikidata.org/entity/Q49017"}, "Published": {"type": "literal", "value": "2019|2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q1200678"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2018 film by Etan Cohen"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q186941"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q63246632"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15069938"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Justine Triet"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23564692"}, "Title": {"type": "literal", "value": "Liebe ist die beste Medizin"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1576616"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15445027"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2004 film by Hannu Salonen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28222787"}, "Title": {"type": "literal", "value": "Unicorn Store"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29328"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q63041998"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q40550981|http://www.wikidata.org/entity/Q28957276|http://www.wikidata.org/entity/Q22815258|http://www.wikidata.org/entity/Q558301|http://www.wikidata.org/entity/Q352180|http://www.wikidata.org/entity/Q272946|http://www.wikidata.org/entity/Q172678|http://www.wikidata.org/entity/Q29328"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2017 film directed by Brie Larson"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18154751"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12343734"}, "Title": {"type": "literal", "value": "Ved Verdens Ende"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q952621"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q491314"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61763927|http://www.wikidata.org/entity/Q12323166|http://www.wikidata.org/entity/Q2033737|http://www.wikidata.org/entity/Q2017909|http://www.wikidata.org/entity/Q1797671|http://www.wikidata.org/entity/Q1776674|http://www.wikidata.org/entity/Q1676688|http://www.wikidata.org/entity/Q862784|http://www.wikidata.org/entity/Q529849|http://www.wikidata.org/entity/Q445772|http://www.wikidata.org/entity/Q443662|http://www.wikidata.org/entity/Q383754|http://www.wikidata.org/entity/Q115988|http://www.wikidata.org/entity/Q95220|http://www.wikidata.org/entity/Q77653"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2009 film by Tomas Villum Jensen"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1891982"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56063689"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23418649"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Ksshitij Chaudhary"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28753403"}, "Title": {"type": "literal", "value": "Win It All"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6212564"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Joe Swanberg"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1687046"}, "Title": {"type": "literal", "value": "Pommes essen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2435592"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2435592"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2012 film by Tina Traben"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q667799"}, "Title": {"type": "literal", "value": "Tenacious D in The Pick of Destiny"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1372139"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q483907|http://www.wikidata.org/entity/Q371403"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q371403|http://www.wikidata.org/entity/Q356086|http://www.wikidata.org/entity/Q318134|http://www.wikidata.org/entity/Q230203|http://www.wikidata.org/entity/Q223110|http://www.wikidata.org/entity/Q185151|http://www.wikidata.org/entity/Q164328|http://www.wikidata.org/entity/Q152929|http://www.wikidata.org/entity/Q130709|http://www.wikidata.org/entity/Q95048|http://www.wikidata.org/entity/Q47100|http://www.wikidata.org/entity/Q14535|http://www.wikidata.org/entity/Q12006|http://www.wikidata.org/entity/Q3116296|http://www.wikidata.org/entity/Q3017116|http://www.wikidata.org/entity/Q2059493|http://www.wikidata.org/entity/Q1139190|http://www.wikidata.org/entity/Q483907|http://www.wikidata.org/entity/Q481832"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2006 film by Liam Lynch"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7304367"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7768258"}, "Title": {"type": "literal", "value": "The Teenage Textbook Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7185734"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5104591"}, "Published": {"type": "literal", "value": "1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q40831"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1998 film by Phillip Lim"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1518752"}, "Title": {"type": "literal", "value": "La Fonte des neiges"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3166572"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3574974|http://www.wikidata.org/entity/Q3219493|http://www.wikidata.org/entity/Q3123687"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "26"}, "Description": {"type": "literal", "value": "2008 short film directed by Jean-Julien Chervier"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5829816"}, "Title": {"type": "literal", "value": "Ellos robaron la picha de Hitler"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6070232"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Pedro Temboury"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21646405"}, "Title": {"type": "literal", "value": "Bach in Brazil"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23062422"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23062422"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9600706|http://www.wikidata.org/entity/Q109492|http://www.wikidata.org/entity/Q104741|http://www.wikidata.org/entity/Q100781"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Ansgar Ahlers"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3209913"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3299877"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2834188"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3217814|http://www.wikidata.org/entity/Q3588129|http://www.wikidata.org/entity/Q3574132|http://www.wikidata.org/entity/Q3490875|http://www.wikidata.org/entity/Q3441839|http://www.wikidata.org/entity/Q3369703|http://www.wikidata.org/entity/Q3350714|http://www.wikidata.org/entity/Q3299930|http://www.wikidata.org/entity/Q3185296|http://www.wikidata.org/entity/Q3121553|http://www.wikidata.org/entity/Q2850927|http://www.wikidata.org/entity/Q2821029|http://www.wikidata.org/entity/Q440995|http://www.wikidata.org/entity/Q388744|http://www.wikidata.org/entity/Q158286"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Matthieu Delaporte"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q40329256"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1663184"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1904783"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Ingo Rasper"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1238429"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18229523"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18229523"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q875366|http://www.wikidata.org/entity/Q839289"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by D\u00e9nes Orosz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15526075"}, "Title": {"type": "literal", "value": "Was machen Frauen morgens um halb vier?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1684824"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22115473"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2012 film by Matthias Kiefersauer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27986110"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7814245"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Tolga \u00d6rnek"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26878321"}, "Title": {"type": "literal", "value": "Piuma"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3938128"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3938128"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2016 film by Roan Johnson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5247799"}, "Title": {"type": "literal", "value": "Deb and Sisi"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6768358"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6768358"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Mark Kenneth Woods"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q47089813"}, "Title": {"type": "literal", "value": "Tito e gli alieni"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q59187965"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2017 film by Paola Randi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6008400"}, "Title": {"type": "literal", "value": "\u0b87\u0bae\u0bcd\u0b9a\u0bc8 \u0b85\u0bb0\u0b9a\u0ba9\u0bcd 23\u0bae\u0bcd \u0baa\u0bc1\u0bb2\u0bbf\u0b95\u0bc7\u0b9a\u0bbf"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5099316"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5099316"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7695202|http://www.wikidata.org/entity/Q3521977|http://www.wikidata.org/entity/Q967495"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Chimbu Deven"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3560878"}, "Title": {"type": "literal", "value": "The Way, Way Back"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2514422|http://www.wikidata.org/entity/Q591785"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2514422|http://www.wikidata.org/entity/Q591785"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7337064|http://www.wikidata.org/entity/Q105695|http://www.wikidata.org/entity/Q2514422|http://www.wikidata.org/entity/Q1378118|http://www.wikidata.org/entity/Q591785|http://www.wikidata.org/entity/Q554506|http://www.wikidata.org/entity/Q316446|http://www.wikidata.org/entity/Q236527|http://www.wikidata.org/entity/Q229487|http://www.wikidata.org/entity/Q229291|http://www.wikidata.org/entity/Q216221|http://www.wikidata.org/entity/Q131332"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2013 American comedy-drama film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q32186"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20202962"}, "Title": {"type": "literal", "value": "No Way Jose"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q281964"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Adam Goldberg"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43180354"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q43180083"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "68"}, "Description": {"type": "literal", "value": "2014 film by Davide Minnella"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4878938"}, "Title": {"type": "literal", "value": "Bed & Breakfast"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4133927"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6307615|http://www.wikidata.org/entity/Q4908906|http://www.wikidata.org/entity/Q3138874|http://www.wikidata.org/entity/Q3137809|http://www.wikidata.org/entity/Q466954|http://www.wikidata.org/entity/Q461105|http://www.wikidata.org/entity/Q313788|http://www.wikidata.org/entity/Q249865|http://www.wikidata.org/entity/Q207969"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2010 film by M\u00e1rcio Garcia"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1435966"}, "Title": {"type": "literal", "value": "\u092b\u0942\u0932 \u090f\u0928 \u092b\u093e\u0907\u0928\u0932"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4695886"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16885662"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2723457|http://www.wikidata.org/entity/Q944546|http://www.wikidata.org/entity/Q731854|http://www.wikidata.org/entity/Q319491|http://www.wikidata.org/entity/Q158450"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "143"}, "Description": {"type": "literal", "value": "2007 film by Ahmed Khan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q643972"}, "Title": {"type": "literal", "value": "Jeff, Who Lives at Home"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3273787|http://www.wikidata.org/entity/Q6166571"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3273787|http://www.wikidata.org/entity/Q6166571"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1057939|http://www.wikidata.org/entity/Q677553|http://www.wikidata.org/entity/Q328790|http://www.wikidata.org/entity/Q261547|http://www.wikidata.org/entity/Q236189|http://www.wikidata.org/entity/Q202304|http://www.wikidata.org/entity/Q133050|http://www.wikidata.org/entity/Q23883683|http://www.wikidata.org/entity/Q19958261|http://www.wikidata.org/entity/Q17385901|http://www.wikidata.org/entity/Q6377395"}, "Published": {"type": "literal", "value": "2012|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q20442589"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2011 film by Jay Duplass, Mark Duplass"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17415951|http://www.wikidata.org/entity/Q922453"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1758576"}, "Title": {"type": "literal", "value": "Klovn - The Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12327179"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3362230|http://www.wikidata.org/entity/Q3362157|http://www.wikidata.org/entity/Q12327179"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11213025|http://www.wikidata.org/entity/Q7177030|http://www.wikidata.org/entity/Q4994583|http://www.wikidata.org/entity/Q4859424|http://www.wikidata.org/entity/Q3470768|http://www.wikidata.org/entity/Q3427562|http://www.wikidata.org/entity/Q3424845|http://www.wikidata.org/entity/Q12337732|http://www.wikidata.org/entity/Q12333679|http://www.wikidata.org/entity/Q12333677|http://www.wikidata.org/entity/Q12332902|http://www.wikidata.org/entity/Q12330120|http://www.wikidata.org/entity/Q12328938|http://www.wikidata.org/entity/Q12327107|http://www.wikidata.org/entity/Q12326969|http://www.wikidata.org/entity/Q12325632|http://www.wikidata.org/entity/Q12321425|http://www.wikidata.org/entity/Q12317325|http://www.wikidata.org/entity/Q12315997|http://www.wikidata.org/entity/Q11989253|http://www.wikidata.org/entity/Q3372515|http://www.wikidata.org/entity/Q3362230|http://www.wikidata.org/entity/Q3362157|http://www.wikidata.org/entity/Q40011970|http://www.wikidata.org/entity/Q38471193|http://www.wikidata.org/entity/Q38052739|http://www.wikidata.org/entity/Q38052488|http://www.wikidata.org/entity/Q37491261|http://www.wikidata.org/entity/Q37491252|http://www.wikidata.org/entity/Q37491242|http://www.wikidata.org/entity/Q37491133|http://www.wikidata.org/entity/Q35985836|http://www.wikidata.org/entity/Q16324112|http://www.wikidata.org/entity/Q12339410|http://www.wikidata.org/entity/Q2211149|http://www.wikidata.org/entity/Q1747857|http://www.wikidata.org/entity/Q1406018|http://www.wikidata.org/entity/Q1344849|http://www.wikidata.org/entity/Q712364|http://www.wikidata.org/entity/Q562108|http://www.wikidata.org/entity/Q517584|http://www.wikidata.org/entity/Q481341|http://www.wikidata.org/entity/Q435097|http://www.wikidata.org/entity/Q425708|http://www.wikidata.org/entity/Q371066|http://www.wikidata.org/entity/Q327125|http://www.wikidata.org/entity/Q232517|http://www.wikidata.org/entity/Q41236675|http://www.wikidata.org/entity/Q40523806|http://www.wikidata.org/entity/Q40523719|http://www.wikidata.org/entity/Q40523713|http://www.wikidata.org/entity/Q40523707"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Mikkel N\u00f8rgaard"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191158"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q813464"}, "Title": {"type": "literal", "value": "Beauty Shop"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1058003"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16204246"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3454165|http://www.wikidata.org/entity/Q3020038|http://www.wikidata.org/entity/Q1706191|http://www.wikidata.org/entity/Q1381384|http://www.wikidata.org/entity/Q1322677|http://www.wikidata.org/entity/Q1112005|http://www.wikidata.org/entity/Q556868|http://www.wikidata.org/entity/Q536030|http://www.wikidata.org/entity/Q526620|http://www.wikidata.org/entity/Q459125|http://www.wikidata.org/entity/Q454412|http://www.wikidata.org/entity/Q298682|http://www.wikidata.org/entity/Q274187|http://www.wikidata.org/entity/Q268549|http://www.wikidata.org/entity/Q238361|http://www.wikidata.org/entity/Q229254|http://www.wikidata.org/entity/Q223303|http://www.wikidata.org/entity/Q208558|http://www.wikidata.org/entity/Q199945|http://www.wikidata.org/entity/Q4757751|http://www.wikidata.org/entity/Q4681882"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2005 film by Bille Woodruff"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q179200"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42533880"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10858622"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Mehran Ahmadi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q9131931"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11790089"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Nathan Bexton"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27996400"}, "Title": {"type": "literal", "value": "Entrando Numa Roubada"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9614493"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "77"}, "Description": {"type": "literal", "value": "2015 film by Andr\u00e9 Moraes"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27958047"}, "Title": {"type": "literal", "value": "Landline"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18153579"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18153579"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6166571|http://www.wikidata.org/entity/Q5450687|http://www.wikidata.org/entity/Q744166|http://www.wikidata.org/entity/Q450322|http://www.wikidata.org/entity/Q244234|http://www.wikidata.org/entity/Q229034"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Gillian Robespierre"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22194440"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4078806"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Aleksandr Barshak"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4659855"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6389380"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6389380"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11660867"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 Japanese film directed by Kenji Uchida"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6164695"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17385584"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5276830"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Anurag Singh"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q46996014"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29014729"}, "Title": {"type": "literal", "value": "Der Hund begraben"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29014731"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29014731"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15669923|http://www.wikidata.org/entity/Q1905235|http://www.wikidata.org/entity/Q1696908|http://www.wikidata.org/entity/Q1504267|http://www.wikidata.org/entity/Q1395238|http://www.wikidata.org/entity/Q1272182|http://www.wikidata.org/entity/Q1200871|http://www.wikidata.org/entity/Q1080329|http://www.wikidata.org/entity/Q67917|http://www.wikidata.org/entity/Q63450"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Sebastian Stern"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6932119"}, "Title": {"type": "literal", "value": "Muggers"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19872804"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7028977|http://www.wikidata.org/entity/Q6006384|http://www.wikidata.org/entity/Q1683873"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2000 film by Dean Murphy"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1182609"}, "Title": {"type": "literal", "value": "Defendor"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q552726"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q552726"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7688099|http://www.wikidata.org/entity/Q7364531|http://www.wikidata.org/entity/Q3441473|http://www.wikidata.org/entity/Q1095721|http://www.wikidata.org/entity/Q719556|http://www.wikidata.org/entity/Q552726|http://www.wikidata.org/entity/Q447165|http://www.wikidata.org/entity/Q440368|http://www.wikidata.org/entity/Q379808|http://www.wikidata.org/entity/Q292949|http://www.wikidata.org/entity/Q241497|http://www.wikidata.org/entity/Q231751|http://www.wikidata.org/entity/Q201279|http://www.wikidata.org/entity/Q40337"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1535153|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2009 film by Peter Stebbings"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1607312|http://www.wikidata.org/entity/Q5222926"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21427763"}, "Title": {"type": "literal", "value": "Pattaya"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3082139"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3501866|http://www.wikidata.org/entity/Q3082139"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23008546|http://www.wikidata.org/entity/Q3418669|http://www.wikidata.org/entity/Q3086968|http://www.wikidata.org/entity/Q3082139|http://www.wikidata.org/entity/Q436888|http://www.wikidata.org/entity/Q318991"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Franck Gastambide"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18611372"}, "Title": {"type": "literal", "value": "Fat Pizza vs. Housos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7150609"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7150609"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7150609"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Paul Fenech"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6959854"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4648383"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4648383"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3165960|http://www.wikidata.org/entity/Q331050"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by A. Sarkunam"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26769588"}, "Title": {"type": "literal", "value": "SMS f\u00fcr Dich"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61099"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61099"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18411528|http://www.wikidata.org/entity/Q17418173|http://www.wikidata.org/entity/Q1342322|http://www.wikidata.org/entity/Q111879|http://www.wikidata.org/entity/Q106781|http://www.wikidata.org/entity/Q101768|http://www.wikidata.org/entity/Q77781|http://www.wikidata.org/entity/Q70775|http://www.wikidata.org/entity/Q63228|http://www.wikidata.org/entity/Q62929|http://www.wikidata.org/entity/Q62346|http://www.wikidata.org/entity/Q61099"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "2016 film by Karoline Herfurth"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q46909375"}, "Title": {"type": "literal", "value": "Finnischer Tango"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q104744"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1681609"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1937880|http://www.wikidata.org/entity/Q1163254|http://www.wikidata.org/entity/Q1084549|http://www.wikidata.org/entity/Q104094"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Buket Alaku\u015f"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26723800"}, "Title": {"type": "literal", "value": "Luokkakokous 2 \u2013 Polttarit"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23040730"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Taneli Mustonen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12148714"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q47069159"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q47069159"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q62392156|http://www.wikidata.org/entity/Q17521982|http://www.wikidata.org/entity/Q710650|http://www.wikidata.org/entity/Q510002"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film directed by Am\u00e9lie Van Elmbt"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1346335"}, "Title": {"type": "literal", "value": "Salami Aleikum"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1679707"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15842683|http://www.wikidata.org/entity/Q2343282|http://www.wikidata.org/entity/Q1972418|http://www.wikidata.org/entity/Q1379349|http://www.wikidata.org/entity/Q559888|http://www.wikidata.org/entity/Q98976|http://www.wikidata.org/entity/Q90118|http://www.wikidata.org/entity/Q88891|http://www.wikidata.org/entity/Q88796|http://www.wikidata.org/entity/Q2518"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2009 film by Ali Samadi Ahadi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13619743"}, "Title": {"type": "literal", "value": "Minions"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20666333|http://www.wikidata.org/entity/Q3384479"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4964545"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q258503|http://www.wikidata.org/entity/Q235415|http://www.wikidata.org/entity/Q229487|http://www.wikidata.org/entity/Q216221|http://www.wikidata.org/entity/Q166272|http://www.wikidata.org/entity/Q138005|http://www.wikidata.org/entity/Q40791|http://www.wikidata.org/entity/Q4029|http://www.wikidata.org/entity/Q1075796|http://www.wikidata.org/entity/Q773512|http://www.wikidata.org/entity/Q705522|http://www.wikidata.org/entity/Q526886|http://www.wikidata.org/entity/Q465571|http://www.wikidata.org/entity/Q446290|http://www.wikidata.org/entity/Q351884|http://www.wikidata.org/entity/Q316709|http://www.wikidata.org/entity/Q313107|http://www.wikidata.org/entity/Q310292|http://www.wikidata.org/entity/Q271627|http://www.wikidata.org/entity/Q261865|http://www.wikidata.org/entity/Q21032345|http://www.wikidata.org/entity/Q20666333|http://www.wikidata.org/entity/Q18637051|http://www.wikidata.org/entity/Q15427207|http://www.wikidata.org/entity/Q8019684|http://www.wikidata.org/entity/Q7495420|http://www.wikidata.org/entity/Q6536830|http://www.wikidata.org/entity/Q6132327|http://www.wikidata.org/entity/Q6060442|http://www.wikidata.org/entity/Q5525531|http://www.wikidata.org/entity/Q5416177|http://www.wikidata.org/entity/Q5410056|http://www.wikidata.org/entity/Q4719865|http://www.wikidata.org/entity/Q4280417|http://www.wikidata.org/entity/Q3384479|http://www.wikidata.org/entity/Q3015280|http://www.wikidata.org/entity/Q2748093|http://www.wikidata.org/entity/Q2639476|http://www.wikidata.org/entity/Q1582689|http://www.wikidata.org/entity/Q1408782|http://www.wikidata.org/entity/Q1364909"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q496523|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2015 animated film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1189512"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4185448"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7146964|http://www.wikidata.org/entity/Q445608"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8971735"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16781"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Eric Tsang, Patrick Kong"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q947354"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10496806"}, "Title": {"type": "literal", "value": "Flimmer"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5630110"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5630110"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15989117|http://www.wikidata.org/entity/Q6198216|http://www.wikidata.org/entity/Q6094705|http://www.wikidata.org/entity/Q6082889|http://www.wikidata.org/entity/Q6014820|http://www.wikidata.org/entity/Q5808244|http://www.wikidata.org/entity/Q4983800|http://www.wikidata.org/entity/Q4972763|http://www.wikidata.org/entity/Q4961027|http://www.wikidata.org/entity/Q4951728|http://www.wikidata.org/entity/Q4569429|http://www.wikidata.org/entity/Q4410921|http://www.wikidata.org/entity/Q2035589|http://www.wikidata.org/entity/Q718280|http://www.wikidata.org/entity/Q462513"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Patrik Eklund"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7897087"}, "Title": {"type": "literal", "value": "Unmade Beds"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2834494"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5796995|http://www.wikidata.org/entity/Q2262485|http://www.wikidata.org/entity/Q239498"}, "Published": {"type": "literal", "value": "2010|2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Alexis Dos Santos"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5492613"}, "Title": {"type": "literal", "value": "Franti\u0161ek je d\u011bvka\u0159"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15042966"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15042966"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23767040|http://www.wikidata.org/entity/Q18746143|http://www.wikidata.org/entity/Q17312097|http://www.wikidata.org/entity/Q12045111|http://www.wikidata.org/entity/Q12035516|http://www.wikidata.org/entity/Q12033020|http://www.wikidata.org/entity/Q12026516|http://www.wikidata.org/entity/Q11052902|http://www.wikidata.org/entity/Q10861555|http://www.wikidata.org/entity/Q3646680|http://www.wikidata.org/entity/Q3496566|http://www.wikidata.org/entity/Q1449324|http://www.wikidata.org/entity/Q168916|http://www.wikidata.org/entity/Q32787"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2008 film by Jan Pru\u0161inovsk\u00fd"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4901653"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7399012"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7285873|http://www.wikidata.org/entity/Q3595440|http://www.wikidata.org/entity/Q3595187|http://www.wikidata.org/entity/Q3181904|http://www.wikidata.org/entity/Q929422"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Sagar Ballary"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12126738"}, "Title": {"type": "literal", "value": "On the Ropes"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6769057"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6769057"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6769057|http://www.wikidata.org/entity/Q4886460"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1339864|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Mark Noyce"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q759928"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1176505"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q167090"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q167090"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 television film directed by David Schalko"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8073"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1073297"}, "Title": {"type": "literal", "value": "Kontroll"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q771774"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q771774"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9255590|http://www.wikidata.org/entity/Q1293524|http://www.wikidata.org/entity/Q1286036|http://www.wikidata.org/entity/Q1236180|http://www.wikidata.org/entity/Q1212670|http://www.wikidata.org/entity/Q1120300|http://www.wikidata.org/entity/Q875366|http://www.wikidata.org/entity/Q853217|http://www.wikidata.org/entity/Q821377|http://www.wikidata.org/entity/Q788367|http://www.wikidata.org/entity/Q733755|http://www.wikidata.org/entity/Q714954|http://www.wikidata.org/entity/Q635640|http://www.wikidata.org/entity/Q222704"}, "Published": {"type": "literal", "value": "2005|2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2003 Hungarian film directed by Nimr\u00f3d Antal"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18633960"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2906097"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2906097"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3350865"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Blandine Lenoir"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3905599"}, "Title": {"type": "literal", "value": "Pirates of Treasure Island"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q705047"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7817001|http://www.wikidata.org/entity/Q4236621|http://www.wikidata.org/entity/Q705047|http://www.wikidata.org/entity/Q312077"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2006 film by Leigh Scott"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1459090"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18703094"}, "Title": {"type": "literal", "value": "Captain Fantastic"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1190406"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1190406"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4767833|http://www.wikidata.org/entity/Q2558129|http://www.wikidata.org/entity/Q491775|http://www.wikidata.org/entity/Q310944|http://www.wikidata.org/entity/Q271986|http://www.wikidata.org/entity/Q233786|http://www.wikidata.org/entity/Q171363"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q1054574"}, "Duration": {"type": "literal", "value": "118"}, "Description": {"type": "literal", "value": "2016 film by Matt Ross"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q54152498"}, "Title": {"type": "literal", "value": "Back for Good"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q45352058"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Mia Spengler"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q115749"}, "Title": {"type": "literal", "value": "\u0e01\u0e27\u0e19 \u0e21\u0e36\u0e19 \u0e42\u0e2e"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q636817"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4919112"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Banjong Pisanthanakun"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5395573"}, "Title": {"type": "literal", "value": "Perico Ripiao"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28028515"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26250785"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4237364"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13218075|http://www.wikidata.org/entity/Q4526492|http://www.wikidata.org/entity/Q4228271"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2016 film by Marija Krawtschenko"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4504080"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6378736"}, "Title": {"type": "literal", "value": "Free Birds"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3808425"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q354010"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2013 American 3D computer-animated buddy comedy film directed by Jimmy Hayward"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7306853"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25433007"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6564971"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Afshin Hashemi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28496979"}, "Title": {"type": "literal", "value": "Mutafukaz"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11629499|http://www.wikidata.org/entity/Q3453195"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3453195"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94|90"}, "Description": {"type": "literal", "value": "2017 Franco-Japanese animated film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24937949|http://www.wikidata.org/entity/Q182361"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14755359"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5875129"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2828957"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Hamed Kolahdari"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q911520"}, "Title": {"type": "literal", "value": "The Switch"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8003113|http://www.wikidata.org/entity/Q24204"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4730790"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1255263|http://www.wikidata.org/entity/Q435183|http://www.wikidata.org/entity/Q351290|http://www.wikidata.org/entity/Q20727848|http://www.wikidata.org/entity/Q8003135|http://www.wikidata.org/entity/Q7436297|http://www.wikidata.org/entity/Q4078477|http://www.wikidata.org/entity/Q2438469|http://www.wikidata.org/entity/Q284636|http://www.wikidata.org/entity/Q230523|http://www.wikidata.org/entity/Q106706|http://www.wikidata.org/entity/Q32522"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q860626"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2010 film by Josh Gordon, Will Speck"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5368270"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1133772"}, "Title": {"type": "literal", "value": "Napoleon Dynamite"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2480656"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2480656|http://www.wikidata.org/entity/Q3177537"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2745996|http://www.wikidata.org/entity/Q1319770|http://www.wikidata.org/entity/Q969305|http://www.wikidata.org/entity/Q5372405|http://www.wikidata.org/entity/Q3482458|http://www.wikidata.org/entity/Q527402|http://www.wikidata.org/entity/Q449947|http://www.wikidata.org/entity/Q392370|http://www.wikidata.org/entity/Q392126|http://www.wikidata.org/entity/Q234321|http://www.wikidata.org/entity/Q229038"}, "Published": {"type": "literal", "value": "2004|2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q1146335"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "2004 film by Jared Hess"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q159846|http://www.wikidata.org/entity/Q953040|http://www.wikidata.org/entity/Q1111024|http://www.wikidata.org/entity/Q2330632"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5564453"}, "Title": {"type": "literal", "value": "Girl Walks into a Bar"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3476873"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3476873"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16830404|http://www.wikidata.org/entity/Q5525271|http://www.wikidata.org/entity/Q367155|http://www.wikidata.org/entity/Q361610|http://www.wikidata.org/entity/Q360313|http://www.wikidata.org/entity/Q321770|http://www.wikidata.org/entity/Q311517|http://www.wikidata.org/entity/Q303957|http://www.wikidata.org/entity/Q298173|http://www.wikidata.org/entity/Q262182|http://www.wikidata.org/entity/Q233707|http://www.wikidata.org/entity/Q228871|http://www.wikidata.org/entity/Q228692|http://www.wikidata.org/entity/Q192887|http://www.wikidata.org/entity/Q139642|http://www.wikidata.org/entity/Q133820|http://www.wikidata.org/entity/Q26806"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Sebastian Gutierrez"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q35919|http://www.wikidata.org/entity/Q6184876"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q63213666"}, "Title": {"type": "literal", "value": "La Belle \u00c9poque"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q741655"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q741655"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17173840|http://www.wikidata.org/entity/Q15970719|http://www.wikidata.org/entity/Q3385026|http://www.wikidata.org/entity/Q3037010|http://www.wikidata.org/entity/Q1930523|http://www.wikidata.org/entity/Q1328973|http://www.wikidata.org/entity/Q1187592|http://www.wikidata.org/entity/Q642952|http://www.wikidata.org/entity/Q314403|http://www.wikidata.org/entity/Q123135|http://www.wikidata.org/entity/Q106349|http://www.wikidata.org/entity/Q106303"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Nicolas Bedos"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3232650"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6095528"}, "Title": {"type": "literal", "value": "Qu\u00e9 pena tu familia"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3876520"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Nicol\u00e1s L\u00f3pez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q621493"}, "Title": {"type": "literal", "value": "Observe and Report"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1691304"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1691304"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18666096|http://www.wikidata.org/entity/Q5213110|http://www.wikidata.org/entity/Q3218835|http://www.wikidata.org/entity/Q2604240|http://www.wikidata.org/entity/Q1138674|http://www.wikidata.org/entity/Q816440|http://www.wikidata.org/entity/Q374065|http://www.wikidata.org/entity/Q369482|http://www.wikidata.org/entity/Q359488|http://www.wikidata.org/entity/Q336400|http://www.wikidata.org/entity/Q289931|http://www.wikidata.org/entity/Q220308|http://www.wikidata.org/entity/Q211280|http://www.wikidata.org/entity/Q4491"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2009 film by Jody Hill"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q621364"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2126333"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20895357"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2193799"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192881"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Remy van Heugten"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3076144"}, "Title": {"type": "literal", "value": "Women in Trouble"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3476873"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3476873"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1026018|http://www.wikidata.org/entity/Q450219|http://www.wikidata.org/entity/Q298173|http://www.wikidata.org/entity/Q262278|http://www.wikidata.org/entity/Q242451|http://www.wikidata.org/entity/Q235519|http://www.wikidata.org/entity/Q235072|http://www.wikidata.org/entity/Q234809|http://www.wikidata.org/entity/Q228871|http://www.wikidata.org/entity/Q192021|http://www.wikidata.org/entity/Q177311|http://www.wikidata.org/entity/Q129831|http://www.wikidata.org/entity/Q41396"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Sebastian Gutierrez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19835423"}, "Title": {"type": "literal", "value": "Bestefreunde"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23394645|http://www.wikidata.org/entity/Q1702949"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21517831|http://www.wikidata.org/entity/Q19644769|http://www.wikidata.org/entity/Q19513797|http://www.wikidata.org/entity/Q18543092|http://www.wikidata.org/entity/Q2803266|http://www.wikidata.org/entity/Q2263101|http://www.wikidata.org/entity/Q1755401|http://www.wikidata.org/entity/Q1736008|http://www.wikidata.org/entity/Q1669869|http://www.wikidata.org/entity/Q1271849|http://www.wikidata.org/entity/Q879361|http://www.wikidata.org/entity/Q110455|http://www.wikidata.org/entity/Q78121"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2014 film by Jonas Grosch, Carlos Val"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6164662"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17180936"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17180936"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13116685|http://www.wikidata.org/entity/Q4901125|http://www.wikidata.org/entity/Q2190510"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Kedar Shinde"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q807818"}, "Title": {"type": "literal", "value": "Barbershop"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2005037"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q691227"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6473264|http://www.wikidata.org/entity/Q2002151|http://www.wikidata.org/entity/Q959052|http://www.wikidata.org/entity/Q918866|http://www.wikidata.org/entity/Q786003|http://www.wikidata.org/entity/Q492327|http://www.wikidata.org/entity/Q370918|http://www.wikidata.org/entity/Q313918|http://www.wikidata.org/entity/Q239464|http://www.wikidata.org/entity/Q173637"}, "Published": {"type": "literal", "value": "2003|2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2002 film by Tim Story"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q179200|http://www.wikidata.org/entity/Q17387250"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6018359"}, "Title": {"type": "literal", "value": "Signora Enrica"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19610488"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19610488"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8080207|http://www.wikidata.org/entity/Q6852801|http://www.wikidata.org/entity/Q6082171|http://www.wikidata.org/entity/Q6067678|http://www.wikidata.org/entity/Q107006|http://www.wikidata.org/entity/Q77665"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Ali \u0130lhan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18401829"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4400034"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4400034"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3015088|http://www.wikidata.org/entity/Q167548"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2015 film by Pavel Ruminov"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61002332"}, "Title": {"type": "literal", "value": "K\u00f6lcs\u00f6nlak\u00e1s"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q443466"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q939790|http://www.wikidata.org/entity/Q2659732"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Kata Dob\u00f3"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11791207"}, "Title": {"type": "literal", "value": "Nie panikuj!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9174981"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9174981"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9282182"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Bodo Kox"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14970681"}, "Title": {"type": "literal", "value": "10 pravidel jak sbalit holku"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12028282"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12028282|http://www.wikidata.org/entity/Q1879810|http://www.wikidata.org/entity/Q1140352"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23054723|http://www.wikidata.org/entity/Q12769716|http://www.wikidata.org/entity/Q12058704|http://www.wikidata.org/entity/Q12032655|http://www.wikidata.org/entity/Q12028282|http://www.wikidata.org/entity/Q12022477|http://www.wikidata.org/entity/Q12022294|http://www.wikidata.org/entity/Q11879923|http://www.wikidata.org/entity/Q10853489|http://www.wikidata.org/entity/Q6787760|http://www.wikidata.org/entity/Q555628"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Karel Jan\u00e1k"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15709915"}, "Title": {"type": "literal", "value": "\u0411\u044b\u0441\u0442\u0440\u0435\u0435, \u0447\u0435\u043c \u043a\u0440\u043e\u043b\u0438\u043a\u0438"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4171916"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4494681|http://www.wikidata.org/entity/Q4077949"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4494681|http://www.wikidata.org/entity/Q4254527|http://www.wikidata.org/entity/Q4245104|http://www.wikidata.org/entity/Q4193375|http://www.wikidata.org/entity/Q4157470|http://www.wikidata.org/entity/Q4077949|http://www.wikidata.org/entity/Q2029106"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Dmitriy Dyachenko"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15839083"}, "Title": {"type": "literal", "value": "La mafia uccide solo d\u2019estate"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3904894"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3846260|http://www.wikidata.org/entity/Q3904894"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3852645|http://www.wikidata.org/entity/Q3712957|http://www.wikidata.org/entity/Q3680061|http://www.wikidata.org/entity/Q3634692|http://www.wikidata.org/entity/Q1993073|http://www.wikidata.org/entity/Q291413|http://www.wikidata.org/entity/Q16487926|http://www.wikidata.org/entity/Q3904894"}, "Published": {"type": "literal", "value": "2013|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2013 film directed by Pif"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3929491|http://www.wikidata.org/entity/Q4019806"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q8452990"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15042966"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28804044|http://www.wikidata.org/entity/Q15042966"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q33435887|http://www.wikidata.org/entity/Q14917610|http://www.wikidata.org/entity/Q12044352|http://www.wikidata.org/entity/Q12044114|http://www.wikidata.org/entity/Q12041042|http://www.wikidata.org/entity/Q12035516|http://www.wikidata.org/entity/Q12033020|http://www.wikidata.org/entity/Q12032493|http://www.wikidata.org/entity/Q12024203|http://www.wikidata.org/entity/Q12024009|http://www.wikidata.org/entity/Q33436049|http://www.wikidata.org/entity/Q33436012|http://www.wikidata.org/entity/Q12022549|http://www.wikidata.org/entity/Q11985744|http://www.wikidata.org/entity/Q11985642|http://www.wikidata.org/entity/Q11774384|http://www.wikidata.org/entity/Q10769440|http://www.wikidata.org/entity/Q3563221|http://www.wikidata.org/entity/Q3490854|http://www.wikidata.org/entity/Q32787"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1339864|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Jan Pru\u0161inovsk\u00fd"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7766214"}, "Title": {"type": "literal", "value": "The Stand Up"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5240999"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1189378|http://www.wikidata.org/entity/Q403902|http://www.wikidata.org/entity/Q240206"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by David Wexler"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1306433"}, "Title": {"type": "literal", "value": "Eine Insel namens Udo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1901804"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q110569"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2011 film by Markus Sehr"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7112943"}, "Title": {"type": "literal", "value": "Outside Bet"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7396645"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11849729|http://www.wikidata.org/entity/Q915916|http://www.wikidata.org/entity/Q234883|http://www.wikidata.org/entity/Q211283"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Sacha Bennett"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15878944"}, "Title": {"type": "literal", "value": "M.A.N."}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q42315866"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q42315866"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4952999|http://www.wikidata.org/entity/Q2832711|http://www.wikidata.org/entity/Q2629719|http://www.wikidata.org/entity/Q2625699|http://www.wikidata.org/entity/Q2508984|http://www.wikidata.org/entity/Q1235490|http://www.wikidata.org/entity/Q82302"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2009 film directed by Robert Matser"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2605395"}, "Title": {"type": "literal", "value": "Moving McAllister"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2846563"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q213574|http://www.wikidata.org/entity/Q139906|http://www.wikidata.org/entity/Q37628|http://www.wikidata.org/entity/Q6780492|http://www.wikidata.org/entity/Q562257|http://www.wikidata.org/entity/Q542810|http://www.wikidata.org/entity/Q446968|http://www.wikidata.org/entity/Q392370|http://www.wikidata.org/entity/Q318231"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Andrew Black"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5102945"}, "Title": {"type": "literal", "value": "Chlorine"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6166319"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q229572"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Jay Alaimo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q45394"}, "Title": {"type": "literal", "value": "The Cabin in the Woods"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q922368"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q922368|http://www.wikidata.org/entity/Q298025"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q102124|http://www.wikidata.org/entity/Q54314|http://www.wikidata.org/entity/Q40046|http://www.wikidata.org/entity/Q313043|http://www.wikidata.org/entity/Q152773|http://www.wikidata.org/entity/Q144785|http://www.wikidata.org/entity/Q3013171|http://www.wikidata.org/entity/Q2464295|http://www.wikidata.org/entity/Q2405582|http://www.wikidata.org/entity/Q2240987|http://www.wikidata.org/entity/Q1762270|http://www.wikidata.org/entity/Q1320939|http://www.wikidata.org/entity/Q1069031|http://www.wikidata.org/entity/Q955080|http://www.wikidata.org/entity/Q512751|http://www.wikidata.org/entity/Q434572|http://www.wikidata.org/entity/Q352180|http://www.wikidata.org/entity/Q15288220|http://www.wikidata.org/entity/Q7704857|http://www.wikidata.org/entity/Q3900877"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q3072049|http://www.wikidata.org/entity/Q1342372"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2012 film by Drew Goddard"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q179200|http://www.wikidata.org/entity/Q219400|http://www.wikidata.org/entity/Q645478"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2411031"}, "Title": {"type": "literal", "value": "The Elder Son"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4102539"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4102539|http://www.wikidata.org/entity/Q1706297"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1421824|http://www.wikidata.org/entity/Q451894|http://www.wikidata.org/entity/Q434291|http://www.wikidata.org/entity/Q239415|http://www.wikidata.org/entity/Q235141|http://www.wikidata.org/entity/Q229228"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192881|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2006 film by Marius Vaisbergas"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q31197355"}, "Title": {"type": "literal", "value": "\u05d4\u05d0\u05d5\u05e6\u05e8 \u05de\u05e2\u05d1\u05e8 \u05dc\u05e0\u05d4\u05e8"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6781975"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12403899"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "2016 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3820055"}, "Title": {"type": "literal", "value": "L'uomo in pi\u00f9"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q374678"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q374678"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3972275|http://www.wikidata.org/entity/Q3941338|http://www.wikidata.org/entity/Q3938749|http://www.wikidata.org/entity/Q3899378|http://www.wikidata.org/entity/Q3874482|http://www.wikidata.org/entity/Q3850566|http://www.wikidata.org/entity/Q3804389|http://www.wikidata.org/entity/Q3741928|http://www.wikidata.org/entity/Q3725569|http://www.wikidata.org/entity/Q3681203|http://www.wikidata.org/entity/Q3615988|http://www.wikidata.org/entity/Q3615833|http://www.wikidata.org/entity/Q2849376|http://www.wikidata.org/entity/Q1993073|http://www.wikidata.org/entity/Q603089"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2001 film by Paolo Sorrentino"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56260843"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27656966"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17517127|http://www.wikidata.org/entity/Q7246507"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Nepalese film directed by Deepa Shree Niraula"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6690863"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7146964"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7146964"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q724246"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Patrick Kong"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15961712"}, "Title": {"type": "literal", "value": "The Stag"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30123055"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2655230"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2013 film by John Butler"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q44935"}, "Title": {"type": "literal", "value": "New York, I Love You"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q724208|http://www.wikidata.org/entity/Q716069|http://www.wikidata.org/entity/Q522232|http://www.wikidata.org/entity/Q466320|http://www.wikidata.org/entity/Q319204|http://www.wikidata.org/entity/Q77061|http://www.wikidata.org/entity/Q37876|http://www.wikidata.org/entity/Q13639108|http://www.wikidata.org/entity/Q2638168|http://www.wikidata.org/entity/Q1708588|http://www.wikidata.org/entity/Q1323347"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q511864|http://www.wikidata.org/entity/Q188726|http://www.wikidata.org/entity/Q77061|http://www.wikidata.org/entity/Q37876|http://www.wikidata.org/entity/Q1708588|http://www.wikidata.org/entity/Q1323347|http://www.wikidata.org/entity/Q771104|http://www.wikidata.org/entity/Q724208|http://www.wikidata.org/entity/Q3806481"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q37876|http://www.wikidata.org/entity/Q44467|http://www.wikidata.org/entity/Q162959|http://www.wikidata.org/entity/Q110379|http://www.wikidata.org/entity/Q104067|http://www.wikidata.org/entity/Q95043|http://www.wikidata.org/entity/Q533369|http://www.wikidata.org/entity/Q484615|http://www.wikidata.org/entity/Q360927|http://www.wikidata.org/entity/Q329700|http://www.wikidata.org/entity/Q314133|http://www.wikidata.org/entity/Q273208|http://www.wikidata.org/entity/Q184103|http://www.wikidata.org/entity/Q180942|http://www.wikidata.org/entity/Q181413|http://www.wikidata.org/entity/Q192812|http://www.wikidata.org/entity/Q200405|http://www.wikidata.org/entity/Q205707|http://www.wikidata.org/entity/Q220949|http://www.wikidata.org/entity/Q230131|http://www.wikidata.org/entity/Q232965|http://www.wikidata.org/entity/Q189415|http://www.wikidata.org/entity/Q242550|http://www.wikidata.org/entity/Q260184|http://www.wikidata.org/entity/Q272972|http://www.wikidata.org/entity/Q233859|http://www.wikidata.org/entity/Q241268|http://www.wikidata.org/entity/Q720344|http://www.wikidata.org/entity/Q932718|http://www.wikidata.org/entity/Q2397879|http://www.wikidata.org/entity/Q614774"}, "Published": {"type": "literal", "value": "2009|2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q336144|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2009 anthology film directed by Fatih Ak\u0131n and 10 others"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5610650"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1321885"}, "Title": {"type": "literal", "value": "Nichts bereuen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q817657"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1605051"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1082059|http://www.wikidata.org/entity/Q124451|http://www.wikidata.org/entity/Q75187|http://www.wikidata.org/entity/Q71673|http://www.wikidata.org/entity/Q68928|http://www.wikidata.org/entity/Q58592|http://www.wikidata.org/entity/Q17537081|http://www.wikidata.org/entity/Q1897156|http://www.wikidata.org/entity/Q1733298|http://www.wikidata.org/entity/Q1605051"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2001 film by Benjamin Quabeck"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q151946"}, "Title": {"type": "literal", "value": "Eight Legged Freaks"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1332531"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4818612|http://www.wikidata.org/entity/Q1332531"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6259311|http://www.wikidata.org/entity/Q3099585|http://www.wikidata.org/entity/Q2151597|http://www.wikidata.org/entity/Q1339951|http://www.wikidata.org/entity/Q1190148|http://www.wikidata.org/entity/Q943237|http://www.wikidata.org/entity/Q713640|http://www.wikidata.org/entity/Q453906|http://www.wikidata.org/entity/Q448755|http://www.wikidata.org/entity/Q438537|http://www.wikidata.org/entity/Q296577|http://www.wikidata.org/entity/Q294185|http://www.wikidata.org/entity/Q238045|http://www.wikidata.org/entity/Q34436"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1342372|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2002 American horror-comedy film directed by Ellory Elkayem"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5063029|http://www.wikidata.org/entity/Q126399|http://www.wikidata.org/entity/Q622668"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2910415"}, "Title": {"type": "literal", "value": "Boog and Elliot's Midnight Bun Run"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6192787|http://www.wikidata.org/entity/Q4773504"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q975652|http://www.wikidata.org/entity/Q320232|http://www.wikidata.org/entity/Q183542|http://www.wikidata.org/entity/Q164782|http://www.wikidata.org/entity/Q125237"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Jill Culton, Anthony Stacchi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1416835"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30763298"}, "Title": {"type": "literal", "value": "Napapiirin sankarit 3"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1261910"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5411720"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11892451|http://www.wikidata.org/entity/Q11222319|http://www.wikidata.org/entity/Q6303995|http://www.wikidata.org/entity/Q3742931|http://www.wikidata.org/entity/Q468517"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2017 Finnish film directed by Tiina Lymi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11902589"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3208922"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1248032"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12720629"}, "Published": {"type": "literal", "value": "2010|2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Radu Jude"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19824626"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q115106"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q59449118|http://www.wikidata.org/entity/Q1497377"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2016 film by Stefan J\u00e4ger"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28497237"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15070019"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15176485"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3525573"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Alexandre Coffre"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3071502"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3223019"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3479503"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3479503"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3591048|http://www.wikidata.org/entity/Q3501677|http://www.wikidata.org/entity/Q3421723|http://www.wikidata.org/entity/Q3292402|http://www.wikidata.org/entity/Q3189147|http://www.wikidata.org/entity/Q3174428|http://www.wikidata.org/entity/Q2926620|http://www.wikidata.org/entity/Q1433258|http://www.wikidata.org/entity/Q1351000|http://www.wikidata.org/entity/Q451817|http://www.wikidata.org/entity/Q280445"}, "Published": {"type": "literal", "value": "1985"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1985 film by Serge P\u00e9nard"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23070957"}, "Title": {"type": "literal", "value": "\u03a0\u03ad\u03bc\u03c0\u03c4\u03b7 & 12"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16168467"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26690222|http://www.wikidata.org/entity/Q23017549|http://www.wikidata.org/entity/Q20995480|http://www.wikidata.org/entity/Q16168467"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Thanasis Tsaltabasis"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q54850132"}, "Title": {"type": "literal", "value": "Meine teuflisch gute Freundin"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1893857"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2160285|http://www.wikidata.org/entity/Q1893857"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1279837|http://www.wikidata.org/entity/Q449665|http://www.wikidata.org/entity/Q111070|http://www.wikidata.org/entity/Q108942|http://www.wikidata.org/entity/Q106781|http://www.wikidata.org/entity/Q98596|http://www.wikidata.org/entity/Q54243771|http://www.wikidata.org/entity/Q28649684|http://www.wikidata.org/entity/Q23561346|http://www.wikidata.org/entity/Q19958886|http://www.wikidata.org/entity/Q15808026|http://www.wikidata.org/entity/Q2423031|http://www.wikidata.org/entity/Q2020358|http://www.wikidata.org/entity/Q1696765"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2018 film directed by Marco Petry"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6383085"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21572893"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21572893"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014|2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Rusudan Chkonia"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q631463"}, "Title": {"type": "literal", "value": "\u0928\u094b \u090f\u0928\u094d\u091f\u094d\u0930\u0940"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q652149"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q652149"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q834338|http://www.wikidata.org/entity/Q731969|http://www.wikidata.org/entity/Q313956|http://www.wikidata.org/entity/Q292967|http://www.wikidata.org/entity/Q290438|http://www.wikidata.org/entity/Q158214|http://www.wikidata.org/entity/Q48622|http://www.wikidata.org/entity/Q9543"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "158"}, "Description": {"type": "literal", "value": "2005 film by Anees Bazmee"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1696916"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28936736"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28481177"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Geng Jun"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30738269"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3369703"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3554532"}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Patrick Mille"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2315036"}, "Title": {"type": "literal", "value": "Mister Lonely"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q528949"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q528949"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3787526|http://www.wikidata.org/entity/Q2935113|http://www.wikidata.org/entity/Q1261093|http://www.wikidata.org/entity/Q1187498|http://www.wikidata.org/entity/Q737693|http://www.wikidata.org/entity/Q353983|http://www.wikidata.org/entity/Q313462|http://www.wikidata.org/entity/Q313044|http://www.wikidata.org/entity/Q310012|http://www.wikidata.org/entity/Q230190|http://www.wikidata.org/entity/Q60306|http://www.wikidata.org/entity/Q44131"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "2007 film by Harmony Korine"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60393|http://www.wikidata.org/entity/Q282967|http://www.wikidata.org/entity/Q3422434|http://www.wikidata.org/entity/Q5448886"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60500172"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3850996"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3850996"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film by Massimiliano Bruno"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3804257"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7533008"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20913456"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11868061"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Ville Jankeri"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4121268"}, "Title": {"type": "literal", "value": "Brasil Animado"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10326217"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3012041|http://www.wikidata.org/entity/Q343293"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "78"}, "Description": {"type": "literal", "value": "2011 film directed by Mariana Caltabiano"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q9657461"}, "Title": {"type": "literal", "value": "Billi Pig"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10309289"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2011 film by Jos\u00e9 Eduardo Belmonte"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11772214"}, "Title": {"type": "literal", "value": "V\u00fdlet"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3489129"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3489129"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12058898|http://www.wikidata.org/entity/Q12050797|http://www.wikidata.org/entity/Q12024199|http://www.wikidata.org/entity/Q11774157|http://www.wikidata.org/entity/Q5180186|http://www.wikidata.org/entity/Q920040|http://www.wikidata.org/entity/Q734192|http://www.wikidata.org/entity/Q530954|http://www.wikidata.org/entity/Q469601|http://www.wikidata.org/entity/Q440954"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Alice Nellis"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18434835"}, "Title": {"type": "literal", "value": "Reality"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q453691"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q453691"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15122111|http://www.wikidata.org/entity/Q5387705|http://www.wikidata.org/entity/Q3183404|http://www.wikidata.org/entity/Q448021|http://www.wikidata.org/entity/Q392370|http://www.wikidata.org/entity/Q281621|http://www.wikidata.org/entity/Q236138"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2014 French-Belgian comedy-drama film directed by Mr. Oizo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25394455"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4289477"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4289477"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18907601|http://www.wikidata.org/entity/Q15088731|http://www.wikidata.org/entity/Q4519628|http://www.wikidata.org/entity/Q4506333|http://www.wikidata.org/entity/Q4228271|http://www.wikidata.org/entity/Q2665274|http://www.wikidata.org/entity/Q2642325|http://www.wikidata.org/entity/Q2627377|http://www.wikidata.org/entity/Q2373179|http://www.wikidata.org/entity/Q1081714"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Anna Melikian"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q58814912"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1599672"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Marianna Palka"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24308041"}, "Title": {"type": "literal", "value": "Boundaries"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15215623"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15215623"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3052377|http://www.wikidata.org/entity/Q1069031|http://www.wikidata.org/entity/Q646724|http://www.wikidata.org/entity/Q428819|http://www.wikidata.org/entity/Q272927|http://www.wikidata.org/entity/Q264840|http://www.wikidata.org/entity/Q210148|http://www.wikidata.org/entity/Q190523|http://www.wikidata.org/entity/Q187003|http://www.wikidata.org/entity/Q109324|http://www.wikidata.org/entity/Q21116852|http://www.wikidata.org/entity/Q18719290"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q628165"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2018 film by Shana Feste"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7596772"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7737670"}, "Title": {"type": "literal", "value": "The Great Brain"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q48040644"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7143363|http://www.wikidata.org/entity/Q3080456|http://www.wikidata.org/entity/Q1689414|http://www.wikidata.org/entity/Q1101158"}, "Published": {"type": "literal", "value": "1978"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1978 film directed by Sidney Levin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29384719"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16945545"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q270559"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Ivica Zubak"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1289713"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q793700"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 film directed by Zsolt Bern\u00e1th"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q47462207"}, "Title": {"type": "literal", "value": "Der fast perfekte Mann"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q104726"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1895935|http://www.wikidata.org/entity/Q1871731|http://www.wikidata.org/entity/Q108956|http://www.wikidata.org/entity/Q60687"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Vanessa Jopp"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1418881"}, "Title": {"type": "literal", "value": "Fired Up!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2576503"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2576503"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23701740|http://www.wikidata.org/entity/Q13560453|http://www.wikidata.org/entity/Q3876478|http://www.wikidata.org/entity/Q2629672|http://www.wikidata.org/entity/Q2476674|http://www.wikidata.org/entity/Q1532012|http://www.wikidata.org/entity/Q1153513|http://www.wikidata.org/entity/Q967130|http://www.wikidata.org/entity/Q962221|http://www.wikidata.org/entity/Q926963|http://www.wikidata.org/entity/Q559092|http://www.wikidata.org/entity/Q457488|http://www.wikidata.org/entity/Q447669|http://www.wikidata.org/entity/Q444390|http://www.wikidata.org/entity/Q444146|http://www.wikidata.org/entity/Q441451|http://www.wikidata.org/entity/Q438180|http://www.wikidata.org/entity/Q356637|http://www.wikidata.org/entity/Q309503|http://www.wikidata.org/entity/Q269891|http://www.wikidata.org/entity/Q265099|http://www.wikidata.org/entity/Q263748|http://www.wikidata.org/entity/Q242418|http://www.wikidata.org/entity/Q236537|http://www.wikidata.org/entity/Q235797|http://www.wikidata.org/entity/Q230176|http://www.wikidata.org/entity/Q229349|http://www.wikidata.org/entity/Q229036|http://www.wikidata.org/entity/Q202853|http://www.wikidata.org/entity/Q111691|http://www.wikidata.org/entity/Q4058"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2009 film by Will Gluck"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6141556"}, "Title": {"type": "literal", "value": "Tengo algo que decirte"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5155259"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Ana Torres-\u00c1lvarez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1033497"}, "Title": {"type": "literal", "value": "Speed Zone!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6194719"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2331801"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16106236|http://www.wikidata.org/entity/Q7817635|http://www.wikidata.org/entity/Q5292954|http://www.wikidata.org/entity/Q4796868|http://www.wikidata.org/entity/Q3706964|http://www.wikidata.org/entity/Q2237338|http://www.wikidata.org/entity/Q1066454|http://www.wikidata.org/entity/Q930117|http://www.wikidata.org/entity/Q726335|http://www.wikidata.org/entity/Q712457|http://www.wikidata.org/entity/Q546551|http://www.wikidata.org/entity/Q545288|http://www.wikidata.org/entity/Q545172|http://www.wikidata.org/entity/Q508778|http://www.wikidata.org/entity/Q452169|http://www.wikidata.org/entity/Q315123|http://www.wikidata.org/entity/Q312129|http://www.wikidata.org/entity/Q286642|http://www.wikidata.org/entity/Q218532|http://www.wikidata.org/entity/Q193278|http://www.wikidata.org/entity/Q189400|http://www.wikidata.org/entity/Q189067|http://www.wikidata.org/entity/Q131237"}, "Published": {"type": "literal", "value": "1989"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1339864|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "1989 film by Jim Drake"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17103727"}, "Title": {"type": "literal", "value": "Menschenliebe"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18562379"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18562379"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22276920"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "78"}, "Description": {"type": "literal", "value": "2010 film by Alexander Tuschinski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16533832"}, "Title": {"type": "literal", "value": "Boys Like Us"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q94281"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q94281"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18179162|http://www.wikidata.org/entity/Q3107837"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film directed by Patric Chiha"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12021585"}, "Title": {"type": "literal", "value": "Indi\u00e1nsk\u00e9 l\u00e9to"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q709032"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q709032"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q31931838|http://www.wikidata.org/entity/Q448921|http://www.wikidata.org/entity/Q299394"}, "Published": {"type": "literal", "value": "1995"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1995 film by Sa\u0161a Gedeon"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16607971"}, "Title": {"type": "literal", "value": "Mis peores amigos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3876520"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Nicol\u00e1s L\u00f3pez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3604731"}, "Title": {"type": "literal", "value": "\u0421\u043e\u043b\u043e\u0432\u0435\u0439-\u0420\u0430\u0437\u0431\u043e\u0439\u043d\u0438\u043a"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55650688"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q140738"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13218094|http://www.wikidata.org/entity/Q4444774|http://www.wikidata.org/entity/Q1383160|http://www.wikidata.org/entity/Q140738"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21590660|http://www.wikidata.org/entity/Q1200678|http://www.wikidata.org/entity/Q172980|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q53094"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2012 film by Egor Baranov"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4344840"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27914739"}, "Title": {"type": "literal", "value": "\u0644\u0641 \u0648\u062f\u0648\u0631\u0627\u0646"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22928635"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4119541|http://www.wikidata.org/entity/Q591801"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 Egyptian film directed by Khaled Mari"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16830223"}, "Title": {"type": "literal", "value": "100 Pro"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q78367"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q78367"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1872997|http://www.wikidata.org/entity/Q68084"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 film by Simon Verhoeven"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16250934"}, "Title": {"type": "literal", "value": "Los gringos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q428815"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1999 film by Rob Letterman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q33744736"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28528756"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q33283086"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q33743929|http://www.wikidata.org/entity/Q33283086|http://www.wikidata.org/entity/Q28529218"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 San Diego film Awards Promo directed by Jordan Jacobo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6944150"}, "Title": {"type": "literal", "value": "Mutual Appreciation"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q503951"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q503951"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6318050|http://www.wikidata.org/entity/Q503951"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Andrew Bujalski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29789642"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27866144"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27866144"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12036658|http://www.wikidata.org/entity/Q10826679|http://www.wikidata.org/entity/Q5180265|http://www.wikidata.org/entity/Q1159229"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Eva Toulov\u00e1"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60846263"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q738880"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Grand Corps Malade"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14522920"}, "Title": {"type": "literal", "value": "The F Word"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3308160"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22279092"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20016493|http://www.wikidata.org/entity/Q16238721|http://www.wikidata.org/entity/Q15947080|http://www.wikidata.org/entity/Q4679034|http://www.wikidata.org/entity/Q4678990|http://www.wikidata.org/entity/Q3421719|http://www.wikidata.org/entity/Q1190134|http://www.wikidata.org/entity/Q1189105|http://www.wikidata.org/entity/Q511452|http://www.wikidata.org/entity/Q459945|http://www.wikidata.org/entity/Q459348|http://www.wikidata.org/entity/Q438278|http://www.wikidata.org/entity/Q385995|http://www.wikidata.org/entity/Q292214|http://www.wikidata.org/entity/Q218210|http://www.wikidata.org/entity/Q202732|http://www.wikidata.org/entity/Q38119"}, "Published": {"type": "literal", "value": "2015|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2013 film by Michael Dowse"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17637818"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11663970"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1188862"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2012 film by Choru Han"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q909465"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12213023"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q353690|http://www.wikidata.org/entity/Q170515"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "148"}, "Description": {"type": "literal", "value": "2008 film by Rami Imam"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6648961"}, "Title": {"type": "literal", "value": "Little Athens"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16214275"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1347483|http://www.wikidata.org/entity/Q445638|http://www.wikidata.org/entity/Q443757|http://www.wikidata.org/entity/Q359488|http://www.wikidata.org/entity/Q275246|http://www.wikidata.org/entity/Q263149|http://www.wikidata.org/entity/Q262218"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Tom Zuber"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3754050"}, "Title": {"type": "literal", "value": "Fuga dal call center"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3741879"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3741879"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3981529|http://www.wikidata.org/entity/Q3899386|http://www.wikidata.org/entity/Q3894369|http://www.wikidata.org/entity/Q3891763|http://www.wikidata.org/entity/Q3870673|http://www.wikidata.org/entity/Q3840387|http://www.wikidata.org/entity/Q3704389"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2009 film by Federico Rizzo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q890214"}, "Title": {"type": "literal", "value": "J'ai toujours r\u00eav\u00e9 d'\u00eatre un gangster"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q970408"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q970408"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3479397|http://www.wikidata.org/entity/Q3093531|http://www.wikidata.org/entity/Q2756117|http://www.wikidata.org/entity/Q2161692|http://www.wikidata.org/entity/Q970408|http://www.wikidata.org/entity/Q961525|http://www.wikidata.org/entity/Q958262|http://www.wikidata.org/entity/Q895091|http://www.wikidata.org/entity/Q694081|http://www.wikidata.org/entity/Q523545|http://www.wikidata.org/entity/Q380045|http://www.wikidata.org/entity/Q274227|http://www.wikidata.org/entity/Q270146|http://www.wikidata.org/entity/Q106555"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "113"}, "Description": {"type": "literal", "value": "2008 film by Samuel Benchetrit"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2986014"}, "Title": {"type": "literal", "value": "Comme des fr\u00e8res"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q139735"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q139735"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1450857"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Hugo G\u00e9lin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19478091"}, "Title": {"type": "literal", "value": "Relaks, It's Just Pag-Ibig"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18719493"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18719493"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28674882"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Antoinette Jadaone"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17088846"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14638068"}, "Title": {"type": "literal", "value": "Eyjafjallaj\u00f6kull"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15070019"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15070019|http://www.wikidata.org/entity/Q3219585"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16185219|http://www.wikidata.org/entity/Q16111082|http://www.wikidata.org/entity/Q12626553|http://www.wikidata.org/entity/Q11166063|http://www.wikidata.org/entity/Q3282056|http://www.wikidata.org/entity/Q2994803|http://www.wikidata.org/entity/Q2863129|http://www.wikidata.org/entity/Q1569147|http://www.wikidata.org/entity/Q967764|http://www.wikidata.org/entity/Q916193|http://www.wikidata.org/entity/Q735832|http://www.wikidata.org/entity/Q468190|http://www.wikidata.org/entity/Q440995|http://www.wikidata.org/entity/Q121263"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2013 film by Alexandre Coffre"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18150174"}, "Title": {"type": "literal", "value": "Gabi on the Roof in July"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18720098"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18154767"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Lawrence Michael Levine"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30203450"}, "Title": {"type": "literal", "value": "I Do...Until I Don't"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q241686"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q241686"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Lake Bell"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30890069"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15270257|http://www.wikidata.org/entity/Q4400034|http://www.wikidata.org/entity/Q4289477|http://www.wikidata.org/entity/Q4137998"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4228271|http://www.wikidata.org/entity/Q4203655|http://www.wikidata.org/entity/Q2299195|http://www.wikidata.org/entity/Q1385036|http://www.wikidata.org/entity/Q435437|http://www.wikidata.org/entity/Q172261|http://www.wikidata.org/entity/Q21183528|http://www.wikidata.org/entity/Q4297949|http://www.wikidata.org/entity/Q4248489"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2017 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48759406"}, "Title": {"type": "literal", "value": "Comme des gar\u00e7ons"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q58302673"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61749168|http://www.wikidata.org/entity/Q3302043"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 French film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4000788"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3837102"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3840387|http://www.wikidata.org/entity/Q3802259|http://www.wikidata.org/entity/Q3766915|http://www.wikidata.org/entity/Q3700772|http://www.wikidata.org/entity/Q3679934|http://www.wikidata.org/entity/Q3629717|http://www.wikidata.org/entity/Q3610186|http://www.wikidata.org/entity/Q2963238|http://www.wikidata.org/entity/Q1907667|http://www.wikidata.org/entity/Q1035295|http://www.wikidata.org/entity/Q979302"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2005 film by Lorenzo Vignolo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19858160"}, "Title": {"type": "literal", "value": "Dobr\u00e1ci"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3489129"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3489129"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2064616|http://www.wikidata.org/entity/Q676173"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Alice Nellis"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q909546"}, "Title": {"type": "literal", "value": "Kunsten \u00e5 tenke negativt"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1019323"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1019323"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22282681|http://www.wikidata.org/entity/Q15766036|http://www.wikidata.org/entity/Q11995276|http://www.wikidata.org/entity/Q4983138|http://www.wikidata.org/entity/Q4971498|http://www.wikidata.org/entity/Q4430142|http://www.wikidata.org/entity/Q4356238|http://www.wikidata.org/entity/Q1777302"}, "Published": {"type": "literal", "value": "2008|2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "2006 Norwegian comedy movie by B\u00e5rd Breien"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6736868"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20393479"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11018819"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q591801"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Amr Salama"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1128756"}, "Title": {"type": "literal", "value": "Mary and Max"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q349248"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q349248"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010|2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2009 clay animation film directed by Adam Elliot"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1504287"}, "Title": {"type": "literal", "value": "Sommer in Orange"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q96164"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23067905|http://www.wikidata.org/entity/Q15440454|http://www.wikidata.org/entity/Q15434360|http://www.wikidata.org/entity/Q2020358|http://www.wikidata.org/entity/Q1599909|http://www.wikidata.org/entity/Q1510407|http://www.wikidata.org/entity/Q1504267|http://www.wikidata.org/entity/Q1429745|http://www.wikidata.org/entity/Q1348583|http://www.wikidata.org/entity/Q1163254|http://www.wikidata.org/entity/Q1072426|http://www.wikidata.org/entity/Q1018220|http://www.wikidata.org/entity/Q916344|http://www.wikidata.org/entity/Q850015|http://www.wikidata.org/entity/Q456829|http://www.wikidata.org/entity/Q220466|http://www.wikidata.org/entity/Q106438|http://www.wikidata.org/entity/Q105925|http://www.wikidata.org/entity/Q96084"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "2011 film by Marcus H. Rosenm\u00fcller"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27639323"}, "Title": {"type": "literal", "value": "The Space Between"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q242577"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q242577"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19817061|http://www.wikidata.org/entity/Q17322908|http://www.wikidata.org/entity/Q6829522|http://www.wikidata.org/entity/Q3163302|http://www.wikidata.org/entity/Q3051881|http://www.wikidata.org/entity/Q1319495|http://www.wikidata.org/entity/Q716169|http://www.wikidata.org/entity/Q344973|http://www.wikidata.org/entity/Q242577"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2017 film by Amy Jo Johnson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30641878"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17385584"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17385584"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5276830"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Anurag Singh"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q54219624"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3473148"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q40675861|http://www.wikidata.org/entity/Q34631151|http://www.wikidata.org/entity/Q15973995|http://www.wikidata.org/entity/Q6292322|http://www.wikidata.org/entity/Q3470502|http://www.wikidata.org/entity/Q3440688|http://www.wikidata.org/entity/Q2960978|http://www.wikidata.org/entity/Q2884015|http://www.wikidata.org/entity/Q2854016|http://www.wikidata.org/entity/Q2851178|http://www.wikidata.org/entity/Q2836561|http://www.wikidata.org/entity/Q436888"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2018 film directed by Saphia Azzeddine"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18920916"}, "Title": {"type": "literal", "value": "Papa ou maman"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22928337"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3299877|http://www.wikidata.org/entity/Q2834188"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3187992|http://www.wikidata.org/entity/Q2851174|http://www.wikidata.org/entity/Q1930952|http://www.wikidata.org/entity/Q456360|http://www.wikidata.org/entity/Q24045726|http://www.wikidata.org/entity/Q18684443|http://www.wikidata.org/entity/Q3591288|http://www.wikidata.org/entity/Q3573998|http://www.wikidata.org/entity/Q3571739|http://www.wikidata.org/entity/Q3554532|http://www.wikidata.org/entity/Q3308651|http://www.wikidata.org/entity/Q3240915|http://www.wikidata.org/entity/Q3219319"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2015 film by Martin Bourboulon"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1544011"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42946208"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12059201|http://www.wikidata.org/entity/Q12035298|http://www.wikidata.org/entity/Q3638268|http://www.wikidata.org/entity/Q46236938"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12059201|http://www.wikidata.org/entity/Q12035298|http://www.wikidata.org/entity/Q46236938"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q46236938|http://www.wikidata.org/entity/Q12019433|http://www.wikidata.org/entity/Q11911163|http://www.wikidata.org/entity/Q10819807|http://www.wikidata.org/entity/Q10773819|http://www.wikidata.org/entity/Q8042567|http://www.wikidata.org/entity/Q1682145|http://www.wikidata.org/entity/Q1681872|http://www.wikidata.org/entity/Q1385173|http://www.wikidata.org/entity/Q1292951|http://www.wikidata.org/entity/Q544020|http://www.wikidata.org/entity/Q28034922|http://www.wikidata.org/entity/Q19363321|http://www.wikidata.org/entity/Q18572009|http://www.wikidata.org/entity/Q12059201|http://www.wikidata.org/entity/Q12042545|http://www.wikidata.org/entity/Q12035276|http://www.wikidata.org/entity/Q155880|http://www.wikidata.org/entity/Q57434|http://www.wikidata.org/entity/Q29032|http://www.wikidata.org/entity/Q12032647|http://www.wikidata.org/entity/Q12025103|http://www.wikidata.org/entity/Q12022326"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2018 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15930185"}, "Title": {"type": "literal", "value": "The Hungover Games"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6289410"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q355133"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18618690|http://www.wikidata.org/entity/Q16735250|http://www.wikidata.org/entity/Q7407997|http://www.wikidata.org/entity/Q4956689|http://www.wikidata.org/entity/Q3181946|http://www.wikidata.org/entity/Q2275851|http://www.wikidata.org/entity/Q1853959|http://www.wikidata.org/entity/Q1433425|http://www.wikidata.org/entity/Q729828|http://www.wikidata.org/entity/Q378678|http://www.wikidata.org/entity/Q365144|http://www.wikidata.org/entity/Q355133|http://www.wikidata.org/entity/Q310493|http://www.wikidata.org/entity/Q235394|http://www.wikidata.org/entity/Q211082|http://www.wikidata.org/entity/Q151168"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q622548|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2014 film by Josh Stolberg"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6084899"}, "Title": {"type": "literal", "value": "A\u015fk Geliyorum Demez"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6064908"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4844437|http://www.wikidata.org/entity/Q4736145|http://www.wikidata.org/entity/Q1271784"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "A 2009 romantic comedy Turkish film by Murat \u015eeker."}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20473205"}, "Title": {"type": "literal", "value": "Kolpa\u00e7ino 3. Devre"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8082387"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8082387"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8082387"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by \u015eafak Sezer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q58097247"}, "Title": {"type": "literal", "value": "Ternet Ninja"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q37494099|http://www.wikidata.org/entity/Q4753869"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4753869"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "81"}, "Description": {"type": "literal", "value": "danish 2018 film by Thorbj\u00f8rn Christoffersen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43909814"}, "Title": {"type": "literal", "value": "Love of My Life"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q43079418"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Joan Carr-Wiggin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15070730"}, "Title": {"type": "literal", "value": "Comet"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20685410"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20685410"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1371472|http://www.wikidata.org/entity/Q298672|http://www.wikidata.org/entity/Q35912"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Sam Esmail"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17100945"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11824085"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11779095"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11779095"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4865817"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Micha\u0142 Paszczyk"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24934510"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4171916"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28099355|http://www.wikidata.org/entity/Q4525520"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q593332|http://www.wikidata.org/entity/Q235008"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1535153|http://www.wikidata.org/entity/Q1200678|http://www.wikidata.org/entity/Q496523|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2016 Russian superhero comedy film by Dmitry Dyachenko"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20001097"}, "Title": {"type": "literal", "value": "Disco polo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11765778"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11765778"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9202817"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Maciek Bochniak"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9149255"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1179378"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q606360|http://www.wikidata.org/entity/Q5444055"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q606360|http://www.wikidata.org/entity/Q5444055"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9255590|http://www.wikidata.org/entity/Q1412995|http://www.wikidata.org/entity/Q1242366|http://www.wikidata.org/entity/Q1120453|http://www.wikidata.org/entity/Q1104464|http://www.wikidata.org/entity/Q874650|http://www.wikidata.org/entity/Q45811925|http://www.wikidata.org/entity/Q23749311"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 Hungarian film by Ferenc T\u00f6r\u00f6k"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1920724"}, "Title": {"type": "literal", "value": "Mensch Kotschie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q62021621"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q62021621"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q62021621|http://www.wikidata.org/entity/Q22344392|http://www.wikidata.org/entity/Q21970628|http://www.wikidata.org/entity/Q15440794|http://www.wikidata.org/entity/Q2477368|http://www.wikidata.org/entity/Q2157388|http://www.wikidata.org/entity/Q1975382|http://www.wikidata.org/entity/Q1914028|http://www.wikidata.org/entity/Q1910132|http://www.wikidata.org/entity/Q1623561|http://www.wikidata.org/entity/Q1605539|http://www.wikidata.org/entity/Q1342820|http://www.wikidata.org/entity/Q1097640|http://www.wikidata.org/entity/Q823912|http://www.wikidata.org/entity/Q792408|http://www.wikidata.org/entity/Q120509|http://www.wikidata.org/entity/Q106835"}, "Published": {"type": "literal", "value": "2010|2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Norbert Baumgarten"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12217949"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12178530"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4164801"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Ahmed El Guindi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3521078"}, "Title": {"type": "literal", "value": "The Good Heart"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1157396"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1157396"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q450775|http://www.wikidata.org/entity/Q343616|http://www.wikidata.org/entity/Q45827|http://www.wikidata.org/entity/Q34975|http://www.wikidata.org/entity/Q23038557|http://www.wikidata.org/entity/Q22918914|http://www.wikidata.org/entity/Q22680384|http://www.wikidata.org/entity/Q22673360|http://www.wikidata.org/entity/Q5339652|http://www.wikidata.org/entity/Q5127328|http://www.wikidata.org/entity/Q4759878|http://www.wikidata.org/entity/Q3978224|http://www.wikidata.org/entity/Q3218090|http://www.wikidata.org/entity/Q2267853|http://www.wikidata.org/entity/Q1898813|http://www.wikidata.org/entity/Q1797671|http://www.wikidata.org/entity/Q1050946"}, "Published": {"type": "literal", "value": "2009|2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2009 film by Dagur K\u00e1ri"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21146478"}, "Title": {"type": "literal", "value": "Bruder vor Luder"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2440371|http://www.wikidata.org/entity/Q16913737|http://www.wikidata.org/entity/Q15438712"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q95316|http://www.wikidata.org/entity/Q88747|http://www.wikidata.org/entity/Q70912|http://www.wikidata.org/entity/Q16913737|http://www.wikidata.org/entity/Q16508914|http://www.wikidata.org/entity/Q15851238|http://www.wikidata.org/entity/Q15438712|http://www.wikidata.org/entity/Q1934601|http://www.wikidata.org/entity/Q1298649|http://www.wikidata.org/entity/Q108942|http://www.wikidata.org/entity/Q19958947|http://www.wikidata.org/entity/Q17326503"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2015 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1774421"}, "Title": {"type": "literal", "value": "La Nana"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3818280"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7159865|http://www.wikidata.org/entity/Q3818280"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5997442|http://www.wikidata.org/entity/Q5771734|http://www.wikidata.org/entity/Q5665059|http://www.wikidata.org/entity/Q5657866|http://www.wikidata.org/entity/Q5253680|http://www.wikidata.org/entity/Q4750480|http://www.wikidata.org/entity/Q441977"}, "Published": {"type": "literal", "value": "2010|2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2009 Chilean-Mexican film directed by Sebasti\u00e1n Silva"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3874920"}, "Title": {"type": "literal", "value": "Nessuno mi pu\u00f2 giudicare"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3850996"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3850996|http://www.wikidata.org/entity/Q1879810"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13460338|http://www.wikidata.org/entity/Q13460329|http://www.wikidata.org/entity/Q3903830|http://www.wikidata.org/entity/Q3851083|http://www.wikidata.org/entity/Q3850996|http://www.wikidata.org/entity/Q3838468|http://www.wikidata.org/entity/Q3783619|http://www.wikidata.org/entity/Q3702573|http://www.wikidata.org/entity/Q3631286|http://www.wikidata.org/entity/Q3617706|http://www.wikidata.org/entity/Q1052746|http://www.wikidata.org/entity/Q1050695|http://www.wikidata.org/entity/Q1042721|http://www.wikidata.org/entity/Q1008634|http://www.wikidata.org/entity/Q381110|http://www.wikidata.org/entity/Q323127"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2011 film by Massimiliano Bruno"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19007163"}, "Title": {"type": "literal", "value": "American Sharia"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7089804"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7089804"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q663106"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Omar Regan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q54748404"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15415483"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Yann Le Quellec"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7515884"}, "Title": {"type": "literal", "value": "Silver Case"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5109598"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5109598"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19956031|http://www.wikidata.org/entity/Q7931752|http://www.wikidata.org/entity/Q6386675|http://www.wikidata.org/entity/Q4796879|http://www.wikidata.org/entity/Q1406562|http://www.wikidata.org/entity/Q713925|http://www.wikidata.org/entity/Q708153|http://www.wikidata.org/entity/Q579804|http://www.wikidata.org/entity/Q207969"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Christian Filippella"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27964337"}, "Title": {"type": "literal", "value": "Peter Rabbit"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2576503"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24809083|http://www.wikidata.org/entity/Q2576503"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q456047|http://www.wikidata.org/entity/Q228717|http://www.wikidata.org/entity/Q214309"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q28968258|http://www.wikidata.org/entity/Q25110269"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2018 film by Will Gluck"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q186941|http://www.wikidata.org/entity/Q547341|http://www.wikidata.org/entity/Q1416835|http://www.wikidata.org/entity/Q1445805"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15913338"}, "Title": {"type": "literal", "value": "Juliette"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25395422"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3525072|http://www.wikidata.org/entity/Q3341936|http://www.wikidata.org/entity/Q3286702|http://www.wikidata.org/entity/Q2821516|http://www.wikidata.org/entity/Q966237|http://www.wikidata.org/entity/Q236138|http://www.wikidata.org/entity/Q234015"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Pierre Godeau"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3405395"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3397037"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3397037"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7938956|http://www.wikidata.org/entity/Q3605451|http://www.wikidata.org/entity/Q1565004|http://www.wikidata.org/entity/Q1268195|http://www.wikidata.org/entity/Q1260865|http://www.wikidata.org/entity/Q1253391"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Darko Mitrevski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13393950"}, "Title": {"type": "literal", "value": "My Little Pony: Equestria Girls"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15720731"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15710480"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4029"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "73"}, "Description": {"type": "literal", "value": "2013 animated movie directed by Jayson Thiessen"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3783594"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21695733"}, "Title": {"type": "literal", "value": "Anhedonia \u2013 Narzissmus als Narkose"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21248388|http://www.wikidata.org/entity/Q679794"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21248388"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1910274|http://www.wikidata.org/entity/Q1228158|http://www.wikidata.org/entity/Q679794|http://www.wikidata.org/entity/Q316528|http://www.wikidata.org/entity/Q106496"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q471839"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2015 film directed by Patrick Siegfried Zimmer and Robert Stadlober"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29016634"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4215049"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4215049"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15134589|http://www.wikidata.org/entity/Q4456747|http://www.wikidata.org/entity/Q4361638|http://www.wikidata.org/entity/Q4249008"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2017 film by Roman Karimov"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1754271|http://www.wikidata.org/entity/Q28179983"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19857967"}, "Title": {"type": "literal", "value": "Les Deux Amis"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q382393"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q382393"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q464712"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q663106"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2015 film by Louis Garrel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30889570"}, "Title": {"type": "literal", "value": "Il crimine non va in pensione"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3737714"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2017 film by Fabio Fulco"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1165259"}, "Title": {"type": "literal", "value": "Harold & Kumar Escape from Guantanamo Bay"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q950283|http://www.wikidata.org/entity/Q3112667"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3112667|http://www.wikidata.org/entity/Q950283"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q350811|http://www.wikidata.org/entity/Q433149|http://www.wikidata.org/entity/Q380095|http://www.wikidata.org/entity/Q356086|http://www.wikidata.org/entity/Q328790|http://www.wikidata.org/entity/Q2873228|http://www.wikidata.org/entity/Q1378118|http://www.wikidata.org/entity/Q1371472|http://www.wikidata.org/entity/Q1077763|http://www.wikidata.org/entity/Q661591|http://www.wikidata.org/entity/Q634684|http://www.wikidata.org/entity/Q544593|http://www.wikidata.org/entity/Q485310|http://www.wikidata.org/entity/Q434261|http://www.wikidata.org/entity/Q15513405|http://www.wikidata.org/entity/Q7291478|http://www.wikidata.org/entity/Q3157150|http://www.wikidata.org/entity/Q312705|http://www.wikidata.org/entity/Q234551|http://www.wikidata.org/entity/Q233786|http://www.wikidata.org/entity/Q230176|http://www.wikidata.org/entity/Q220536"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2008 American stoner comedy film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5368270"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1074295"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1856626"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1856626"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5646675|http://www.wikidata.org/entity/Q716069|http://www.wikidata.org/entity/Q7038621"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q53094"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Lu Chuan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1882655"}, "Title": {"type": "literal", "value": "Machen wir\u2019s auf Finnisch"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1893857"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q95943"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2008 television film directed by Marco Petry"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168717"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18168157"}, "Title": {"type": "literal", "value": "Yoga Hosers"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q489831"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q489831"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q298672|http://www.wikidata.org/entity/Q294372|http://www.wikidata.org/entity/Q240355|http://www.wikidata.org/entity/Q234207|http://www.wikidata.org/entity/Q51023|http://www.wikidata.org/entity/Q37175|http://www.wikidata.org/entity/Q20670730|http://www.wikidata.org/entity/Q19300018|http://www.wikidata.org/entity/Q15613720|http://www.wikidata.org/entity/Q1187274|http://www.wikidata.org/entity/Q601032|http://www.wikidata.org/entity/Q525318|http://www.wikidata.org/entity/Q489856|http://www.wikidata.org/entity/Q489831|http://www.wikidata.org/entity/Q469954|http://www.wikidata.org/entity/Q324753|http://www.wikidata.org/entity/Q316627"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2016 film by Kevin Smith"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17182419"}, "Title": {"type": "literal", "value": "Grimsby"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q525332"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21411187|http://www.wikidata.org/entity/Q7172726|http://www.wikidata.org/entity/Q29055"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2736441|http://www.wikidata.org/entity/Q1944303|http://www.wikidata.org/entity/Q442897|http://www.wikidata.org/entity/Q312712|http://www.wikidata.org/entity/Q258220|http://www.wikidata.org/entity/Q256042|http://www.wikidata.org/entity/Q234141|http://www.wikidata.org/entity/Q230113|http://www.wikidata.org/entity/Q228638|http://www.wikidata.org/entity/Q39666|http://www.wikidata.org/entity/Q29055|http://www.wikidata.org/entity/Q28310|http://www.wikidata.org/entity/Q15381644|http://www.wikidata.org/entity/Q7407585|http://www.wikidata.org/entity/Q7172726|http://www.wikidata.org/entity/Q6851436|http://www.wikidata.org/entity/Q3808718|http://www.wikidata.org/entity/Q1702422|http://www.wikidata.org/entity/Q1701933|http://www.wikidata.org/entity/Q3018042"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2297927|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q319221"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2016 film by Louis Leterrier"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q622668"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5908850"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11560220"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by K\u014dji Fukada"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2664635"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5667433"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2521963"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1973"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1973 film by Harry Booth"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4839265"}, "Title": {"type": "literal", "value": "Back in Business"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5107534"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3295485|http://www.wikidata.org/entity/Q2740822|http://www.wikidata.org/entity/Q1897677|http://www.wikidata.org/entity/Q449118"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Chris Munro"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24806824"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6713058"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6713058"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5512526"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by M. Rajesh"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23038264"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7044825"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q652149"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5996234"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3123705|http://www.wikidata.org/entity/Q2737207|http://www.wikidata.org/entity/Q983043|http://www.wikidata.org/entity/Q421581|http://www.wikidata.org/entity/Q313956|http://www.wikidata.org/entity/Q310867|http://www.wikidata.org/entity/Q255076"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Anees Bazmee"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20004554"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18590061"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2015 film by Francesco Albanese"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48879263"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1670730"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Lu\u00eds Ismael"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3795303"}, "Title": {"type": "literal", "value": "Il principe abusivo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q769800"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q769800"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3955847|http://www.wikidata.org/entity/Q3946143|http://www.wikidata.org/entity/Q3830096|http://www.wikidata.org/entity/Q3734279|http://www.wikidata.org/entity/Q3639283|http://www.wikidata.org/entity/Q3617471|http://www.wikidata.org/entity/Q3607687|http://www.wikidata.org/entity/Q769800|http://www.wikidata.org/entity/Q554787"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2013 film by Alessandro Siani"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q605734|http://www.wikidata.org/entity/Q3663776|http://www.wikidata.org/entity/Q3929491"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q51967930"}, "Title": {"type": "literal", "value": "Carta al Ni\u00f1o Dios"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50358500"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Juan Camilo Pinz\u00f3n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1519997"}, "Title": {"type": "literal", "value": "Ride or Die"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5181397"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1139269"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q704742|http://www.wikidata.org/entity/Q454328|http://www.wikidata.org/entity/Q451958|http://www.wikidata.org/entity/Q299700|http://www.wikidata.org/entity/Q257286|http://www.wikidata.org/entity/Q231648|http://www.wikidata.org/entity/Q220396|http://www.wikidata.org/entity/Q155449|http://www.wikidata.org/entity/Q1502946|http://www.wikidata.org/entity/Q1139269"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2003 film by Craig Ross, Jr."}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q859448"}, "Title": {"type": "literal", "value": "50/50"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1320930"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8003038"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7422786|http://www.wikidata.org/entity/Q4756190|http://www.wikidata.org/entity/Q3900877|http://www.wikidata.org/entity/Q3498453|http://www.wikidata.org/entity/Q3218835|http://www.wikidata.org/entity/Q2599969|http://www.wikidata.org/entity/Q2272452|http://www.wikidata.org/entity/Q1754735|http://www.wikidata.org/entity/Q8003038|http://www.wikidata.org/entity/Q545172|http://www.wikidata.org/entity/Q522146|http://www.wikidata.org/entity/Q447669|http://www.wikidata.org/entity/Q290076|http://www.wikidata.org/entity/Q271638|http://www.wikidata.org/entity/Q229775|http://www.wikidata.org/entity/Q220308|http://www.wikidata.org/entity/Q190998|http://www.wikidata.org/entity/Q177311|http://www.wikidata.org/entity/Q67701"}, "Published": {"type": "literal", "value": "2012|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2011 American drama film directed by Jonathan Levine"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2702789|http://www.wikidata.org/entity/Q5368270"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q907207"}, "Title": {"type": "literal", "value": "\u30d5\u30e9\u30ac\u30fc\u30eb"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q614697"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11610055|http://www.wikidata.org/entity/Q614697"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11468247|http://www.wikidata.org/entity/Q3544664|http://www.wikidata.org/entity/Q1139734|http://www.wikidata.org/entity/Q1041266|http://www.wikidata.org/entity/Q873876|http://www.wikidata.org/entity/Q262878"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Lee Sang-il"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2806825"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3340153"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3340153"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3591162|http://www.wikidata.org/entity/Q3516056|http://www.wikidata.org/entity/Q3350916|http://www.wikidata.org/entity/Q3292625|http://www.wikidata.org/entity/Q3292012|http://www.wikidata.org/entity/Q3118485|http://www.wikidata.org/entity/Q3018751|http://www.wikidata.org/entity/Q2979362|http://www.wikidata.org/entity/Q2646765|http://www.wikidata.org/entity/Q1097113|http://www.wikidata.org/entity/Q963158|http://www.wikidata.org/entity/Q715111"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Nicolas Brossette"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1983756"}, "Title": {"type": "literal", "value": "The Onion Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7816510"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7812417"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15665021|http://www.wikidata.org/entity/Q4695717|http://www.wikidata.org/entity/Q3474471|http://www.wikidata.org/entity/Q3217940|http://www.wikidata.org/entity/Q2700668|http://www.wikidata.org/entity/Q1720470|http://www.wikidata.org/entity/Q552889|http://www.wikidata.org/entity/Q82110"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2008 film by Tom Kuntz"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q466459"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5826056"}, "Title": {"type": "literal", "value": "El paseo 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16302557"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q295233"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Harold Trompetero"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16132832"}, "Title": {"type": "literal", "value": "\u05d0\u05e0\u05d9 \u05dc\u05d0 \u05de\u05d0\u05de\u05d9\u05df, \u05d0\u05e0\u05d9 \u05e8\u05d5\u05d1\u05d5\u05d8!|Ani Lo Maamin, Ani Robot"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16128762"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16128762"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12410872|http://www.wikidata.org/entity/Q12405898|http://www.wikidata.org/entity/Q12403604|http://www.wikidata.org/entity/Q6829702|http://www.wikidata.org/entity/Q6827317|http://www.wikidata.org/entity/Q6772809|http://www.wikidata.org/entity/Q1513557"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film directed by Tal Goldberg and Gal Zelezniak"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3818488"}, "Title": {"type": "literal", "value": "L'amore non esiste"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3850997"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3934422|http://www.wikidata.org/entity/Q3904256|http://www.wikidata.org/entity/Q3897825|http://www.wikidata.org/entity/Q3850182|http://www.wikidata.org/entity/Q3848077|http://www.wikidata.org/entity/Q3719651"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "15"}, "Description": {"type": "literal", "value": "2008 film by Massimiliano Camaiti"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2060015"}, "Title": {"type": "literal", "value": "The Wackness"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1320930"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1320930"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1690817|http://www.wikidata.org/entity/Q1151944|http://www.wikidata.org/entity/Q436360|http://www.wikidata.org/entity/Q311779|http://www.wikidata.org/entity/Q302930|http://www.wikidata.org/entity/Q298694|http://www.wikidata.org/entity/Q271616|http://www.wikidata.org/entity/Q242550|http://www.wikidata.org/entity/Q208415|http://www.wikidata.org/entity/Q190794|http://www.wikidata.org/entity/Q173158"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q2975633"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2008 film by Jonathan Levine"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29475056"}, "Title": {"type": "literal", "value": "Mira\u00e7"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1341593"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15989287"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Nurten Erdemir and Enes Hakan Tokyay"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1573810"}, "Title": {"type": "literal", "value": "Recep \u0130vedik 3"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7813033"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q388027"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q388027"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2010 film by Togan G\u00f6kbakar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48755843"}, "Title": {"type": "literal", "value": "Guy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2832982"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17475769|http://www.wikidata.org/entity/Q2832982"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22968159|http://www.wikidata.org/entity/Q15918282|http://www.wikidata.org/entity/Q3501539|http://www.wikidata.org/entity/Q3341044|http://www.wikidata.org/entity/Q3292384|http://www.wikidata.org/entity/Q3224474|http://www.wikidata.org/entity/Q3189147|http://www.wikidata.org/entity/Q3018751|http://www.wikidata.org/entity/Q46483761|http://www.wikidata.org/entity/Q3009779|http://www.wikidata.org/entity/Q2941947|http://www.wikidata.org/entity/Q2925481|http://www.wikidata.org/entity/Q2832982|http://www.wikidata.org/entity/Q2832730|http://www.wikidata.org/entity/Q1356701|http://www.wikidata.org/entity/Q933434|http://www.wikidata.org/entity/Q548211|http://www.wikidata.org/entity/Q526918|http://www.wikidata.org/entity/Q466991|http://www.wikidata.org/entity/Q292760|http://www.wikidata.org/entity/Q239033|http://www.wikidata.org/entity/Q236138"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q8812380"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2018 film directed by Alex Lutz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43303332"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q48836940"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q48836940"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film directed by Chris Moore"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48671851"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7635089"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Sugeeth"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q948886"}, "Title": {"type": "literal", "value": "Welcome to Collinwood"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2853003|http://www.wikidata.org/entity/Q20675767|http://www.wikidata.org/entity/Q18018415"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2853003"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2156496|http://www.wikidata.org/entity/Q347395|http://www.wikidata.org/entity/Q16252442|http://www.wikidata.org/entity/Q329716|http://www.wikidata.org/entity/Q316446|http://www.wikidata.org/entity/Q233922|http://www.wikidata.org/entity/Q231648|http://www.wikidata.org/entity/Q229268|http://www.wikidata.org/entity/Q224159|http://www.wikidata.org/entity/Q40048|http://www.wikidata.org/entity/Q23844"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q496523|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2002 film by Anthony Russo, Joe Russo"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1152369"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q702374"}, "Title": {"type": "literal", "value": "Sommersturm"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q68855"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q63352080|http://www.wikidata.org/entity/Q68855"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q109720|http://www.wikidata.org/entity/Q106495|http://www.wikidata.org/entity/Q106493|http://www.wikidata.org/entity/Q105785|http://www.wikidata.org/entity/Q98899|http://www.wikidata.org/entity/Q90795|http://www.wikidata.org/entity/Q72046|http://www.wikidata.org/entity/Q679794|http://www.wikidata.org/entity/Q445583"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q860626"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2004 German coming-of-age film directed by Marco Kreuzpaintner"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11710023"}, "Title": {"type": "literal", "value": "Homo Father"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11817800"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Piotr Matwiejczyk"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11753079"}, "Title": {"type": "literal", "value": "Last minute"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11813603"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11813603"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9376690"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Patryk Vega"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4860312"}, "Title": {"type": "literal", "value": "Bare p\u00e5 jobb"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17094230"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17094230"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Kjell Hammer\u00f8"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1737991"}, "Title": {"type": "literal", "value": "A Little Bit of Heaven"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3341067"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19592407"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q352730|http://www.wikidata.org/entity/Q350194|http://www.wikidata.org/entity/Q310937|http://www.wikidata.org/entity/Q261579|http://www.wikidata.org/entity/Q236956|http://www.wikidata.org/entity/Q179576|http://www.wikidata.org/entity/Q169946|http://www.wikidata.org/entity/Q49001|http://www.wikidata.org/entity/Q2994084|http://www.wikidata.org/entity/Q927102|http://www.wikidata.org/entity/Q924104|http://www.wikidata.org/entity/Q724796|http://www.wikidata.org/entity/Q544465"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2011 film by Nicole Kassell"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1138789|http://www.wikidata.org/entity/Q2579492|http://www.wikidata.org/entity/Q7733857"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3015574"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q59694166"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2977696"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3579172|http://www.wikidata.org/entity/Q3507371|http://www.wikidata.org/entity/Q3501698|http://www.wikidata.org/entity/Q3454390|http://www.wikidata.org/entity/Q3384182|http://www.wikidata.org/entity/Q3383044|http://www.wikidata.org/entity/Q3369483|http://www.wikidata.org/entity/Q3332886|http://www.wikidata.org/entity/Q3260784|http://www.wikidata.org/entity/Q3161171|http://www.wikidata.org/entity/Q3121879|http://www.wikidata.org/entity/Q3027092|http://www.wikidata.org/entity/Q2977696|http://www.wikidata.org/entity/Q2848058|http://www.wikidata.org/entity/Q2834584"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Philippe Gagnon"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3512526"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7065872"}, "Title": {"type": "literal", "value": "Now You Know"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1140895"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1140895"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3837599|http://www.wikidata.org/entity/Q2335359|http://www.wikidata.org/entity/Q1726175|http://www.wikidata.org/entity/Q1140895|http://www.wikidata.org/entity/Q598158|http://www.wikidata.org/entity/Q554218|http://www.wikidata.org/entity/Q540608|http://www.wikidata.org/entity/Q489831|http://www.wikidata.org/entity/Q463692|http://www.wikidata.org/entity/Q452763|http://www.wikidata.org/entity/Q449863|http://www.wikidata.org/entity/Q332937|http://www.wikidata.org/entity/Q263428|http://www.wikidata.org/entity/Q236946"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Jeff Anderson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12771867"}, "Title": {"type": "literal", "value": "Modr\u00e9 z neba"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13537259"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13537259"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12022667|http://www.wikidata.org/entity/Q11729468|http://www.wikidata.org/entity/Q540574|http://www.wikidata.org/entity/Q468271|http://www.wikidata.org/entity/Q375191|http://www.wikidata.org/entity/Q206146"}, "Published": {"type": "literal", "value": "1997"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1997 film by Eva Boru\u0161ovi\u010dov\u00e1"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20513926"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27960476"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16846043"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28597204|http://www.wikidata.org/entity/Q27778936|http://www.wikidata.org/entity/Q23887684|http://www.wikidata.org/entity/Q23664206|http://www.wikidata.org/entity/Q23038181|http://www.wikidata.org/entity/Q20510786|http://www.wikidata.org/entity/Q20510404|http://www.wikidata.org/entity/Q15270270|http://www.wikidata.org/entity/Q15093673"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2013 film by Gor Kirakosyan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1333199"}, "Title": {"type": "literal", "value": "Hardcover"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1082448"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1082448"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q74258"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2008 film by Christian Z\u00fcbert"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1223129"}, "Title": {"type": "literal", "value": "Diverso da chi?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30076175"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13427396"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3745280|http://www.wikidata.org/entity/Q3362634|http://www.wikidata.org/entity/Q1223109|http://www.wikidata.org/entity/Q1042251|http://www.wikidata.org/entity/Q1042185|http://www.wikidata.org/entity/Q808664|http://www.wikidata.org/entity/Q468793"}, "Published": {"type": "literal", "value": "2011|2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2009 film by Umberto Carteni"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3663776"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15070813"}, "Title": {"type": "literal", "value": "The Pretty One"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19592373"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19592373"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19958261|http://www.wikidata.org/entity/Q16239118|http://www.wikidata.org/entity/Q6701600|http://www.wikidata.org/entity/Q1264937|http://www.wikidata.org/entity/Q960721|http://www.wikidata.org/entity/Q707759|http://www.wikidata.org/entity/Q620822|http://www.wikidata.org/entity/Q528126|http://www.wikidata.org/entity/Q437948|http://www.wikidata.org/entity/Q218210|http://www.wikidata.org/entity/Q171525"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2013 film by Jen\u00e9e LaMarque"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q474199"}, "Title": {"type": "literal", "value": "Amos & Andrew"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5322060"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5322060"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5089830|http://www.wikidata.org/entity/Q1366460|http://www.wikidata.org/entity/Q726142|http://www.wikidata.org/entity/Q621490|http://www.wikidata.org/entity/Q527303|http://www.wikidata.org/entity/Q446717|http://www.wikidata.org/entity/Q405542|http://www.wikidata.org/entity/Q329734|http://www.wikidata.org/entity/Q267001|http://www.wikidata.org/entity/Q257271|http://www.wikidata.org/entity/Q172678|http://www.wikidata.org/entity/Q42869"}, "Published": {"type": "literal", "value": "1993"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "1993 film by E. Max Frye"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q186941"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q249215"}, "Title": {"type": "literal", "value": "Project X"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2319466"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2262850"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21933732|http://www.wikidata.org/entity/Q7087462|http://www.wikidata.org/entity/Q2272675|http://www.wikidata.org/entity/Q2156744|http://www.wikidata.org/entity/Q267330|http://www.wikidata.org/entity/Q171687"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q3272147"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2012 film by Nima Nourizadeh"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1188938"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15068238"}, "Title": {"type": "literal", "value": "Kingsman: The Secret Service"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2593"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q32661|http://www.wikidata.org/entity/Q2593|http://www.wikidata.org/entity/Q2543|http://www.wikidata.org/entity/Q445765"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16239385|http://www.wikidata.org/entity/Q5534044|http://www.wikidata.org/entity/Q3372059|http://www.wikidata.org/entity/Q1859256|http://www.wikidata.org/entity/Q21592498|http://www.wikidata.org/entity/Q18379490|http://www.wikidata.org/entity/Q1272489|http://www.wikidata.org/entity/Q1158522|http://www.wikidata.org/entity/Q1132632|http://www.wikidata.org/entity/Q879810|http://www.wikidata.org/entity/Q527023|http://www.wikidata.org/entity/Q312712|http://www.wikidata.org/entity/Q310930|http://www.wikidata.org/entity/Q291314|http://www.wikidata.org/entity/Q258777|http://www.wikidata.org/entity/Q210447|http://www.wikidata.org/entity/Q172678|http://www.wikidata.org/entity/Q162492|http://www.wikidata.org/entity/Q123351"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2297927|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q2678111"}, "Duration": {"type": "literal", "value": "129"}, "Description": {"type": "literal", "value": "2014 film by Matthew Vaughn"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434841|http://www.wikidata.org/entity/Q1906017"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18398561"}, "Title": {"type": "literal", "value": "Frozen Fever"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q156596|http://www.wikidata.org/entity/Q5929198"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q132311|http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "7"}, "Description": {"type": "literal", "value": "2015 American animated short film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191224|http://www.wikidata.org/entity/Q1047410"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q596085"}, "Title": {"type": "literal", "value": "Jonah Hex"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3808425"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7003802|http://www.wikidata.org/entity/Q1340718|http://www.wikidata.org/entity/Q913128"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3833363|http://www.wikidata.org/entity/Q3808425|http://www.wikidata.org/entity/Q3182044|http://www.wikidata.org/entity/Q2914570|http://www.wikidata.org/entity/Q19405928|http://www.wikidata.org/entity/Q17385901|http://www.wikidata.org/entity/Q5387475|http://www.wikidata.org/entity/Q403902|http://www.wikidata.org/entity/Q368037|http://www.wikidata.org/entity/Q355116|http://www.wikidata.org/entity/Q342665|http://www.wikidata.org/entity/Q322056|http://www.wikidata.org/entity/Q239240|http://www.wikidata.org/entity/Q210076|http://www.wikidata.org/entity/Q172261|http://www.wikidata.org/entity/Q80069|http://www.wikidata.org/entity/Q57147|http://www.wikidata.org/entity/Q41449|http://www.wikidata.org/entity/Q41396|http://www.wikidata.org/entity/Q2004409|http://www.wikidata.org/entity/Q2004171|http://www.wikidata.org/entity/Q1939485|http://www.wikidata.org/entity/Q958227|http://www.wikidata.org/entity/Q948751|http://www.wikidata.org/entity/Q21486090"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q172980|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q188473"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "2010 film by Jimmy Hayward"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q621364|http://www.wikidata.org/entity/Q2924461"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60049100"}, "Title": {"type": "literal", "value": "Murot und das Murmeltier"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1223694"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1223694"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1478871|http://www.wikidata.org/entity/Q807583|http://www.wikidata.org/entity/Q697129|http://www.wikidata.org/entity/Q96937|http://www.wikidata.org/entity/Q61638533|http://www.wikidata.org/entity/Q29575212|http://www.wikidata.org/entity/Q29575174|http://www.wikidata.org/entity/Q17122801|http://www.wikidata.org/entity/Q2225497|http://www.wikidata.org/entity/Q1944553"}, "Published": {"type": "literal", "value": "2019|2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "television film directed by Dietrich Br\u00fcggemann"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23565"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27477640"}, "Title": {"type": "literal", "value": "Monsieur et Madame Adelman"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q741655"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q741655"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3037010|http://www.wikidata.org/entity/Q2965785|http://www.wikidata.org/entity/Q1187592|http://www.wikidata.org/entity/Q976460|http://www.wikidata.org/entity/Q741655|http://www.wikidata.org/entity/Q139052|http://www.wikidata.org/entity/Q123135"}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Nicolas Bedos"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3232650"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23647164"}, "Title": {"type": "literal", "value": "The True Memoirs of an International Assassin"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3176610"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q487379"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q44561"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Jeff Wadlow"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27958381"}, "Title": {"type": "literal", "value": "Telle m\u00e8re, telle fille"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19630141"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19630141"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27704886|http://www.wikidata.org/entity/Q16535251|http://www.wikidata.org/entity/Q3501476|http://www.wikidata.org/entity/Q3380851|http://www.wikidata.org/entity/Q693534|http://www.wikidata.org/entity/Q511833|http://www.wikidata.org/entity/Q116314|http://www.wikidata.org/entity/Q115735|http://www.wikidata.org/entity/Q106275"}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by No\u00e9mie Saglio"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q913462|http://www.wikidata.org/entity/Q525894"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5940355"}, "Title": {"type": "literal", "value": "El a\u00f1o de la garrapata"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12390928"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Jorge Coira"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15873873"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2072053"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4417776"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2654088"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Tim Oliehoek"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3207956"}, "Title": {"type": "literal", "value": "La Croisi\u00e8re"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3367704"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3367704"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3591136|http://www.wikidata.org/entity/Q3501708|http://www.wikidata.org/entity/Q3340838|http://www.wikidata.org/entity/Q3218851|http://www.wikidata.org/entity/Q3166616|http://www.wikidata.org/entity/Q3158547|http://www.wikidata.org/entity/Q3142106|http://www.wikidata.org/entity/Q3120166|http://www.wikidata.org/entity/Q3082061|http://www.wikidata.org/entity/Q2934960|http://www.wikidata.org/entity/Q2863227|http://www.wikidata.org/entity/Q2833500|http://www.wikidata.org/entity/Q2832982|http://www.wikidata.org/entity/Q1685364|http://www.wikidata.org/entity/Q759001|http://www.wikidata.org/entity/Q681451|http://www.wikidata.org/entity/Q586054|http://www.wikidata.org/entity/Q510042|http://www.wikidata.org/entity/Q466982|http://www.wikidata.org/entity/Q297100|http://www.wikidata.org/entity/Q291466|http://www.wikidata.org/entity/Q201810"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 French comedy film directed by Pascale Pouzadoux"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2135949"}, "Title": {"type": "literal", "value": "Red Dog"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6438600"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q563177|http://www.wikidata.org/entity/Q545138|http://www.wikidata.org/entity/Q466150|http://www.wikidata.org/entity/Q235248|http://www.wikidata.org/entity/Q53651|http://www.wikidata.org/entity/Q6221055|http://www.wikidata.org/entity/Q3608249|http://www.wikidata.org/entity/Q862208"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1257444|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2011 film by Kriv Stenders"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3506769"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11727279"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12035281"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61690691|http://www.wikidata.org/entity/Q59258153|http://www.wikidata.org/entity/Q22675384|http://www.wikidata.org/entity/Q12857256|http://www.wikidata.org/entity/Q12051006|http://www.wikidata.org/entity/Q12042457|http://www.wikidata.org/entity/Q12025445|http://www.wikidata.org/entity/Q12024951|http://www.wikidata.org/entity/Q12023662|http://www.wikidata.org/entity/Q12016591|http://www.wikidata.org/entity/Q7938803|http://www.wikidata.org/entity/Q730137|http://www.wikidata.org/entity/Q676173"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Ji\u0159\u00ed Vejd\u011blek"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19622324"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1217703"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2015 film by Silvio Muccino"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3304113"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1563632"}, "Title": {"type": "literal", "value": "Vollidiot"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2437672"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1082448|http://www.wikidata.org/entity/Q95465"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3196793|http://www.wikidata.org/entity/Q2439722|http://www.wikidata.org/entity/Q2020198|http://www.wikidata.org/entity/Q1732788|http://www.wikidata.org/entity/Q1331935|http://www.wikidata.org/entity/Q1284944|http://www.wikidata.org/entity/Q1163512|http://www.wikidata.org/entity/Q1067118|http://www.wikidata.org/entity/Q850007|http://www.wikidata.org/entity/Q1928471|http://www.wikidata.org/entity/Q1910132|http://www.wikidata.org/entity/Q1789365|http://www.wikidata.org/entity/Q583792|http://www.wikidata.org/entity/Q518355|http://www.wikidata.org/entity/Q374812|http://www.wikidata.org/entity/Q364986|http://www.wikidata.org/entity/Q215565|http://www.wikidata.org/entity/Q111879|http://www.wikidata.org/entity/Q111244|http://www.wikidata.org/entity/Q95757|http://www.wikidata.org/entity/Q90869|http://www.wikidata.org/entity/Q88236|http://www.wikidata.org/entity/Q88223|http://www.wikidata.org/entity/Q77027|http://www.wikidata.org/entity/Q70912|http://www.wikidata.org/entity/Q68322|http://www.wikidata.org/entity/Q43763"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2007 film by Tobias Baumann"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3022994"}, "Title": {"type": "literal", "value": "D\u00edas de f\u00fatbol"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5800361"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6038628|http://www.wikidata.org/entity/Q3326153|http://www.wikidata.org/entity/Q3296435|http://www.wikidata.org/entity/Q3061285|http://www.wikidata.org/entity/Q1220518|http://www.wikidata.org/entity/Q581617|http://www.wikidata.org/entity/Q576436|http://www.wikidata.org/entity/Q349396|http://www.wikidata.org/entity/Q283513|http://www.wikidata.org/entity/Q276652|http://www.wikidata.org/entity/Q275949|http://www.wikidata.org/entity/Q269857"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by David Serrano de la Pe\u00f1a"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22000108"}, "Title": {"type": "literal", "value": "The Book of Gabrielle"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17466090"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17466090"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17466090"}, "Published": {"type": "literal", "value": "2017|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2015 film by Lisa Gornick"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10329335"}, "Title": {"type": "literal", "value": "Meu Passado Me Condena"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16940454"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16940866"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10286900"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2013 film by J\u00falia Rezende"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5571070"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43544067"}, "Title": {"type": "literal", "value": "Dom'z s\u00fct\u00fc"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q102044"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q102044"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Neco \u00c7elik"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11819309"}, "Title": {"type": "literal", "value": "Plan"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9353208"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by S\u0142awomir Pstrong"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27877562"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22928337"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Martin Bourboulon"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q753899"}, "Title": {"type": "literal", "value": "Scott Pilgrim vs. the World"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q522057"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q522057|http://www.wikidata.org/entity/Q2262850|http://www.wikidata.org/entity/Q712562"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q461300|http://www.wikidata.org/entity/Q388843|http://www.wikidata.org/entity/Q313705|http://www.wikidata.org/entity/Q313204|http://www.wikidata.org/entity/Q309555|http://www.wikidata.org/entity/Q1378842|http://www.wikidata.org/entity/Q1347483|http://www.wikidata.org/entity/Q935167|http://www.wikidata.org/entity/Q232307|http://www.wikidata.org/entity/Q210547|http://www.wikidata.org/entity/Q207873|http://www.wikidata.org/entity/Q178348|http://www.wikidata.org/entity/Q116636|http://www.wikidata.org/entity/Q67701|http://www.wikidata.org/entity/Q29328|http://www.wikidata.org/entity/Q18938|http://www.wikidata.org/entity/Q14537|http://www.wikidata.org/entity/Q299324|http://www.wikidata.org/entity/Q237781"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q2678111|http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "2010 American-British-Japanese-Canadian film by Edgar Wright"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4035093"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q524212"}, "Title": {"type": "literal", "value": "You Again"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q525725"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q470153|http://www.wikidata.org/entity/Q434707|http://www.wikidata.org/entity/Q373895|http://www.wikidata.org/entity/Q316712|http://www.wikidata.org/entity/Q272176|http://www.wikidata.org/entity/Q271851|http://www.wikidata.org/entity/Q270664|http://www.wikidata.org/entity/Q231811|http://www.wikidata.org/entity/Q231614|http://www.wikidata.org/entity/Q230131|http://www.wikidata.org/entity/Q178882|http://www.wikidata.org/entity/Q106997|http://www.wikidata.org/entity/Q102124|http://www.wikidata.org/entity/Q10738|http://www.wikidata.org/entity/Q2115130|http://www.wikidata.org/entity/Q1190235|http://www.wikidata.org/entity/Q724088|http://www.wikidata.org/entity/Q508819|http://www.wikidata.org/entity/Q507756"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2010 film by Andy Fickman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q497155"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q41449924"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22279032"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7640760"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Midhun Manuel Thomas"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3825580"}, "Title": {"type": "literal", "value": "Gordos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q740130"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q740130"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q53843895|http://www.wikidata.org/entity/Q16301316|http://www.wikidata.org/entity/Q11704368|http://www.wikidata.org/entity/Q9077414|http://www.wikidata.org/entity/Q6109724|http://www.wikidata.org/entity/Q6001963|http://www.wikidata.org/entity/Q5984226|http://www.wikidata.org/entity/Q5883024|http://www.wikidata.org/entity/Q5858574|http://www.wikidata.org/entity/Q5695648|http://www.wikidata.org/entity/Q3814531|http://www.wikidata.org/entity/Q2790121|http://www.wikidata.org/entity/Q2742435|http://www.wikidata.org/entity/Q2655070|http://www.wikidata.org/entity/Q747950|http://www.wikidata.org/entity/Q269857"}, "Published": {"type": "literal", "value": "2010|2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "2009 film by Daniel S\u00e1nchez Ar\u00e9valo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17082304"}, "Title": {"type": "literal", "value": "Someone Marry Barry"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7340458"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7340458"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q934467"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2014 film directed by Rob Pearlstein"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26963223"}, "Title": {"type": "literal", "value": "My Entire High School Sinking Into the Sea"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3016729"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3016729"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7791234|http://www.wikidata.org/entity/Q5902748|http://www.wikidata.org/entity/Q3423441|http://www.wikidata.org/entity/Q443995|http://www.wikidata.org/entity/Q313705|http://www.wikidata.org/entity/Q288359|http://www.wikidata.org/entity/Q236527|http://www.wikidata.org/entity/Q133050"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Dash Shaw"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30879658"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4215049"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4215049"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2017 film by Roman Karimov"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434841|http://www.wikidata.org/entity/Q1754271|http://www.wikidata.org/entity/Q2892410"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23759481"}, "Title": {"type": "literal", "value": "Pistas para volver a casa"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11684644"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11684644"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q515445|http://www.wikidata.org/entity/Q8078416|http://www.wikidata.org/entity/Q6300538|http://www.wikidata.org/entity/Q5483854"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1200678|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2015 film by Jazm\u00edn Stuart"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4365900"}, "Title": {"type": "literal", "value": "\u041f\u043b\u044e\u0441 \u043e\u0434\u0438\u043d"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4101320"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4312793|http://www.wikidata.org/entity/Q4101320"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4421866|http://www.wikidata.org/entity/Q4159656"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2008 film by Oksana Bychkova"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20979182"}, "Title": {"type": "literal", "value": "Captain Underpants"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5239955"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2624066"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16239393|http://www.wikidata.org/entity/Q5239955|http://www.wikidata.org/entity/Q4241574|http://www.wikidata.org/entity/Q3371986|http://www.wikidata.org/entity/Q912938|http://www.wikidata.org/entity/Q704443|http://www.wikidata.org/entity/Q618352|http://www.wikidata.org/entity/Q328790|http://www.wikidata.org/entity/Q272927|http://www.wikidata.org/entity/Q28717"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1535153|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2017 film by David Soren"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q500088"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q477965"}, "Title": {"type": "literal", "value": "Persepolis"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1890346|http://www.wikidata.org/entity/Q126633"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q126633"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q645928|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2007 animated film by Marjane Satrapi and Vincent Paronnaud"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1320443|http://www.wikidata.org/entity/Q3521465"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20725541"}, "Title": {"type": "literal", "value": "Kartoffelsalat \u2013 Nicht fragen!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21033948"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15851238"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q101159|http://www.wikidata.org/entity/Q98362|http://www.wikidata.org/entity/Q87395|http://www.wikidata.org/entity/Q59485|http://www.wikidata.org/entity/Q19958947|http://www.wikidata.org/entity/Q19286280|http://www.wikidata.org/entity/Q16508914|http://www.wikidata.org/entity/Q15851238|http://www.wikidata.org/entity/Q2165705|http://www.wikidata.org/entity/Q1736848|http://www.wikidata.org/entity/Q1724962|http://www.wikidata.org/entity/Q1600407|http://www.wikidata.org/entity/Q1434162|http://www.wikidata.org/entity/Q1279837|http://www.wikidata.org/entity/Q1065885|http://www.wikidata.org/entity/Q216382"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1747837|http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "81"}, "Description": {"type": "literal", "value": "2015 film by Michael David Pate"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15043355"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7135164"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4765227"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41152319|http://www.wikidata.org/entity/Q7377514|http://www.wikidata.org/entity/Q7135164|http://www.wikidata.org/entity/Q46018"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Parambrata Chatterjee"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23010088"}, "Title": {"type": "literal", "value": "Spider-Man: Homecoming"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18519749"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26268915|http://www.wikidata.org/entity/Q26268901|http://www.wikidata.org/entity/Q18519749|http://www.wikidata.org/entity/Q6273224|http://www.wikidata.org/entity/Q5107425|http://www.wikidata.org/entity/Q342636"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21004892|http://www.wikidata.org/entity/Q20630818|http://www.wikidata.org/entity/Q19958195|http://www.wikidata.org/entity/Q18655744|http://www.wikidata.org/entity/Q16237562|http://www.wikidata.org/entity/Q6774445|http://www.wikidata.org/entity/Q5649155|http://www.wikidata.org/entity/Q5526127|http://www.wikidata.org/entity/Q3558573|http://www.wikidata.org/entity/Q2658535|http://www.wikidata.org/entity/Q2469967|http://www.wikidata.org/entity/Q2415122|http://www.wikidata.org/entity/Q2023710|http://www.wikidata.org/entity/Q1239933|http://www.wikidata.org/entity/Q1139685|http://www.wikidata.org/entity/Q716343|http://www.wikidata.org/entity/Q472084|http://www.wikidata.org/entity/Q450219|http://www.wikidata.org/entity/Q26692028|http://www.wikidata.org/entity/Q26213909|http://www.wikidata.org/entity/Q24034671|http://www.wikidata.org/entity/Q23894602|http://www.wikidata.org/entity/Q257625|http://www.wikidata.org/entity/Q255651|http://www.wikidata.org/entity/Q191828|http://www.wikidata.org/entity/Q295964|http://www.wikidata.org/entity/Q7801211|http://www.wikidata.org/entity/Q6832484|http://www.wikidata.org/entity/Q189489|http://www.wikidata.org/entity/Q181900|http://www.wikidata.org/entity/Q178348|http://www.wikidata.org/entity/Q165219|http://www.wikidata.org/entity/Q138005|http://www.wikidata.org/entity/Q103343|http://www.wikidata.org/entity/Q34460"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q20656232|http://www.wikidata.org/entity/Q2678111|http://www.wikidata.org/entity/Q1535153"}, "Duration": {"type": "literal", "value": "133"}, "Description": {"type": "literal", "value": "2017 superhero film produced by Marvel Studios and Columbia Pictures"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q367466|http://www.wikidata.org/entity/Q186941"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19308780"}, "Title": {"type": "literal", "value": "Schmidts Katze"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17352993"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17352993"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19277385|http://www.wikidata.org/entity/Q1928471|http://www.wikidata.org/entity/Q1762340|http://www.wikidata.org/entity/Q1503531|http://www.wikidata.org/entity/Q1501266|http://www.wikidata.org/entity/Q1237837|http://www.wikidata.org/entity/Q1078759|http://www.wikidata.org/entity/Q567109|http://www.wikidata.org/entity/Q564095|http://www.wikidata.org/entity/Q125238|http://www.wikidata.org/entity/Q108164|http://www.wikidata.org/entity/Q106553|http://www.wikidata.org/entity/Q100333|http://www.wikidata.org/entity/Q98976|http://www.wikidata.org/entity/Q88570"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2015 German comedy film directed by Marc Schlegel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10729096"}, "Title": {"type": "literal", "value": "Tomme t\u00f8nner"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22344468|http://www.wikidata.org/entity/Q10729540"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22344468|http://www.wikidata.org/entity/Q10729540"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17114252|http://www.wikidata.org/entity/Q11971676|http://www.wikidata.org/entity/Q10729540|http://www.wikidata.org/entity/Q7710517|http://www.wikidata.org/entity/Q4988538|http://www.wikidata.org/entity/Q4919937|http://www.wikidata.org/entity/Q4753762|http://www.wikidata.org/entity/Q4569518|http://www.wikidata.org/entity/Q2740052|http://www.wikidata.org/entity/Q2669356|http://www.wikidata.org/entity/Q1190263|http://www.wikidata.org/entity/Q707827"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2010 Norwegian film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18152938"}, "Title": {"type": "literal", "value": "Not Cool"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q311078"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2014 film by Shane Dawson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3005990"}, "Title": {"type": "literal", "value": "Crystal Fairy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3818280"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3818280"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3818280|http://www.wikidata.org/entity/Q2827359|http://www.wikidata.org/entity/Q309555|http://www.wikidata.org/entity/Q292381"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2013 film by Sebasti\u00e1n Silva"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3472324"}, "Title": {"type": "literal", "value": "Nasi Lemak 2.0"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q717075"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q717075"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film directed by Namewee"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55692831"}, "Title": {"type": "literal", "value": "Tag am Meer"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55692698"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55692698"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19278419|http://www.wikidata.org/entity/Q1891604"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Moritz Gerber"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3282812"}, "Title": {"type": "literal", "value": "Late Night Shopping"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7427324"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q528276|http://www.wikidata.org/entity/Q509628|http://www.wikidata.org/entity/Q236010|http://www.wikidata.org/entity/Q62510"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2001 film by Saul Metzstein"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1423820"}, "Title": {"type": "literal", "value": "Komm n\u00e4her"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q104726"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19296775|http://www.wikidata.org/entity/Q1894569|http://www.wikidata.org/entity/Q1619430|http://www.wikidata.org/entity/Q1594410|http://www.wikidata.org/entity/Q1468043|http://www.wikidata.org/entity/Q215565|http://www.wikidata.org/entity/Q105283|http://www.wikidata.org/entity/Q96086|http://www.wikidata.org/entity/Q65511"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2006 film by Vanessa Jopp"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43529030"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q115106"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Stefan J\u00e4ger"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5028853"}, "Title": {"type": "literal", "value": "Can't Complain"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7326897"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Richard Johnson"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5579097"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6098281"}, "Title": {"type": "literal", "value": "G.D.O. KaraKedi"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3328043"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8082387"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8082387"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Murat Aslan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4040532"}, "Title": {"type": "literal", "value": "Hellbenders"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3156773"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q935167|http://www.wikidata.org/entity/Q493227|http://www.wikidata.org/entity/Q374263|http://www.wikidata.org/entity/Q4488"}, "Published": {"type": "literal", "value": "2014|2013|2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2012 film by J. T. Petty"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4143320"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4078134"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4078134"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16637794|http://www.wikidata.org/entity/Q4527529|http://www.wikidata.org/entity/Q4494015|http://www.wikidata.org/entity/Q4415046|http://www.wikidata.org/entity/Q4107061|http://www.wikidata.org/entity/Q4077904"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Pavel Bardin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3592994"}, "Title": {"type": "literal", "value": "\u039d\u03aesos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20995398"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q53709810|http://www.wikidata.org/entity/Q16329317|http://www.wikidata.org/entity/Q16327662|http://www.wikidata.org/entity/Q12885192|http://www.wikidata.org/entity/Q12881978|http://www.wikidata.org/entity/Q12877458|http://www.wikidata.org/entity/Q12876930|http://www.wikidata.org/entity/Q12875582|http://www.wikidata.org/entity/Q6433527|http://www.wikidata.org/entity/Q3201194"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Christos Dimas"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13380366"}, "Title": {"type": "literal", "value": "Les Gar\u00e7ons et Guillaume, \u00e0 table !"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q388744"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q388744"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22138692|http://www.wikidata.org/entity/Q21294617|http://www.wikidata.org/entity/Q17521641|http://www.wikidata.org/entity/Q16832022|http://www.wikidata.org/entity/Q14928140|http://www.wikidata.org/entity/Q3574068|http://www.wikidata.org/entity/Q3573721|http://www.wikidata.org/entity/Q3424854|http://www.wikidata.org/entity/Q3422822|http://www.wikidata.org/entity/Q3384713|http://www.wikidata.org/entity/Q3335761|http://www.wikidata.org/entity/Q3134621|http://www.wikidata.org/entity/Q3086545|http://www.wikidata.org/entity/Q3083340|http://www.wikidata.org/entity/Q2925417|http://www.wikidata.org/entity/Q2848242|http://www.wikidata.org/entity/Q456668|http://www.wikidata.org/entity/Q388744|http://www.wikidata.org/entity/Q62676|http://www.wikidata.org/entity/Q57118"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2013 film by Guillaume Gallienne"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16232068"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12747830"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16082383|http://www.wikidata.org/entity/Q12908937|http://www.wikidata.org/entity/Q12747891|http://www.wikidata.org/entity/Q11141512|http://www.wikidata.org/entity/Q11119903|http://www.wikidata.org/entity/Q11084829|http://www.wikidata.org/entity/Q11039554|http://www.wikidata.org/entity/Q1563211|http://www.wikidata.org/entity/Q1254980|http://www.wikidata.org/entity/Q1253391|http://www.wikidata.org/entity/Q213429|http://www.wikidata.org/entity/Q16082956"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film directed by Jug Radivojevi\u0107"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5793392"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1592579"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23664851|http://www.wikidata.org/entity/Q15429506|http://www.wikidata.org/entity/Q8198107|http://www.wikidata.org/entity/Q7299866|http://www.wikidata.org/entity/Q5923510|http://www.wikidata.org/entity/Q4777014|http://www.wikidata.org/entity/Q3810042|http://www.wikidata.org/entity/Q1592579|http://www.wikidata.org/entity/Q454079"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Marcel Barrena"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q855284"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q354554"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q354554"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5619623|http://www.wikidata.org/entity/Q704130"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 Chinese film from Ning Hao"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12178728"}, "Title": {"type": "literal", "value": "Ladrones a Domicilio"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28028515"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1517341"}, "Title": {"type": "literal", "value": "\u0915\u094d\u092f\u0942\u0901 ! \u0939\u094b \u0917\u092f\u093e \u0928\u093e"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7409513"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q731854"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2575841|http://www.wikidata.org/entity/Q983043|http://www.wikidata.org/entity/Q731854|http://www.wikidata.org/entity/Q466080|http://www.wikidata.org/entity/Q80309|http://www.wikidata.org/entity/Q47059|http://www.wikidata.org/entity/Q9570"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "168"}, "Description": {"type": "literal", "value": "2004 film by Samir Karnik"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3311596"}, "Title": {"type": "literal", "value": "\u00bfPara qu\u00e9 sirve un oso?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23695803"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6186497|http://www.wikidata.org/entity/Q2602857|http://www.wikidata.org/entity/Q537931|http://www.wikidata.org/entity/Q459348|http://www.wikidata.org/entity/Q230636"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Tom Fern\u00e1ndez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15824242"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1246111"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1246111"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "9"}, "Description": {"type": "literal", "value": "2005 film by Doron Wisotzky"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25477896"}, "Title": {"type": "literal", "value": "Recep \u0130vedik 5"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7813033"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q388027"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q388027"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Togan G\u00f6kbakar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25437113"}, "Title": {"type": "literal", "value": "Red Dog: True Blue"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6438600"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18581761|http://www.wikidata.org/entity/Q363659|http://www.wikidata.org/entity/Q214223"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2016 film by Kriv Stenders"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2818572"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3570535"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3570535"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16832004|http://www.wikidata.org/entity/Q3570535|http://www.wikidata.org/entity/Q2994803|http://www.wikidata.org/entity/Q2837284|http://www.wikidata.org/entity/Q1187592|http://www.wikidata.org/entity/Q441571|http://www.wikidata.org/entity/Q435925"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2009 film by Xabi Molia"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27996982"}, "Title": {"type": "literal", "value": "Bulgarski Po\u015bcikk"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9166187"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9390232"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1772792"}, "Title": {"type": "literal", "value": "Brief Interviews with Hideous Men"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q313039"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q313039"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10879432|http://www.wikidata.org/entity/Q3308101|http://www.wikidata.org/entity/Q1433160|http://www.wikidata.org/entity/Q1319744|http://www.wikidata.org/entity/Q1095834|http://www.wikidata.org/entity/Q1077549|http://www.wikidata.org/entity/Q943589|http://www.wikidata.org/entity/Q816502|http://www.wikidata.org/entity/Q708512|http://www.wikidata.org/entity/Q665532|http://www.wikidata.org/entity/Q629696|http://www.wikidata.org/entity/Q540608|http://www.wikidata.org/entity/Q472282|http://www.wikidata.org/entity/Q428819|http://www.wikidata.org/entity/Q380095|http://www.wikidata.org/entity/Q360426|http://www.wikidata.org/entity/Q355116|http://www.wikidata.org/entity/Q317761|http://www.wikidata.org/entity/Q313039|http://www.wikidata.org/entity/Q310324|http://www.wikidata.org/entity/Q259663|http://www.wikidata.org/entity/Q232371|http://www.wikidata.org/entity/Q83851|http://www.wikidata.org/entity/Q72749|http://www.wikidata.org/entity/Q26231"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2009 film by John Krasinski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q52151285"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3327868"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1998 American comedy film written and directed by Steven Ho"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1617244"}, "Title": {"type": "literal", "value": "Hick"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5262580"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5262580|http://www.wikidata.org/entity/Q4755235"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5230045|http://www.wikidata.org/entity/Q2073496|http://www.wikidata.org/entity/Q974076|http://www.wikidata.org/entity/Q928592|http://www.wikidata.org/entity/Q570006|http://www.wikidata.org/entity/Q529454|http://www.wikidata.org/entity/Q431038|http://www.wikidata.org/entity/Q352012|http://www.wikidata.org/entity/Q230523|http://www.wikidata.org/entity/Q170572|http://www.wikidata.org/entity/Q162959|http://www.wikidata.org/entity/Q28288|http://www.wikidata.org/entity/Q4509"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q1776156|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2011 film by Derick Martini"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28968015"}, "Title": {"type": "literal", "value": "Mr. Roosevelt"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16231614"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16231614"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by No\u00ebl Wells"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10275307"}, "Title": {"type": "literal", "value": "Esquece Tudo o que Te Disse"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4777558"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2002 film by Ant\u00f3nio Ferreira"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23565532"}, "Title": {"type": "literal", "value": "Ein Scheusal zum Verlieben"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2277288"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2000 film by Sharon von Wietersheim"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q31271511"}, "Title": {"type": "literal", "value": "Vorw\u00e4rts immer!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1450153"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Franziska Meletzky"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26768815"}, "Title": {"type": "literal", "value": "Y\u00f6sy\u00f6tt\u00f6"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16989960"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1900829"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3377711"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2017 film by Marja Pyykk\u00f6"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2740839"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q45042477"}, "Title": {"type": "literal", "value": "Friedliche Zeiten"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1974092"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1520844"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1452625|http://www.wikidata.org/entity/Q1276098|http://www.wikidata.org/entity/Q113799"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Neele Leana Vollmar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3054309"}, "Title": {"type": "literal", "value": "\u0b87\u0b99\u0bcd\u0b95\u0bbf\u0bb2\u0bc0\u0bb7\u0bcd \u0bb5\u0bbf\u0b99\u0bcd\u0b95\u0bbf\u0bb2\u0bbf\u0bb7\u0bcd"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5527787"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5527787"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7246458|http://www.wikidata.org/entity/Q339896|http://www.wikidata.org/entity/Q304707|http://www.wikidata.org/entity/Q270691|http://www.wikidata.org/entity/Q9570"}, "Published": {"type": "literal", "value": "2013|2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "133"}, "Description": {"type": "literal", "value": "2012 film by Gauri Shinde"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15136242"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5067759"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5222542"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Chai Yee Wei"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48803062"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26702988"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Eva Vives"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13013905"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6630018"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film directed by Worrawech Danuwong"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18786753"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7377749"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16239340"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Yogaraj Bhat"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18693367"}, "Title": {"type": "literal", "value": "Luokkakokous"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23040730"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Taneli Mustonen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q44072803"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1059004"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Haim Tabakman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4328701"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4219916"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4314368"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2012 film directed by Asjot Gevorgovitsj Kesjtsjjan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30889904"}, "Title": {"type": "literal", "value": "Lasciati andare"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3749525"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3749525|http://www.wikidata.org/entity/Q3080921"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1041563|http://www.wikidata.org/entity/Q603089|http://www.wikidata.org/entity/Q456850|http://www.wikidata.org/entity/Q16560487|http://www.wikidata.org/entity/Q4007672|http://www.wikidata.org/entity/Q3904256|http://www.wikidata.org/entity/Q3838188|http://www.wikidata.org/entity/Q3659538|http://www.wikidata.org/entity/Q1054572"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2017 movie by Francesco Amato"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3663776"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2481380"}, "Title": {"type": "literal", "value": "Gigante"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q377718"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q377718"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5913061|http://www.wikidata.org/entity/Q658991"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2009 film by Adri\u00e1n Biniez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4110387"}, "Title": {"type": "literal", "value": "Supervoksen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29045110"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q175510"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4938066|http://www.wikidata.org/entity/Q4568552|http://www.wikidata.org/entity/Q728020|http://www.wikidata.org/entity/Q445772|http://www.wikidata.org/entity/Q186501|http://www.wikidata.org/entity/Q41236475|http://www.wikidata.org/entity/Q38052532|http://www.wikidata.org/entity/Q25750334|http://www.wikidata.org/entity/Q12338493|http://www.wikidata.org/entity/Q12327525|http://www.wikidata.org/entity/Q12325623|http://www.wikidata.org/entity/Q12321301|http://www.wikidata.org/entity/Q12320462|http://www.wikidata.org/entity/Q12310008|http://www.wikidata.org/entity/Q12305708|http://www.wikidata.org/entity/Q7169413|http://www.wikidata.org/entity/Q5200983|http://www.wikidata.org/entity/Q4968553"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 Danish comedy-drama directed by Christina Rosendahl"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1891982"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q849343"}, "Title": {"type": "literal", "value": "\u0926\u093f\u0932\u0935\u093e\u0932\u0947 \u0926\u0941\u0932\u094d\u0939\u0928\u093f\u092f\u093e \u0932\u0947 \u091c\u093e\u092f\u0947\u0902\u0917\u0947"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q357608"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q357608|http://www.wikidata.org/entity/Q6165333"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3785692|http://www.wikidata.org/entity/Q2721868|http://www.wikidata.org/entity/Q1612623|http://www.wikidata.org/entity/Q560163|http://www.wikidata.org/entity/Q468442|http://www.wikidata.org/entity/Q333443|http://www.wikidata.org/entity/Q157803|http://www.wikidata.org/entity/Q147395|http://www.wikidata.org/entity/Q9535|http://www.wikidata.org/entity/Q7139181|http://www.wikidata.org/entity/Q4791587|http://www.wikidata.org/entity/Q4750942"}, "Published": {"type": "literal", "value": "1995"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "192"}, "Description": {"type": "literal", "value": "1995 film by Aditya Chopra"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1696916"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20001111"}, "Title": {"type": "literal", "value": "Dos amigos y un ladr\u00f3n"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q946048"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6171367|http://www.wikidata.org/entity/Q5775959|http://www.wikidata.org/entity/Q5749344|http://www.wikidata.org/entity/Q4821778"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2007 film by Jaime Lozano"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20022639"}, "Title": {"type": "literal", "value": "Mike and Dave Need Wedding Dates"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27037598"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18211784|http://www.wikidata.org/entity/Q6502479|http://www.wikidata.org/entity/Q6443390|http://www.wikidata.org/entity/Q4678957|http://www.wikidata.org/entity/Q3498453|http://www.wikidata.org/entity/Q3288246|http://www.wikidata.org/entity/Q618233|http://www.wikidata.org/entity/Q531195|http://www.wikidata.org/entity/Q464320|http://www.wikidata.org/entity/Q210547|http://www.wikidata.org/entity/Q171525|http://www.wikidata.org/entity/Q131866|http://www.wikidata.org/entity/Q67701|http://www.wikidata.org/entity/Q45229"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2016 film by Jake Szymanski"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17335666"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15703991"}, "Title": {"type": "literal", "value": "\u0c26\u0c30\u0c41\u0c35\u0c41"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7532267"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13551326|http://www.wikidata.org/entity/Q7994331|http://www.wikidata.org/entity/Q7920143|http://www.wikidata.org/entity/Q7672815|http://www.wikidata.org/entity/Q7586456|http://www.wikidata.org/entity/Q7429093|http://www.wikidata.org/entity/Q7296669|http://www.wikidata.org/entity/Q7282980|http://www.wikidata.org/entity/Q6456254|http://www.wikidata.org/entity/Q6347764|http://www.wikidata.org/entity/Q6167685|http://www.wikidata.org/entity/Q5580832|http://www.wikidata.org/entity/Q5454588|http://www.wikidata.org/entity/Q5269357|http://www.wikidata.org/entity/Q3633952|http://www.wikidata.org/entity/Q277665|http://www.wikidata.org/entity/Q19663667"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "155"}, "Description": {"type": "literal", "value": "2012 Indian film directed by Siva"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2597963"}, "Title": {"type": "literal", "value": "God of Love"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6702134"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6702134"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5363287"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "18"}, "Description": {"type": "literal", "value": "2010 film by Luke Matheny"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2590379"}, "Title": {"type": "literal", "value": "The Necessary Death of Charlie Countryman"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15810427"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16208051"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6272196|http://www.wikidata.org/entity/Q6159535|http://www.wikidata.org/entity/Q6130454|http://www.wikidata.org/entity/Q3825238|http://www.wikidata.org/entity/Q320052|http://www.wikidata.org/entity/Q294647|http://www.wikidata.org/entity/Q229410|http://www.wikidata.org/entity/Q229230|http://www.wikidata.org/entity/Q210547|http://www.wikidata.org/entity/Q200405|http://www.wikidata.org/entity/Q180942|http://www.wikidata.org/entity/Q57391|http://www.wikidata.org/entity/Q19190"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16950433|http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q188473"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2013 film by Fredrik Bond"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19818418"}, "Title": {"type": "literal", "value": "The Road Within"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19592407"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19592407"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q315855|http://www.wikidata.org/entity/Q272977|http://www.wikidata.org/entity/Q245075|http://www.wikidata.org/entity/Q229572|http://www.wikidata.org/entity/Q227129"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2014 film by Gren Wells"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61610255"}, "Title": {"type": "literal", "value": "Pegasus"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q470841"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21018157"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2019 film directed by Han Han"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27916745"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q99871"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2020663"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q160305|http://www.wikidata.org/entity/Q90731|http://www.wikidata.org/entity/Q70727"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2017 film by Robert Thalheim"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18152566"}, "Title": {"type": "literal", "value": "Me & Earl & the Dying Girl"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q489218"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19281586"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q171687|http://www.wikidata.org/entity/Q129591|http://www.wikidata.org/entity/Q20676357|http://www.wikidata.org/entity/Q15069963|http://www.wikidata.org/entity/Q1985488|http://www.wikidata.org/entity/Q1933580|http://www.wikidata.org/entity/Q926989|http://www.wikidata.org/entity/Q888721|http://www.wikidata.org/entity/Q362616|http://www.wikidata.org/entity/Q239145|http://www.wikidata.org/entity/Q235519"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2015 film by Alfonso Gomez-Rejon"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7752396"}, "Title": {"type": "literal", "value": "The Motel"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3308288"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Michael Kang"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q9357755"}, "Title": {"type": "literal", "value": "The Ape"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q306403"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q306403"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by James Franco"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21178818"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24066708"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4536851"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19917936|http://www.wikidata.org/entity/Q4446501|http://www.wikidata.org/entity/Q4222310|http://www.wikidata.org/entity/Q1695947"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "50"}, "Description": {"type": "literal", "value": "2016 film by Andrey Yakovlev"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4444575"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1369031"}, "Title": {"type": "literal", "value": "Prom"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6211585"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24817468"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3990695|http://www.wikidata.org/entity/Q3877881|http://www.wikidata.org/entity/Q1058030|http://www.wikidata.org/entity/Q939351|http://www.wikidata.org/entity/Q714133|http://www.wikidata.org/entity/Q457488|http://www.wikidata.org/entity/Q432385|http://www.wikidata.org/entity/Q272261|http://www.wikidata.org/entity/Q269716|http://www.wikidata.org/entity/Q254954|http://www.wikidata.org/entity/Q242911|http://www.wikidata.org/entity/Q234651|http://www.wikidata.org/entity/Q18043595|http://www.wikidata.org/entity/Q13858351|http://www.wikidata.org/entity/Q6273549|http://www.wikidata.org/entity/Q5244127"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q1054574"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2011 film by Joe Nussbaum"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191224|http://www.wikidata.org/entity/Q24817457"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4369007"}, "Title": {"type": "literal", "value": "\u041f\u043e\u043a\u0430 \u043d\u043e\u0447\u044c \u043d\u0435 \u0440\u0430\u0437\u043b\u0443\u0447\u0438\u0442"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4231887"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4539768|http://www.wikidata.org/entity/Q4424796|http://www.wikidata.org/entity/Q4297949"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Boris Khlebnikov"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16254758"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2839609"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1396281"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Anurag Kashyap"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16829090"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24020308"}, "Title": {"type": "literal", "value": "Nacida para ganar"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6161380"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q203138"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Vicente Villanueva"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5882786"}, "Title": {"type": "literal", "value": "Hollywood Hot Tubs"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14327504"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3178476"}, "Published": {"type": "literal", "value": "1984"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1984 film by Chuck Vincent"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20026853"}, "Title": {"type": "literal", "value": "Keanu"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23761732"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3371986"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23647219|http://www.wikidata.org/entity/Q20895485|http://www.wikidata.org/entity/Q11835264|http://www.wikidata.org/entity/Q6382703|http://www.wikidata.org/entity/Q3371986|http://www.wikidata.org/entity/Q1319744|http://www.wikidata.org/entity/Q347395|http://www.wikidata.org/entity/Q298694|http://www.wikidata.org/entity/Q272956|http://www.wikidata.org/entity/Q43416|http://www.wikidata.org/entity/Q4491"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Peter Atencio"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3549719"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15070019"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15070019"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3587953|http://www.wikidata.org/entity/Q3559680|http://www.wikidata.org/entity/Q3395911|http://www.wikidata.org/entity/Q3340568|http://www.wikidata.org/entity/Q3288347|http://www.wikidata.org/entity/Q3219319|http://www.wikidata.org/entity/Q3190737|http://www.wikidata.org/entity/Q3106155|http://www.wikidata.org/entity/Q3084265|http://www.wikidata.org/entity/Q3026917|http://www.wikidata.org/entity/Q2926691|http://www.wikidata.org/entity/Q2851067|http://www.wikidata.org/entity/Q2378488|http://www.wikidata.org/entity/Q1210548|http://www.wikidata.org/entity/Q239033|http://www.wikidata.org/entity/Q164976"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Alexandre Coffre"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10856056"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11552553"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11552553"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1138475|http://www.wikidata.org/entity/Q908782"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 Japanese film directed by Sh\u016bichi Okita"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5465558"}, "Title": {"type": "literal", "value": "Foodland"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4679817"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4679817"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q369977"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Adam Smoluk"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q548978"}, "Title": {"type": "literal", "value": "Movie 43"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3942954|http://www.wikidata.org/entity/Q1368300|http://www.wikidata.org/entity/Q20656488|http://www.wikidata.org/entity/Q7612160|http://www.wikidata.org/entity/Q888535|http://www.wikidata.org/entity/Q888178|http://www.wikidata.org/entity/Q717015|http://www.wikidata.org/entity/Q470260|http://www.wikidata.org/entity/Q345259|http://www.wikidata.org/entity/Q319204|http://www.wikidata.org/entity/Q219373"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5606156|http://www.wikidata.org/entity/Q888178|http://www.wikidata.org/entity/Q15973457"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1034012|http://www.wikidata.org/entity/Q1033016|http://www.wikidata.org/entity/Q910737|http://www.wikidata.org/entity/Q864408|http://www.wikidata.org/entity/Q723482|http://www.wikidata.org/entity/Q295034|http://www.wikidata.org/entity/Q23814|http://www.wikidata.org/entity/Q19794|http://www.wikidata.org/entity/Q14539|http://www.wikidata.org/entity/Q4509|http://www.wikidata.org/entity/Q107249|http://www.wikidata.org/entity/Q48410|http://www.wikidata.org/entity/Q529478|http://www.wikidata.org/entity/Q503706|http://www.wikidata.org/entity/Q461954|http://www.wikidata.org/entity/Q440956|http://www.wikidata.org/entity/Q343564|http://www.wikidata.org/entity/Q329372|http://www.wikidata.org/entity/Q313204|http://www.wikidata.org/entity/Q310322|http://www.wikidata.org/entity/Q303538|http://www.wikidata.org/entity/Q298672|http://www.wikidata.org/entity/Q298368|http://www.wikidata.org/entity/Q286022|http://www.wikidata.org/entity/Q269869|http://www.wikidata.org/entity/Q255549|http://www.wikidata.org/entity/Q239453|http://www.wikidata.org/entity/Q236822|http://www.wikidata.org/entity/Q236472|http://www.wikidata.org/entity/Q219373|http://www.wikidata.org/entity/Q202765|http://www.wikidata.org/entity/Q560896|http://www.wikidata.org/entity/Q553516|http://www.wikidata.org/entity/Q151168|http://www.wikidata.org/entity/Q296500|http://www.wikidata.org/entity/Q200768|http://www.wikidata.org/entity/Q193212|http://www.wikidata.org/entity/Q189438|http://www.wikidata.org/entity/Q188492|http://www.wikidata.org/entity/Q185268|http://www.wikidata.org/entity/Q178882|http://www.wikidata.org/entity/Q428819|http://www.wikidata.org/entity/Q428368|http://www.wikidata.org/entity/Q169982|http://www.wikidata.org/entity/Q147077|http://www.wikidata.org/entity/Q132616|http://www.wikidata.org/entity/Q129591|http://www.wikidata.org/entity/Q125017|http://www.wikidata.org/entity/Q4349|http://www.wikidata.org/entity/Q4491|http://www.wikidata.org/entity/Q1086790|http://www.wikidata.org/entity/Q1411012|http://www.wikidata.org/entity/Q1429065|http://www.wikidata.org/entity/Q2278533|http://www.wikidata.org/entity/Q4484894|http://www.wikidata.org/entity/Q2468138|http://www.wikidata.org/entity/Q3162786|http://www.wikidata.org/entity/Q3778264"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2013 American independent comedy anthology film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7933978"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q194669"}, "Title": {"type": "literal", "value": "Next Day Air"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3702688"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8049833|http://www.wikidata.org/entity/Q7089885|http://www.wikidata.org/entity/Q1321005|http://www.wikidata.org/entity/Q712964|http://www.wikidata.org/entity/Q314819|http://www.wikidata.org/entity/Q311962|http://www.wikidata.org/entity/Q38875"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5897543|http://www.wikidata.org/entity/Q2678111|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2009 film by Benny Boom"}, "ProductionCompany": {"type": "literal", "value": ""}}]
\ No newline at end of file
+[{"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19826602"}, "Title": {"type": "literal", "value": "C\u00f3mo sobrevivir a una despedida"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30900879"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16298722|http://www.wikidata.org/entity/Q3321329|http://www.wikidata.org/entity/Q2632981|http://www.wikidata.org/entity/Q219878"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Manuela Burl\u00f3 Moreno"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5868848"}, "Title": {"type": "literal", "value": "Fray D\u00f3lar"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1410660"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21451841|http://www.wikidata.org/entity/Q7918859|http://www.wikidata.org/entity/Q6108014|http://www.wikidata.org/entity/Q1764339|http://www.wikidata.org/entity/Q235398"}, "Published": {"type": "literal", "value": "1970"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "1970 film by Ra\u00fal Pe\u00f1a"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21680742"}, "Title": {"type": "literal", "value": "Das Flo\u00df!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23197743"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15224603"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Julia C. Kaiser"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1385258"}, "Title": {"type": "literal", "value": "\u0420\u0443\u0441\u0430\u043b\u043a\u0430"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4289477"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4289477"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4519628"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Anna Melikian"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11682483"}, "Title": {"type": "literal", "value": "La Cage Dor\u00e9e"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3446459"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q139735|http://www.wikidata.org/entity/Q3446459|http://www.wikidata.org/entity/Q3163696"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1775644|http://www.wikidata.org/entity/Q1232804|http://www.wikidata.org/entity/Q595946|http://www.wikidata.org/entity/Q469208|http://www.wikidata.org/entity/Q440305|http://www.wikidata.org/entity/Q289748|http://www.wikidata.org/entity/Q218165|http://www.wikidata.org/entity/Q188432|http://www.wikidata.org/entity/Q18744719|http://www.wikidata.org/entity/Q16526117|http://www.wikidata.org/entity/Q10326114|http://www.wikidata.org/entity/Q5265033|http://www.wikidata.org/entity/Q3446459|http://www.wikidata.org/entity/Q3440076|http://www.wikidata.org/entity/Q3368997|http://www.wikidata.org/entity/Q3261799|http://www.wikidata.org/entity/Q3217601|http://www.wikidata.org/entity/Q2956299|http://www.wikidata.org/entity/Q3186054|http://www.wikidata.org/entity/Q3009779|http://www.wikidata.org/entity/Q2883915"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2013 film by Ruben Alves"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1544011|http://www.wikidata.org/entity/Q2412906|http://www.wikidata.org/entity/Q2595367|http://www.wikidata.org/entity/Q2663746"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q784284"}, "Title": {"type": "literal", "value": "Virgil"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q989586"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q989586"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 French film directed by Mabrouk El Mechri"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7045304"}, "Title": {"type": "literal", "value": "Noah's Arc: Jumping the Broom"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7147898"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7356876|http://www.wikidata.org/entity/Q6179923|http://www.wikidata.org/entity/Q5300924|http://www.wikidata.org/entity/Q5110244|http://www.wikidata.org/entity/Q934999"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2008 film by Patrik-Ian Polk"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q32362276"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4301044"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4301044"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2299195|http://www.wikidata.org/entity/Q473580|http://www.wikidata.org/entity/Q442830|http://www.wikidata.org/entity/Q167243|http://www.wikidata.org/entity/Q16272350|http://www.wikidata.org/entity/Q6860580|http://www.wikidata.org/entity/Q4396438|http://www.wikidata.org/entity/Q4203655|http://www.wikidata.org/entity/Q4107927"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Aleksandr Molochnikov"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5887032"}, "Title": {"type": "literal", "value": "Holyman Undercover"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2253352"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3776459|http://www.wikidata.org/entity/Q2253352|http://www.wikidata.org/entity/Q1101612|http://www.wikidata.org/entity/Q449521|http://www.wikidata.org/entity/Q434707|http://www.wikidata.org/entity/Q293042|http://www.wikidata.org/entity/Q286642|http://www.wikidata.org/entity/Q262738"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2010 film by David A. R. White"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7261086"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15641052"}, "Title": {"type": "literal", "value": "Facet"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24845007"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11737014"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1150515"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15073893"}, "Title": {"type": "literal", "value": "Feuchtgebiete"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1177226"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1177226"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17537213|http://www.wikidata.org/entity/Q14906908|http://www.wikidata.org/entity/Q1085410|http://www.wikidata.org/entity/Q109492|http://www.wikidata.org/entity/Q101149|http://www.wikidata.org/entity/Q91742|http://www.wikidata.org/entity/Q65511"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "2013 film directed by David Wnendt"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10355917"}, "Title": {"type": "literal", "value": "Quarta B"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10325104"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2005 film by Marcelo Galv\u00e3o"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19473346"}, "Title": {"type": "literal", "value": "Bana Masal Anlatma"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6068775"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6068775"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6093188|http://www.wikidata.org/entity/Q6086507|http://www.wikidata.org/entity/Q6038823|http://www.wikidata.org/entity/Q6030798|http://www.wikidata.org/entity/Q5385183|http://www.wikidata.org/entity/Q1264350|http://www.wikidata.org/entity/Q735511|http://www.wikidata.org/entity/Q6220872|http://www.wikidata.org/entity/Q6100684"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Burak Aksak"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2579741"}, "Title": {"type": "literal", "value": "10 Years"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6147125"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6147125"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q503706|http://www.wikidata.org/entity/Q460563|http://www.wikidata.org/entity/Q454494|http://www.wikidata.org/entity/Q360426|http://www.wikidata.org/entity/Q336788|http://www.wikidata.org/entity/Q313039|http://www.wikidata.org/entity/Q302930|http://www.wikidata.org/entity/Q298672|http://www.wikidata.org/entity/Q233237|http://www.wikidata.org/entity/Q232708|http://www.wikidata.org/entity/Q231249|http://www.wikidata.org/entity/Q228692|http://www.wikidata.org/entity/Q212064|http://www.wikidata.org/entity/Q210547|http://www.wikidata.org/entity/Q1334777|http://www.wikidata.org/entity/Q723067|http://www.wikidata.org/entity/Q528126|http://www.wikidata.org/entity/Q511554"}, "Published": {"type": "literal", "value": "2011|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2011 film by Jamie Linden"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17300077"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28495104"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2874774"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q462376"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Axelle Ropert"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q9369567"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9138174"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9138174"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Abelard Giza"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4818963"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4802465"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q707381"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2010 film by Arvin Chen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28497075"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3423028"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3501866"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3423028"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2017 film by Reem Kherici"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16662670"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20161473"}, "Title": {"type": "literal", "value": "Zum Teufel mit der Wahrheit"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16891732"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60056788"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2015 film by Granz Henman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19601592"}, "Title": {"type": "literal", "value": "Ma che bella sorpresa"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3610041"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4007701|http://www.wikidata.org/entity/Q3757463|http://www.wikidata.org/entity/Q3750262|http://www.wikidata.org/entity/Q3667463|http://www.wikidata.org/entity/Q3617651|http://www.wikidata.org/entity/Q1179412|http://www.wikidata.org/entity/Q1009050|http://www.wikidata.org/entity/Q239002"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2015 film by Alessandro Genovesi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3304113|http://www.wikidata.org/entity/Q3683611"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17634960"}, "Title": {"type": "literal", "value": "May in the Summer"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5091954"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5091954|http://www.wikidata.org/entity/Q466051|http://www.wikidata.org/entity/Q315763|http://www.wikidata.org/entity/Q311165|http://www.wikidata.org/entity/Q177993"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2013 film directed by Cherien Dabis"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q303678"}, "Title": {"type": "literal", "value": "Alvin and the Chipmunks: Chipwrecked"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2507259"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1176607|http://www.wikidata.org/entity/Q16643813|http://www.wikidata.org/entity/Q3161959"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14174854|http://www.wikidata.org/entity/Q1189585|http://www.wikidata.org/entity/Q744166|http://www.wikidata.org/entity/Q16208587|http://www.wikidata.org/entity/Q15070009|http://www.wikidata.org/entity/Q612512|http://www.wikidata.org/entity/Q508280|http://www.wikidata.org/entity/Q362332|http://www.wikidata.org/entity/Q313501|http://www.wikidata.org/entity/Q298672|http://www.wikidata.org/entity/Q230203|http://www.wikidata.org/entity/Q191842|http://www.wikidata.org/entity/Q188280|http://www.wikidata.org/entity/Q4960|http://www.wikidata.org/entity/Q4491"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q2143665"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2011 film by Mike Mitchell"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434841|http://www.wikidata.org/entity/Q466459|http://www.wikidata.org/entity/Q3041294|http://www.wikidata.org/entity/Q4841523"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55378466"}, "Title": {"type": "literal", "value": "Feierabendbier"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61641287"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61641287"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50073235|http://www.wikidata.org/entity/Q41962363|http://www.wikidata.org/entity/Q19287013|http://www.wikidata.org/entity/Q409563|http://www.wikidata.org/entity/Q109673|http://www.wikidata.org/entity/Q89703|http://www.wikidata.org/entity/Q76149|http://www.wikidata.org/entity/Q70808|http://www.wikidata.org/entity/Q26734"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Ben Brummer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4181603"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13218078"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4290811"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4189669"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film directed by Marija Makhanko"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1616729"}, "Title": {"type": "literal", "value": "Love Liza"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2438469"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1538140"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16657861|http://www.wikidata.org/entity/Q15489819|http://www.wikidata.org/entity/Q3182044|http://www.wikidata.org/entity/Q3157229|http://www.wikidata.org/entity/Q1676307|http://www.wikidata.org/entity/Q708059|http://www.wikidata.org/entity/Q544465|http://www.wikidata.org/entity/Q376131|http://www.wikidata.org/entity/Q291628|http://www.wikidata.org/entity/Q264996|http://www.wikidata.org/entity/Q198684|http://www.wikidata.org/entity/Q180560"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Todd Louiso"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q544879"}, "Title": {"type": "literal", "value": "Haggard: The Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q297173"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q297173"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3239121|http://www.wikidata.org/entity/Q919042|http://www.wikidata.org/entity/Q711024|http://www.wikidata.org/entity/Q606523|http://www.wikidata.org/entity/Q590152|http://www.wikidata.org/entity/Q509441|http://www.wikidata.org/entity/Q316036|http://www.wikidata.org/entity/Q297173|http://www.wikidata.org/entity/Q295020|http://www.wikidata.org/entity/Q25378"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2003 film by Bam Margera"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16495484"}, "Title": {"type": "literal", "value": "Avassaladoras"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10324869"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2002 film directed by Mara Mour\u00e3o"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q465739"}, "Title": {"type": "literal", "value": "Cyrus"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6166571|http://www.wikidata.org/entity/Q3273787"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6166571|http://www.wikidata.org/entity/Q3273787"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23883683|http://www.wikidata.org/entity/Q6377395|http://www.wikidata.org/entity/Q5405327|http://www.wikidata.org/entity/Q5338029|http://www.wikidata.org/entity/Q2278533|http://www.wikidata.org/entity/Q788586|http://www.wikidata.org/entity/Q313388|http://www.wikidata.org/entity/Q230378|http://www.wikidata.org/entity/Q223110|http://www.wikidata.org/entity/Q191828"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2010 film by Mark Duplass, Jay Duplass"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3476213"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q781534"}, "Title": {"type": "literal", "value": "King of California"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q704287"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q704287"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7001282|http://www.wikidata.org/entity/Q3103867|http://www.wikidata.org/entity/Q1726175|http://www.wikidata.org/entity/Q233404|http://www.wikidata.org/entity/Q229230|http://www.wikidata.org/entity/Q189992|http://www.wikidata.org/entity/Q119798|http://www.wikidata.org/entity/Q63304"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22981906|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2007 film by Mike Cahill"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3879177|http://www.wikidata.org/entity/Q11882864"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3958739"}, "Title": {"type": "literal", "value": "Sgt. Kabukiman N.Y.P.D."}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q944978|http://www.wikidata.org/entity/Q183347"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q183347"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3901579"}, "Published": {"type": "literal", "value": "1991"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1535153|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "1991 film by Michael Herz, Lloyd Kaufman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q640786"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3632934"}, "Title": {"type": "literal", "value": "Bagnomaria"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3765649"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1134748|http://www.wikidata.org/entity/Q3765649|http://www.wikidata.org/entity/Q1357559"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3615563|http://www.wikidata.org/entity/Q3611085|http://www.wikidata.org/entity/Q1038920|http://www.wikidata.org/entity/Q356654|http://www.wikidata.org/entity/Q13460338|http://www.wikidata.org/entity/Q13460329|http://www.wikidata.org/entity/Q4002860|http://www.wikidata.org/entity/Q3903885|http://www.wikidata.org/entity/Q3813936|http://www.wikidata.org/entity/Q3765649|http://www.wikidata.org/entity/Q3763387"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "1999 film by Giorgio Panariello"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3664077"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10518419"}, "Title": {"type": "literal", "value": "Hassel \u2013 Privatspanarna"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6000280"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6000280|http://www.wikidata.org/entity/Q327838"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5743928|http://www.wikidata.org/entity/Q5734874|http://www.wikidata.org/entity/Q5556993|http://www.wikidata.org/entity/Q3124558|http://www.wikidata.org/entity/Q283133|http://www.wikidata.org/entity/Q43326"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by M\u00e5ns M\u00e5nsson"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10410032"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16252753"}, "Title": {"type": "literal", "value": "Lucky Them"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15434666"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4749378|http://www.wikidata.org/entity/Q4069179|http://www.wikidata.org/entity/Q2827706|http://www.wikidata.org/entity/Q1111542|http://www.wikidata.org/entity/Q514020|http://www.wikidata.org/entity/Q420041|http://www.wikidata.org/entity/Q343510|http://www.wikidata.org/entity/Q311615|http://www.wikidata.org/entity/Q229291|http://www.wikidata.org/entity/Q37175"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Megan Griffiths"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q610508"}, "Title": {"type": "literal", "value": "The Lifeguard"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6660324"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6660324"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4717780|http://www.wikidata.org/entity/Q2702964|http://www.wikidata.org/entity/Q1700068|http://www.wikidata.org/entity/Q902656|http://www.wikidata.org/entity/Q716343|http://www.wikidata.org/entity/Q242555|http://www.wikidata.org/entity/Q235219|http://www.wikidata.org/entity/Q178882|http://www.wikidata.org/entity/Q32481"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2013 film by Liz W. Garcia"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42947827"}, "Title": {"type": "literal", "value": "The Beach Bum"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q528949"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q528949"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q726071|http://www.wikidata.org/entity/Q313388|http://www.wikidata.org/entity/Q228638|http://www.wikidata.org/entity/Q188955|http://www.wikidata.org/entity/Q183542|http://www.wikidata.org/entity/Q45229|http://www.wikidata.org/entity/Q6096"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Harmony Korine"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q567633|http://www.wikidata.org/entity/Q17592311"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28497206"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q239897"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q239897"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q310692"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Joann Sfar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q51845269"}, "Title": {"type": "literal", "value": "Matti und Sami und die drei gr\u00f6\u00dften Fehler des Universums"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2337900"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Stefan Westerwelle"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2925981"}, "Title": {"type": "literal", "value": "Broken English"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2381374"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2381374"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41583866|http://www.wikidata.org/entity/Q3571886|http://www.wikidata.org/entity/Q3524303|http://www.wikidata.org/entity/Q3168686|http://www.wikidata.org/entity/Q2454742|http://www.wikidata.org/entity/Q1339485|http://www.wikidata.org/entity/Q1281723|http://www.wikidata.org/entity/Q1026018|http://www.wikidata.org/entity/Q788586|http://www.wikidata.org/entity/Q719556|http://www.wikidata.org/entity/Q713193|http://www.wikidata.org/entity/Q641352|http://www.wikidata.org/entity/Q439105|http://www.wikidata.org/entity/Q316596|http://www.wikidata.org/entity/Q289068|http://www.wikidata.org/entity/Q232965|http://www.wikidata.org/entity/Q229258|http://www.wikidata.org/entity/Q204586|http://www.wikidata.org/entity/Q158250"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Zoe Cassavetes"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12144078"}, "Title": {"type": "literal", "value": "La Cr\u00e8me de la cr\u00e8me"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3196691"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3196691"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16526117|http://www.wikidata.org/entity/Q15973762|http://www.wikidata.org/entity/Q15845538|http://www.wikidata.org/entity/Q15069947|http://www.wikidata.org/entity/Q3570835|http://www.wikidata.org/entity/Q3382828|http://www.wikidata.org/entity/Q3325897|http://www.wikidata.org/entity/Q3183342|http://www.wikidata.org/entity/Q3164195|http://www.wikidata.org/entity/Q3098765|http://www.wikidata.org/entity/Q2833272|http://www.wikidata.org/entity/Q959087|http://www.wikidata.org/entity/Q273342"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 French comedy-drama film directed by Kim Chapiron"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3568109"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2179018"}, "Title": {"type": "literal", "value": "R\u00e9siste \u2013 Aufstand der Praktikanten"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1702949"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1702949"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2009 film by Jonas Grosch"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4461441"}, "Title": {"type": "literal", "value": "\u0422\u043e\u0442 \u0435\u0449\u0451 \u041a\u0430\u0440\u043b\u043e\u0441\u043e\u043d!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4065391"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4065391"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4333716|http://www.wikidata.org/entity/Q4107927|http://www.wikidata.org/entity/Q2029106|http://www.wikidata.org/entity/Q1385036|http://www.wikidata.org/entity/Q1074254|http://www.wikidata.org/entity/Q466139"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q132311"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2012 film by Sarik Andreasyan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4038074"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q908556"}, "Title": {"type": "literal", "value": "Horrible Bosses"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q524897"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6832534|http://www.wikidata.org/entity/Q6273224|http://www.wikidata.org/entity/Q342636"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q365915|http://www.wikidata.org/entity/Q342636|http://www.wikidata.org/entity/Q295974|http://www.wikidata.org/entity/Q284636|http://www.wikidata.org/entity/Q172035|http://www.wikidata.org/entity/Q171905|http://www.wikidata.org/entity/Q103784|http://www.wikidata.org/entity/Q40470|http://www.wikidata.org/entity/Q40248|http://www.wikidata.org/entity/Q32522|http://www.wikidata.org/entity/Q25144|http://www.wikidata.org/entity/Q14539|http://www.wikidata.org/entity/Q524897|http://www.wikidata.org/entity/Q469914|http://www.wikidata.org/entity/Q17386547|http://www.wikidata.org/entity/Q12200303|http://www.wikidata.org/entity/Q5536595|http://www.wikidata.org/entity/Q3441473|http://www.wikidata.org/entity/Q3304418|http://www.wikidata.org/entity/Q2885767|http://www.wikidata.org/entity/Q936507|http://www.wikidata.org/entity/Q727730|http://www.wikidata.org/entity/Q718078"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2011 American black comedy film directed by Seth Gordon"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q79202"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60847317"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q451813"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Romane Bohringer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6025860"}, "Title": {"type": "literal", "value": "Muertos de susto"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16302557"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Harold Trompetero"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q303040"}, "Title": {"type": "literal", "value": "American Reunion"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q950283|http://www.wikidata.org/entity/Q3112667"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q950283|http://www.wikidata.org/entity/Q3112667"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q312705|http://www.wikidata.org/entity/Q312129|http://www.wikidata.org/entity/Q269924|http://www.wikidata.org/entity/Q256884|http://www.wikidata.org/entity/Q34219060|http://www.wikidata.org/entity/Q16149506|http://www.wikidata.org/entity/Q2483172|http://www.wikidata.org/entity/Q236472|http://www.wikidata.org/entity/Q234207|http://www.wikidata.org/entity/Q232851|http://www.wikidata.org/entity/Q230960|http://www.wikidata.org/entity/Q230278|http://www.wikidata.org/entity/Q228882|http://www.wikidata.org/entity/Q223303|http://www.wikidata.org/entity/Q211082|http://www.wikidata.org/entity/Q199927|http://www.wikidata.org/entity/Q193212|http://www.wikidata.org/entity/Q1139296|http://www.wikidata.org/entity/Q973437|http://www.wikidata.org/entity/Q900426|http://www.wikidata.org/entity/Q485310|http://www.wikidata.org/entity/Q471833|http://www.wikidata.org/entity/Q442298|http://www.wikidata.org/entity/Q362236|http://www.wikidata.org/entity/Q352696|http://www.wikidata.org/entity/Q350811|http://www.wikidata.org/entity/Q343453|http://www.wikidata.org/entity/Q314421"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "113"}, "Description": {"type": "literal", "value": "2012 US comedy film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2702789|http://www.wikidata.org/entity/Q8071490|http://www.wikidata.org/entity/Q168383"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24287549"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11763135"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Lubomyr Levytskyi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18289415"}, "Title": {"type": "literal", "value": "Ett \u00f6ga r\u00f6tt"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6230804"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16497172"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6179712"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2007 film by Daniel Wallentin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15695586"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3286702"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3440698|http://www.wikidata.org/entity/Q3340672|http://www.wikidata.org/entity/Q3286702"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3501471|http://www.wikidata.org/entity/Q3440698|http://www.wikidata.org/entity/Q3379789|http://www.wikidata.org/entity/Q3369121|http://www.wikidata.org/entity/Q3367364|http://www.wikidata.org/entity/Q3286702|http://www.wikidata.org/entity/Q3165518|http://www.wikidata.org/entity/Q2834044|http://www.wikidata.org/entity/Q434051|http://www.wikidata.org/entity/Q298173"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Manu Payet"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3264200"}, "Title": {"type": "literal", "value": "The Love Punch"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q595112"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q595112"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5365035|http://www.wikidata.org/entity/Q3554532|http://www.wikidata.org/entity/Q3350901|http://www.wikidata.org/entity/Q3219319|http://www.wikidata.org/entity/Q3166616|http://www.wikidata.org/entity/Q2460289|http://www.wikidata.org/entity/Q1325733|http://www.wikidata.org/entity/Q515374|http://www.wikidata.org/entity/Q467502|http://www.wikidata.org/entity/Q434523|http://www.wikidata.org/entity/Q287824|http://www.wikidata.org/entity/Q285419|http://www.wikidata.org/entity/Q269873|http://www.wikidata.org/entity/Q168724|http://www.wikidata.org/entity/Q117300|http://www.wikidata.org/entity/Q81520"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2013 film by Joel Hopkins"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3285728"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3560613"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 television film directed by Julia Ducournau and Virgile Bramly"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3204319"}, "Title": {"type": "literal", "value": "A Nyomoz\u00f3"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1010438"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1010438"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24279346|http://www.wikidata.org/entity/Q22105136|http://www.wikidata.org/entity/Q21752620|http://www.wikidata.org/entity/Q18961112|http://www.wikidata.org/entity/Q6468610|http://www.wikidata.org/entity/Q1462078|http://www.wikidata.org/entity/Q1318134|http://www.wikidata.org/entity/Q1288631|http://www.wikidata.org/entity/Q1248715|http://www.wikidata.org/entity/Q1107287|http://www.wikidata.org/entity/Q1105174|http://www.wikidata.org/entity/Q1101919|http://www.wikidata.org/entity/Q1002358|http://www.wikidata.org/entity/Q804373|http://www.wikidata.org/entity/Q769509"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Attila Gigor"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3213713"}, "Title": {"type": "literal", "value": "La Vie secr\u00e8te des gens heureux"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7630008"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3105869|http://www.wikidata.org/entity/Q2514109"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by St\u00e9phane Lapointe"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3230389"}, "Title": {"type": "literal", "value": "Les Adopt\u00e9s"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q234581"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q234581"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1647279|http://www.wikidata.org/entity/Q967764|http://www.wikidata.org/entity/Q759001|http://www.wikidata.org/entity/Q511848|http://www.wikidata.org/entity/Q234581"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by M\u00e9lanie Laurent"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60848523"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18744856"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Anthony Marciano"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27442159"}, "Title": {"type": "literal", "value": "Schwester Wei\u00df"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1189562"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1189562"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q58435299|http://www.wikidata.org/entity/Q58431245|http://www.wikidata.org/entity/Q23061734|http://www.wikidata.org/entity/Q4263266|http://www.wikidata.org/entity/Q1570556|http://www.wikidata.org/entity/Q1379064|http://www.wikidata.org/entity/Q813263|http://www.wikidata.org/entity/Q91772"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Dennis Todorovi\u0107"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4830743"}, "Title": {"type": "literal", "value": "Ay Lav Yu"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6090416"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6090416"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8189010|http://www.wikidata.org/entity/Q1575584|http://www.wikidata.org/entity/Q318685|http://www.wikidata.org/entity/Q234101"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Sermiyan Midyat"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6017691"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2641549"}, "Title": {"type": "literal", "value": "Alex und der L\u00f6we"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2601941"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q101303"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q110086|http://www.wikidata.org/entity/Q101303|http://www.wikidata.org/entity/Q63688"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2010 film by Yuri G\u00e1rate"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18290460"}, "Title": {"type": "literal", "value": "Hall\u00e5hall\u00e5"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1809801"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1809801"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22932291|http://www.wikidata.org/entity/Q15918074|http://www.wikidata.org/entity/Q5940845|http://www.wikidata.org/entity/Q4946214|http://www.wikidata.org/entity/Q4410921|http://www.wikidata.org/entity/Q440773|http://www.wikidata.org/entity/Q201685"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2014 film by Maria Blom"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5914115"}, "Title": {"type": "literal", "value": "Ilusiones \u00f3pticas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5791600"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5791600|http://www.wikidata.org/entity/Q4523200"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20015770|http://www.wikidata.org/entity/Q20011239|http://www.wikidata.org/entity/Q5791600|http://www.wikidata.org/entity/Q260909"}, "Published": {"type": "literal", "value": "2010|2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Cristi\u00e1n Jim\u00e9nez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3894723"}, "Title": {"type": "literal", "value": "Paper Soldiers"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q344384"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q559074"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7090186|http://www.wikidata.org/entity/Q618352|http://www.wikidata.org/entity/Q516716|http://www.wikidata.org/entity/Q454328|http://www.wikidata.org/entity/Q342252|http://www.wikidata.org/entity/Q129747|http://www.wikidata.org/entity/Q62766"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5897543|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2002 film by Damon Dash"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3401848"}, "Title": {"type": "literal", "value": "Premium"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7171893"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7171893"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q943589|http://www.wikidata.org/entity/Q476760|http://www.wikidata.org/entity/Q463536|http://www.wikidata.org/entity/Q269485|http://www.wikidata.org/entity/Q190162|http://www.wikidata.org/entity/Q152542"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Pete Chatmon"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q624124"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18223455"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4132779|http://www.wikidata.org/entity/Q490402|http://www.wikidata.org/entity/Q485773|http://www.wikidata.org/entity/Q483517"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q1339864|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Lee Hae-jun"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55818686"}, "Title": {"type": "literal", "value": "The Breaker Upperers"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6726935|http://www.wikidata.org/entity/Q55070734"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6726935|http://www.wikidata.org/entity/Q55070734"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q133112"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2018 New Zealand film by Madeleine Sami and Jackie van Beek"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4160180"}, "Title": {"type": "literal", "value": "\u0414\u0436\u0435\u043d\u0442\u043b\u044c\u043c\u0435\u043d\u044b, \u0443\u0434\u0430\u0447\u0438!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4222061|http://www.wikidata.org/entity/Q4077720"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4422831"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1385036|http://www.wikidata.org/entity/Q473580"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1200678|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2012 film by Aleksandr Baranov"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2892410"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17112933"}, "Title": {"type": "literal", "value": "Scouts vs. Zombies"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3675834"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24988951|http://www.wikidata.org/entity/Q3675834"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22958132|http://www.wikidata.org/entity/Q20819867|http://www.wikidata.org/entity/Q13643654|http://www.wikidata.org/entity/Q7822415|http://www.wikidata.org/entity/Q6181315|http://www.wikidata.org/entity/Q164328|http://www.wikidata.org/entity/Q128828|http://www.wikidata.org/entity/Q4924324|http://www.wikidata.org/entity/Q918917|http://www.wikidata.org/entity/Q901541|http://www.wikidata.org/entity/Q760896|http://www.wikidata.org/entity/Q513169|http://www.wikidata.org/entity/Q230131"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1747837|http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2015 film by Christopher B. Landon"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q159846"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56261070"}, "Title": {"type": "literal", "value": "Game Over Club"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19618406"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19618406"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28736479|http://www.wikidata.org/entity/Q19598315|http://www.wikidata.org/entity/Q16522080|http://www.wikidata.org/entity/Q1293524|http://www.wikidata.org/entity/Q1122946|http://www.wikidata.org/entity/Q1005938|http://www.wikidata.org/entity/Q781617|http://www.wikidata.org/entity/Q280007"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film in development in 2018 directed by D\u00e1vid G\u00e9czy"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60177501"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3084424"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q983159"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Fran\u00e7ois Desagnat"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3791170"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3938128"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3938128"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3956224|http://www.wikidata.org/entity/Q3701809|http://www.wikidata.org/entity/Q959138"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2011 film by Roan Johnson"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16586658"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61813629"}, "Title": {"type": "literal", "value": "Rate Your Date"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61989867"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61989867|http://www.wikidata.org/entity/Q59657338"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23817046|http://www.wikidata.org/entity/Q21880688|http://www.wikidata.org/entity/Q11912904|http://www.wikidata.org/entity/Q1827705|http://www.wikidata.org/entity/Q1310400|http://www.wikidata.org/entity/Q1254834|http://www.wikidata.org/entity/Q87438|http://www.wikidata.org/entity/Q27947502"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film by David Dietl"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2413068"}, "Title": {"type": "literal", "value": "The New Tenants"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1689960"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q491314"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3237662|http://www.wikidata.org/entity/Q1334725|http://www.wikidata.org/entity/Q320052"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "12"}, "Description": {"type": "literal", "value": "2009 film by Joachim Back"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60999962"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6512491"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Diogo Morgado"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30880865"}, "Title": {"type": "literal", "value": "I peggiori"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4013079"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4013079"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2017 film by Vincenzo Alfieri"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q126399"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18389602"}, "Title": {"type": "literal", "value": "The Duff"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q653911"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18149711"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24045551|http://www.wikidata.org/entity/Q19787204|http://www.wikidata.org/entity/Q13560463|http://www.wikidata.org/entity/Q7027085|http://www.wikidata.org/entity/Q5108532|http://www.wikidata.org/entity/Q926420|http://www.wikidata.org/entity/Q924104|http://www.wikidata.org/entity/Q440910|http://www.wikidata.org/entity/Q269671|http://www.wikidata.org/entity/Q232307|http://www.wikidata.org/entity/Q229487|http://www.wikidata.org/entity/Q208117"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2015 film by Ari Sandel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q51077958"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q59311592"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2018 film by Alessandro Aronadio"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3804257"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18152484"}, "Title": {"type": "literal", "value": "Hello, My Name Is Doris"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2092899"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2092899"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17305622|http://www.wikidata.org/entity/Q16223299|http://www.wikidata.org/entity/Q1150569|http://www.wikidata.org/entity/Q515717|http://www.wikidata.org/entity/Q508404|http://www.wikidata.org/entity/Q464320|http://www.wikidata.org/entity/Q309900|http://www.wikidata.org/entity/Q264306|http://www.wikidata.org/entity/Q255651|http://www.wikidata.org/entity/Q234207|http://www.wikidata.org/entity/Q187033|http://www.wikidata.org/entity/Q165296|http://www.wikidata.org/entity/Q60802"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2015 film by Michael Showalter"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q481606"}, "Title": {"type": "literal", "value": "Wickie auf gro\u00dfer Fahrt"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q104373"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q723525|http://www.wikidata.org/entity/Q104373"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1933281|http://www.wikidata.org/entity/Q1921390|http://www.wikidata.org/entity/Q1078759|http://www.wikidata.org/entity/Q102709|http://www.wikidata.org/entity/Q98299|http://www.wikidata.org/entity/Q95311|http://www.wikidata.org/entity/Q89284|http://www.wikidata.org/entity/Q77991|http://www.wikidata.org/entity/Q76644|http://www.wikidata.org/entity/Q45338"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2011 German 3D adventure film directed by Christian Ditter"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4445945"}, "Title": {"type": "literal", "value": "\u0421\u0443\u043c\u0430\u0441\u0448\u0435\u0434\u0448\u0430\u044f \u043f\u043e\u043c\u043e\u0449\u044c|Sumasshedshaya Pomoshch"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4231887"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4231887"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4539768|http://www.wikidata.org/entity/Q4513343|http://www.wikidata.org/entity/Q4297949|http://www.wikidata.org/entity/Q4251347|http://www.wikidata.org/entity/Q4175516|http://www.wikidata.org/entity/Q4150268|http://www.wikidata.org/entity/Q4099923|http://www.wikidata.org/entity/Q3955911"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Boris Khlebnikov"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21186122"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1039164"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2015 film by Sergio Assisi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17128232"}, "Title": {"type": "literal", "value": "We Are the Freaks"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6317549"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6317549"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6834458"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Justin Edgar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18338805"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11327551"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Bakarhythm"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56348078"}, "Title": {"type": "literal", "value": "\u305f\u307e\u3048\u306e\u30b9\u30fc\u30d1\u30fc\u306f\u3089\u308f\u305f"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55447315"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55447315"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56349566|http://www.wikidata.org/entity/Q56253699|http://www.wikidata.org/entity/Q28692831|http://www.wikidata.org/entity/Q11628977|http://www.wikidata.org/entity/Q11551681|http://www.wikidata.org/entity/Q11523498|http://www.wikidata.org/entity/Q11310149|http://www.wikidata.org/entity/Q10867324|http://www.wikidata.org/entity/Q4830950"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "46"}, "Description": {"type": "literal", "value": "2018 film short film directed by Shinichiro Ueda"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11281134"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20747821"}, "Title": {"type": "literal", "value": "Io e lei"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3847526"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3804677"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q201617"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2015 film by Maria Sole Tognazzi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q54957850"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30302507"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q54957869|http://www.wikidata.org/entity/Q54957863|http://www.wikidata.org/entity/Q54855137|http://www.wikidata.org/entity/Q47464786|http://www.wikidata.org/entity/Q42199740|http://www.wikidata.org/entity/Q19678178|http://www.wikidata.org/entity/Q19364588|http://www.wikidata.org/entity/Q17517127|http://www.wikidata.org/entity/Q8022982|http://www.wikidata.org/entity/Q54957886"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 Nepalese film directed by Sudarshan Thapa"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11435883"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11520663"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Ry\u016bichi Honda"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20639726"}, "Title": {"type": "literal", "value": "Le badanti"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q63396784"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2015 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28671047"}, "Title": {"type": "literal", "value": "La mia famiglia a soqquadro"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28857109"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2017 film by Max Nardari"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6502164"}, "Title": {"type": "literal", "value": "Lava"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6212732"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6212732"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6136182|http://www.wikidata.org/entity/Q3244119|http://www.wikidata.org/entity/Q1217820|http://www.wikidata.org/entity/Q615309"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 film by Joe Tucker"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27888455"}, "Title": {"type": "literal", "value": "Chocolate City : Vegas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6169127"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6169127"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q220396"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Jean-Claude La Marre"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q745690"}, "Title": {"type": "literal", "value": "Les Beaux Gosses"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3430005"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15170433|http://www.wikidata.org/entity/Q3430005"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q126633|http://www.wikidata.org/entity/Q16832022|http://www.wikidata.org/entity/Q3559693|http://www.wikidata.org/entity/Q3430005|http://www.wikidata.org/entity/Q3340587|http://www.wikidata.org/entity/Q3086913|http://www.wikidata.org/entity/Q2940609|http://www.wikidata.org/entity/Q2852965|http://www.wikidata.org/entity/Q721397|http://www.wikidata.org/entity/Q440609|http://www.wikidata.org/entity/Q241043|http://www.wikidata.org/entity/Q230710|http://www.wikidata.org/entity/Q230659"}, "Published": {"type": "literal", "value": "2010|2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q2975633"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2009 film by Riad Sattouf"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1544011"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5965935"}, "Title": {"type": "literal", "value": "La caja"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2918319"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9027916|http://www.wikidata.org/entity/Q5830112|http://www.wikidata.org/entity/Q5613853|http://www.wikidata.org/entity/Q5483802|http://www.wikidata.org/entity/Q5265033|http://www.wikidata.org/entity/Q4255126|http://www.wikidata.org/entity/Q2388148|http://www.wikidata.org/entity/Q2356576|http://www.wikidata.org/entity/Q510950|http://www.wikidata.org/entity/Q106791"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192881"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Juan Carlos Falc\u00f3n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30139493"}, "Title": {"type": "literal", "value": "Le sens de la f\u00eate"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2778106|http://www.wikidata.org/entity/Q74428"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2778106|http://www.wikidata.org/entity/Q74428"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q949391|http://www.wikidata.org/entity/Q552639|http://www.wikidata.org/entity/Q22248002|http://www.wikidata.org/entity/Q20723802|http://www.wikidata.org/entity/Q18179055|http://www.wikidata.org/entity/Q11282528|http://www.wikidata.org/entity/Q3568783|http://www.wikidata.org/entity/Q3559719|http://www.wikidata.org/entity/Q3505931|http://www.wikidata.org/entity/Q3470502|http://www.wikidata.org/entity/Q3187987|http://www.wikidata.org/entity/Q3144876|http://www.wikidata.org/entity/Q3118434|http://www.wikidata.org/entity/Q1758568|http://www.wikidata.org/entity/Q981203"}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "2017 film by Olivier Nakache and \u00c9ric Toledano"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q553901"}, "Title": {"type": "literal", "value": "\u0e25\u0e38\u0e07\u0e1a\u0e38\u0e0d\u0e21\u0e35\u0e23\u0e30\u0e25\u0e36\u0e01\u0e0a\u0e32\u0e15\u0e34|Lung Bunmi Raluek Chat"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q445198"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q445198"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23773991"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "113"}, "Description": {"type": "literal", "value": "2010 film by Apichatpong Weerasethakul"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1257200"}, "Title": {"type": "literal", "value": "Three for the Road"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q684771"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3528671|http://www.wikidata.org/entity/Q1246867"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2905749|http://www.wikidata.org/entity/Q1359938|http://www.wikidata.org/entity/Q827443|http://www.wikidata.org/entity/Q778812|http://www.wikidata.org/entity/Q498263|http://www.wikidata.org/entity/Q493077|http://www.wikidata.org/entity/Q448579|http://www.wikidata.org/entity/Q440617|http://www.wikidata.org/entity/Q266391|http://www.wikidata.org/entity/Q103939"}, "Published": {"type": "literal", "value": "1987"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "1987 film by Bill L. Norton"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18334696"}, "Title": {"type": "literal", "value": "Villa Thalassa \u2013 helgen vecka 48"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16633203"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6041763"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Robert Lillhonga"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18703102"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5642632"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1321777|http://www.wikidata.org/entity/Q1136373|http://www.wikidata.org/entity/Q1078548|http://www.wikidata.org/entity/Q872110"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Takeshi Furusawa"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18851368"}, "Title": {"type": "literal", "value": "About a Girl"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27586818"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27586818"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q107144|http://www.wikidata.org/entity/Q87333|http://www.wikidata.org/entity/Q62510|http://www.wikidata.org/entity/Q18630023|http://www.wikidata.org/entity/Q17353072|http://www.wikidata.org/entity/Q2221251|http://www.wikidata.org/entity/Q1735996|http://www.wikidata.org/entity/Q1683837|http://www.wikidata.org/entity/Q1303948|http://www.wikidata.org/entity/Q1246296|http://www.wikidata.org/entity/Q1148701|http://www.wikidata.org/entity/Q461732|http://www.wikidata.org/entity/Q110988|http://www.wikidata.org/entity/Q107753"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2014 film by Mark Monheim"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16676428"}, "Title": {"type": "literal", "value": "Sequoia"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18664583"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q717951|http://www.wikidata.org/entity/Q445697|http://www.wikidata.org/entity/Q319725|http://www.wikidata.org/entity/Q286745|http://www.wikidata.org/entity/Q237115|http://www.wikidata.org/entity/Q236075|http://www.wikidata.org/entity/Q39977"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Andy Landen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q62165528"}, "Title": {"type": "literal", "value": "Mike & Fred vs the Dead"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28147789"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61067460|http://www.wikidata.org/entity/Q30071045|http://www.wikidata.org/entity/Q28140026|http://www.wikidata.org/entity/Q27656034"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4177577"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2833792"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q593332"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 film by Alexander Kott"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4403233"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3344957"}, "Title": {"type": "literal", "value": "Nous York"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3134600|http://www.wikidata.org/entity/Q541690"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3134600|http://www.wikidata.org/entity/Q541690"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24008552|http://www.wikidata.org/entity/Q17581497|http://www.wikidata.org/entity/Q3334837|http://www.wikidata.org/entity/Q3295220|http://www.wikidata.org/entity/Q3286702|http://www.wikidata.org/entity/Q2883665|http://www.wikidata.org/entity/Q2671216|http://www.wikidata.org/entity/Q1273327|http://www.wikidata.org/entity/Q1083729|http://www.wikidata.org/entity/Q541690|http://www.wikidata.org/entity/Q445905|http://www.wikidata.org/entity/Q193458"}, "Published": {"type": "literal", "value": "2014|2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by G\u00e9raldine Nakache"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11696925"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3489129"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3489129"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q38257562|http://www.wikidata.org/entity/Q12058898|http://www.wikidata.org/entity/Q12049496|http://www.wikidata.org/entity/Q7938803|http://www.wikidata.org/entity/Q7178558|http://www.wikidata.org/entity/Q3490004|http://www.wikidata.org/entity/Q1820026|http://www.wikidata.org/entity/Q469601"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2000 film by Alice Nellis"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56479340"}, "Title": {"type": "literal", "value": "\u042f, \u0442\u0438, \u0432\u0456\u043d, \u0432\u043e\u043d\u0430"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3874799"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4536851"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16698229|http://www.wikidata.org/entity/Q16594046|http://www.wikidata.org/entity/Q4236976|http://www.wikidata.org/entity/Q3874799"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q40831"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "film directed by Vladimir Zelenskiy"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4444575"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23647111"}, "Title": {"type": "literal", "value": "Little Sister"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13305138"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13305138"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q353159"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Zach Clark"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17079694"}, "Title": {"type": "literal", "value": "Search Party"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2260642"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16239393|http://www.wikidata.org/entity/Q6163031|http://www.wikidata.org/entity/Q1148822|http://www.wikidata.org/entity/Q350589|http://www.wikidata.org/entity/Q322056|http://www.wikidata.org/entity/Q258793|http://www.wikidata.org/entity/Q235328|http://www.wikidata.org/entity/Q235323|http://www.wikidata.org/entity/Q6357"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film directed by Scot Armstrong"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61744918"}, "Title": {"type": "literal", "value": "Los Ajenos F\u00fatbol Club"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50358500"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61745615|http://www.wikidata.org/entity/Q6158851|http://www.wikidata.org/entity/Q3945956|http://www.wikidata.org/entity/Q1293416|http://www.wikidata.org/entity/Q825317"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Juan Camilo Pinz\u00f3n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q650460"}, "Title": {"type": "literal", "value": "Fanboys"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q901185"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4679027|http://www.wikidata.org/entity/Q3732112"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1319744|http://www.wikidata.org/entity/Q926912|http://www.wikidata.org/entity/Q901185|http://www.wikidata.org/entity/Q708512|http://www.wikidata.org/entity/Q489831|http://www.wikidata.org/entity/Q452560|http://www.wikidata.org/entity/Q438499|http://www.wikidata.org/entity/Q422310|http://www.wikidata.org/entity/Q374263|http://www.wikidata.org/entity/Q361154|http://www.wikidata.org/entity/Q358345|http://www.wikidata.org/entity/Q355361|http://www.wikidata.org/entity/Q349857|http://www.wikidata.org/entity/Q336400|http://www.wikidata.org/entity/Q316756|http://www.wikidata.org/entity/Q316627|http://www.wikidata.org/entity/Q314610|http://www.wikidata.org/entity/Q233038|http://www.wikidata.org/entity/Q223830|http://www.wikidata.org/entity/Q220308|http://www.wikidata.org/entity/Q178882|http://www.wikidata.org/entity/Q152309|http://www.wikidata.org/entity/Q108941|http://www.wikidata.org/entity/Q64560|http://www.wikidata.org/entity/Q16297"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2009 film by Kyle Newman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7841714"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21582233"}, "Title": {"type": "literal", "value": "The Spirit of Christmas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q44414|http://www.wikidata.org/entity/Q44410"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q44414|http://www.wikidata.org/entity/Q44410"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1995"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "5"}, "Description": {"type": "literal", "value": "1995 short film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4828094"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7619635"}, "Title": {"type": "literal", "value": "Stoogemania"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1089208"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3178803|http://www.wikidata.org/entity/Q1089208"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q555226|http://www.wikidata.org/entity/Q493077|http://www.wikidata.org/entity/Q46080|http://www.wikidata.org/entity/Q3379068|http://www.wikidata.org/entity/Q3246581|http://www.wikidata.org/entity/Q2748114|http://www.wikidata.org/entity/Q2006459|http://www.wikidata.org/entity/Q1708579|http://www.wikidata.org/entity/Q961297"}, "Published": {"type": "literal", "value": "1986"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1986 film by Chuck Workman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q63383319"}, "Title": {"type": "literal", "value": "Fe de etarras"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8250879"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": ""}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20538730"}, "Title": {"type": "literal", "value": "Me Him Her"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3302192"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3302192"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q286745"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Max Landis"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6427858"}, "Title": {"type": "literal", "value": "Kolpa\u00e7ino"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4815792"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8082387"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8082387|http://www.wikidata.org/entity/Q6090661|http://www.wikidata.org/entity/Q6056101|http://www.wikidata.org/entity/Q2836358|http://www.wikidata.org/entity/Q6086791|http://www.wikidata.org/entity/Q6083790|http://www.wikidata.org/entity/Q6080532|http://www.wikidata.org/entity/Q6072016"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film directed by At\u0131l \u0130na\u00e7"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1353151"}, "Title": {"type": "literal", "value": "Catch That Kid"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q285856"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3856120|http://www.wikidata.org/entity/Q1200043"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1364747|http://www.wikidata.org/entity/Q1334830|http://www.wikidata.org/entity/Q4617|http://www.wikidata.org/entity/Q707759|http://www.wikidata.org/entity/Q703723|http://www.wikidata.org/entity/Q683828|http://www.wikidata.org/entity/Q391445|http://www.wikidata.org/entity/Q291029|http://www.wikidata.org/entity/Q181229|http://www.wikidata.org/entity/Q126599|http://www.wikidata.org/entity/Q26091"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q496523|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2004 film by Bart Freundlich"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17212643"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q908962"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11371873|http://www.wikidata.org/entity/Q1317466"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Nobuhiro Yamashita"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28667834"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4525700"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25391018"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q558666|http://www.wikidata.org/entity/Q2375843|http://www.wikidata.org/entity/Q921496"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q1361932"}, "Duration": {"type": "literal", "value": "75"}, "Description": {"type": "literal", "value": "2017 film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6813261|http://www.wikidata.org/entity/Q4403233"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26660266"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19295809"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19295809"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24073833|http://www.wikidata.org/entity/Q23958715|http://www.wikidata.org/entity/Q2522116|http://www.wikidata.org/entity/Q2091760|http://www.wikidata.org/entity/Q1600394|http://www.wikidata.org/entity/Q1489973|http://www.wikidata.org/entity/Q1231780|http://www.wikidata.org/entity/Q971376|http://www.wikidata.org/entity/Q498767|http://www.wikidata.org/entity/Q90820|http://www.wikidata.org/entity/Q89703"}, "Published": {"type": "literal", "value": "2017|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2016 film directed by Marie Kreutzer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23762921"}, "Title": {"type": "literal", "value": "\u0d12\u0d30\u0d41 \u0d2e\u0d41\u0d24\u0d4d\u0d24\u0d36\u0d4d\u0d36\u0d3f \u0d17\u0d26"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16222231"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16222231"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7313274|http://www.wikidata.org/entity/Q7285940|http://www.wikidata.org/entity/Q6480060|http://www.wikidata.org/entity/Q4699975|http://www.wikidata.org/entity/Q2051781"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Jude Anthany Joseph"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3926654"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30076174"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30076174"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3921852|http://www.wikidata.org/entity/Q3904256|http://www.wikidata.org/entity/Q3893979|http://www.wikidata.org/entity/Q3893633|http://www.wikidata.org/entity/Q3856776|http://www.wikidata.org/entity/Q3856480|http://www.wikidata.org/entity/Q3776661|http://www.wikidata.org/entity/Q3765371|http://www.wikidata.org/entity/Q2874899|http://www.wikidata.org/entity/Q1231066"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2011 film by Saverio Di Biagio"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26712567"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3210335"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q40831"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2016 film by Andrei Kureichik"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q48954781"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10438881"}, "Title": {"type": "literal", "value": "CKY4: The Latest & Greatest"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q297173"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q297173"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3239121|http://www.wikidata.org/entity/Q2394603|http://www.wikidata.org/entity/Q927638|http://www.wikidata.org/entity/Q919042|http://www.wikidata.org/entity/Q606523|http://www.wikidata.org/entity/Q316036|http://www.wikidata.org/entity/Q297173|http://www.wikidata.org/entity/Q295034|http://www.wikidata.org/entity/Q295020|http://www.wikidata.org/entity/Q6209915"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Bam Margera"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22683487"}, "Title": {"type": "literal", "value": "Baden Baden"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25873646"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25873646"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q33080292|http://www.wikidata.org/entity/Q3506431|http://www.wikidata.org/entity/Q3350901|http://www.wikidata.org/entity/Q1827804|http://www.wikidata.org/entity/Q280445|http://www.wikidata.org/entity/Q139052"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Rachel Lang"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1320997"}, "Title": {"type": "literal", "value": "Gulliver's Travels"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q428815"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4442602|http://www.wikidata.org/entity/Q2624066"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7334155|http://www.wikidata.org/entity/Q933129|http://www.wikidata.org/entity/Q924104|http://www.wikidata.org/entity/Q767499|http://www.wikidata.org/entity/Q705522|http://www.wikidata.org/entity/Q483907|http://www.wikidata.org/entity/Q298838|http://www.wikidata.org/entity/Q254766|http://www.wikidata.org/entity/Q202304|http://www.wikidata.org/entity/Q193517|http://www.wikidata.org/entity/Q131332|http://www.wikidata.org/entity/Q7088396|http://www.wikidata.org/entity/Q5240076|http://www.wikidata.org/entity/Q4353280|http://www.wikidata.org/entity/Q3076804|http://www.wikidata.org/entity/Q3052839|http://www.wikidata.org/entity/Q1148822"}, "Published": {"type": "literal", "value": "2011|2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q52162262"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2010 film by Rob Letterman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2579492|http://www.wikidata.org/entity/Q3041294|http://www.wikidata.org/entity/Q434841"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2060231"}, "Title": {"type": "literal", "value": "Just Buried"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5088666"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5088666"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q715606|http://www.wikidata.org/entity/Q441443|http://www.wikidata.org/entity/Q414047|http://www.wikidata.org/entity/Q316756|http://www.wikidata.org/entity/Q311169|http://www.wikidata.org/entity/Q255610|http://www.wikidata.org/entity/Q228717|http://www.wikidata.org/entity/Q185625"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2007 film by Chaz Thorne"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5412086"}, "Title": {"type": "literal", "value": "Lo contrario al amor"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6161380"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Vicente Villanueva"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q58814662"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16201909"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Michael Budd"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5947856"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7408556"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7408556"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5956887|http://www.wikidata.org/entity/Q1397191"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Saman Saloor"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1129365"}, "Title": {"type": "literal", "value": "The Convent"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1119064"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3304282|http://www.wikidata.org/entity/Q3018008|http://www.wikidata.org/entity/Q2838327|http://www.wikidata.org/entity/Q862342|http://www.wikidata.org/entity/Q310357|http://www.wikidata.org/entity/Q253561"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2137852|http://www.wikidata.org/entity/Q909586|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2000 film by Mike Mendez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55634878"}, "Title": {"type": "literal", "value": "Safari \u2013 Match me if you can"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24004489"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24004489"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q42306384|http://www.wikidata.org/entity/Q41450027|http://www.wikidata.org/entity/Q27980473|http://www.wikidata.org/entity/Q19843390|http://www.wikidata.org/entity/Q18641914|http://www.wikidata.org/entity/Q1914028|http://www.wikidata.org/entity/Q1329659|http://www.wikidata.org/entity/Q561601|http://www.wikidata.org/entity/Q532198|http://www.wikidata.org/entity/Q111879|http://www.wikidata.org/entity/Q110710|http://www.wikidata.org/entity/Q109304|http://www.wikidata.org/entity/Q100506|http://www.wikidata.org/entity/Q98596|http://www.wikidata.org/entity/Q67917|http://www.wikidata.org/entity/Q63450"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "2018 film by Rudi Gaul"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1402681"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16993709"}, "Title": {"type": "literal", "value": "The Harry Hill Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2346846"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3127834"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3127834"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Steve Bendelack"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22338427"}, "Title": {"type": "literal", "value": "Der geilste Tag"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q87432"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q87432"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2395579|http://www.wikidata.org/entity/Q2158767|http://www.wikidata.org/entity/Q1731034|http://www.wikidata.org/entity/Q1452727|http://www.wikidata.org/entity/Q97010|http://www.wikidata.org/entity/Q87432|http://www.wikidata.org/entity/Q65106|http://www.wikidata.org/entity/Q64645"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q628165|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "113"}, "Description": {"type": "literal", "value": "2016 film directed by Florian David Fitz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q9653404"}, "Title": {"type": "literal", "value": "Teenage Mutant Ninja Turtles"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q953359"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5415355|http://www.wikidata.org/entity/Q4760014|http://www.wikidata.org/entity/Q577234"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q926963|http://www.wikidata.org/entity/Q355116|http://www.wikidata.org/entity/Q220335|http://www.wikidata.org/entity/Q80069|http://www.wikidata.org/entity/Q49001|http://www.wikidata.org/entity/Q24702631|http://www.wikidata.org/entity/Q22958021|http://www.wikidata.org/entity/Q18415482|http://www.wikidata.org/entity/Q16025030|http://www.wikidata.org/entity/Q6862756|http://www.wikidata.org/entity/Q6324129|http://www.wikidata.org/entity/Q3342656|http://www.wikidata.org/entity/Q2708237|http://www.wikidata.org/entity/Q2706805|http://www.wikidata.org/entity/Q1164810|http://www.wikidata.org/entity/Q960721"}, "Published": {"type": "literal", "value": "2014|2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q761469|http://www.wikidata.org/entity/Q471839"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2014 US science fiction/martial arts film directed by Jonathan Liebesman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q682748|http://www.wikidata.org/entity/Q1785329"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q47004707"}, "Title": {"type": "literal", "value": "Lego DC Comics Super Heroes: The Flash"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3310104"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Ethan Spaulding"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6121898"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7920143"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7920143"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7709076|http://www.wikidata.org/entity/Q5454588|http://www.wikidata.org/entity/Q5268921|http://www.wikidata.org/entity/Q4724516|http://www.wikidata.org/entity/Q3765029"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Vennela Kishore"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5174356"}, "Title": {"type": "literal", "value": "Cosmopolitan"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1261154"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7396408"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7261659|http://www.wikidata.org/entity/Q2556603|http://www.wikidata.org/entity/Q235302|http://www.wikidata.org/entity/Q220536|http://www.wikidata.org/entity/Q32452"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Nisha Ganatra"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q633307"}, "Title": {"type": "literal", "value": "The Libertine"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q282127"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7609593"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2439560|http://www.wikidata.org/entity/Q1450759|http://www.wikidata.org/entity/Q944296|http://www.wikidata.org/entity/Q634365|http://www.wikidata.org/entity/Q436769|http://www.wikidata.org/entity/Q314659|http://www.wikidata.org/entity/Q312124|http://www.wikidata.org/entity/Q310930|http://www.wikidata.org/entity/Q274616|http://www.wikidata.org/entity/Q236167|http://www.wikidata.org/entity/Q230190|http://www.wikidata.org/entity/Q230004|http://www.wikidata.org/entity/Q172261|http://www.wikidata.org/entity/Q37175"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q645928|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "2004 British drama film by Laurence Dunmore"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1468196"}, "Title": {"type": "literal", "value": "Mr. Magorium's Wonder Emporium"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q139346"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q139346"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23815354|http://www.wikidata.org/entity/Q21517127|http://www.wikidata.org/entity/Q4025858|http://www.wikidata.org/entity/Q3421719|http://www.wikidata.org/entity/Q284636|http://www.wikidata.org/entity/Q230465|http://www.wikidata.org/entity/Q42930|http://www.wikidata.org/entity/Q37876|http://www.wikidata.org/entity/Q34939"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2007 film by Zach Helm"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5368270|http://www.wikidata.org/entity/Q17335573"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3520940"}, "Title": {"type": "literal", "value": "The Foot Fist Way"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1691304"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q336400"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1691304|http://www.wikidata.org/entity/Q336400"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1033891|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Jody Hill"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1111024|http://www.wikidata.org/entity/Q3098606"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19057512"}, "Title": {"type": "literal", "value": "The Overnight"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20649365"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20649365"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "2015 film by Patrick Brice"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q164080"}, "Title": {"type": "literal", "value": "Gentlemen Broncos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2480656"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2480656"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11682757|http://www.wikidata.org/entity/Q5696733|http://www.wikidata.org/entity/Q2050378|http://www.wikidata.org/entity/Q1571684|http://www.wikidata.org/entity/Q1378351|http://www.wikidata.org/entity/Q1263314|http://www.wikidata.org/entity/Q725399|http://www.wikidata.org/entity/Q439315|http://www.wikidata.org/entity/Q317024|http://www.wikidata.org/entity/Q316446|http://www.wikidata.org/entity/Q230278"}, "Published": {"type": "literal", "value": "2010|2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2009 film by Jared and Jerusha Hess, Jared Hess"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17343437"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22350784"}, "Title": {"type": "literal", "value": "Metalheads"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22004663"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22276865"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Gregory Cahill"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1137543"}, "Title": {"type": "literal", "value": "Jack Brooks: Monster Slayer"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3809865"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3998502|http://www.wikidata.org/entity/Q727988|http://www.wikidata.org/entity/Q310389|http://www.wikidata.org/entity/Q5233780|http://www.wikidata.org/entity/Q4979079"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1342372|http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2007 film by Jon Knautz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q8989664"}, "Title": {"type": "literal", "value": "Buongiorno pap\u00e0"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3719608"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3785147"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3941283|http://www.wikidata.org/entity/Q3893633|http://www.wikidata.org/entity/Q3846163|http://www.wikidata.org/entity/Q3719608|http://www.wikidata.org/entity/Q1993073|http://www.wikidata.org/entity/Q472414|http://www.wikidata.org/entity/Q457841|http://www.wikidata.org/entity/Q381110"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "2013 Italian comedy film directed by Edoardo Leo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25136455"}, "Title": {"type": "literal", "value": "Frankie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17630965"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17630965"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55449303|http://www.wikidata.org/entity/Q17630965"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Francesco Mazza"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18693354"}, "Title": {"type": "literal", "value": "Kuningas Hidas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50384882"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2000 film directed by Saara Saarela"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17054494"}, "Title": {"type": "literal", "value": "This Is Sanlitun"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7386482"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by R\u00f3bert Ingi Douglas"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16248097"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17385584"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5276830"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Anurag Singh"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12183243"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12250381"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3571921"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Wael Ehsan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3242"}, "Title": {"type": "literal", "value": "A Fantastic Fear of Everything"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5106916|http://www.wikidata.org/entity/Q711920"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q711920"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16203916|http://www.wikidata.org/entity/Q16107301|http://www.wikidata.org/entity/Q3355676|http://www.wikidata.org/entity/Q1378684|http://www.wikidata.org/entity/Q822377|http://www.wikidata.org/entity/Q454790|http://www.wikidata.org/entity/Q274616|http://www.wikidata.org/entity/Q238464"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2012 film by Crispian Mills, Chris Hopewell"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3258801"}, "Title": {"type": "literal", "value": "LolliLove"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q238877"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q717015|http://www.wikidata.org/entity/Q238877"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q717015|http://www.wikidata.org/entity/Q238877|http://www.wikidata.org/entity/Q236189|http://www.wikidata.org/entity/Q234204|http://www.wikidata.org/entity/Q202304|http://www.wikidata.org/entity/Q183347"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Jenna Fischer"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q640786"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27590337"}, "Title": {"type": "literal", "value": "In guerra per amore"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3904894"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3904894"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3904894|http://www.wikidata.org/entity/Q1107120|http://www.wikidata.org/entity/Q676749"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2016 italian movie directed by Pif"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4019806"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3148586"}, "Title": {"type": "literal", "value": "Il \u00e9tait une fois dans l'Oued"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3032767"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3032767"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3189442|http://www.wikidata.org/entity/Q3082910|http://www.wikidata.org/entity/Q3018752|http://www.wikidata.org/entity/Q2869522|http://www.wikidata.org/entity/Q551873|http://www.wikidata.org/entity/Q274656|http://www.wikidata.org/entity/Q272113|http://www.wikidata.org/entity/Q201810|http://www.wikidata.org/entity/Q3591428|http://www.wikidata.org/entity/Q3483072|http://www.wikidata.org/entity/Q3350789|http://www.wikidata.org/entity/Q3302248|http://www.wikidata.org/entity/Q3196011|http://www.wikidata.org/entity/Q3193270"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Djamel Bensalah"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q662703"}, "Title": {"type": "literal", "value": "Hotel for Dogs"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q95657"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4358044|http://www.wikidata.org/entity/Q4355997|http://www.wikidata.org/entity/Q43799459|http://www.wikidata.org/entity/Q460323"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15834608|http://www.wikidata.org/entity/Q5174238|http://www.wikidata.org/entity/Q4273978|http://www.wikidata.org/entity/Q1549708|http://www.wikidata.org/entity/Q1545414|http://www.wikidata.org/entity/Q960721|http://www.wikidata.org/entity/Q942860|http://www.wikidata.org/entity/Q517405|http://www.wikidata.org/entity/Q444344|http://www.wikidata.org/entity/Q439979|http://www.wikidata.org/entity/Q20630994|http://www.wikidata.org/entity/Q412643|http://www.wikidata.org/entity/Q312521|http://www.wikidata.org/entity/Q273166|http://www.wikidata.org/entity/Q272019|http://www.wikidata.org/entity/Q240366|http://www.wikidata.org/entity/Q228598|http://www.wikidata.org/entity/Q179041|http://www.wikidata.org/entity/Q130709|http://www.wikidata.org/entity/Q116636"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2009 film by Thor Freudenthal"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192557|http://www.wikidata.org/entity/Q1785329|http://www.wikidata.org/entity/Q7752106"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28946448"}, "Title": {"type": "literal", "value": "Via Veneto"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1528398"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q526943|http://www.wikidata.org/entity/Q3713714|http://www.wikidata.org/entity/Q1262039"}, "Published": {"type": "literal", "value": "1964"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1964 Italian comedy film directed by Giuseppe Lipartiti"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q31271935"}, "Title": {"type": "literal", "value": "Kormoranid ehk Nahkp\u00fckse ei pesta"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16407064|http://www.wikidata.org/entity/Q12359148"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16407521|http://www.wikidata.org/entity/Q16404598|http://www.wikidata.org/entity/Q12374189|http://www.wikidata.org/entity/Q12365870|http://www.wikidata.org/entity/Q12363117|http://www.wikidata.org/entity/Q3743341"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Andres Maimik, Rain Tolk"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18414539"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2832982"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Alex Lutz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21450446"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7544363"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5564076"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Smeep Kang"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q46996014"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1197861"}, "Title": {"type": "literal", "value": "Le Pr\u00e9nom"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3299877|http://www.wikidata.org/entity/Q2834188"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3299877|http://www.wikidata.org/entity/Q2834188"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3187992|http://www.wikidata.org/entity/Q2898368|http://www.wikidata.org/entity/Q928366|http://www.wikidata.org/entity/Q456668|http://www.wikidata.org/entity/Q287336|http://www.wikidata.org/entity/Q171530|http://www.wikidata.org/entity/Q3571575|http://www.wikidata.org/entity/Q3554229"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "2012 film by Alexandre de La Patelli\u00e8re, Matthieu Delaporte"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1881062"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3690716"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6360500"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7334360|http://www.wikidata.org/entity/Q5276736|http://www.wikidata.org/entity/Q4838101|http://www.wikidata.org/entity/Q3595207|http://www.wikidata.org/entity/Q3533784|http://www.wikidata.org/entity/Q2721855"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Thomson K. Thomas"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1417840"}, "Title": {"type": "literal", "value": "Jagdhunde"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15431038"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2007 film by Ann-Kristin Wecker"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30742364"}, "Title": {"type": "literal", "value": "Momo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3510330"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3510330|http://www.wikidata.org/entity/Q239033"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3510330|http://www.wikidata.org/entity/Q451776|http://www.wikidata.org/entity/Q310692|http://www.wikidata.org/entity/Q239033"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2017 film by S\u00e9bastien Thi\u00e9ry"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24928644"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3233474"}, "Title": {"type": "literal", "value": "Les Ka\u00efra"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3082139"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3082139"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3316975|http://www.wikidata.org/entity/Q3166616|http://www.wikidata.org/entity/Q3084132|http://www.wikidata.org/entity/Q3082139|http://www.wikidata.org/entity/Q3081522|http://www.wikidata.org/entity/Q3037894|http://www.wikidata.org/entity/Q2832982|http://www.wikidata.org/entity/Q2669628|http://www.wikidata.org/entity/Q2205546|http://www.wikidata.org/entity/Q1571613|http://www.wikidata.org/entity/Q1568465|http://www.wikidata.org/entity/Q1160865|http://www.wikidata.org/entity/Q681451|http://www.wikidata.org/entity/Q658664|http://www.wikidata.org/entity/Q540631|http://www.wikidata.org/entity/Q274656|http://www.wikidata.org/entity/Q170328|http://www.wikidata.org/entity/Q164976|http://www.wikidata.org/entity/Q56219|http://www.wikidata.org/entity/Q32608|http://www.wikidata.org/entity/Q17497021|http://www.wikidata.org/entity/Q16663967|http://www.wikidata.org/entity/Q3485227|http://www.wikidata.org/entity/Q3418669|http://www.wikidata.org/entity/Q3395911"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Franck Gastambide"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16675753"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55657429"}, "Title": {"type": "literal", "value": "\u0412\u043e\u043b\u043a\u0438 \u0438 \u041e\u0432\u0446\u044b: \u0425\u043e\u0434 \u0441\u0432\u0438\u043d\u044c\u0451\u0439"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18634674"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18634674"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q40831"}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "2019 film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4403233|http://www.wikidata.org/entity/Q8028786"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19305969"}, "Title": {"type": "literal", "value": "Banana"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3615794"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "2015 film by Andrea Jublin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q8051196"}, "Title": {"type": "literal", "value": "\u092f\u0947 \u091c\u0935\u093e\u0928\u0940 \u0939\u0948 \u0926\u0940\u0935\u093e\u0928\u0940"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4830910"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4830910"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7683939|http://www.wikidata.org/entity/Q4683087|http://www.wikidata.org/entity/Q3192216|http://www.wikidata.org/entity/Q1063412|http://www.wikidata.org/entity/Q232451|http://www.wikidata.org/entity/Q159178"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "159"}, "Description": {"type": "literal", "value": "2013 Hindi film directed by Ayan Mukerji"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1207592|http://www.wikidata.org/entity/Q5395348"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23054420"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4102539"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4536851"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4176078|http://www.wikidata.org/entity/Q3874799|http://www.wikidata.org/entity/Q2329850"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Marius Vaisbergas"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4504080"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q59391324"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18786068"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18786068"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18907601|http://www.wikidata.org/entity/Q4360641|http://www.wikidata.org/entity/Q4099923"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "film directed by Ilya Kulikov"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1975145"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4890518"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2694898"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Pieter Dirkx"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28497074"}, "Title": {"type": "literal", "value": "Le Grand Bain"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q552639"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2827567"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60720306|http://www.wikidata.org/entity/Q47091445|http://www.wikidata.org/entity/Q19544020|http://www.wikidata.org/entity/Q17453228|http://www.wikidata.org/entity/Q17350908|http://www.wikidata.org/entity/Q16150225|http://www.wikidata.org/entity/Q15831449|http://www.wikidata.org/entity/Q3588004|http://www.wikidata.org/entity/Q3560737|http://www.wikidata.org/entity/Q3560613|http://www.wikidata.org/entity/Q3183504|http://www.wikidata.org/entity/Q3171273|http://www.wikidata.org/entity/Q3147503|http://www.wikidata.org/entity/Q3130760|http://www.wikidata.org/entity/Q3092547|http://www.wikidata.org/entity/Q2975094|http://www.wikidata.org/entity/Q2830765|http://www.wikidata.org/entity/Q2671216|http://www.wikidata.org/entity/Q1393983|http://www.wikidata.org/entity/Q714765|http://www.wikidata.org/entity/Q690283|http://www.wikidata.org/entity/Q456360|http://www.wikidata.org/entity/Q446842|http://www.wikidata.org/entity/Q355835|http://www.wikidata.org/entity/Q314403"}, "Published": {"type": "literal", "value": "2019|2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "122"}, "Description": {"type": "literal", "value": "2018 film by Gilles Lellouche"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2450848"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42433143"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4102539"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4102539"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28496340|http://www.wikidata.org/entity/Q3561880|http://www.wikidata.org/entity/Q1383160|http://www.wikidata.org/entity/Q593332"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2018 film directed by Marius Vaisbergas"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q62670705"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52274376"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Niyi Akinmolayan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4289242"}, "Title": {"type": "literal", "value": "\u041c\u0435\u043a\u0441\u0438\u043a\u0430\u043d\u0441\u043a\u0438\u0439 \u0432\u043e\u044f\u0436 \u0421\u0442\u0435\u043f\u0430\u043d\u044b\u0447\u0430"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21092329|http://www.wikidata.org/entity/Q4125601"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4125601"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4172110|http://www.wikidata.org/entity/Q4154833|http://www.wikidata.org/entity/Q4148281|http://www.wikidata.org/entity/Q4148136|http://www.wikidata.org/entity/Q4113110|http://www.wikidata.org/entity/Q1970312|http://www.wikidata.org/entity/Q247846|http://www.wikidata.org/entity/Q25080"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2012 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q58378437"}, "Title": {"type": "literal", "value": "Rossz versek"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23304074"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23304074"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23304074|http://www.wikidata.org/entity/Q1178987|http://www.wikidata.org/entity/Q964873|http://www.wikidata.org/entity/Q779981"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by G\u00e1bor Reisz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q45260283"}, "Title": {"type": "literal", "value": "Hit Mom \u2013 M\u00f6rderische Weihnachten"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2262938"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1100080"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21747422|http://www.wikidata.org/entity/Q18169621|http://www.wikidata.org/entity/Q15433473|http://www.wikidata.org/entity/Q2803266|http://www.wikidata.org/entity/Q2526627|http://www.wikidata.org/entity/Q2225497|http://www.wikidata.org/entity/Q1897156|http://www.wikidata.org/entity/Q1721304|http://www.wikidata.org/entity/Q1717755|http://www.wikidata.org/entity/Q1598954|http://www.wikidata.org/entity/Q1379064|http://www.wikidata.org/entity/Q1097640|http://www.wikidata.org/entity/Q994483|http://www.wikidata.org/entity/Q125372"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2017 television film directed by Sebastian Marka"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23565"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27237522"}, "Title": {"type": "literal", "value": "The Square"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q211228"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q211228"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12306343|http://www.wikidata.org/entity/Q7704857|http://www.wikidata.org/entity/Q5565254|http://www.wikidata.org/entity/Q4952336|http://www.wikidata.org/entity/Q313020|http://www.wikidata.org/entity/Q233466"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q128758"}, "Duration": {"type": "literal", "value": "142"}, "Description": {"type": "literal", "value": "2017 Swedish film by Ruben \u00d6stlund"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1226343"}, "Title": {"type": "literal", "value": "Il suo nome era Pot"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1873491|http://www.wikidata.org/entity/Q348383"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1041544|http://www.wikidata.org/entity/Q867883|http://www.wikidata.org/entity/Q716602|http://www.wikidata.org/entity/Q451279|http://www.wikidata.org/entity/Q324143|http://www.wikidata.org/entity/Q182402"}, "Published": {"type": "literal", "value": "1971"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "1971 film by Demofilo Fidani, Lucio Giachin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7798459"}, "Title": {"type": "literal", "value": "Through the Glass"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q538774"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q538774"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q538774"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Stephanie Okereke"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4905813"}, "Title": {"type": "literal", "value": "Big Helium Dog"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4964545"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4964545"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4964545|http://www.wikidata.org/entity/Q3259437|http://www.wikidata.org/entity/Q1677945|http://www.wikidata.org/entity/Q1354149|http://www.wikidata.org/entity/Q967544|http://www.wikidata.org/entity/Q489831|http://www.wikidata.org/entity/Q439618|http://www.wikidata.org/entity/Q438583|http://www.wikidata.org/entity/Q256607"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1999 film by Brian Lynch"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4656879"}, "Title": {"type": "literal", "value": "A Fuchsia Elephant"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q228792"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6794682|http://www.wikidata.org/entity/Q5336101|http://www.wikidata.org/entity/Q383930|http://www.wikidata.org/entity/Q228792"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Dianna Agron"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17071279"}, "Title": {"type": "literal", "value": "LFO"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17089131"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17089131"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5901036"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Antonio Tubl\u00e9n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3965251"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3972432"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3972432"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3664104|http://www.wikidata.org/entity/Q1052746"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "12"}, "Description": {"type": "literal", "value": "2006 film by Stefano Chiodini"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2886119"}, "Title": {"type": "literal", "value": "Mi primera boda"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5704113"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28100227|http://www.wikidata.org/entity/Q27949845|http://www.wikidata.org/entity/Q27921932|http://www.wikidata.org/entity/Q9029922|http://www.wikidata.org/entity/Q8353654|http://www.wikidata.org/entity/Q7557537|http://www.wikidata.org/entity/Q6757896|http://www.wikidata.org/entity/Q6123030|http://www.wikidata.org/entity/Q6002829|http://www.wikidata.org/entity/Q5879998|http://www.wikidata.org/entity/Q5765507|http://www.wikidata.org/entity/Q5662293|http://www.wikidata.org/entity/Q5408666|http://www.wikidata.org/entity/Q5071640|http://www.wikidata.org/entity/Q3867408|http://www.wikidata.org/entity/Q2485621|http://www.wikidata.org/entity/Q2291421|http://www.wikidata.org/entity/Q2272014|http://www.wikidata.org/entity/Q377888|http://www.wikidata.org/entity/Q232458"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Ariel Winograd"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1548341"}, "Title": {"type": "literal", "value": "Stellungswechsel"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1884029"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q72046|http://www.wikidata.org/entity/Q64823|http://www.wikidata.org/entity/Q22971900|http://www.wikidata.org/entity/Q1949229|http://www.wikidata.org/entity/Q1913382|http://www.wikidata.org/entity/Q1735915|http://www.wikidata.org/entity/Q1556252|http://www.wikidata.org/entity/Q1429745|http://www.wikidata.org/entity/Q1208893|http://www.wikidata.org/entity/Q566668|http://www.wikidata.org/entity/Q566626|http://www.wikidata.org/entity/Q374812|http://www.wikidata.org/entity/Q109304|http://www.wikidata.org/entity/Q107127|http://www.wikidata.org/entity/Q97153|http://www.wikidata.org/entity/Q78367|http://www.wikidata.org/entity/Q74143"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2007 film by Maggie Peren"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2608065"}, "Title": {"type": "literal", "value": "The Lego Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13638984|http://www.wikidata.org/entity/Q7182133|http://www.wikidata.org/entity/Q3378803"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7182133"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q218503"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21192427|http://www.wikidata.org/entity/Q20443008|http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2014 animated film by Phil Lord and Chris Miller"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q547341|http://www.wikidata.org/entity/Q622668|http://www.wikidata.org/entity/Q1063455|http://www.wikidata.org/entity/Q3041294|http://www.wikidata.org/entity/Q3556262|http://www.wikidata.org/entity/Q13416804"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25396404"}, "Title": {"type": "literal", "value": "Tout pour \u00eatre heureux"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3009001"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3009001"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3286702"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film directed by Cyril Gelblat"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4251624"}, "Title": {"type": "literal", "value": "\u041b\u041e\u043f\u0443\u0425\u0418: \u042d\u043f\u0438\u0437\u043e\u0434 \u043f\u0435\u0440\u0432\u044b\u0439"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4065391"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28368075"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4363590"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2009 film by Sarik Andreasyan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13034152"}, "Title": {"type": "literal", "value": "100 meter Leeuloop"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13034616|http://www.wikidata.org/entity/Q2844799"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13034880|http://www.wikidata.org/entity/Q13034715|http://www.wikidata.org/entity/Q2844799"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Diony Kempen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1763166"}, "Title": {"type": "literal", "value": "J\u00f8rgen + Anne = sant"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17107235"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22662113"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11997102|http://www.wikidata.org/entity/Q11989974|http://www.wikidata.org/entity/Q7820841|http://www.wikidata.org/entity/Q4981444"}, "Published": {"type": "literal", "value": "2012|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2011 Norwegian film directed by Anne Sewitsky"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23647172"}, "Title": {"type": "literal", "value": "Traceroute"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q90384"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q90384"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17013749|http://www.wikidata.org/entity/Q645928|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "2016 film by Johannes Grenzfurthner"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4016634"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4707732"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3272513|http://www.wikidata.org/entity/Q708456|http://www.wikidata.org/entity/Q698533"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Pang Ho-cheung"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14911940"}, "Title": {"type": "literal", "value": "L'arbitro"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q62655108"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3290121|http://www.wikidata.org/entity/Q808664|http://www.wikidata.org/entity/Q433565"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2013 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3384891"}, "Title": {"type": "literal", "value": "Parental Guidance"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q525725"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19984992|http://www.wikidata.org/entity/Q19881758|http://www.wikidata.org/entity/Q18148980|http://www.wikidata.org/entity/Q16201760|http://www.wikidata.org/entity/Q16201714|http://www.wikidata.org/entity/Q7363638|http://www.wikidata.org/entity/Q6290172|http://www.wikidata.org/entity/Q5928392|http://www.wikidata.org/entity/Q3418235|http://www.wikidata.org/entity/Q3177046|http://www.wikidata.org/entity/Q2469336|http://www.wikidata.org/entity/Q529454|http://www.wikidata.org/entity/Q494393|http://www.wikidata.org/entity/Q295020|http://www.wikidata.org/entity/Q272176|http://www.wikidata.org/entity/Q241749|http://www.wikidata.org/entity/Q191828|http://www.wikidata.org/entity/Q190631|http://www.wikidata.org/entity/Q186485|http://www.wikidata.org/entity/Q18933"}, "Published": {"type": "literal", "value": "2013|2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2012 film by Andy Fickman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1637250|http://www.wikidata.org/entity/Q15069859"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15789889"}, "Title": {"type": "literal", "value": "Tr\u00e1iganme la cabeza de la mujer metralleta"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5836844"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5836844|http://www.wikidata.org/entity/Q4346796"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6006679|http://www.wikidata.org/entity/Q5864904|http://www.wikidata.org/entity/Q5858091|http://www.wikidata.org/entity/Q4346796|http://www.wikidata.org/entity/Q3488891"}, "Published": {"type": "literal", "value": "2013|2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "73"}, "Description": {"type": "literal", "value": "2013 film directed by Ernesto D\u00edaz Espinoza"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15859023"}, "Title": {"type": "literal", "value": "Im wei\u00dfen R\u00f6ssl \u2013 Wehe Du singst!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1082076"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1681609|http://www.wikidata.org/entity/Q71567"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q816586|http://www.wikidata.org/entity/Q537706|http://www.wikidata.org/entity/Q109299|http://www.wikidata.org/entity/Q88861|http://www.wikidata.org/entity/Q85841|http://www.wikidata.org/entity/Q76178|http://www.wikidata.org/entity/Q66027|http://www.wikidata.org/entity/Q1545055|http://www.wikidata.org/entity/Q1328973"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2013 film by Christian Theede"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15268063"}, "Title": {"type": "literal", "value": "Fack ju G\u00f6hte"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q112352"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q112352"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23061509|http://www.wikidata.org/entity/Q21188721|http://www.wikidata.org/entity/Q19946410|http://www.wikidata.org/entity/Q19297324|http://www.wikidata.org/entity/Q19059989|http://www.wikidata.org/entity/Q17479630|http://www.wikidata.org/entity/Q17353105|http://www.wikidata.org/entity/Q15890988|http://www.wikidata.org/entity/Q2209828|http://www.wikidata.org/entity/Q1913731|http://www.wikidata.org/entity/Q1686699|http://www.wikidata.org/entity/Q1348711|http://www.wikidata.org/entity/Q1331348|http://www.wikidata.org/entity/Q1081259|http://www.wikidata.org/entity/Q824272|http://www.wikidata.org/entity/Q449665|http://www.wikidata.org/entity/Q215565|http://www.wikidata.org/entity/Q97835|http://www.wikidata.org/entity/Q89832|http://www.wikidata.org/entity/Q88514|http://www.wikidata.org/entity/Q78766|http://www.wikidata.org/entity/Q69669|http://www.wikidata.org/entity/Q62346|http://www.wikidata.org/entity/Q61099"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "118"}, "Description": {"type": "literal", "value": "2013 film directed by Bora Da\u011ftekin"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q564960"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2614123"}, "Title": {"type": "literal", "value": "Les Infid\u00e8les"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q716398|http://www.wikidata.org/entity/Q552639|http://www.wikidata.org/entity/Q272804|http://www.wikidata.org/entity/Q189422|http://www.wikidata.org/entity/Q28556|http://www.wikidata.org/entity/Q15831449|http://www.wikidata.org/entity/Q3591218|http://www.wikidata.org/entity/Q3086808"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q189422|http://www.wikidata.org/entity/Q552639"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3303214|http://www.wikidata.org/entity/Q3286702|http://www.wikidata.org/entity/Q3591418|http://www.wikidata.org/entity/Q452507|http://www.wikidata.org/entity/Q314403|http://www.wikidata.org/entity/Q3591260|http://www.wikidata.org/entity/Q3194132|http://www.wikidata.org/entity/Q3144860|http://www.wikidata.org/entity/Q3141565|http://www.wikidata.org/entity/Q2975505|http://www.wikidata.org/entity/Q2887704|http://www.wikidata.org/entity/Q2852965|http://www.wikidata.org/entity/Q2851282|http://www.wikidata.org/entity/Q1341507|http://www.wikidata.org/entity/Q981234|http://www.wikidata.org/entity/Q262822|http://www.wikidata.org/entity/Q259193|http://www.wikidata.org/entity/Q189422|http://www.wikidata.org/entity/Q552639|http://www.wikidata.org/entity/Q541690|http://www.wikidata.org/entity/Q457268"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "2012 anthology film directed by Emmanuelle Bercot and seven others"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2819546"}, "Title": {"type": "literal", "value": "ATL"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5107905"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15844896"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q370918|http://www.wikidata.org/entity/Q214227|http://www.wikidata.org/entity/Q17402889|http://www.wikidata.org/entity/Q3163012|http://www.wikidata.org/entity/Q2394970|http://www.wikidata.org/entity/Q2344116|http://www.wikidata.org/entity/Q1057939|http://www.wikidata.org/entity/Q741555|http://www.wikidata.org/entity/Q538542|http://www.wikidata.org/entity/Q371202"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5897543|http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film directed by Chris Robinson"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2326925"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18736650"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6171067"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Jean Luc Herbulot"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q922193"}, "Title": {"type": "literal", "value": "Winnie the Pooh"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7609556|http://www.wikidata.org/entity/Q18921842"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29001893|http://www.wikidata.org/entity/Q29001864|http://www.wikidata.org/entity/Q28914158|http://www.wikidata.org/entity/Q18921842|http://www.wikidata.org/entity/Q16988950|http://www.wikidata.org/entity/Q7609556|http://www.wikidata.org/entity/Q2928589|http://www.wikidata.org/entity/Q29001895|http://www.wikidata.org/entity/Q29001894"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q28968511|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "64"}, "Description": {"type": "literal", "value": "2011 American animated film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191224"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27959595"}, "Title": {"type": "literal", "value": "Down Under"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4666385"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4666385"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29868699|http://www.wikidata.org/entity/Q14902479|http://www.wikidata.org/entity/Q1607082|http://www.wikidata.org/entity/Q1093867|http://www.wikidata.org/entity/Q914432"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Abe Forsythe"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12190604"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12238850"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8721413"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Magdy Al Hawary"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q57496969"}, "Title": {"type": "literal", "value": "Cosas de la edad"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q314403"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Guillaume Canet"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2981321"}, "Title": {"type": "literal", "value": "Coco"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q318991"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2940066|http://www.wikidata.org/entity/Q318991"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3286702|http://www.wikidata.org/entity/Q1685364|http://www.wikidata.org/entity/Q318991|http://www.wikidata.org/entity/Q239033"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Gad Elmaleh"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7737199"}, "Title": {"type": "literal", "value": "The Good Dinosaur"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7177024"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19880918"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2015 American computer-animated adventure film directed by Peter Sohn"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q127552|http://www.wikidata.org/entity/Q191224"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28420034"}, "Title": {"type": "literal", "value": "Si j'\u00e9tais un homme"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q177840"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q177840"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2854016|http://www.wikidata.org/entity/Q310692|http://www.wikidata.org/entity/Q288180|http://www.wikidata.org/entity/Q177840|http://www.wikidata.org/entity/Q32608|http://www.wikidata.org/entity/Q15944854"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2017 film by Audrey Dana"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3071502"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q171600"}, "Title": {"type": "literal", "value": "Str\u00e1karnir okkar"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7386482"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2005 film by R\u00f3bert Ingi Douglas"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q8033127"}, "Title": {"type": "literal", "value": "Woodpecker"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5902748"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13571589"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q40995697"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192881"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6413063"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7283562"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7283562"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Rahsaan Islam"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3987061"}, "Title": {"type": "literal", "value": "The First Turn-On!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q183347|http://www.wikidata.org/entity/Q944978"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q944978|http://www.wikidata.org/entity/Q183347"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7493082|http://www.wikidata.org/entity/Q472746|http://www.wikidata.org/entity/Q320052"}, "Published": {"type": "literal", "value": "1984"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "1984 film by Michael Herz, Lloyd Kaufman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q640786"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3214173"}, "Title": {"type": "literal", "value": "La pecora nera"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2866345"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3852855|http://www.wikidata.org/entity/Q3840444|http://www.wikidata.org/entity/Q3839615|http://www.wikidata.org/entity/Q2866345|http://www.wikidata.org/entity/Q2249919|http://www.wikidata.org/entity/Q795628"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2010 film by Ascanio Celestini"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3221302"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3190825"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3190825"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3554312|http://www.wikidata.org/entity/Q3479511|http://www.wikidata.org/entity/Q3336549|http://www.wikidata.org/entity/Q3287898|http://www.wikidata.org/entity/Q3141929|http://www.wikidata.org/entity/Q3118557|http://www.wikidata.org/entity/Q3073999|http://www.wikidata.org/entity/Q3073457|http://www.wikidata.org/entity/Q3021861|http://www.wikidata.org/entity/Q2897553|http://www.wikidata.org/entity/Q2681916|http://www.wikidata.org/entity/Q275664"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by J\u00e9r\u00f4me Bonnell"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3278302"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130092"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1351652|http://www.wikidata.org/entity/Q130092|http://www.wikidata.org/entity/Q3106385"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130092|http://www.wikidata.org/entity/Q3501929|http://www.wikidata.org/entity/Q23309170|http://www.wikidata.org/entity/Q16534621|http://www.wikidata.org/entity/Q16028738|http://www.wikidata.org/entity/Q15974180|http://www.wikidata.org/entity/Q3591218|http://www.wikidata.org/entity/Q3553638|http://www.wikidata.org/entity/Q3479221|http://www.wikidata.org/entity/Q3379286|http://www.wikidata.org/entity/Q3340006|http://www.wikidata.org/entity/Q3194132|http://www.wikidata.org/entity/Q3106385|http://www.wikidata.org/entity/Q3085730|http://www.wikidata.org/entity/Q3035323|http://www.wikidata.org/entity/Q2887704|http://www.wikidata.org/entity/Q2381285|http://www.wikidata.org/entity/Q2087638|http://www.wikidata.org/entity/Q1758568|http://www.wikidata.org/entity/Q1351652|http://www.wikidata.org/entity/Q703975|http://www.wikidata.org/entity/Q259940"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Val\u00e9rie Donzelli"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22696372"}, "Title": {"type": "literal", "value": "\u5b87\u5b99\u30d1\u30c8\u30ed\u30fc\u30eb\u30eb\u30eb\u5b50"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3023829"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3023829"}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7696995|http://www.wikidata.org/entity/Q5366020"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "television anime directed by Hiroyuki Imaishi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2913693|http://www.wikidata.org/entity/Q10813424"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2464631"}, "Title": {"type": "literal", "value": "T\u00fcrkisch f\u00fcr Anf\u00e4nger"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q112352"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q112352"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q566708|http://www.wikidata.org/entity/Q563380|http://www.wikidata.org/entity/Q347051|http://www.wikidata.org/entity/Q120407|http://www.wikidata.org/entity/Q98326|http://www.wikidata.org/entity/Q97194|http://www.wikidata.org/entity/Q92078|http://www.wikidata.org/entity/Q78766|http://www.wikidata.org/entity/Q62346|http://www.wikidata.org/entity/Q50012|http://www.wikidata.org/entity/Q45338"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2012 film by Bora Da\u011ftekin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28975649"}, "Title": {"type": "literal", "value": "Naked"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21066677"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6988320|http://www.wikidata.org/entity/Q5173585|http://www.wikidata.org/entity/Q1153370|http://www.wikidata.org/entity/Q936507|http://www.wikidata.org/entity/Q455702|http://www.wikidata.org/entity/Q364822|http://www.wikidata.org/entity/Q350208|http://www.wikidata.org/entity/Q310785|http://www.wikidata.org/entity/Q257271|http://www.wikidata.org/entity/Q235141|http://www.wikidata.org/entity/Q232674"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2017 film by Michael Tiddes"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q37911452"}, "Title": {"type": "literal", "value": "Re-Emigrantes"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11118049"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by \u00d3scar Parra de Carrizosa"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1201141"}, "Title": {"type": "literal", "value": "Detention"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1363428"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1363428"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q238494|http://www.wikidata.org/entity/Q217004|http://www.wikidata.org/entity/Q16335035|http://www.wikidata.org/entity/Q11233915|http://www.wikidata.org/entity/Q7965817|http://www.wikidata.org/entity/Q7488769|http://www.wikidata.org/entity/Q6772495|http://www.wikidata.org/entity/Q5387920|http://www.wikidata.org/entity/Q1939601|http://www.wikidata.org/entity/Q359969"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q853630|http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q200092"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2011 film by Joseph Kahn"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q171582"}, "Title": {"type": "literal", "value": "11:14"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q323817"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q323817"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1344405|http://www.wikidata.org/entity/Q1143308|http://www.wikidata.org/entity/Q723027|http://www.wikidata.org/entity/Q506198|http://www.wikidata.org/entity/Q318134|http://www.wikidata.org/entity/Q311804|http://www.wikidata.org/entity/Q291029|http://www.wikidata.org/entity/Q232101|http://www.wikidata.org/entity/Q229042|http://www.wikidata.org/entity/Q202304|http://www.wikidata.org/entity/Q113206|http://www.wikidata.org/entity/Q93187|http://www.wikidata.org/entity/Q49004"}, "Published": {"type": "literal", "value": "2005|2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21401869|http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2003 American indie thriller film directed by Greg Marcks"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6805440"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q39046823"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7283562"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Rahsaan Islam"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3800722"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q59187965"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3899385|http://www.wikidata.org/entity/Q3763513|http://www.wikidata.org/entity/Q3763012"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2010 film by Paola Randi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60737548"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q365915"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Charlie Day"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20899746"}, "Title": {"type": "literal", "value": "Un jour mon prince!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3073457"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1634827"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Flavia Coste"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5504009"}, "Title": {"type": "literal", "value": "Friend Request Pending"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19345276"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5106314"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1273669|http://www.wikidata.org/entity/Q295803|http://www.wikidata.org/entity/Q28054"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Chris Foggin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12006689"}, "Title": {"type": "literal", "value": "Tomme T\u00f8nner 2 \u2013 Det brune gullet"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22344468|http://www.wikidata.org/entity/Q10729540"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10729540"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17107403|http://www.wikidata.org/entity/Q17057517|http://www.wikidata.org/entity/Q11982752|http://www.wikidata.org/entity/Q10729540|http://www.wikidata.org/entity/Q7710693|http://www.wikidata.org/entity/Q7710517|http://www.wikidata.org/entity/Q4584657|http://www.wikidata.org/entity/Q4569518|http://www.wikidata.org/entity/Q2022437|http://www.wikidata.org/entity/Q1769251|http://www.wikidata.org/entity/Q1190263|http://www.wikidata.org/entity/Q707827"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2011 Norwegian film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12005220"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21526331"}, "Title": {"type": "literal", "value": "Kara Bela"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6068775"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6068775"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6100684"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Burak Aksak"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6037357"}, "Title": {"type": "literal", "value": "Inseparable"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5243639"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5243639"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8048168|http://www.wikidata.org/entity/Q5581667|http://www.wikidata.org/entity/Q1140116|http://www.wikidata.org/entity/Q295148|http://www.wikidata.org/entity/Q277193|http://www.wikidata.org/entity/Q25144"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Dayyan Eng"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15853688"}, "Title": {"type": "literal", "value": "Was nicht passt, wird passend gemacht"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2078661|http://www.wikidata.org/entity/Q1487677"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2078661|http://www.wikidata.org/entity/Q1908448|http://www.wikidata.org/entity/Q1904817"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q90041|http://www.wikidata.org/entity/Q2577560|http://www.wikidata.org/entity/Q2078661|http://www.wikidata.org/entity/Q1487677|http://www.wikidata.org/entity/Q297500|http://www.wikidata.org/entity/Q111262"}, "Published": {"type": "literal", "value": "1997"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "15"}, "Description": {"type": "literal", "value": "1997 film by Peter Thorwarth, Tim Trageser"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3343323"}, "Title": {"type": "literal", "value": "Non ma fille tu n'iras pas danser"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q551772"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q551772"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3189528|http://www.wikidata.org/entity/Q3086961|http://www.wikidata.org/entity/Q2836541|http://www.wikidata.org/entity/Q2682027|http://www.wikidata.org/entity/Q952106|http://www.wikidata.org/entity/Q551683|http://www.wikidata.org/entity/Q456360|http://www.wikidata.org/entity/Q382393|http://www.wikidata.org/entity/Q283317|http://www.wikidata.org/entity/Q239845"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film directed by Christophe Honor\u00e9"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3567885"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28129369"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q453691"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q453691"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434051"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Mr. Oizo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q230545"}, "Title": {"type": "literal", "value": "Masj\u00e4vlar"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1809801"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1809801"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6009529|http://www.wikidata.org/entity/Q5954227|http://www.wikidata.org/entity/Q5556457|http://www.wikidata.org/entity/Q4991061|http://www.wikidata.org/entity/Q4976329|http://www.wikidata.org/entity/Q4948570|http://www.wikidata.org/entity/Q4946665|http://www.wikidata.org/entity/Q462129|http://www.wikidata.org/entity/Q440773|http://www.wikidata.org/entity/Q272545"}, "Published": {"type": "literal", "value": "2006|2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2004 film by Maria Blom"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20686127"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23808678"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Jayatheertha"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3790249"}, "Title": {"type": "literal", "value": "Ist\u00e4llet f\u00f6r Abrakadabra"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5630110"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5630110"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5571781"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "22"}, "Description": {"type": "literal", "value": "2008 film by Patrik Eklund"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55597021"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3509936"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q541721"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by S\u00e9bastien Bailly"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3072241"}, "Title": {"type": "literal", "value": "Filth"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17232832"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17232832"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5907683|http://www.wikidata.org/entity/Q3336469|http://www.wikidata.org/entity/Q2165440|http://www.wikidata.org/entity/Q1335105|http://www.wikidata.org/entity/Q727752|http://www.wikidata.org/entity/Q528276|http://www.wikidata.org/entity/Q297071|http://www.wikidata.org/entity/Q237012|http://www.wikidata.org/entity/Q232889|http://www.wikidata.org/entity/Q212351|http://www.wikidata.org/entity/Q193659|http://www.wikidata.org/entity/Q185079|http://www.wikidata.org/entity/Q143223|http://www.wikidata.org/entity/Q113949|http://www.wikidata.org/entity/Q45647"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2013 film by Jon S. Baird"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4184572"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4201152"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4201152"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6124331"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Nia Dinata"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q665192"}, "Title": {"type": "literal", "value": "Six-String Samurai"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4280305"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4493815"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4493815"}, "Published": {"type": "literal", "value": "1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1341051|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q761469|http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "1998 film by Lance Mungia"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q500093"}, "Title": {"type": "literal", "value": "Legally Blonde"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q721107"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6416119|http://www.wikidata.org/entity/Q6369876"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1379066|http://www.wikidata.org/entity/Q960467|http://www.wikidata.org/entity/Q919478|http://www.wikidata.org/entity/Q467908|http://www.wikidata.org/entity/Q462242|http://www.wikidata.org/entity/Q445878|http://www.wikidata.org/entity/Q360671|http://www.wikidata.org/entity/Q345032|http://www.wikidata.org/entity/Q290370|http://www.wikidata.org/entity/Q270664|http://www.wikidata.org/entity/Q266525|http://www.wikidata.org/entity/Q264748|http://www.wikidata.org/entity/Q235198|http://www.wikidata.org/entity/Q234204|http://www.wikidata.org/entity/Q230278|http://www.wikidata.org/entity/Q229545|http://www.wikidata.org/entity/Q201994|http://www.wikidata.org/entity/Q182931|http://www.wikidata.org/entity/Q107769|http://www.wikidata.org/entity/Q44063|http://www.wikidata.org/entity/Q16731845|http://www.wikidata.org/entity/Q3386144|http://www.wikidata.org/entity/Q3050431|http://www.wikidata.org/entity/Q3050134|http://www.wikidata.org/entity/Q2830641|http://www.wikidata.org/entity/Q2683767|http://www.wikidata.org/entity/Q2627255|http://www.wikidata.org/entity/Q2421987|http://www.wikidata.org/entity/Q2166986"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2001 film by Robert Luketic"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7860855|http://www.wikidata.org/entity/Q17417784"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60325239"}, "Title": {"type": "literal", "value": "Stuck in the 80's"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60229347"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60229347"}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6973971"}, "Title": {"type": "literal", "value": "National Lampoon's Golf Punks"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3128032"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q353755"}, "Published": {"type": "literal", "value": "1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q40831"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1998 film by Harvey Frost"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6076457"}, "Title": {"type": "literal", "value": "\u00c7alg\u0131 \u00c7engi"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6052251"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6052251"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6083959"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Sel\u00e7uk Aydemir"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7813253"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17180936"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8062169|http://www.wikidata.org/entity/Q7917177|http://www.wikidata.org/entity/Q4831766|http://www.wikidata.org/entity/Q1376396|http://www.wikidata.org/entity/Q158233"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Kedar Shinde"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23055715"}, "Title": {"type": "literal", "value": "Burn Burn Burn"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q47465812"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23767048"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3218669"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Chanya Button"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24053277"}, "Title": {"type": "literal", "value": "Three Billboards Outside Ebbing, Missouri"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q372394"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q372394"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q204299|http://www.wikidata.org/entity/Q201279|http://www.wikidata.org/entity/Q165625|http://www.wikidata.org/entity/Q28498|http://www.wikidata.org/entity/Q44560779|http://www.wikidata.org/entity/Q19667486|http://www.wikidata.org/entity/Q17488953|http://www.wikidata.org/entity/Q7408805|http://www.wikidata.org/entity/Q1095834|http://www.wikidata.org/entity/Q920607|http://www.wikidata.org/entity/Q459384|http://www.wikidata.org/entity/Q382197|http://www.wikidata.org/entity/Q330460|http://www.wikidata.org/entity/Q316446|http://www.wikidata.org/entity/Q310937|http://www.wikidata.org/entity/Q257625|http://www.wikidata.org/entity/Q236097"}, "Published": {"type": "literal", "value": "2017|2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1200678|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q53094"}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "2017 film by Martin McDonagh"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q953040|http://www.wikidata.org/entity/Q5448886|http://www.wikidata.org/entity/Q17386859"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27536730"}, "Title": {"type": "literal", "value": "Nerdland"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4376392"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q505689"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7153461|http://www.wikidata.org/entity/Q5649155|http://www.wikidata.org/entity/Q2301339|http://www.wikidata.org/entity/Q522856|http://www.wikidata.org/entity/Q446290|http://www.wikidata.org/entity/Q434585|http://www.wikidata.org/entity/Q374065|http://www.wikidata.org/entity/Q276525|http://www.wikidata.org/entity/Q120406"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Chris Prynoski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q219315"}, "Title": {"type": "literal", "value": "The Hangover"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q362824"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3081957|http://www.wikidata.org/entity/Q7436898"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q559081|http://www.wikidata.org/entity/Q552806|http://www.wikidata.org/entity/Q440910|http://www.wikidata.org/entity/Q362824|http://www.wikidata.org/entity/Q328790|http://www.wikidata.org/entity/Q320204|http://www.wikidata.org/entity/Q311962|http://www.wikidata.org/entity/Q290370|http://www.wikidata.org/entity/Q267400|http://www.wikidata.org/entity/Q224026|http://www.wikidata.org/entity/Q205707|http://www.wikidata.org/entity/Q139325|http://www.wikidata.org/entity/Q110379|http://www.wikidata.org/entity/Q79031|http://www.wikidata.org/entity/Q3964712|http://www.wikidata.org/entity/Q3336580|http://www.wikidata.org/entity/Q2978917|http://www.wikidata.org/entity/Q2566766|http://www.wikidata.org/entity/Q2395069|http://www.wikidata.org/entity/Q2278533|http://www.wikidata.org/entity/Q1616538|http://www.wikidata.org/entity/Q1189298|http://www.wikidata.org/entity/Q1139526|http://www.wikidata.org/entity/Q711015"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2009 film by Todd Phillips"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q621364"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q54487710"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3638268"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12058704|http://www.wikidata.org/entity/Q3638268"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23767040|http://www.wikidata.org/entity/Q19363321|http://www.wikidata.org/entity/Q17200928|http://www.wikidata.org/entity/Q12058704|http://www.wikidata.org/entity/Q12025154"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "film directed by Benjamin Tu\u010dek scheduled for September 2018 release"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22000078"}, "Title": {"type": "literal", "value": "D\u00e1 1 Tempo!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10278413"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2008 film by Evandro Berlesi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61782227"}, "Title": {"type": "literal", "value": "The Lovebirds"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2092899"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16208410|http://www.wikidata.org/entity/Q4661797|http://www.wikidata.org/entity/Q3295442"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13560267|http://www.wikidata.org/entity/Q6443390|http://www.wikidata.org/entity/Q1150316"}, "Published": {"type": "literal", "value": "2020"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2020 film directed by Michael Showalter"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2856187|http://www.wikidata.org/entity/Q22021534"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19848939"}, "Title": {"type": "literal", "value": "Der Bunker"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1990249"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1990249"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1160773|http://www.wikidata.org/entity/Q95890|http://www.wikidata.org/entity/Q2097122|http://www.wikidata.org/entity/Q2024814"}, "Published": {"type": "literal", "value": "2015|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2015 film by Nikias Chryssos"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17444465"}, "Title": {"type": "literal", "value": "Panic je nanic"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56242148"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12043246|http://www.wikidata.org/entity/Q12022045|http://www.wikidata.org/entity/Q11752586|http://www.wikidata.org/entity/Q10857842|http://www.wikidata.org/entity/Q10856191|http://www.wikidata.org/entity/Q7938803|http://www.wikidata.org/entity/Q3061217|http://www.wikidata.org/entity/Q2356044|http://www.wikidata.org/entity/Q468276|http://www.wikidata.org/entity/Q159693"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2005 film directed by Ivo Machar\u00e1cek"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7960605"}, "Title": {"type": "literal", "value": "Esperando al Mes\u00edas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1160223"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1160223"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2576722|http://www.wikidata.org/entity/Q2485621|http://www.wikidata.org/entity/Q2272014|http://www.wikidata.org/entity/Q929860|http://www.wikidata.org/entity/Q238547|http://www.wikidata.org/entity/Q6812438|http://www.wikidata.org/entity/Q5724214|http://www.wikidata.org/entity/Q5379791|http://www.wikidata.org/entity/Q2963235"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2000 film by Daniel Burman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q33665391"}, "Title": {"type": "literal", "value": "\u0411\u0430\u0431\u0443\u0448\u043a\u0430 \u043b\u0451\u0433\u043a\u043e\u0433\u043e \u043f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u044f"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4102539"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4102539|http://www.wikidata.org/entity/Q4391645"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4459812|http://www.wikidata.org/entity/Q4391645|http://www.wikidata.org/entity/Q4137597|http://www.wikidata.org/entity/Q4103145|http://www.wikidata.org/entity/Q494596|http://www.wikidata.org/entity/Q35385|http://www.wikidata.org/entity/Q28496340|http://www.wikidata.org/entity/Q4482274"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2017 film by Marius Vaisbergas"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3163489"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q74428|http://www.wikidata.org/entity/Q2778106"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2778106|http://www.wikidata.org/entity/Q74428"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3524285|http://www.wikidata.org/entity/Q3516045|http://www.wikidata.org/entity/Q3314602|http://www.wikidata.org/entity/Q3269757|http://www.wikidata.org/entity/Q3242498|http://www.wikidata.org/entity/Q3219419|http://www.wikidata.org/entity/Q3183404|http://www.wikidata.org/entity/Q3157806|http://www.wikidata.org/entity/Q3083941|http://www.wikidata.org/entity/Q2941947|http://www.wikidata.org/entity/Q2413166|http://www.wikidata.org/entity/Q1341507|http://www.wikidata.org/entity/Q949391|http://www.wikidata.org/entity/Q531482|http://www.wikidata.org/entity/Q106508|http://www.wikidata.org/entity/Q106443|http://www.wikidata.org/entity/Q18326681|http://www.wikidata.org/entity/Q17325002|http://www.wikidata.org/entity/Q16680413|http://www.wikidata.org/entity/Q16222125|http://www.wikidata.org/entity/Q16185204|http://www.wikidata.org/entity/Q11290936|http://www.wikidata.org/entity/Q3573721|http://www.wikidata.org/entity/Q3570819|http://www.wikidata.org/entity/Q3560719|http://www.wikidata.org/entity/Q3554229|http://www.wikidata.org/entity/Q3553660|http://www.wikidata.org/entity/Q3528538"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2005 film by Olivier Nakache, \u00c9ric Toledano"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5431513"}, "Title": {"type": "literal", "value": "Fakers"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7326825"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1250868|http://www.wikidata.org/entity/Q705644|http://www.wikidata.org/entity/Q509628|http://www.wikidata.org/entity/Q472411|http://www.wikidata.org/entity/Q342784|http://www.wikidata.org/entity/Q7815252"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Richard Janes"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3785226"}, "Title": {"type": "literal", "value": "Hermanitos, fratelli d'Italia"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3805939"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "52"}, "Description": {"type": "literal", "value": "2010 film by Jacopo Tartarone"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1708524"}, "Title": {"type": "literal", "value": "Josh and S.A.M."}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q863267"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q350724|http://www.wikidata.org/entity/Q297744|http://www.wikidata.org/entity/Q275803|http://www.wikidata.org/entity/Q267383|http://www.wikidata.org/entity/Q229305|http://www.wikidata.org/entity/Q133313|http://www.wikidata.org/entity/Q77035|http://www.wikidata.org/entity/Q4961428|http://www.wikidata.org/entity/Q2851685|http://www.wikidata.org/entity/Q2850389|http://www.wikidata.org/entity/Q2233929|http://www.wikidata.org/entity/Q1158873|http://www.wikidata.org/entity/Q1146351|http://www.wikidata.org/entity/Q1079204|http://www.wikidata.org/entity/Q951634|http://www.wikidata.org/entity/Q434244|http://www.wikidata.org/entity/Q376131"}, "Published": {"type": "literal", "value": "1993"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "1993 film by Billy Weber"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q79202|http://www.wikidata.org/entity/Q622848"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21427302"}, "Title": {"type": "literal", "value": "Five"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19956191"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19956191"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3386444"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Igor Gotesman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3232650"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q54165988"}, "Title": {"type": "literal", "value": "Mon Ket"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q164976"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2443051|http://www.wikidata.org/entity/Q164976"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3516056|http://www.wikidata.org/entity/Q164976"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2018 film directed by Fran\u00e7ois Damiens"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q782059"}, "Title": {"type": "literal", "value": "The Mysteries of Pittsburgh"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2745616"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2745616"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q551596|http://www.wikidata.org/entity/Q315099|http://www.wikidata.org/entity/Q266231|http://www.wikidata.org/entity/Q223303|http://www.wikidata.org/entity/Q193458|http://www.wikidata.org/entity/Q188018"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Rawson Marshall Thurber"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3717600"}, "Title": {"type": "literal", "value": "E guardo il mondo da un obl\u00f2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3972409"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3972409"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3972409|http://www.wikidata.org/entity/Q3838277|http://www.wikidata.org/entity/Q3831992|http://www.wikidata.org/entity/Q3721398|http://www.wikidata.org/entity/Q696152"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2007 film by Stefano Calvagna"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28503654"}, "Title": {"type": "literal", "value": "Mam\u00e1 se fue de viaje"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5704113"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Ariel Winograd"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55464181"}, "Title": {"type": "literal", "value": "\u0413\u0435\u0440\u043e\u0439 \u043c\u043e\u0433\u043e \u0447\u0430\u0441\u0443"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55645018"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55107620|http://www.wikidata.org/entity/Q12173452|http://www.wikidata.org/entity/Q4492965"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2018 comedy film by Tonya Noyabrova"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19404566"}, "Title": {"type": "literal", "value": "Qocalar"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12849235"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5394052"}, "Title": {"type": "literal", "value": "Ernest and Bertram"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7177037"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1262695"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Peter Spears"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18971274"}, "Title": {"type": "literal", "value": "Non c'\u00e8 2 senza te"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23857049"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23857049"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2015 film by Massimo Cappelli"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1800384"}, "Title": {"type": "literal", "value": "Lago Mio"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55849622"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55849622|http://www.wikidata.org/entity/Q1650253"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2005 film by Jann Preuss"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7539880"}, "Title": {"type": "literal", "value": "Prensesin Uykusu"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q272718"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q272718"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7458088|http://www.wikidata.org/entity/Q6100158|http://www.wikidata.org/entity/Q6094662|http://www.wikidata.org/entity/Q6087265|http://www.wikidata.org/entity/Q6087059|http://www.wikidata.org/entity/Q6069816|http://www.wikidata.org/entity/Q5530907"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by \u00c7a\u011fan Irmak"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4101760"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4080580"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15070222|http://www.wikidata.org/entity/Q4530019|http://www.wikidata.org/entity/Q4497705|http://www.wikidata.org/entity/Q4458928|http://www.wikidata.org/entity/Q4445421|http://www.wikidata.org/entity/Q4400363|http://www.wikidata.org/entity/Q4380406|http://www.wikidata.org/entity/Q4275511|http://www.wikidata.org/entity/Q4242763|http://www.wikidata.org/entity/Q4189571|http://www.wikidata.org/entity/Q4176078|http://www.wikidata.org/entity/Q4165014|http://www.wikidata.org/entity/Q4104765|http://www.wikidata.org/entity/Q4093222|http://www.wikidata.org/entity/Q4069842|http://www.wikidata.org/entity/Q4067056|http://www.wikidata.org/entity/Q3856333|http://www.wikidata.org/entity/Q1879297"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Yevgeny Bedarev"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4044503"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13654907"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3112667|http://www.wikidata.org/entity/Q950283"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "12"}, "Description": {"type": "literal", "value": "2008 film directed by Hayden Schlossberg"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20119383"}, "Title": {"type": "literal", "value": "Zeit der Kannibalen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2370675"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1737653"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2262614|http://www.wikidata.org/entity/Q103544|http://www.wikidata.org/entity/Q86919"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2014 German drama film directed by Johannes Naber"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q52439180"}, "Title": {"type": "literal", "value": "De Rolling por Colombia"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16302557"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Harold Trompetero"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27959221"}, "Title": {"type": "literal", "value": "Damsel"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18325889|http://www.wikidata.org/entity/Q63286189"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18325889|http://www.wikidata.org/entity/Q63286189"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q228865|http://www.wikidata.org/entity/Q36767|http://www.wikidata.org/entity/Q18325889"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q172980"}, "Duration": {"type": "literal", "value": "113"}, "Description": {"type": "literal", "value": "2018 film by David Zellner"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q57587716"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4015113"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film directed by Vito Palmieri"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q782955"}, "Title": {"type": "literal", "value": "Old School"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q362824"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q362824|http://www.wikidata.org/entity/Q2260642"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q477819|http://www.wikidata.org/entity/Q444429|http://www.wikidata.org/entity/Q423141|http://www.wikidata.org/entity/Q367094|http://www.wikidata.org/entity/Q362824|http://www.wikidata.org/entity/Q319585|http://www.wikidata.org/entity/Q315107|http://www.wikidata.org/entity/Q315083|http://www.wikidata.org/entity/Q299297|http://www.wikidata.org/entity/Q271637|http://www.wikidata.org/entity/Q265516|http://www.wikidata.org/entity/Q242580|http://www.wikidata.org/entity/Q230530|http://www.wikidata.org/entity/Q230523|http://www.wikidata.org/entity/Q218503|http://www.wikidata.org/entity/Q215849|http://www.wikidata.org/entity/Q193212|http://www.wikidata.org/entity/Q188500|http://www.wikidata.org/entity/Q107769|http://www.wikidata.org/entity/Q107730|http://www.wikidata.org/entity/Q6096|http://www.wikidata.org/entity/Q3342658|http://www.wikidata.org/entity/Q3336580|http://www.wikidata.org/entity/Q3045844|http://www.wikidata.org/entity/Q2278533|http://www.wikidata.org/entity/Q1778919|http://www.wikidata.org/entity/Q1395333|http://www.wikidata.org/entity/Q1387836|http://www.wikidata.org/entity/Q1378118|http://www.wikidata.org/entity/Q1370072|http://www.wikidata.org/entity/Q1281204|http://www.wikidata.org/entity/Q1139526|http://www.wikidata.org/entity/Q978367|http://www.wikidata.org/entity/Q928592|http://www.wikidata.org/entity/Q720671|http://www.wikidata.org/entity/Q712452|http://www.wikidata.org/entity/Q644565|http://www.wikidata.org/entity/Q534915"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2003 film by Todd Phillips"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7752106"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q79503"}, "Title": {"type": "literal", "value": "Juno"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q314502"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q230795"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q150482|http://www.wikidata.org/entity/Q39574|http://www.wikidata.org/entity/Q5416168|http://www.wikidata.org/entity/Q3052393|http://www.wikidata.org/entity/Q663741|http://www.wikidata.org/entity/Q452019|http://www.wikidata.org/entity/Q349548|http://www.wikidata.org/entity/Q309555|http://www.wikidata.org/entity/Q284636|http://www.wikidata.org/entity/Q242842|http://www.wikidata.org/entity/Q242550|http://www.wikidata.org/entity/Q229487|http://www.wikidata.org/entity/Q173399|http://www.wikidata.org/entity/Q172044"}, "Published": {"type": "literal", "value": "2008|2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2007 American comedy-drama film directed by Jason Reitman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q922453|http://www.wikidata.org/entity/Q953040|http://www.wikidata.org/entity/Q5368270"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q35705830"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6090416"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 Turkish movie directed by Sermiyan Midyat"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4921485"}, "Title": {"type": "literal", "value": "Black Pond"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7816474"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5107190|http://www.wikidata.org/entity/Q978769"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Tom Kingsley"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4378280"}, "Title": {"type": "literal", "value": "Promoci\u00f3n fantasma"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5928180"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11681419|http://www.wikidata.org/entity/Q4133904|http://www.wikidata.org/entity/Q3329791|http://www.wikidata.org/entity/Q3266852|http://www.wikidata.org/entity/Q2833293|http://www.wikidata.org/entity/Q2687792|http://www.wikidata.org/entity/Q2655070|http://www.wikidata.org/entity/Q2454646|http://www.wikidata.org/entity/Q175333|http://www.wikidata.org/entity/Q129501"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2012 film by Javier Ruiz Caldera"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2646034"}, "Title": {"type": "literal", "value": "\u041c\u0430\u0440\u0441"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4289477"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4289477"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4177153"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192881"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Anna Melikian"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1504740"}, "Title": {"type": "literal", "value": "Johnny Be Good"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2927491"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q537252|http://www.wikidata.org/entity/Q495549|http://www.wikidata.org/entity/Q459384|http://www.wikidata.org/entity/Q361215|http://www.wikidata.org/entity/Q165219|http://www.wikidata.org/entity/Q125017|http://www.wikidata.org/entity/Q16659530|http://www.wikidata.org/entity/Q1689159|http://www.wikidata.org/entity/Q972381|http://www.wikidata.org/entity/Q961431|http://www.wikidata.org/entity/Q741572|http://www.wikidata.org/entity/Q708153|http://www.wikidata.org/entity/Q679987|http://www.wikidata.org/entity/Q587102"}, "Published": {"type": "literal", "value": "1988"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1339864|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "1988 film by Bud S. Smith"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q891732"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17620299"}, "Title": {"type": "literal", "value": "1987"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3430333"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3430333"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q786347"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Ricardo Trogi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48861117"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11779170"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17703451"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Micha\u0142 Rogalski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6382504"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12179122"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q591801"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Ahmed Nader Galal"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17985812"}, "Title": {"type": "literal", "value": "Before I Disappear"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11903371"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11903371"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27656678|http://www.wikidata.org/entity/Q11903371|http://www.wikidata.org/entity/Q5511410|http://www.wikidata.org/entity/Q2934962|http://www.wikidata.org/entity/Q2240987|http://www.wikidata.org/entity/Q355209|http://www.wikidata.org/entity/Q270149|http://www.wikidata.org/entity/Q220698|http://www.wikidata.org/entity/Q195807|http://www.wikidata.org/entity/Q35912"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Shawn Christensen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18155457"}, "Title": {"type": "literal", "value": "Vacation"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q342636|http://www.wikidata.org/entity/Q6273224"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q342636|http://www.wikidata.org/entity/Q6273224"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21998813|http://www.wikidata.org/entity/Q7803640|http://www.wikidata.org/entity/Q6382703|http://www.wikidata.org/entity/Q6273224|http://www.wikidata.org/entity/Q5648816|http://www.wikidata.org/entity/Q4241574|http://www.wikidata.org/entity/Q3453757|http://www.wikidata.org/entity/Q22676450|http://www.wikidata.org/entity/Q1190692|http://www.wikidata.org/entity/Q943613|http://www.wikidata.org/entity/Q528126|http://www.wikidata.org/entity/Q503545|http://www.wikidata.org/entity/Q365915|http://www.wikidata.org/entity/Q359488|http://www.wikidata.org/entity/Q342636|http://www.wikidata.org/entity/Q328790|http://www.wikidata.org/entity/Q318134|http://www.wikidata.org/entity/Q310926|http://www.wikidata.org/entity/Q290094|http://www.wikidata.org/entity/Q235141|http://www.wikidata.org/entity/Q234551|http://www.wikidata.org/entity/Q230209|http://www.wikidata.org/entity/Q229011|http://www.wikidata.org/entity/Q188280|http://www.wikidata.org/entity/Q118763|http://www.wikidata.org/entity/Q54314"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q319221"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2015 American family comedy film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q79202|http://www.wikidata.org/entity/Q20874104"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4228790"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21092329"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2365826"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q352828"}, "Title": {"type": "literal", "value": "Addams Family Reunion"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q918487"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q361106"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7147722|http://www.wikidata.org/entity/Q6184097|http://www.wikidata.org/entity/Q5112492|http://www.wikidata.org/entity/Q3369884|http://www.wikidata.org/entity/Q2437264|http://www.wikidata.org/entity/Q692800|http://www.wikidata.org/entity/Q496503|http://www.wikidata.org/entity/Q464425|http://www.wikidata.org/entity/Q384273|http://www.wikidata.org/entity/Q326217|http://www.wikidata.org/entity/Q281404|http://www.wikidata.org/entity/Q272935|http://www.wikidata.org/entity/Q272719|http://www.wikidata.org/entity/Q229038|http://www.wikidata.org/entity/Q207596|http://www.wikidata.org/entity/Q52392"}, "Published": {"type": "literal", "value": "1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "1998 television film directed by Dave Payne"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2719775"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28667809"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4137998|http://www.wikidata.org/entity/Q4382647|http://www.wikidata.org/entity/Q4330970"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6860580|http://www.wikidata.org/entity/Q4519628|http://www.wikidata.org/entity/Q4516120|http://www.wikidata.org/entity/Q4248489|http://www.wikidata.org/entity/Q4147975|http://www.wikidata.org/entity/Q21183528|http://www.wikidata.org/entity/Q14491922|http://www.wikidata.org/entity/Q4105674|http://www.wikidata.org/entity/Q4057207|http://www.wikidata.org/entity/Q2622206|http://www.wikidata.org/entity/Q447069"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q1919632"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2015 anthology film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1754271|http://www.wikidata.org/entity/Q28179983"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15985067"}, "Title": {"type": "literal", "value": "Men, Women & Children"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q314502"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5389127|http://www.wikidata.org/entity/Q314502"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19877770|http://www.wikidata.org/entity/Q19832503|http://www.wikidata.org/entity/Q15837493|http://www.wikidata.org/entity/Q13426679|http://www.wikidata.org/entity/Q6162394|http://www.wikidata.org/entity/Q519784|http://www.wikidata.org/entity/Q432385|http://www.wikidata.org/entity/Q356541|http://www.wikidata.org/entity/Q350208|http://www.wikidata.org/entity/Q236956|http://www.wikidata.org/entity/Q236189|http://www.wikidata.org/entity/Q172044|http://www.wikidata.org/entity/Q168724|http://www.wikidata.org/entity/Q150482|http://www.wikidata.org/entity/Q132952|http://www.wikidata.org/entity/Q64560"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "2014 film by Jason Reitman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q159846"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1747296"}, "Title": {"type": "literal", "value": "More American Graffiti"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q684771"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1383657|http://www.wikidata.org/entity/Q684771|http://www.wikidata.org/entity/Q133631|http://www.wikidata.org/entity/Q38222"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3335570|http://www.wikidata.org/entity/Q3246911|http://www.wikidata.org/entity/Q2060901|http://www.wikidata.org/entity/Q1319770|http://www.wikidata.org/entity/Q238924|http://www.wikidata.org/entity/Q114179|http://www.wikidata.org/entity/Q109232|http://www.wikidata.org/entity/Q103646|http://www.wikidata.org/entity/Q81328|http://www.wikidata.org/entity/Q40067|http://www.wikidata.org/entity/Q448688|http://www.wikidata.org/entity/Q362559|http://www.wikidata.org/entity/Q358421|http://www.wikidata.org/entity/Q266820|http://www.wikidata.org/entity/Q869427|http://www.wikidata.org/entity/Q730100|http://www.wikidata.org/entity/Q728617|http://www.wikidata.org/entity/Q466409|http://www.wikidata.org/entity/Q452475"}, "Published": {"type": "literal", "value": "1979"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "1979 film by Bill L. Norton"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q242446"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3414809"}, "Title": {"type": "literal", "value": "Qu\u00e9bec-Montr\u00e9al"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3430333"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3531726|http://www.wikidata.org/entity/Q3501635|http://www.wikidata.org/entity/Q3383044|http://www.wikidata.org/entity/Q3369021|http://www.wikidata.org/entity/Q3291851|http://www.wikidata.org/entity/Q2896539|http://www.wikidata.org/entity/Q2371603|http://www.wikidata.org/entity/Q746193|http://www.wikidata.org/entity/Q533225"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Ricardo Trogi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q31837434"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1246111"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1246111"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2017 film directed by Doron Wisotzky"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7548954"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11898462"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q255434"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q33435887|http://www.wikidata.org/entity/Q12036810|http://www.wikidata.org/entity/Q12022294|http://www.wikidata.org/entity/Q11985642|http://www.wikidata.org/entity/Q11985151|http://www.wikidata.org/entity/Q10861574|http://www.wikidata.org/entity/Q7922503|http://www.wikidata.org/entity/Q4806455|http://www.wikidata.org/entity/Q3566396|http://www.wikidata.org/entity/Q741577"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Viktor Tau\u0161"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3079763"}, "Title": {"type": "literal", "value": "Madly in Love"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q561754"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q45769929|http://www.wikidata.org/entity/Q42415373"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Anna Luif"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42947871"}, "Title": {"type": "literal", "value": "Newly Single"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4678850"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4678850"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Adam Christian Clark"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20850854"}, "Title": {"type": "literal", "value": "Miss Sixty"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20172369"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2014 film by Sigrid Hoerner"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15867260"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15055560"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15055560"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "10"}, "Description": {"type": "literal", "value": "2013 film by Gianpiero Alicchio"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1218039"}, "Title": {"type": "literal", "value": "Larger than Life"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3141551"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1395333|http://www.wikidata.org/entity/Q1366460|http://www.wikidata.org/entity/Q456156|http://www.wikidata.org/entity/Q370918|http://www.wikidata.org/entity/Q315083|http://www.wikidata.org/entity/Q204393|http://www.wikidata.org/entity/Q188955|http://www.wikidata.org/entity/Q165283|http://www.wikidata.org/entity/Q40143|http://www.wikidata.org/entity/Q29250"}, "Published": {"type": "literal", "value": "1997|1996"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "1996 film by Howard Franklin"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q179200"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3050651"}, "Title": {"type": "literal", "value": "Elektra Luxx"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3476873"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3476873"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3480359|http://www.wikidata.org/entity/Q1889482|http://www.wikidata.org/entity/Q561324|http://www.wikidata.org/entity/Q457851|http://www.wikidata.org/entity/Q445116|http://www.wikidata.org/entity/Q309835|http://www.wikidata.org/entity/Q298173|http://www.wikidata.org/entity/Q272176|http://www.wikidata.org/entity/Q262278|http://www.wikidata.org/entity/Q261579|http://www.wikidata.org/entity/Q236696|http://www.wikidata.org/entity/Q235072|http://www.wikidata.org/entity/Q229669|http://www.wikidata.org/entity/Q228871|http://www.wikidata.org/entity/Q177311|http://www.wikidata.org/entity/Q80405|http://www.wikidata.org/entity/Q41396"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2010 film by Sebastian Gutierrez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29313"}, "Title": {"type": "literal", "value": "The Watch"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q419466"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q220308|http://www.wikidata.org/entity/Q3061320"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q236956|http://www.wikidata.org/entity/Q107730|http://www.wikidata.org/entity/Q47100|http://www.wikidata.org/entity/Q28717|http://www.wikidata.org/entity/Q16236368|http://www.wikidata.org/entity/Q6285847|http://www.wikidata.org/entity/Q3808676|http://www.wikidata.org/entity/Q3731797|http://www.wikidata.org/entity/Q1333118|http://www.wikidata.org/entity/Q714133|http://www.wikidata.org/entity/Q545634|http://www.wikidata.org/entity/Q461309|http://www.wikidata.org/entity/Q419466|http://www.wikidata.org/entity/Q353978|http://www.wikidata.org/entity/Q314640|http://www.wikidata.org/entity/Q313650|http://www.wikidata.org/entity/Q313388|http://www.wikidata.org/entity/Q1319744"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q761469|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q188473"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2012 science fiction comedy film directed by Akiva Schaffer"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434841"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20745334"}, "Title": {"type": "literal", "value": "Regular Show: The Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q918083"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "70"}, "Description": {"type": "literal", "value": "2015 American animated film directed by J.G. Quintel"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55831729"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q57399408"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2018 film by Valerio Attanasio"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4019806"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1017397"}, "Title": {"type": "literal", "value": "Buschpiloten k\u00fcsst man nicht"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1082076"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2011 television film directed by Christian Theede"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7852701"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2857813"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3053437|http://www.wikidata.org/entity/Q560163|http://www.wikidata.org/entity/Q466080"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Anurag Basu"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q57618710"}, "Title": {"type": "literal", "value": "El Rat\u00f3n P\u00e9rez 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q36480689"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q132311"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2008 animated film by Andr\u00e9s G. Schaer"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3392176|http://www.wikidata.org/entity/Q7144163|t1427951257"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18355659"}, "Title": {"type": "literal", "value": "Saving Christmas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16155829"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2014 film by Darren Doane"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1452656"}, "Title": {"type": "literal", "value": "Freddy Got Fingered"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q315826"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q315826|http://www.wikidata.org/entity/Q3023725"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3342656|http://www.wikidata.org/entity/Q1920467|http://www.wikidata.org/entity/Q1275214|http://www.wikidata.org/entity/Q930117|http://www.wikidata.org/entity/Q676094|http://www.wikidata.org/entity/Q376131|http://www.wikidata.org/entity/Q361215|http://www.wikidata.org/entity/Q350811|http://www.wikidata.org/entity/Q315826|http://www.wikidata.org/entity/Q313522|http://www.wikidata.org/entity/Q271440|http://www.wikidata.org/entity/Q169452|http://www.wikidata.org/entity/Q135903|http://www.wikidata.org/entity/Q15707390|http://www.wikidata.org/entity/Q6379219"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2001 film by Tom Green"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q466459"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6787823"}, "Title": {"type": "literal", "value": "Matrimonium"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7778251"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7416449"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Michael Akers"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7928497"}, "Title": {"type": "literal", "value": "\u0bb5\u0bbf\u0baf\u0b9f\u0bcd\u0ba8\u0bbe\u0bae\u0bcd \u0b95\u0bbe\u0bb2\u0ba9\u0bbf"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7420144"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5183212"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7932417|http://www.wikidata.org/entity/Q3522069|http://www.wikidata.org/entity/Q1470413|http://www.wikidata.org/entity/Q277665"}, "Published": {"type": "literal", "value": "1994"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1994 film by Santhana Bharathi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q32760029"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1599672"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1599672"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q431362|http://www.wikidata.org/entity/Q233038|http://www.wikidata.org/entity/Q15622307|http://www.wikidata.org/entity/Q1599672"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Marianna Palka"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27996422"}, "Title": {"type": "literal", "value": "Ma\u00f1ana"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5611300"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5611300"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1442212"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Manuel Concha"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13012296"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13020286"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13016846"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1015952"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Poj Arnon"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27134690"}, "Title": {"type": "literal", "value": "Volltreffer"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16891732"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2016 film by Granz Henman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q685516"}, "Title": {"type": "literal", "value": "The Game Plan"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q525725"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25080918|http://www.wikidata.org/entity/Q25080651"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q268046|http://www.wikidata.org/entity/Q234633|http://www.wikidata.org/entity/Q229572|http://www.wikidata.org/entity/Q73352|http://www.wikidata.org/entity/Q10738|http://www.wikidata.org/entity/Q11221289|http://www.wikidata.org/entity/Q5362564|http://www.wikidata.org/entity/Q3434248|http://www.wikidata.org/entity/Q2603410|http://www.wikidata.org/entity/Q2040329|http://www.wikidata.org/entity/Q1762270|http://www.wikidata.org/entity/Q1328715|http://www.wikidata.org/entity/Q1278420|http://www.wikidata.org/entity/Q472053|http://www.wikidata.org/entity/Q451551|http://www.wikidata.org/entity/Q272176"}, "Published": {"type": "literal", "value": "2007|2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "2007 film by Andy Fickman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191224|http://www.wikidata.org/entity/Q24806916"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23564823"}, "Title": {"type": "literal", "value": "Mein Schwiegervater, der Stinkstiefel"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2370977"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2015 television film directed by Sven Bohse"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55975737"}, "Title": {"type": "literal", "value": "Sue\u00f1o Florian\u00f3polis"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5673824"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Ana Katz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29962132"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30345590"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 animated cartoon"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4362796"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6943957"}, "Title": {"type": "literal", "value": "Mutiny on the Buses"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5667433"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2471996|http://www.wikidata.org/entity/Q2171085|http://www.wikidata.org/entity/Q2052248|http://www.wikidata.org/entity/Q1914884|http://www.wikidata.org/entity/Q679983|http://www.wikidata.org/entity/Q518175"}, "Published": {"type": "literal", "value": "1972"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1972 film by Harry Booth"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3599231"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3768032|http://www.wikidata.org/entity/Q3837102"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3768032|http://www.wikidata.org/entity/Q3615555|http://www.wikidata.org/entity/Q3837102"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3660524|http://www.wikidata.org/entity/Q3639426|http://www.wikidata.org/entity/Q3615555|http://www.wikidata.org/entity/Q1179560|http://www.wikidata.org/entity/Q1125124|http://www.wikidata.org/entity/Q706134|http://www.wikidata.org/entity/Q551820|http://www.wikidata.org/entity/Q547406|http://www.wikidata.org/entity/Q278440|http://www.wikidata.org/entity/Q4010211|http://www.wikidata.org/entity/Q4002784|http://www.wikidata.org/entity/Q3940278|http://www.wikidata.org/entity/Q3939549|http://www.wikidata.org/entity/Q3851381|http://www.wikidata.org/entity/Q3845172|http://www.wikidata.org/entity/Q3763397"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2001 film by Giovanni Robbiano, Lorenzo Vignolo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7850100"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1279855"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q724787"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Keisuke Yoshida"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17049095"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21066307"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21066307"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Master Anand"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27590249"}, "Title": {"type": "literal", "value": "Prima di luned\u00ec"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23857049"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23857049"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q62566638"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2016 film by Massimo Cappelli"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18709330"}, "Title": {"type": "literal", "value": "El club de los incomprendidos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12385366"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Carlos Sedes"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19579844"}, "Title": {"type": "literal", "value": "36 \u0bb5\u0baf\u0ba4\u0bbf\u0ba9\u0bbf\u0bb2\u0bc7"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13114425"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4934704"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2749279"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "2015 film by Rosshan Andrrews"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22916734"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30077950"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26436296"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25620685"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q54847534|http://www.wikidata.org/entity/Q54847501|http://www.wikidata.org/entity/Q54847497|http://www.wikidata.org/entity/Q54847449|http://www.wikidata.org/entity/Q54847438|http://www.wikidata.org/entity/Q54847387|http://www.wikidata.org/entity/Q54847381|http://www.wikidata.org/entity/Q54847337|http://www.wikidata.org/entity/Q25620685"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 Nepali film by Dipendra K Khanal"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25462762"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12250381"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18572618"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Wael Ehsan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13806537"}, "Title": {"type": "literal", "value": "Inherent Vice"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25132"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25132"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3499302|http://www.wikidata.org/entity/Q2617121|http://www.wikidata.org/entity/Q2094005|http://www.wikidata.org/entity/Q1253621|http://www.wikidata.org/entity/Q921518|http://www.wikidata.org/entity/Q726130|http://www.wikidata.org/entity/Q721195|http://www.wikidata.org/entity/Q527771|http://www.wikidata.org/entity/Q466957|http://www.wikidata.org/entity/Q442907|http://www.wikidata.org/entity/Q439972|http://www.wikidata.org/entity/Q382094|http://www.wikidata.org/entity/Q329744|http://www.wikidata.org/entity/Q238712|http://www.wikidata.org/entity/Q236527|http://www.wikidata.org/entity/Q233368|http://www.wikidata.org/entity/Q233061|http://www.wikidata.org/entity/Q231665|http://www.wikidata.org/entity/Q207969|http://www.wikidata.org/entity/Q193668|http://www.wikidata.org/entity/Q185140|http://www.wikidata.org/entity/Q161916|http://www.wikidata.org/entity/Q44063|http://www.wikidata.org/entity/Q41396|http://www.wikidata.org/entity/Q9588|http://www.wikidata.org/entity/Q19595519|http://www.wikidata.org/entity/Q16226409|http://www.wikidata.org/entity/Q16198576|http://www.wikidata.org/entity/Q15222780|http://www.wikidata.org/entity/Q11305090|http://www.wikidata.org/entity/Q7488848|http://www.wikidata.org/entity/Q6175538|http://www.wikidata.org/entity/Q5372783|http://www.wikidata.org/entity/Q5353301|http://www.wikidata.org/entity/Q4753814|http://www.wikidata.org/entity/Q4749184"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "149"}, "Description": {"type": "literal", "value": "2014 American crime comedy-drama film directed by Paul Thomas Anderson"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q974846"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11016687"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12178530"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4164801"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Ahmed El Guindi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23562834"}, "Title": {"type": "literal", "value": "Auf der Suche nach dem G-Punkt"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2277288"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2009 film by Sharon von Wietersheim"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q623336"}, "Title": {"type": "literal", "value": "\u0915\u0941\u091b \u0915\u0941\u091b \u0939\u094b\u0924\u093e \u0939\u0948"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q468442"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q468442"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3785692|http://www.wikidata.org/entity/Q2341578|http://www.wikidata.org/entity/Q2220177|http://www.wikidata.org/entity/Q983571|http://www.wikidata.org/entity/Q560163|http://www.wikidata.org/entity/Q485557|http://www.wikidata.org/entity/Q157803|http://www.wikidata.org/entity/Q147395|http://www.wikidata.org/entity/Q9543|http://www.wikidata.org/entity/Q9535"}, "Published": {"type": "literal", "value": "1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "178"}, "Description": {"type": "literal", "value": "1998 film by Karan Johar"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1207592"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12308214"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12326312"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41743395|http://www.wikidata.org/entity/Q12326312"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12343372|http://www.wikidata.org/entity/Q12339234|http://www.wikidata.org/entity/Q12338548|http://www.wikidata.org/entity/Q12324627|http://www.wikidata.org/entity/Q12321576|http://www.wikidata.org/entity/Q12303108|http://www.wikidata.org/entity/Q6491701|http://www.wikidata.org/entity/Q5251626|http://www.wikidata.org/entity/Q4982822|http://www.wikidata.org/entity/Q1797681|http://www.wikidata.org/entity/Q1783323|http://www.wikidata.org/entity/Q1662462|http://www.wikidata.org/entity/Q1045502|http://www.wikidata.org/entity/Q443361|http://www.wikidata.org/entity/Q264696"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Martin Strange-Hansen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4812357"}, "Title": {"type": "literal", "value": "At Last... Bullamakanka: The Motion Picture"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18686637"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15627760|http://www.wikidata.org/entity/Q7537759|http://www.wikidata.org/entity/Q6204312|http://www.wikidata.org/entity/Q5296695|http://www.wikidata.org/entity/Q1540822|http://www.wikidata.org/entity/Q327356|http://www.wikidata.org/entity/Q22072"}, "Published": {"type": "literal", "value": "1983"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1983 film by Simon Heath"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q74671"}, "Title": {"type": "literal", "value": "Diary of a Wimpy Kid"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q95657"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3176515|http://www.wikidata.org/entity/Q3093508|http://www.wikidata.org/entity/Q311704"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15456399|http://www.wikidata.org/entity/Q7001736|http://www.wikidata.org/entity/Q2834731|http://www.wikidata.org/entity/Q1321271|http://www.wikidata.org/entity/Q1139898|http://www.wikidata.org/entity/Q637063|http://www.wikidata.org/entity/Q552896|http://www.wikidata.org/entity/Q491775|http://www.wikidata.org/entity/Q267400|http://www.wikidata.org/entity/Q234299|http://www.wikidata.org/entity/Q139611|http://www.wikidata.org/entity/Q74689|http://www.wikidata.org/entity/Q74671|http://www.wikidata.org/entity/Q4509"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2010 animated film directed by Thor Freudenthal"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3041294|http://www.wikidata.org/entity/Q5148553"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2421682"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q628832"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q628832"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q485557|http://www.wikidata.org/entity/Q263819|http://www.wikidata.org/entity/Q258820|http://www.wikidata.org/entity/Q252290"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "145"}, "Description": {"type": "literal", "value": "2008 film by Kunal Kohli"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14917495"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17410948"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17410948|http://www.wikidata.org/entity/Q12498974"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6163146|http://www.wikidata.org/entity/Q4199406|http://www.wikidata.org/entity/Q4199390"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Rako Prijanto"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14474500"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18630627"}, "Title": {"type": "literal", "value": "Schweizer Helden"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3376726"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3376726|http://www.wikidata.org/entity/Q1717401"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22312572|http://www.wikidata.org/entity/Q19278419|http://www.wikidata.org/entity/Q2504949|http://www.wikidata.org/entity/Q1745866|http://www.wikidata.org/entity/Q1723059|http://www.wikidata.org/entity/Q1370054|http://www.wikidata.org/entity/Q1361834"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2014 film dircted by Peter Luisi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7548533"}, "Title": {"type": "literal", "value": "Snowboar\u010f\u00e1ci"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12028282"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12028282"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17311827|http://www.wikidata.org/entity/Q16938120|http://www.wikidata.org/entity/Q15639976|http://www.wikidata.org/entity/Q12044960|http://www.wikidata.org/entity/Q12044365|http://www.wikidata.org/entity/Q12036616|http://www.wikidata.org/entity/Q12035847|http://www.wikidata.org/entity/Q12025330|http://www.wikidata.org/entity/Q11985809|http://www.wikidata.org/entity/Q11926027|http://www.wikidata.org/entity/Q11881121|http://www.wikidata.org/entity/Q11873890|http://www.wikidata.org/entity/Q11218422|http://www.wikidata.org/entity/Q7922503|http://www.wikidata.org/entity/Q6776420|http://www.wikidata.org/entity/Q3565126|http://www.wikidata.org/entity/Q2569624|http://www.wikidata.org/entity/Q2064639|http://www.wikidata.org/entity/Q2036667|http://www.wikidata.org/entity/Q1159229|http://www.wikidata.org/entity/Q807860"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1339864|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2004 film by Karel Jan\u00e1k"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16254653"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41794758"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41794758"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6749891"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Abhishek Sharma"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6883285"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8062226"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8062226"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1188856|http://www.wikidata.org/entity/Q271886"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Yuya Ishii"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16249801"}, "Title": {"type": "literal", "value": "Dear Secret Santa"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7177181"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q240541"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 television film directed by Peter Sullivan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q8053079"}, "Title": {"type": "literal", "value": "\u0c0e\u0c35\u0c21\u0c41"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16252723"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7909020"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7283589|http://www.wikidata.org/entity/Q3765047|http://www.wikidata.org/entity/Q2121695|http://www.wikidata.org/entity/Q642827|http://www.wikidata.org/entity/Q331155|http://www.wikidata.org/entity/Q224962"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "165"}, "Description": {"type": "literal", "value": "2014 Telugu film directed by Vamsi Paidipally"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7586324"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q246283"}, "Title": {"type": "literal", "value": "Frozen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5929198|http://www.wikidata.org/entity/Q156596"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5929198"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q28968258"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2013 American computer animated film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1047410"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q8048074"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7417923"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6438210|http://www.wikidata.org/entity/Q944546|http://www.wikidata.org/entity/Q863745|http://www.wikidata.org/entity/Q379157|http://www.wikidata.org/entity/Q48619"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Sangeeth Sivan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q794034"}, "Title": {"type": "literal", "value": "Sigade revolutsioon"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12373856"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12373856"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Ren\u00e9 Reinum\u00e4gi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16677629"}, "Title": {"type": "literal", "value": "Sous les jupes des filles"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q177840"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q177840|http://www.wikidata.org/entity/Q23926222|http://www.wikidata.org/entity/Q16028663"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q951025|http://www.wikidata.org/entity/Q553904|http://www.wikidata.org/entity/Q541690|http://www.wikidata.org/entity/Q533768|http://www.wikidata.org/entity/Q457089|http://www.wikidata.org/entity/Q292760|http://www.wikidata.org/entity/Q265232|http://www.wikidata.org/entity/Q242526|http://www.wikidata.org/entity/Q207578|http://www.wikidata.org/entity/Q177840|http://www.wikidata.org/entity/Q106383|http://www.wikidata.org/entity/Q51023|http://www.wikidata.org/entity/Q32608|http://www.wikidata.org/entity/Q3570989|http://www.wikidata.org/entity/Q3438302|http://www.wikidata.org/entity/Q3367400|http://www.wikidata.org/entity/Q3340143|http://www.wikidata.org/entity/Q3218747|http://www.wikidata.org/entity/Q3084132|http://www.wikidata.org/entity/Q2832982|http://www.wikidata.org/entity/Q966378"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "2014 film by Audrey Dana"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3071502"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18811633"}, "Title": {"type": "literal", "value": "Shooting Clerks"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18685787"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q723672|http://www.wikidata.org/entity/Q489831|http://www.wikidata.org/entity/Q354010|http://www.wikidata.org/entity/Q316627"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q645928"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Christopher Downie"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19622572"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1528398"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1961"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "1961 film by Giuseppe Lipartiti"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20445488"}, "Title": {"type": "literal", "value": "\uce5c\uc808\ud55c \uac00\uc815\ubd80"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18141469"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 South Korean comedy and pink film directed by No Zin-soo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18170190"}, "Title": {"type": "literal", "value": "Lelaki harapan dunia"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6544490"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6544490"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Liew Seng Tat"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q51870515"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2001430"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Robert Coppola Schwartzman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23899982"}, "Title": {"type": "literal", "value": "W\u015bciek\u0142e pi\u0119\u015bci W\u0119\u017ca"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9166187"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9390232"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6087802"}, "Title": {"type": "literal", "value": "Promedio rojo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3876520"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Nicol\u00e1s L\u00f3pez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56277242"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q62007448"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2039467"}, "Title": {"type": "literal", "value": "A Very Christmas Story"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2721147"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2721147"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55380"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2000 film by Dariusz Zawi\u015blak"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16250697"}, "Title": {"type": "literal", "value": "Get Hard"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q925413"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q925413"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17489623|http://www.wikidata.org/entity/Q17166317|http://www.wikidata.org/entity/Q7668352|http://www.wikidata.org/entity/Q6791316|http://www.wikidata.org/entity/Q5525698|http://www.wikidata.org/entity/Q5229634|http://www.wikidata.org/entity/Q5213110|http://www.wikidata.org/entity/Q3847681|http://www.wikidata.org/entity/Q2278533|http://www.wikidata.org/entity/Q1138783|http://www.wikidata.org/entity/Q746337|http://www.wikidata.org/entity/Q740511|http://www.wikidata.org/entity/Q618352|http://www.wikidata.org/entity/Q335680|http://www.wikidata.org/entity/Q329807|http://www.wikidata.org/entity/Q235328|http://www.wikidata.org/entity/Q218503|http://www.wikidata.org/entity/Q215215|http://www.wikidata.org/entity/Q214227"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2015 film by Etan Cohen"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3098606"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5764423"}, "Title": {"type": "literal", "value": "Chance: los trapos sucios se lavan en casa"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5647972"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5715340"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Abner Benaim"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q39055712"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28173592"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Vishal Mishra"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10438880"}, "Title": {"type": "literal", "value": "CKY 3"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q297173"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q297173"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6209915|http://www.wikidata.org/entity/Q3390959|http://www.wikidata.org/entity/Q3239121|http://www.wikidata.org/entity/Q919042|http://www.wikidata.org/entity/Q606523|http://www.wikidata.org/entity/Q445440|http://www.wikidata.org/entity/Q316036|http://www.wikidata.org/entity/Q297173|http://www.wikidata.org/entity/Q295034|http://www.wikidata.org/entity/Q295020|http://www.wikidata.org/entity/Q25378"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 film by Bam Margera"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17099381"}, "Title": {"type": "literal", "value": "Listen Up Philip"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4717719"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4717719"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3701661|http://www.wikidata.org/entity/Q3073777|http://www.wikidata.org/entity/Q2646925|http://www.wikidata.org/entity/Q1083729|http://www.wikidata.org/entity/Q509777|http://www.wikidata.org/entity/Q352708|http://www.wikidata.org/entity/Q313705|http://www.wikidata.org/entity/Q312702|http://www.wikidata.org/entity/Q258793|http://www.wikidata.org/entity/Q233466"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2014 film by Alex Ross Perry"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23563857"}, "Title": {"type": "literal", "value": "Einmal Hans mit scharfer So\u00dfe"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q104744"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1588908"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2013 film by Buket Alaku\u015f"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48747119"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3525440"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Thomas N'Gijol"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2447577"}, "Title": {"type": "literal", "value": "Young People Fucking"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3295442"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7561895|http://www.wikidata.org/entity/Q6968200|http://www.wikidata.org/entity/Q1998264|http://www.wikidata.org/entity/Q1319577|http://www.wikidata.org/entity/Q556121|http://www.wikidata.org/entity/Q447165|http://www.wikidata.org/entity/Q385995|http://www.wikidata.org/entity/Q373594|http://www.wikidata.org/entity/Q283504|http://www.wikidata.org/entity/Q260241"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2007 film by Martin Gero"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18285698"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q40995697"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2098106"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Michiel ten Horn"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55598789"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q314403"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q600051"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Guillaume Canet"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6928443"}, "Title": {"type": "literal", "value": "Mr. Bill's Real Life Adventures"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6194719"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1740243"}, "Published": {"type": "literal", "value": "1986"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1986 film by Jim Drake"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15804357"}, "Title": {"type": "literal", "value": "Da geht noch was"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1624514"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q87432"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23067905|http://www.wikidata.org/entity/Q21188721|http://www.wikidata.org/entity/Q19297324|http://www.wikidata.org/entity/Q6451869|http://www.wikidata.org/entity/Q1963332|http://www.wikidata.org/entity/Q1902027|http://www.wikidata.org/entity/Q1892543|http://www.wikidata.org/entity/Q1820801|http://www.wikidata.org/entity/Q1429616|http://www.wikidata.org/entity/Q467729|http://www.wikidata.org/entity/Q160305|http://www.wikidata.org/entity/Q123431|http://www.wikidata.org/entity/Q87432"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2013 film by Holger Haase"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27663881"}, "Title": {"type": "literal", "value": "Killing Gunther"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2706805"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2706805"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16821316|http://www.wikidata.org/entity/Q3900877|http://www.wikidata.org/entity/Q2907990|http://www.wikidata.org/entity/Q2706805|http://www.wikidata.org/entity/Q2702252|http://www.wikidata.org/entity/Q2038188|http://www.wikidata.org/entity/Q460665|http://www.wikidata.org/entity/Q302930|http://www.wikidata.org/entity/Q200566|http://www.wikidata.org/entity/Q2685"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q40831"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2017 action comedy film by Taran Killam"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21711225"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11998626"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11998626"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17194694|http://www.wikidata.org/entity/Q4015946|http://www.wikidata.org/entity/Q1780001"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Rune Denstad Langlo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20388011"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12250381"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3571921"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Wael Ehsan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1659521"}, "Title": {"type": "literal", "value": "I rymden finns inga k\u00e4nslor"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6256680"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16633429|http://www.wikidata.org/entity/Q6256680"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4952336|http://www.wikidata.org/entity/Q4948570|http://www.wikidata.org/entity/Q862460|http://www.wikidata.org/entity/Q16633429|http://www.wikidata.org/entity/Q6256680|http://www.wikidata.org/entity/Q6231549|http://www.wikidata.org/entity/Q6060051|http://www.wikidata.org/entity/Q5572427|http://www.wikidata.org/entity/Q5555780|http://www.wikidata.org/entity/Q4982677|http://www.wikidata.org/entity/Q4982258"}, "Published": {"type": "literal", "value": "2011|2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2010 film by Andreas \u00d6hman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20650889"}, "Title": {"type": "literal", "value": "7\uacf5\uc8fc \ub300\ub9ac\uc6b4\uc804"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6782159"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film directed by Lee Phillip"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5853088"}, "Title": {"type": "literal", "value": "Excursiones"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q43955769"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29400998|http://www.wikidata.org/entity/Q6121085|http://www.wikidata.org/entity/Q6002829|http://www.wikidata.org/entity/Q5997811|http://www.wikidata.org/entity/Q5913527|http://www.wikidata.org/entity/Q5675253"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "2009 film by Ezequiel Acu\u00f1a"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19868144"}, "Title": {"type": "literal", "value": "Don Peyote"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q374263"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Dan Fogler"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3156624"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2364234"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2364234"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3470502|http://www.wikidata.org/entity/Q3083941|http://www.wikidata.org/entity/Q2493753|http://www.wikidata.org/entity/Q1861797|http://www.wikidata.org/entity/Q373034|http://www.wikidata.org/entity/Q346102|http://www.wikidata.org/entity/Q289040"}, "Published": {"type": "literal", "value": "1995"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1995 film by Xavier Giannoli"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16056774"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16215189"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7377514"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 Bengali film directed by Birsa Dasgupta"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5717804"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5953208"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1720918"}, "Title": {"type": "literal", "value": "Kaddisch f\u00fcr einen Freund"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1818632"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1818632"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22971900|http://www.wikidata.org/entity/Q21209197|http://www.wikidata.org/entity/Q19513524|http://www.wikidata.org/entity/Q17537133|http://www.wikidata.org/entity/Q15843938|http://www.wikidata.org/entity/Q1665644|http://www.wikidata.org/entity/Q1601103|http://www.wikidata.org/entity/Q1543555|http://www.wikidata.org/entity/Q1468043|http://www.wikidata.org/entity/Q1386519|http://www.wikidata.org/entity/Q1292000|http://www.wikidata.org/entity/Q559891|http://www.wikidata.org/entity/Q106661|http://www.wikidata.org/entity/Q106438"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2012 film by Leo Khasin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1189690"}, "Title": {"type": "literal", "value": "De l'autre c\u00f4t\u00e9 du lit"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3367704"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3440076|http://www.wikidata.org/entity/Q3086023|http://www.wikidata.org/entity/Q2864476|http://www.wikidata.org/entity/Q2863156|http://www.wikidata.org/entity/Q1712292|http://www.wikidata.org/entity/Q681451|http://www.wikidata.org/entity/Q600823|http://www.wikidata.org/entity/Q586054|http://www.wikidata.org/entity/Q468190|http://www.wikidata.org/entity/Q449640|http://www.wikidata.org/entity/Q162753"}, "Published": {"type": "literal", "value": "2010|2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2008 film by Pascale Pouzadoux"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q39485944"}, "Title": {"type": "literal", "value": "Bin ich sexy?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q39486667"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q865142|http://www.wikidata.org/entity/Q105283|http://www.wikidata.org/entity/Q102678"}, "Published": {"type": "literal", "value": "2005|2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2004 film by Katinka Feistl"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19776419"}, "Title": {"type": "literal", "value": "Tavarataivas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19967991"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 documentary film directed by Petri Luukkainen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43408"}, "Title": {"type": "literal", "value": "A Very Harold & Kumar 3D Christmas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19868225"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3112667|http://www.wikidata.org/entity/Q950283"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q356086|http://www.wikidata.org/entity/Q350811|http://www.wikidata.org/entity/Q312705|http://www.wikidata.org/entity/Q242778|http://www.wikidata.org/entity/Q230176|http://www.wikidata.org/entity/Q223830|http://www.wikidata.org/entity/Q220536|http://www.wikidata.org/entity/Q171525|http://www.wikidata.org/entity/Q52447|http://www.wikidata.org/entity/Q4746531|http://www.wikidata.org/entity/Q1889124|http://www.wikidata.org/entity/Q1319539|http://www.wikidata.org/entity/Q984397|http://www.wikidata.org/entity/Q485310|http://www.wikidata.org/entity/Q433149|http://www.wikidata.org/entity/Q379808|http://www.wikidata.org/entity/Q374065"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q663106"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2011 film by Todd Strauss-Schulson"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5368270"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4636443"}, "Title": {"type": "literal", "value": "3"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3302146"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "2012 film by Pablo Stoll"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3684206"}, "Title": {"type": "literal", "value": "Come tu mi vuoi"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4016123"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4016123"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3934602|http://www.wikidata.org/entity/Q3875894|http://www.wikidata.org/entity/Q3846129|http://www.wikidata.org/entity/Q1044618|http://www.wikidata.org/entity/Q945318|http://www.wikidata.org/entity/Q544401|http://www.wikidata.org/entity/Q518369|http://www.wikidata.org/entity/Q291413"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "2007 film by Volfango De Biasi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3304113"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14830727"}, "Title": {"type": "literal", "value": "Tirez la langue, mademoiselle"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2874774"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2874774"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3479221|http://www.wikidata.org/entity/Q3219528|http://www.wikidata.org/entity/Q3106251|http://www.wikidata.org/entity/Q1150229|http://www.wikidata.org/entity/Q1097651|http://www.wikidata.org/entity/Q269873"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Axelle Ropert"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3232641"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q607363"}, "Title": {"type": "literal", "value": "This Is the End"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3061320|http://www.wikidata.org/entity/Q220308"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q220308|http://www.wikidata.org/entity/Q3061320"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q276525|http://www.wikidata.org/entity/Q220308|http://www.wikidata.org/entity/Q212064|http://www.wikidata.org/entity/Q202304|http://www.wikidata.org/entity/Q39476|http://www.wikidata.org/entity/Q36844|http://www.wikidata.org/entity/Q306403|http://www.wikidata.org/entity/Q2939851|http://www.wikidata.org/entity/Q926912|http://www.wikidata.org/entity/Q716343|http://www.wikidata.org/entity/Q618352|http://www.wikidata.org/entity/Q539917|http://www.wikidata.org/entity/Q440956|http://www.wikidata.org/entity/Q369482|http://www.wikidata.org/entity/Q356086|http://www.wikidata.org/entity/Q336400|http://www.wikidata.org/entity/Q316756|http://www.wikidata.org/entity/Q313388|http://www.wikidata.org/entity/Q309555|http://www.wikidata.org/entity/Q23815604|http://www.wikidata.org/entity/Q19405928|http://www.wikidata.org/entity/Q15732460|http://www.wikidata.org/entity/Q3390313|http://www.wikidata.org/entity/Q3061320"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q846544|http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "2013 film directed by Seth Rogen and Evan Goldberg"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q822314|http://www.wikidata.org/entity/Q5368270"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2710284"}, "Title": {"type": "literal", "value": "The Myth of Fingerprints"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q285856"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q285856"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1334830|http://www.wikidata.org/entity/Q1189378|http://www.wikidata.org/entity/Q662186|http://www.wikidata.org/entity/Q315208|http://www.wikidata.org/entity/Q270660|http://www.wikidata.org/entity/Q236399|http://www.wikidata.org/entity/Q235593|http://www.wikidata.org/entity/Q216569|http://www.wikidata.org/entity/Q80405|http://www.wikidata.org/entity/Q40064"}, "Published": {"type": "literal", "value": "1997"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "1997 film by Bart Freundlich"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5582745"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4401755"}, "Title": {"type": "literal", "value": "\u0420\u044b\u0436\u0430\u044f \u0438 \u0441\u043d\u0435\u0433"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4274156"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4274156"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21010853|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "51"}, "Description": {"type": "literal", "value": "2007 film by Amet-Khan Magomedov"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5437219"}, "Title": {"type": "literal", "value": "Fat Pizza"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7150609"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7675494|http://www.wikidata.org/entity/Q7150609"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16215446|http://www.wikidata.org/entity/Q7675494|http://www.wikidata.org/entity/Q7150609|http://www.wikidata.org/entity/Q6222734|http://www.wikidata.org/entity/Q6110025|http://www.wikidata.org/entity/Q519321|http://www.wikidata.org/entity/Q442897"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Paul Fenech"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15710490"}, "Title": {"type": "literal", "value": "Mr Hublot"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15710740|http://www.wikidata.org/entity/Q15710493"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15710493"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q132311"}, "Duration": {"type": "literal", "value": "11"}, "Description": {"type": "literal", "value": "2013 animated short film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5267264"}, "Title": {"type": "literal", "value": "Diablo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24960799"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27890585|http://www.wikidata.org/entity/Q16274750|http://www.wikidata.org/entity/Q11934240|http://www.wikidata.org/entity/Q6456277|http://www.wikidata.org/entity/Q6277892|http://www.wikidata.org/entity/Q6122946|http://www.wikidata.org/entity/Q5984494|http://www.wikidata.org/entity/Q5552305"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2011 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q58444856"}, "Title": {"type": "literal", "value": "Reise nach Jerusalem"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3838444"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3838444"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26760327|http://www.wikidata.org/entity/Q90374"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Lucia Chiarla"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56999748"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1150170"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q314403"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by C\u00e9dric Anger"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19999869"}, "Title": {"type": "literal", "value": "Superpai"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10347309"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "123"}, "Description": {"type": "literal", "value": "2015 film by Pedro Amorim"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q847646"}, "Title": {"type": "literal", "value": "Starsky & Hutch"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q362824"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3498993|http://www.wikidata.org/entity/Q2260642|http://www.wikidata.org/entity/Q1701277|http://www.wikidata.org/entity/Q362824"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3045427|http://www.wikidata.org/entity/Q2278533|http://www.wikidata.org/entity/Q2260913|http://www.wikidata.org/entity/Q1452569|http://www.wikidata.org/entity/Q235272|http://www.wikidata.org/entity/Q230523|http://www.wikidata.org/entity/Q218503|http://www.wikidata.org/entity/Q185122|http://www.wikidata.org/entity/Q161916|http://www.wikidata.org/entity/Q1377218|http://www.wikidata.org/entity/Q727752|http://www.wikidata.org/entity/Q527306|http://www.wikidata.org/entity/Q374065|http://www.wikidata.org/entity/Q297744|http://www.wikidata.org/entity/Q284636|http://www.wikidata.org/entity/Q271464|http://www.wikidata.org/entity/Q268311|http://www.wikidata.org/entity/Q267400|http://www.wikidata.org/entity/Q236537|http://www.wikidata.org/entity/Q107730|http://www.wikidata.org/entity/Q71130|http://www.wikidata.org/entity/Q47100|http://www.wikidata.org/entity/Q6096"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4984974|http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2004 film by Todd Phillips"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7304367"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17051888"}, "Title": {"type": "literal", "value": "\u0926\u093f\u0932 \u0927\u0921\u093c\u0915\u0928\u0947 \u0926\u094b"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3070885"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3070885"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7492560|http://www.wikidata.org/entity/Q3595441|http://www.wikidata.org/entity/Q2004189|http://www.wikidata.org/entity/Q902879|http://www.wikidata.org/entity/Q590853|http://www.wikidata.org/entity/Q465815|http://www.wikidata.org/entity/Q335238|http://www.wikidata.org/entity/Q313956|http://www.wikidata.org/entity/Q158957"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "164"}, "Description": {"type": "literal", "value": "2015 film by Zoya Akhtar"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5419397"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7053629"}, "Title": {"type": "literal", "value": "Nord"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11998626"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q278285"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1780001"}, "Published": {"type": "literal", "value": "2010|2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "2009 Norwegian film by Rune Denstad Langlo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q641760"}, "Title": {"type": "literal", "value": "Ted"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188492"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4714271|http://www.wikidata.org/entity/Q188492|http://www.wikidata.org/entity/Q6241864"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3605920|http://www.wikidata.org/entity/Q2278533|http://www.wikidata.org/entity/Q1498498|http://www.wikidata.org/entity/Q1374532|http://www.wikidata.org/entity/Q1187274|http://www.wikidata.org/entity/Q1164639|http://www.wikidata.org/entity/Q862481|http://www.wikidata.org/entity/Q16233268|http://www.wikidata.org/entity/Q4172513|http://www.wikidata.org/entity/Q549981|http://www.wikidata.org/entity/Q381203|http://www.wikidata.org/entity/Q343564|http://www.wikidata.org/entity/Q320093|http://www.wikidata.org/entity/Q311993|http://www.wikidata.org/entity/Q231496|http://www.wikidata.org/entity/Q231401|http://www.wikidata.org/entity/Q224081|http://www.wikidata.org/entity/Q220836|http://www.wikidata.org/entity/Q192682|http://www.wikidata.org/entity/Q188492|http://www.wikidata.org/entity/Q164119|http://www.wikidata.org/entity/Q116219|http://www.wikidata.org/entity/Q37628|http://www.wikidata.org/entity/Q16296"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q28026639"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2012 American fantasy comedy film directed by Seth MacFarlane"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2856187|http://www.wikidata.org/entity/Q168383|http://www.wikidata.org/entity/Q1475707"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11288285"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6389380"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Kenji Uchida"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q50280874"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16268668"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16268668"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2017 film directed by Alessandro Pondi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3796982"}, "Title": {"type": "literal", "value": "Impotenti esistenziali"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q42850278"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3763594|http://www.wikidata.org/entity/Q3616767|http://www.wikidata.org/entity/Q1054525|http://www.wikidata.org/entity/Q546643|http://www.wikidata.org/entity/Q312472|http://www.wikidata.org/entity/Q291915|http://www.wikidata.org/entity/Q219131"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2009 film by Giuseppe Cirillo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q798776"}, "Title": {"type": "literal", "value": "The Sitter"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2296698"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22681435"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18666096|http://www.wikidata.org/entity/Q16832285|http://www.wikidata.org/entity/Q15638494|http://www.wikidata.org/entity/Q13858351|http://www.wikidata.org/entity/Q3778264|http://www.wikidata.org/entity/Q3339792|http://www.wikidata.org/entity/Q3120105|http://www.wikidata.org/entity/Q2259590|http://www.wikidata.org/entity/Q1151457|http://www.wikidata.org/entity/Q980063|http://www.wikidata.org/entity/Q861156|http://www.wikidata.org/entity/Q729618|http://www.wikidata.org/entity/Q454494|http://www.wikidata.org/entity/Q442019|http://www.wikidata.org/entity/Q439163|http://www.wikidata.org/entity/Q316446|http://www.wikidata.org/entity/Q313388|http://www.wikidata.org/entity/Q298694|http://www.wikidata.org/entity/Q237259"}, "Published": {"type": "literal", "value": "2012|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "81"}, "Description": {"type": "literal", "value": "2011 film by David Gordon Green"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17305126|http://www.wikidata.org/entity/Q434841"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q655205"}, "Title": {"type": "literal", "value": "Deuce Bigalow: Male Gigolo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2507259"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13559801|http://www.wikidata.org/entity/Q192217"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13590460|http://www.wikidata.org/entity/Q4905192|http://www.wikidata.org/entity/Q2939949|http://www.wikidata.org/entity/Q1889124|http://www.wikidata.org/entity/Q1713151|http://www.wikidata.org/entity/Q1614313|http://www.wikidata.org/entity/Q1371229|http://www.wikidata.org/entity/Q1189378|http://www.wikidata.org/entity/Q443063|http://www.wikidata.org/entity/Q441888|http://www.wikidata.org/entity/Q350255|http://www.wikidata.org/entity/Q272070|http://www.wikidata.org/entity/Q270743|http://www.wikidata.org/entity/Q242206|http://www.wikidata.org/entity/Q230203|http://www.wikidata.org/entity/Q192217|http://www.wikidata.org/entity/Q132952|http://www.wikidata.org/entity/Q127996"}, "Published": {"type": "literal", "value": "2000|1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2991560|http://www.wikidata.org/entity/Q624771|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "1999 film by Mike Mitchell"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q497155|http://www.wikidata.org/entity/Q1584317"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q9019307"}, "Title": {"type": "literal", "value": "La gran familia espa\u00f1ola"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q740130"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q740130"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6066826|http://www.wikidata.org/entity/Q2790121|http://www.wikidata.org/entity/Q943980|http://www.wikidata.org/entity/Q456850"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2013 film directed by Daniel S\u00e1nchez Ar\u00e9valo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q858508"}, "Title": {"type": "literal", "value": "Sky High"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2507259"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25249134|http://www.wikidata.org/entity/Q4358044|http://www.wikidata.org/entity/Q4355997"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q438583|http://www.wikidata.org/entity/Q343564|http://www.wikidata.org/entity/Q6743649|http://www.wikidata.org/entity/Q6398901|http://www.wikidata.org/entity/Q3265830|http://www.wikidata.org/entity/Q1769264|http://www.wikidata.org/entity/Q853018|http://www.wikidata.org/entity/Q714133|http://www.wikidata.org/entity/Q607793|http://www.wikidata.org/entity/Q591785|http://www.wikidata.org/entity/Q317024|http://www.wikidata.org/entity/Q309932|http://www.wikidata.org/entity/Q299282|http://www.wikidata.org/entity/Q242903|http://www.wikidata.org/entity/Q200407|http://www.wikidata.org/entity/Q103157|http://www.wikidata.org/entity/Q236842|http://www.wikidata.org/entity/Q230461|http://www.wikidata.org/entity/Q230131|http://www.wikidata.org/entity/Q207873"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1535153|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q2143665"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2005 American superhero comedy film directed by Mike Mitchell"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191224|http://www.wikidata.org/entity/Q24843224"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q8990497"}, "Title": {"type": "literal", "value": "Geography Club"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5525025"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5339441|http://www.wikidata.org/entity/Q4961414"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2054113|http://www.wikidata.org/entity/Q926966|http://www.wikidata.org/entity/Q578403|http://www.wikidata.org/entity/Q311699|http://www.wikidata.org/entity/Q234438|http://www.wikidata.org/entity/Q230782|http://www.wikidata.org/entity/Q230395"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2013 film by Gary Entin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q52564463"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4189312"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4189312"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27113807|http://www.wikidata.org/entity/Q4494836|http://www.wikidata.org/entity/Q4283562|http://www.wikidata.org/entity/Q1393540|http://www.wikidata.org/entity/Q167243"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Alyona Zvantsova"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6116804"}, "Title": {"type": "literal", "value": "Jackpot"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14087086"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14087086"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14087085|http://www.wikidata.org/entity/Q2916869|http://www.wikidata.org/entity/Q2151597|http://www.wikidata.org/entity/Q1806098|http://www.wikidata.org/entity/Q1319770|http://www.wikidata.org/entity/Q910761|http://www.wikidata.org/entity/Q314924|http://www.wikidata.org/entity/Q312161|http://www.wikidata.org/entity/Q308792|http://www.wikidata.org/entity/Q250425|http://www.wikidata.org/entity/Q235305|http://www.wikidata.org/entity/Q207596"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 comedy-drama film directed by Michael Polish"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19363977"}, "Title": {"type": "literal", "value": "The Weight of Chains 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q893719"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q893719"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9049"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17013749|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "124"}, "Description": {"type": "literal", "value": "2014 film by Boris Malagurski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6052071"}, "Title": {"type": "literal", "value": "\u00c7akallarla Dans"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6064908"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6082607|http://www.wikidata.org/entity/Q3624103"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Murat \u015eeker"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55815650"}, "Title": {"type": "literal", "value": "Charlie's Angels"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q219373"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q219373"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q366833|http://www.wikidata.org/entity/Q298682|http://www.wikidata.org/entity/Q254894|http://www.wikidata.org/entity/Q219373|http://www.wikidata.org/entity/Q126599|http://www.wikidata.org/entity/Q16296|http://www.wikidata.org/entity/Q42119453|http://www.wikidata.org/entity/Q3877574"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q188473"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 American film by Elizabeth Banks"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q186941"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28840410"}, "Title": {"type": "literal", "value": "Fighting with My Family"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23814"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23814"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q651328|http://www.wikidata.org/entity/Q363400|http://www.wikidata.org/entity/Q289721|http://www.wikidata.org/entity/Q228789|http://www.wikidata.org/entity/Q107730|http://www.wikidata.org/entity/Q23814|http://www.wikidata.org/entity/Q10738|http://www.wikidata.org/entity/Q22277803|http://www.wikidata.org/entity/Q6113745"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1339864|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q645928"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2019 film by Stephen Merchant"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1108255|http://www.wikidata.org/entity/Q1149935|http://www.wikidata.org/entity/Q60741212"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4233705"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4221284"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4133989"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4418864"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Aleksandr Kirienko"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2809972"}, "Title": {"type": "literal", "value": "\u00c9ramos pocos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8250879"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8250879"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20492727|http://www.wikidata.org/entity/Q251828|http://www.wikidata.org/entity/Q18406"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "16"}, "Description": {"type": "literal", "value": "2005 film by Borja Cobeaga"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18590634"}, "Title": {"type": "literal", "value": "Santiago Violenta"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5836844"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Ernesto D\u00edaz Espinoza"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3400630"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3194132"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3194132"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3591218|http://www.wikidata.org/entity/Q3438302|http://www.wikidata.org/entity/Q3334962|http://www.wikidata.org/entity/Q2776777|http://www.wikidata.org/entity/Q434060|http://www.wikidata.org/entity/Q241043|http://www.wikidata.org/entity/Q182991|http://www.wikidata.org/entity/Q130092"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film directed by Katia Lewkowicz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12049291"}, "Title": {"type": "literal", "value": "Revival"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3489129"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3489129"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22074668|http://www.wikidata.org/entity/Q17067219|http://www.wikidata.org/entity/Q13419794|http://www.wikidata.org/entity/Q12035527|http://www.wikidata.org/entity/Q12034183|http://www.wikidata.org/entity/Q12022821|http://www.wikidata.org/entity/Q12022294|http://www.wikidata.org/entity/Q11925857|http://www.wikidata.org/entity/Q6369300|http://www.wikidata.org/entity/Q4806455|http://www.wikidata.org/entity/Q4382501|http://www.wikidata.org/entity/Q676173|http://www.wikidata.org/entity/Q231189|http://www.wikidata.org/entity/Q32787"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Alice Nellis"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1964614"}, "Title": {"type": "literal", "value": "New Kids Turbo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1428901|http://www.wikidata.org/entity/Q943006"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q943006"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1428901|http://www.wikidata.org/entity/Q943006"}, "Published": {"type": "literal", "value": "2011|2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2010 film by Flip van der Kuil, Steffen Haars"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2565121"}, "Title": {"type": "literal", "value": "Kids in America"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6289410"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2275851|http://www.wikidata.org/entity/Q2233091|http://www.wikidata.org/entity/Q446112|http://www.wikidata.org/entity/Q414642|http://www.wikidata.org/entity/Q40248|http://www.wikidata.org/entity/Q18916"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2005 film by Josh Stolberg"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2579375"}, "Title": {"type": "literal", "value": "Suburban Mayhem"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2059818"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22277013"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5533077|http://www.wikidata.org/entity/Q3308158|http://www.wikidata.org/entity/Q3246722|http://www.wikidata.org/entity/Q274576|http://www.wikidata.org/entity/Q228865"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2006 film by Paul Goldman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1000094"}, "Title": {"type": "literal", "value": "You're Dead"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q526222"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q526222"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q215017|http://www.wikidata.org/entity/Q200405"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "1999 British dark comedy crime film directed by Andy Hurst"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19608810"}, "Title": {"type": "literal", "value": "Connasse, Princesse des coeurs"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21096073|http://www.wikidata.org/entity/Q19630141"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21096073|http://www.wikidata.org/entity/Q19630141"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16535251|http://www.wikidata.org/entity/Q15260946|http://www.wikidata.org/entity/Q3247864|http://www.wikidata.org/entity/Q3142794|http://www.wikidata.org/entity/Q2724026|http://www.wikidata.org/entity/Q983159"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q459435|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 French-Belgian comedy film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20795425"}, "Title": {"type": "literal", "value": "Coconut Hero"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1429627"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3414958|http://www.wikidata.org/entity/Q1770430|http://www.wikidata.org/entity/Q120283|http://www.wikidata.org/entity/Q77035"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2015 film by Florian Cossen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10698924"}, "Title": {"type": "literal", "value": "Tjocktjuven"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5716557"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5716557"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5928929"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Henrik Sylv\u00e9n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24905463"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16213906"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10989968"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Jaideep Chopra"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15103382"}, "Title": {"type": "literal", "value": "Fuga di cervelli"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3894444"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3894444"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2013 film by Paolo Ruffini"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1033136"}, "Title": {"type": "literal", "value": "La guerre est d\u00e9clar\u00e9e"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130092"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1351652|http://www.wikidata.org/entity/Q130092"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17145653|http://www.wikidata.org/entity/Q16534621|http://www.wikidata.org/entity/Q15621827|http://www.wikidata.org/entity/Q3553638|http://www.wikidata.org/entity/Q3479221|http://www.wikidata.org/entity/Q3430005|http://www.wikidata.org/entity/Q3379286|http://www.wikidata.org/entity/Q3345693|http://www.wikidata.org/entity/Q3311660|http://www.wikidata.org/entity/Q3293647|http://www.wikidata.org/entity/Q3292235|http://www.wikidata.org/entity/Q3219316|http://www.wikidata.org/entity/Q3194132|http://www.wikidata.org/entity/Q3058860|http://www.wikidata.org/entity/Q3037215|http://www.wikidata.org/entity/Q448711|http://www.wikidata.org/entity/Q130092|http://www.wikidata.org/entity/Q2925490|http://www.wikidata.org/entity/Q2905980|http://www.wikidata.org/entity/Q2887704|http://www.wikidata.org/entity/Q2851174|http://www.wikidata.org/entity/Q2850978|http://www.wikidata.org/entity/Q2825115|http://www.wikidata.org/entity/Q2087638|http://www.wikidata.org/entity/Q1807890|http://www.wikidata.org/entity/Q1351652|http://www.wikidata.org/entity/Q1338400|http://www.wikidata.org/entity/Q675471|http://www.wikidata.org/entity/Q555428|http://www.wikidata.org/entity/Q450694"}, "Published": {"type": "literal", "value": "2012|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2011 film by Val\u00e9rie Donzelli"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6074032"}, "Title": {"type": "literal", "value": "\u0b87\u0bb0\u0bc1\u0bae\u0bcd\u0baa\u0bc1\u0b95\u0bcd \u0b95\u0bcb\u0b9f\u0bcd\u0b9f\u0bc8 \u0bae\u0bc1\u0bb0\u0b9f\u0bcd\u0b9f\u0bc1 \u0b9a\u0bbf\u0b99\u0bcd\u0b95\u0bae\u0bcd"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5099316"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5099316"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7282937"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q172980|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Chimbu Deven"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4651702"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3025846"}, "Title": {"type": "literal", "value": "Hot Hot Hot"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2899811"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2899811"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3758475|http://www.wikidata.org/entity/Q3179659"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Beryl Koltz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4004310"}, "Title": {"type": "literal", "value": "Una notte blu cobalto"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1163729"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1163729"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4013187|http://www.wikidata.org/entity/Q4007672|http://www.wikidata.org/entity/Q3694222|http://www.wikidata.org/entity/Q3423484|http://www.wikidata.org/entity/Q556039"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2009 film by Daniele Gangemi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q47458957"}, "Title": {"type": "literal", "value": "R\u00fczgar"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6028787"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24068379|http://www.wikidata.org/entity/Q6849761"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Serkan Acar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5207601"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q332998"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q332998"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q491792|http://www.wikidata.org/entity/Q484787"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2297927|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 South Korean film directed by Ryu Seung-wan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q44679260"}, "Title": {"type": "literal", "value": "Eine Braut kommt selten allein"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q104744"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1593480"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17418173|http://www.wikidata.org/entity/Q2454222|http://www.wikidata.org/entity/Q2343282|http://www.wikidata.org/entity/Q2130280|http://www.wikidata.org/entity/Q1974009|http://www.wikidata.org/entity/Q1931135|http://www.wikidata.org/entity/Q1721422|http://www.wikidata.org/entity/Q1711632|http://www.wikidata.org/entity/Q213670|http://www.wikidata.org/entity/Q96084|http://www.wikidata.org/entity/Q75177"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "television film directed by Buket Alaku\u015f"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q648034"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16607610"}, "Title": {"type": "literal", "value": "Song'e Napule"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13600455|http://www.wikidata.org/entity/Q13600449|http://www.wikidata.org/entity/Q818736"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16578247"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3955856|http://www.wikidata.org/entity/Q3362666|http://www.wikidata.org/entity/Q1085895|http://www.wikidata.org/entity/Q334170"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "2013 film by Manetti brothers"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2841029"}, "Title": {"type": "literal", "value": "D\u00edas de cine"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5800361"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23675360|http://www.wikidata.org/entity/Q9032829|http://www.wikidata.org/entity/Q6038628|http://www.wikidata.org/entity/Q5936693|http://www.wikidata.org/entity/Q5800361|http://www.wikidata.org/entity/Q5673275|http://www.wikidata.org/entity/Q3329391|http://www.wikidata.org/entity/Q3326153|http://www.wikidata.org/entity/Q3324660|http://www.wikidata.org/entity/Q2849028|http://www.wikidata.org/entity/Q1220515|http://www.wikidata.org/entity/Q581617|http://www.wikidata.org/entity/Q349396|http://www.wikidata.org/entity/Q276652|http://www.wikidata.org/entity/Q269857|http://www.wikidata.org/entity/Q242410|http://www.wikidata.org/entity/Q18406"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by David Serrano de la Pe\u00f1a"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2300097"}, "Title": {"type": "literal", "value": "Under the Rainbow"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2632767"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2056518"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7858375|http://www.wikidata.org/entity/Q7329205|http://www.wikidata.org/entity/Q6688544|http://www.wikidata.org/entity/Q3177488|http://www.wikidata.org/entity/Q3087346|http://www.wikidata.org/entity/Q3020806|http://www.wikidata.org/entity/Q2056518|http://www.wikidata.org/entity/Q1406202|http://www.wikidata.org/entity/Q1374376|http://www.wikidata.org/entity/Q716319|http://www.wikidata.org/entity/Q589797|http://www.wikidata.org/entity/Q486408|http://www.wikidata.org/entity/Q370450|http://www.wikidata.org/entity/Q340213|http://www.wikidata.org/entity/Q323961|http://www.wikidata.org/entity/Q318885|http://www.wikidata.org/entity/Q310926|http://www.wikidata.org/entity/Q255630|http://www.wikidata.org/entity/Q187345|http://www.wikidata.org/entity/Q144669|http://www.wikidata.org/entity/Q108941"}, "Published": {"type": "literal", "value": "1981"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1981 comedy movie directed by Steve Rash"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q891732"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q244931"}, "Title": {"type": "literal", "value": "In Bruges"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q372394"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q372394"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q314892|http://www.wikidata.org/entity/Q312385|http://www.wikidata.org/entity/Q232868|http://www.wikidata.org/entity/Q206659|http://www.wikidata.org/entity/Q172035|http://www.wikidata.org/entity/Q28493|http://www.wikidata.org/entity/Q13646991|http://www.wikidata.org/entity/Q7781490|http://www.wikidata.org/entity/Q5362415|http://www.wikidata.org/entity/Q4767265|http://www.wikidata.org/entity/Q3591162|http://www.wikidata.org/entity/Q741080|http://www.wikidata.org/entity/Q549290|http://www.wikidata.org/entity/Q467729|http://www.wikidata.org/entity/Q382197"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q28026639"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2008 British drama film directed by Martin McDonagh"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q649649|http://www.wikidata.org/entity/Q5448886"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19726893"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2225127"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3054299"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Kadir Balci"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21480365"}, "Title": {"type": "literal", "value": "The Steps"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4756738"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2408054|http://www.wikidata.org/entity/Q964607|http://www.wikidata.org/entity/Q441617|http://www.wikidata.org/entity/Q431362|http://www.wikidata.org/entity/Q315051|http://www.wikidata.org/entity/Q298173|http://www.wikidata.org/entity/Q232941"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Andrew Currie"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27975920"}, "Title": {"type": "literal", "value": "Weitertanzen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1457056"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1897105"}, "Published": {"type": "literal", "value": "2009|2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Friederike Jehn"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q50613414"}, "Title": {"type": "literal", "value": "Ein Sommer in Marrakesch"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1514520"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50380301"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q97510|http://www.wikidata.org/entity/Q95651"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Gero Weinreuter"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q50885996"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1684824"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film directed by Matthias Kiefersauer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5466990"}, "Title": {"type": "literal", "value": "For a Good Time, Call..."}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6147573"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3218835"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15665021|http://www.wikidata.org/entity/Q3498453|http://www.wikidata.org/entity/Q3218835|http://www.wikidata.org/entity/Q1378842|http://www.wikidata.org/entity/Q980143|http://www.wikidata.org/entity/Q507756|http://www.wikidata.org/entity/Q489831|http://www.wikidata.org/entity/Q454494|http://www.wikidata.org/entity/Q449141|http://www.wikidata.org/entity/Q298672|http://www.wikidata.org/entity/Q233054|http://www.wikidata.org/entity/Q220308|http://www.wikidata.org/entity/Q32335"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2012 film by Jamie Travis"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q649649"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q52926614"}, "Title": {"type": "literal", "value": "Oh, Hello On Broadway"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27037670|http://www.wikidata.org/entity/Q4717890"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6249723|http://www.wikidata.org/entity/Q4241574|http://www.wikidata.org/entity/Q28755|http://www.wikidata.org/entity/Q16473"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 recorded performance of the stage play Oh, Hello"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24278852"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24263560"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6550031"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Pan Anzi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25054226"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q8048073"}, "Title": {"type": "literal", "value": "\u092f\u092e\u0932\u093e \u092a\u0917\u0932\u093e \u0926\u0940\u0935\u093e\u0928\u093e"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7409513"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6443214|http://www.wikidata.org/entity/Q944546|http://www.wikidata.org/entity/Q560163|http://www.wikidata.org/entity/Q379157|http://www.wikidata.org/entity/Q48619"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 Hindi comedy drama film directed by Samir Karnik"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60737650"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2734356"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film by Corneliu Porumboiu"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12273025"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q441571"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12292445|http://www.wikidata.org/entity/Q12287114"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2000 film by Fani Ko\u0142arowa"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q38297"}, "Title": {"type": "literal", "value": "Abrir puertas y ventanas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3313842"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3313842"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28466624|http://www.wikidata.org/entity/Q6003470|http://www.wikidata.org/entity/Q5675253|http://www.wikidata.org/entity/Q5661221|http://www.wikidata.org/entity/Q3964011"}, "Published": {"type": "literal", "value": "2014|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99|98"}, "Description": {"type": "literal", "value": "2011 film directed by Milagros Mumenthaler"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1377566"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q381876|http://www.wikidata.org/entity/Q312944|http://www.wikidata.org/entity/Q276186|http://www.wikidata.org/entity/Q274265|http://www.wikidata.org/entity/Q205456|http://www.wikidata.org/entity/Q127481|http://www.wikidata.org/entity/Q78756|http://www.wikidata.org/entity/Q77061|http://www.wikidata.org/entity/Q55282|http://www.wikidata.org/entity/Q12359782|http://www.wikidata.org/entity/Q6014472|http://www.wikidata.org/entity/Q5756121|http://www.wikidata.org/entity/Q5212653|http://www.wikidata.org/entity/Q3216358|http://www.wikidata.org/entity/Q2443145|http://www.wikidata.org/entity/Q1396054|http://www.wikidata.org/entity/Q1084396|http://www.wikidata.org/entity/Q1056063|http://www.wikidata.org/entity/Q920040|http://www.wikidata.org/entity/Q709032|http://www.wikidata.org/entity/Q670399|http://www.wikidata.org/entity/Q525305|http://www.wikidata.org/entity/Q457170|http://www.wikidata.org/entity/Q440218|http://www.wikidata.org/entity/Q391277"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q276186|http://www.wikidata.org/entity/Q12359782|http://www.wikidata.org/entity/Q11778724|http://www.wikidata.org/entity/Q127481|http://www.wikidata.org/entity/Q55282|http://www.wikidata.org/entity/Q77061|http://www.wikidata.org/entity/Q6014472|http://www.wikidata.org/entity/Q709032"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13102115|http://www.wikidata.org/entity/Q2714385|http://www.wikidata.org/entity/Q1437173|http://www.wikidata.org/entity/Q1635020|http://www.wikidata.org/entity/Q75177|http://www.wikidata.org/entity/Q13102829"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "140"}, "Description": {"type": "literal", "value": "2004 anthology film by 25 European directors"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191158"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q621354"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7926434"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Victor Vu"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23785216"}, "Title": {"type": "literal", "value": "Prego"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7901922"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7901922"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 short film directed by Usher Morgan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q40115"}, "Title": {"type": "literal", "value": "Chasing Amy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q489831"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q489831"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q314610|http://www.wikidata.org/entity/Q270730|http://www.wikidata.org/entity/Q269669|http://www.wikidata.org/entity/Q237115|http://www.wikidata.org/entity/Q175535|http://www.wikidata.org/entity/Q4960|http://www.wikidata.org/entity/Q22920856|http://www.wikidata.org/entity/Q22811239|http://www.wikidata.org/entity/Q7963966|http://www.wikidata.org/entity/Q7932003|http://www.wikidata.org/entity/Q6899972|http://www.wikidata.org/entity/Q5393625|http://www.wikidata.org/entity/Q5318153|http://www.wikidata.org/entity/Q4980184|http://www.wikidata.org/entity/Q4964545|http://www.wikidata.org/entity/Q4964261|http://www.wikidata.org/entity/Q3313196|http://www.wikidata.org/entity/Q2939610|http://www.wikidata.org/entity/Q2635391|http://www.wikidata.org/entity/Q2012197|http://www.wikidata.org/entity/Q723672|http://www.wikidata.org/entity/Q489831|http://www.wikidata.org/entity/Q483118|http://www.wikidata.org/entity/Q447584|http://www.wikidata.org/entity/Q354010|http://www.wikidata.org/entity/Q316627"}, "Published": {"type": "literal", "value": "1997"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q860626"}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "1997 American romantic comedy film written and directed by Kevin Smith"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2700070"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q33730566"}, "Title": {"type": "literal", "value": "Literally, Right Before Aaron"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q514020"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q514020"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Ryan Eggold"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4838875"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18345617"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3939264"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3123705|http://www.wikidata.org/entity/Q1612623|http://www.wikidata.org/entity/Q465826|http://www.wikidata.org/entity/Q262665"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Govind Menon"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17042694"}, "Title": {"type": "literal", "value": "Paul Blart: Mall Cop 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q525725"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q44561|http://www.wikidata.org/entity/Q584438"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q260344|http://www.wikidata.org/entity/Q239145|http://www.wikidata.org/entity/Q238884|http://www.wikidata.org/entity/Q44561|http://www.wikidata.org/entity/Q19878370|http://www.wikidata.org/entity/Q18685723|http://www.wikidata.org/entity/Q16149090|http://www.wikidata.org/entity/Q12307991|http://www.wikidata.org/entity/Q6794529|http://www.wikidata.org/entity/Q5266844|http://www.wikidata.org/entity/Q3086608|http://www.wikidata.org/entity/Q2844979|http://www.wikidata.org/entity/Q2346249|http://www.wikidata.org/entity/Q2342292|http://www.wikidata.org/entity/Q1364933|http://www.wikidata.org/entity/Q1305094|http://www.wikidata.org/entity/Q1126809|http://www.wikidata.org/entity/Q987724|http://www.wikidata.org/entity/Q887857|http://www.wikidata.org/entity/Q704832|http://www.wikidata.org/entity/Q554159|http://www.wikidata.org/entity/Q524369|http://www.wikidata.org/entity/Q445125|http://www.wikidata.org/entity/Q443063|http://www.wikidata.org/entity/Q356637|http://www.wikidata.org/entity/Q297128|http://www.wikidata.org/entity/Q269716|http://www.wikidata.org/entity/Q269686"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2678111|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2015 film by Andy Fickman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1584317"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43295376"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12403899"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12403899"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Alon Gur Arye"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18353472"}, "Title": {"type": "literal", "value": "Lazer Team"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6788826"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22121089|http://www.wikidata.org/entity/Q18344404|http://www.wikidata.org/entity/Q5528148|http://www.wikidata.org/entity/Q4999775|http://www.wikidata.org/entity/Q926963"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 comedy science fiction film directed by Matt Hullum"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7366534"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2665902"}, "Title": {"type": "literal", "value": "Achtste-groepers huilen niet"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2056676"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2939104|http://www.wikidata.org/entity/Q2906170"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8042910|http://www.wikidata.org/entity/Q1934702|http://www.wikidata.org/entity/Q447176"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2012 film by Dennis Bots"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13427188"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3784100"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3902918"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "78"}, "Description": {"type": "literal", "value": "2012 film by Hedy Krissane"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q639228"}, "Title": {"type": "literal", "value": "Hokkabaz"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q732915"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q732915"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6798489|http://www.wikidata.org/entity/Q732915|http://www.wikidata.org/entity/Q307942"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "122"}, "Description": {"type": "literal", "value": "2006 film by Cem Y\u0131lmaz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7747122"}, "Title": {"type": "literal", "value": "The Life Coach"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6289410"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20687396|http://www.wikidata.org/entity/Q15630234|http://www.wikidata.org/entity/Q3807883|http://www.wikidata.org/entity/Q3216930|http://www.wikidata.org/entity/Q729828|http://www.wikidata.org/entity/Q528126|http://www.wikidata.org/entity/Q349548|http://www.wikidata.org/entity/Q313049|http://www.wikidata.org/entity/Q235519|http://www.wikidata.org/entity/Q228871|http://www.wikidata.org/entity/Q228755|http://www.wikidata.org/entity/Q128830"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film directed by Josh Stolberg"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2368750"}, "Title": {"type": "literal", "value": "Surviving Sid"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2701677"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3177566"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "7"}, "Description": {"type": "literal", "value": "2008 film by Karen Disher"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q885885"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q126796"}, "Title": {"type": "literal", "value": "Brave"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1408804|http://www.wikidata.org/entity/Q1390504|http://www.wikidata.org/entity/Q429715"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6069146|http://www.wikidata.org/entity/Q1408804|http://www.wikidata.org/entity/Q1390504|http://www.wikidata.org/entity/Q429715"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2012 American computer-animated fantasy film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q127552"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1212139"}, "Title": {"type": "literal", "value": "Blades of Glory"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8003113|http://www.wikidata.org/entity/Q24204"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5451053|http://www.wikidata.org/entity/Q2870023|http://www.wikidata.org/entity/Q2178753|http://www.wikidata.org/entity/Q1378118|http://www.wikidata.org/entity/Q984077|http://www.wikidata.org/entity/Q924104|http://www.wikidata.org/entity/Q729950|http://www.wikidata.org/entity/Q546489|http://www.wikidata.org/entity/Q497851|http://www.wikidata.org/entity/Q450634|http://www.wikidata.org/entity/Q444390|http://www.wikidata.org/entity/Q392370|http://www.wikidata.org/entity/Q370181|http://www.wikidata.org/entity/Q355116|http://www.wikidata.org/entity/Q329807|http://www.wikidata.org/entity/Q238877|http://www.wikidata.org/entity/Q230203|http://www.wikidata.org/entity/Q220335|http://www.wikidata.org/entity/Q218503|http://www.wikidata.org/entity/Q107769"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2007 American comedy film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192557|http://www.wikidata.org/entity/Q1111024|http://www.wikidata.org/entity/Q7304367"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20950015"}, "Title": {"type": "literal", "value": "A Very Murray Christmas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q193628"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29250|http://www.wikidata.org/entity/Q3859412|http://www.wikidata.org/entity/Q193628"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q313705|http://www.wikidata.org/entity/Q309555|http://www.wikidata.org/entity/Q2353921|http://www.wikidata.org/entity/Q979166|http://www.wikidata.org/entity/Q963626|http://www.wikidata.org/entity/Q540608|http://www.wikidata.org/entity/Q512916|http://www.wikidata.org/entity/Q435968|http://www.wikidata.org/entity/Q370155|http://www.wikidata.org/entity/Q269802|http://www.wikidata.org/entity/Q236527|http://www.wikidata.org/entity/Q230203|http://www.wikidata.org/entity/Q29250|http://www.wikidata.org/entity/Q23844|http://www.wikidata.org/entity/Q4235|http://www.wikidata.org/entity/Q4109"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "56"}, "Description": {"type": "literal", "value": "2015 film directed by Sofia Coppola"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3738189"}, "Title": {"type": "literal", "value": "Faccio un salto all'Avana"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3702559"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4013983|http://www.wikidata.org/entity/Q3893598|http://www.wikidata.org/entity/Q3802324|http://www.wikidata.org/entity/Q3775995|http://www.wikidata.org/entity/Q3695103|http://www.wikidata.org/entity/Q3629869|http://www.wikidata.org/entity/Q3619460|http://www.wikidata.org/entity/Q1343716|http://www.wikidata.org/entity/Q808664"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2011 film by Dario Baldi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3304113"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12106680"}, "Title": {"type": "literal", "value": "Cheap Thrills"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18921688"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q231635|http://www.wikidata.org/entity/Q164328|http://www.wikidata.org/entity/Q23906829|http://www.wikidata.org/entity/Q7146682|http://www.wikidata.org/entity/Q3368538|http://www.wikidata.org/entity/Q453911|http://www.wikidata.org/entity/Q383064"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16950433|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2013 film by E. L. Katz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q890727"}, "Title": {"type": "literal", "value": "Boh Fett \u2013 Dei Mudder sei Gesicht 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2287702"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2001 film by Simon Mora"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14802842"}, "Title": {"type": "literal", "value": "Neighbors"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2624066"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27051018|http://www.wikidata.org/entity/Q20973967|http://www.wikidata.org/entity/Q5649155|http://www.wikidata.org/entity/Q4924324|http://www.wikidata.org/entity/Q4753814|http://www.wikidata.org/entity/Q3400399|http://www.wikidata.org/entity/Q2907990|http://www.wikidata.org/entity/Q1966357|http://www.wikidata.org/entity/Q978367|http://www.wikidata.org/entity/Q739062|http://www.wikidata.org/entity/Q513169|http://www.wikidata.org/entity/Q440956|http://www.wikidata.org/entity/Q432281|http://www.wikidata.org/entity/Q383930|http://www.wikidata.org/entity/Q314640|http://www.wikidata.org/entity/Q269924|http://www.wikidata.org/entity/Q228717|http://www.wikidata.org/entity/Q220308|http://www.wikidata.org/entity/Q216221|http://www.wikidata.org/entity/Q179041|http://www.wikidata.org/entity/Q171525|http://www.wikidata.org/entity/Q45229"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2014 American comedy film directed by Nicholas Stoller"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11510719"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7082710"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Shutaro Oku"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q962130"}, "Title": {"type": "literal", "value": "Nos jours heureux"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2778106|http://www.wikidata.org/entity/Q74428"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2778106|http://www.wikidata.org/entity/Q74428"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18326681|http://www.wikidata.org/entity/Q17597686|http://www.wikidata.org/entity/Q3574132|http://www.wikidata.org/entity/Q3295476|http://www.wikidata.org/entity/Q3242498|http://www.wikidata.org/entity/Q3217601|http://www.wikidata.org/entity/Q3190744|http://www.wikidata.org/entity/Q3187449|http://www.wikidata.org/entity/Q3168059|http://www.wikidata.org/entity/Q3158341|http://www.wikidata.org/entity/Q3148782|http://www.wikidata.org/entity/Q3085922|http://www.wikidata.org/entity/Q2941947|http://www.wikidata.org/entity/Q2865232|http://www.wikidata.org/entity/Q2778106|http://www.wikidata.org/entity/Q2413166|http://www.wikidata.org/entity/Q1685364|http://www.wikidata.org/entity/Q1500831|http://www.wikidata.org/entity/Q1341507|http://www.wikidata.org/entity/Q949391|http://www.wikidata.org/entity/Q511485|http://www.wikidata.org/entity/Q357387|http://www.wikidata.org/entity/Q201810|http://www.wikidata.org/entity/Q74428"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2006 film by Olivier Nakache, \u00c9ric Toledano"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13625315"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2370267"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Riri Riza"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18151808"}, "Title": {"type": "literal", "value": "Little Boy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1609505"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1609505"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24681278|http://www.wikidata.org/entity/Q5031678|http://www.wikidata.org/entity/Q1176939|http://www.wikidata.org/entity/Q946117|http://www.wikidata.org/entity/Q447397|http://www.wikidata.org/entity/Q433520|http://www.wikidata.org/entity/Q381799|http://www.wikidata.org/entity/Q342252|http://www.wikidata.org/entity/Q329767|http://www.wikidata.org/entity/Q297128|http://www.wikidata.org/entity/Q292274|http://www.wikidata.org/entity/Q261953|http://www.wikidata.org/entity/Q229535|http://www.wikidata.org/entity/Q211322|http://www.wikidata.org/entity/Q44561"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2015 film by Alejandro Gomez Monteverde"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3899795"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q654110"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1154179"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2010 film by Kenta Fukasaku"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17450786"}, "Title": {"type": "literal", "value": "Bizum Hoca"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6028787"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17046545"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6103860"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Serkan Acar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15062988"}, "Title": {"type": "literal", "value": "Apenas o Fim"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27835287"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10291517"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2008 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17058120"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20814082"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20814082|http://www.wikidata.org/entity/Q437415"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Lola Bessis"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3985597"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6163789"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2040329"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2040329|http://www.wikidata.org/entity/Q262191"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "15"}, "Description": {"type": "literal", "value": "2005 film by Jason Winer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23838395"}, "Title": {"type": "literal", "value": "Toni Erdmann"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q91508"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q91508"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1619100|http://www.wikidata.org/entity/Q1300467|http://www.wikidata.org/entity/Q70003|http://www.wikidata.org/entity/Q28595281|http://www.wikidata.org/entity/Q15434360|http://www.wikidata.org/entity/Q12743413|http://www.wikidata.org/entity/Q11956074|http://www.wikidata.org/entity/Q6273945|http://www.wikidata.org/entity/Q3474434|http://www.wikidata.org/entity/Q2364218|http://www.wikidata.org/entity/Q1929867|http://www.wikidata.org/entity/Q1653575"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "162"}, "Description": {"type": "literal", "value": "2016 film by Maren Ade"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2552470"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15880642"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15880642"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Peter Vlemmix"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25491348"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21616242"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17354511"}, "Title": {"type": "literal", "value": "L'Ex de ma vie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3037215"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3037215"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3490875|http://www.wikidata.org/entity/Q3367364|http://www.wikidata.org/entity/Q3341044|http://www.wikidata.org/entity/Q541690|http://www.wikidata.org/entity/Q511833|http://www.wikidata.org/entity/Q269310"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Doroth\u00e9e Sebbagh"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5396588"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q652149"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q652149"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1192750|http://www.wikidata.org/entity/Q1085037|http://www.wikidata.org/entity/Q983043|http://www.wikidata.org/entity/Q360927|http://www.wikidata.org/entity/Q292967|http://www.wikidata.org/entity/Q262665|http://www.wikidata.org/entity/Q233748|http://www.wikidata.org/entity/Q159166|http://www.wikidata.org/entity/Q48619"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 Indian romantic comedy film directed by Anees Bazmee"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5051991"}, "Title": {"type": "literal", "value": "Catfish in Black Bean Sauce"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2395964"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23898972|http://www.wikidata.org/entity/Q3546016|http://www.wikidata.org/entity/Q3101983|http://www.wikidata.org/entity/Q1320245|http://www.wikidata.org/entity/Q598178|http://www.wikidata.org/entity/Q344576|http://www.wikidata.org/entity/Q271051|http://www.wikidata.org/entity/Q241783|http://www.wikidata.org/entity/Q236569"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1999 film by Chi Muoi Lo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21009568"}, "Title": {"type": "literal", "value": "Les Ogres"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3270015"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3270015"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q31353"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by L\u00e9a Fehner"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18387392"}, "Title": {"type": "literal", "value": "Chocolate City"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6169127"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6169127"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6169127|http://www.wikidata.org/entity/Q5393446|http://www.wikidata.org/entity/Q738212|http://www.wikidata.org/entity/Q468012|http://www.wikidata.org/entity/Q248915|http://www.wikidata.org/entity/Q220396|http://www.wikidata.org/entity/Q185122"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2015 film by Jean-Claude La Marre"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7061216"}, "Title": {"type": "literal", "value": "Regel nr. 1"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12330191"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41340778|http://www.wikidata.org/entity/Q12330191"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q37491252|http://www.wikidata.org/entity/Q12337807|http://www.wikidata.org/entity/Q12334657|http://www.wikidata.org/entity/Q12327036|http://www.wikidata.org/entity/Q12326773|http://www.wikidata.org/entity/Q12325345|http://www.wikidata.org/entity/Q12321349|http://www.wikidata.org/entity/Q12321171|http://www.wikidata.org/entity/Q12301480|http://www.wikidata.org/entity/Q12301028|http://www.wikidata.org/entity/Q12006089|http://www.wikidata.org/entity/Q6816829|http://www.wikidata.org/entity/Q5565254|http://www.wikidata.org/entity/Q4968553|http://www.wikidata.org/entity/Q4938062|http://www.wikidata.org/entity/Q3822042|http://www.wikidata.org/entity/Q3617676|http://www.wikidata.org/entity/Q1957570|http://www.wikidata.org/entity/Q1797671|http://www.wikidata.org/entity/Q1452177|http://www.wikidata.org/entity/Q949680"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Oliver Ussing"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12125913"}, "Title": {"type": "literal", "value": "Lurking in Suburbia"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6881132"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17151194"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Mitchell Altieri"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1282904"}, "Title": {"type": "literal", "value": "Strange Planet"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5372704"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5442364|http://www.wikidata.org/entity/Q2646899|http://www.wikidata.org/entity/Q914432|http://www.wikidata.org/entity/Q447938|http://www.wikidata.org/entity/Q366168|http://www.wikidata.org/entity/Q302175|http://www.wikidata.org/entity/Q271926|http://www.wikidata.org/entity/Q187271|http://www.wikidata.org/entity/Q132616|http://www.wikidata.org/entity/Q42204"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "1999 film by Emma-Kate Croghan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1400099"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1123001"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2000 film by Zolt\u00e1n K\u00e1lm\u00e1nchelyi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17582660"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55650688"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13218066|http://www.wikidata.org/entity/Q4446365|http://www.wikidata.org/entity/Q4444774|http://www.wikidata.org/entity/Q2974837|http://www.wikidata.org/entity/Q1385036|http://www.wikidata.org/entity/Q397682|http://www.wikidata.org/entity/Q315181|http://www.wikidata.org/entity/Q235008"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2012 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27590164"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3719608"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Edoardo Leo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48672480"}, "Title": {"type": "literal", "value": "Volontaire"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q638129"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q638129|http://www.wikidata.org/entity/Q23926173"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3372700|http://www.wikidata.org/entity/Q2848242|http://www.wikidata.org/entity/Q2832932|http://www.wikidata.org/entity/Q638129|http://www.wikidata.org/entity/Q437254|http://www.wikidata.org/entity/Q115735|http://www.wikidata.org/entity/Q23774012|http://www.wikidata.org/entity/Q22962757"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by H\u00e9l\u00e8ne Filli\u00e8res"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10498467|http://www.wikidata.org/entity/Q913462"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13459735"}, "Title": {"type": "literal", "value": "Amiche da morire"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18202654"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18202654"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4013682|http://www.wikidata.org/entity/Q3944358|http://www.wikidata.org/entity/Q3848019|http://www.wikidata.org/entity/Q3838478|http://www.wikidata.org/entity/Q3694222|http://www.wikidata.org/entity/Q468793|http://www.wikidata.org/entity/Q455007|http://www.wikidata.org/entity/Q291413"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2013 film by Giorgia Farina"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q781684"}, "Title": {"type": "literal", "value": "Hvordan vi slipper af med de andre"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4753909"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4753909"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12321973|http://www.wikidata.org/entity/Q12006703|http://www.wikidata.org/entity/Q6688858|http://www.wikidata.org/entity/Q4982822|http://www.wikidata.org/entity/Q3822042|http://www.wikidata.org/entity/Q2106732|http://www.wikidata.org/entity/Q2033737|http://www.wikidata.org/entity/Q1912647|http://www.wikidata.org/entity/Q951902|http://www.wikidata.org/entity/Q12338512|http://www.wikidata.org/entity/Q12332888|http://www.wikidata.org/entity/Q12326087|http://www.wikidata.org/entity/Q12324268"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Anders R\u00f8nnow Klarlund"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q59610"}, "Title": {"type": "literal", "value": "Seven Psychopaths"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q372394"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q372394"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28151585|http://www.wikidata.org/entity/Q12026921|http://www.wikidata.org/entity/Q7329928|http://www.wikidata.org/entity/Q6555605|http://www.wikidata.org/entity/Q4088048|http://www.wikidata.org/entity/Q2745996|http://www.wikidata.org/entity/Q1334725|http://www.wikidata.org/entity/Q438445|http://www.wikidata.org/entity/Q382197|http://www.wikidata.org/entity/Q352540|http://www.wikidata.org/entity/Q316446|http://www.wikidata.org/entity/Q314290|http://www.wikidata.org/entity/Q241854|http://www.wikidata.org/entity/Q236097|http://www.wikidata.org/entity/Q230113|http://www.wikidata.org/entity/Q201279|http://www.wikidata.org/entity/Q185051|http://www.wikidata.org/entity/Q184805|http://www.wikidata.org/entity/Q172035|http://www.wikidata.org/entity/Q164730|http://www.wikidata.org/entity/Q28498"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1200678|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "2012 film by Martin McDonagh"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q260528|http://www.wikidata.org/entity/Q5448886"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5243444"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028745"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Noh Young-seok"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26720699"}, "Title": {"type": "literal", "value": "\u091b\u0915\u094d\u0915\u093e \u092a\u091e\u094d\u091c\u093e"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27656966"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27656966"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19679095|http://www.wikidata.org/entity/Q19678178|http://www.wikidata.org/entity/Q17517127|http://www.wikidata.org/entity/Q7246507|http://www.wikidata.org/entity/Q4662665"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 Nepali film by Deepa Shree Niraula"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7716742"}, "Title": {"type": "literal", "value": "The Best Man Holiday"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3843845"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3843845"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q536030|http://www.wikidata.org/entity/Q534006|http://www.wikidata.org/entity/Q529906|http://www.wikidata.org/entity/Q472053|http://www.wikidata.org/entity/Q355197|http://www.wikidata.org/entity/Q310551|http://www.wikidata.org/entity/Q296500|http://www.wikidata.org/entity/Q272956|http://www.wikidata.org/entity/Q241783|http://www.wikidata.org/entity/Q235141"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Malcolm D. Lee"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q511731|http://www.wikidata.org/entity/Q1138658|http://www.wikidata.org/entity/Q2702789"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25621394"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18011640"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18011640|http://www.wikidata.org/entity/Q7814774|http://www.wikidata.org/entity/Q7336478|http://www.wikidata.org/entity/Q7286597"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 Gujarati language film directed by Abhishek Jain"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26703733"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28136396"}, "Title": {"type": "literal", "value": "Luca tanzt leise"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1502798"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1502798"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28136483|http://www.wikidata.org/entity/Q17537123"}, "Published": {"type": "literal", "value": "2017|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "81"}, "Description": {"type": "literal", "value": "2016 film by Philipp Eichholtz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43639467"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q43601624"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q43601624"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24289096|http://www.wikidata.org/entity/Q23681162"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 Film directed by Zakariya Mohammed"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5359728"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8062226"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8062225"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q266376"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Yuya Ishii"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1648869"}, "Title": {"type": "literal", "value": "Charlie & Boots"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19872804"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7488108|http://www.wikidata.org/entity/Q7372577|http://www.wikidata.org/entity/Q296641|http://www.wikidata.org/entity/Q241895"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2009 film by Dean Murphy"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4730105"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6105225"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7293689|http://www.wikidata.org/entity/Q6810525|http://www.wikidata.org/entity/Q6433821|http://www.wikidata.org/entity/Q6105225"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 Telugu film directed by J. D. Chakravarthy"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28841509"}, "Title": {"type": "literal", "value": "\u00c7akallarla Dans 4"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6064908"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6082607|http://www.wikidata.org/entity/Q3624103"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Murat \u015eeker"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20742872"}, "Title": {"type": "literal", "value": "Das Zimmerm\u00e4dchen Lynn"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1663125"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1793679|http://www.wikidata.org/entity/Q1663125"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1133306|http://www.wikidata.org/entity/Q1123974|http://www.wikidata.org/entity/Q1083779|http://www.wikidata.org/entity/Q825931|http://www.wikidata.org/entity/Q104377|http://www.wikidata.org/entity/Q11896382|http://www.wikidata.org/entity/Q2522116|http://www.wikidata.org/entity/Q2338717|http://www.wikidata.org/entity/Q1416433"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2015 German film drama directed by Ingo Haeb"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7576963"}, "Title": {"type": "literal", "value": "Spicy Mac Project"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11312662"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q877948"}, "Title": {"type": "literal", "value": "Knallharte Jungs"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16891732"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16891732"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2080400|http://www.wikidata.org/entity/Q1985803|http://www.wikidata.org/entity/Q1944699|http://www.wikidata.org/entity/Q1478871|http://www.wikidata.org/entity/Q1043589|http://www.wikidata.org/entity/Q586772|http://www.wikidata.org/entity/Q108942|http://www.wikidata.org/entity/Q104665|http://www.wikidata.org/entity/Q102672|http://www.wikidata.org/entity/Q101149|http://www.wikidata.org/entity/Q87395|http://www.wikidata.org/entity/Q66027|http://www.wikidata.org/entity/Q45572|http://www.wikidata.org/entity/Q45292"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2002 German teen comedy film by Granz Henman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q564960"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23013169"}, "Title": {"type": "literal", "value": "The Lego Batman Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20676250"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q311591"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1535153|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2017 film directed by Chris McKay"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q126399"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4239358"}, "Title": {"type": "literal", "value": "Red Doors"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5547577"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5547577"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6827158|http://www.wikidata.org/entity/Q3442834|http://www.wikidata.org/entity/Q3050393|http://www.wikidata.org/entity/Q1684394|http://www.wikidata.org/entity/Q598178|http://www.wikidata.org/entity/Q455898|http://www.wikidata.org/entity/Q276468|http://www.wikidata.org/entity/Q60355"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Georgia Lee"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q442387"}, "Title": {"type": "literal", "value": "Almanya \u2013 Willkommen in Deutschland"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q90892"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q120534"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q114624|http://www.wikidata.org/entity/Q109299|http://www.wikidata.org/entity/Q96084|http://www.wikidata.org/entity/Q75187|http://www.wikidata.org/entity/Q125750"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2011 German comedy film directed by Yasemin \u015eamdereli"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26085011"}, "Title": {"type": "literal", "value": "Madame"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2841048"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2841048"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6834458|http://www.wikidata.org/entity/Q4961067|http://www.wikidata.org/entity/Q2861211|http://www.wikidata.org/entity/Q2833045|http://www.wikidata.org/entity/Q1986254|http://www.wikidata.org/entity/Q1394368|http://www.wikidata.org/entity/Q644911|http://www.wikidata.org/entity/Q509777|http://www.wikidata.org/entity/Q266626|http://www.wikidata.org/entity/Q229291|http://www.wikidata.org/entity/Q191132"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1919632|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2017 film by Amanda Sthers"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3206016|http://www.wikidata.org/entity/Q2450848"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1463907"}, "Title": {"type": "literal", "value": "H\u00e4rtetest"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1682638"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1682638"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20829652|http://www.wikidata.org/entity/Q2262963|http://www.wikidata.org/entity/Q2020120|http://www.wikidata.org/entity/Q1894569|http://www.wikidata.org/entity/Q1892651|http://www.wikidata.org/entity/Q1736478|http://www.wikidata.org/entity/Q1682638|http://www.wikidata.org/entity/Q1584617|http://www.wikidata.org/entity/Q1390108|http://www.wikidata.org/entity/Q1315719|http://www.wikidata.org/entity/Q1288837|http://www.wikidata.org/entity/Q978425|http://www.wikidata.org/entity/Q119560|http://www.wikidata.org/entity/Q111267|http://www.wikidata.org/entity/Q91772|http://www.wikidata.org/entity/Q71698|http://www.wikidata.org/entity/Q64823|http://www.wikidata.org/entity/Q28152"}, "Published": {"type": "literal", "value": "1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "1998 film by Janek Rieke"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17486221"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18011640"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20788175|http://www.wikidata.org/entity/Q12445334|http://www.wikidata.org/entity/Q6379241|http://www.wikidata.org/entity/Q5225529"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 Gujarati language film from India directed by Abhishek Jain"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26703733"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16139206"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1015952"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Poj Arnon"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q848836"}, "Title": {"type": "literal", "value": "Christmas Caper"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1177219"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4781998"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1530515|http://www.wikidata.org/entity/Q552972|http://www.wikidata.org/entity/Q207598"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 television film directed by David Winkler"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5453219"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q39059139"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5099316"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Chimbu Deven"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7395369"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q52562222"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21154379"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4396438|http://www.wikidata.org/entity/Q4163746|http://www.wikidata.org/entity/Q2390125"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Eduard Parri"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q587921"}, "Title": {"type": "literal", "value": "Garfield: A Tail of Two Kitties"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2037657"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3397612"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2269990|http://www.wikidata.org/entity/Q1806985|http://www.wikidata.org/entity/Q1750774|http://www.wikidata.org/entity/Q1332872|http://www.wikidata.org/entity/Q380856|http://www.wikidata.org/entity/Q360674|http://www.wikidata.org/entity/Q298838|http://www.wikidata.org/entity/Q296822|http://www.wikidata.org/entity/Q239558|http://www.wikidata.org/entity/Q237178|http://www.wikidata.org/entity/Q215017|http://www.wikidata.org/entity/Q211283|http://www.wikidata.org/entity/Q175104|http://www.wikidata.org/entity/Q52392"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2006 film by Tim Hill"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434841|http://www.wikidata.org/entity/Q2579492"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7772525"}, "Title": {"type": "literal", "value": "The Vicious Kind"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6515302"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6515302"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q715646|http://www.wikidata.org/entity/Q229975|http://www.wikidata.org/entity/Q201842|http://www.wikidata.org/entity/Q150482"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Lee Toland Krieger"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6121386"}, "Title": {"type": "literal", "value": "Santos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3876520"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3876520"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7071460|http://www.wikidata.org/entity/Q5704066|http://www.wikidata.org/entity/Q3329391|http://www.wikidata.org/entity/Q1189379|http://www.wikidata.org/entity/Q533571|http://www.wikidata.org/entity/Q230123"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Nicol\u00e1s L\u00f3pez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18150704"}, "Title": {"type": "literal", "value": "The Hollars"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q313039"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3806481"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7291588|http://www.wikidata.org/entity/Q512353|http://www.wikidata.org/entity/Q365915|http://www.wikidata.org/entity/Q313043|http://www.wikidata.org/entity/Q313039|http://www.wikidata.org/entity/Q257317|http://www.wikidata.org/entity/Q238924|http://www.wikidata.org/entity/Q218083|http://www.wikidata.org/entity/Q207873|http://www.wikidata.org/entity/Q67701"}, "Published": {"type": "literal", "value": "2017|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2016 film by John Krasinski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7422770"}, "Title": {"type": "literal", "value": "Sarah Silverman: Jesus Is Magic"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1372139"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q229013"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6499434|http://www.wikidata.org/entity/Q912938|http://www.wikidata.org/entity/Q888178|http://www.wikidata.org/entity/Q229013"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Liam Lynch"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23589"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5417777"}, "Title": {"type": "literal", "value": "Toat\u0103 lumea din familia noastr\u0103"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1248032"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1248032"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14500720|http://www.wikidata.org/entity/Q4721094"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "2012 film by Radu Jude"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7764639"}, "Title": {"type": "literal", "value": "The Skinny"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7147898"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7147898"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6315685"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Patrik-Ian Polk"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2575316"}, "Title": {"type": "literal", "value": "Soul Plane"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6187942"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6463299|http://www.wikidata.org/entity/Q5107905|http://www.wikidata.org/entity/Q4347722|http://www.wikidata.org/entity/Q3616845|http://www.wikidata.org/entity/Q3023394|http://www.wikidata.org/entity/Q1702204|http://www.wikidata.org/entity/Q1305094|http://www.wikidata.org/entity/Q1268429|http://www.wikidata.org/entity/Q618352|http://www.wikidata.org/entity/Q549562|http://www.wikidata.org/entity/Q536308|http://www.wikidata.org/entity/Q460513|http://www.wikidata.org/entity/Q376031|http://www.wikidata.org/entity/Q374181|http://www.wikidata.org/entity/Q353755|http://www.wikidata.org/entity/Q298694|http://www.wikidata.org/entity/Q271464|http://www.wikidata.org/entity/Q233786|http://www.wikidata.org/entity/Q231928|http://www.wikidata.org/entity/Q231911|http://www.wikidata.org/entity/Q229169|http://www.wikidata.org/entity/Q6096"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2004 film by Jessy Terrero"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q179200"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27988104"}, "Title": {"type": "literal", "value": "\u041f\u0435\u0442\u0435\u0440\u0431\u0443\u0440\u0433. \u0422\u043e\u043b\u044c\u043a\u043e \u043f\u043e \u043b\u044e\u0431\u0432\u0438"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21183509|http://www.wikidata.org/entity/Q4424796|http://www.wikidata.org/entity/Q4312204|http://www.wikidata.org/entity/Q4101320|http://www.wikidata.org/entity/Q2627377"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21183509|http://www.wikidata.org/entity/Q4424796|http://www.wikidata.org/entity/Q4312204|http://www.wikidata.org/entity/Q4101320|http://www.wikidata.org/entity/Q2627377"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4297949|http://www.wikidata.org/entity/Q4281965|http://www.wikidata.org/entity/Q2627377|http://www.wikidata.org/entity/Q13218087"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q191489"}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "2016 film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q158478|http://www.wikidata.org/entity/Q4403233"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23016495"}, "Title": {"type": "literal", "value": "Baywatch"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q524897"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30327831|http://www.wikidata.org/entity/Q26460510|http://www.wikidata.org/entity/Q3038036"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q180301|http://www.wikidata.org/entity/Q158957|http://www.wikidata.org/entity/Q83325|http://www.wikidata.org/entity/Q45229|http://www.wikidata.org/entity/Q10738|http://www.wikidata.org/entity/Q36685840|http://www.wikidata.org/entity/Q29349693|http://www.wikidata.org/entity/Q28655334|http://www.wikidata.org/entity/Q24699898|http://www.wikidata.org/entity/Q21997695|http://www.wikidata.org/entity/Q19571502|http://www.wikidata.org/entity/Q7520267|http://www.wikidata.org/entity/Q5649155|http://www.wikidata.org/entity/Q1972672|http://www.wikidata.org/entity/Q524897|http://www.wikidata.org/entity/Q232769|http://www.wikidata.org/entity/Q232514|http://www.wikidata.org/entity/Q231556|http://www.wikidata.org/entity/Q201927"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "119"}, "Description": {"type": "literal", "value": "2017 film by Seth Gordon"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q159846"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4017692"}, "Title": {"type": "literal", "value": "Waitress!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q944978|http://www.wikidata.org/entity/Q183347"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21403123|http://www.wikidata.org/entity/Q3476328|http://www.wikidata.org/entity/Q3051238|http://www.wikidata.org/entity/Q983418|http://www.wikidata.org/entity/Q573423|http://www.wikidata.org/entity/Q336185"}, "Published": {"type": "literal", "value": "1981"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "1981 film by Michael Herz, Lloyd Kaufman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q640786"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q601100"}, "Title": {"type": "literal", "value": "Strange Bedfellows"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19872804"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3814774|http://www.wikidata.org/entity/Q3308100|http://www.wikidata.org/entity/Q296641|http://www.wikidata.org/entity/Q217137"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2004 film by Dean Murphy"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q239827"}, "Title": {"type": "literal", "value": "The Last Drop"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5145613"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5145613"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6698313|http://www.wikidata.org/entity/Q5673372|http://www.wikidata.org/entity/Q3499384|http://www.wikidata.org/entity/Q1428289|http://www.wikidata.org/entity/Q1377608|http://www.wikidata.org/entity/Q1190134|http://www.wikidata.org/entity/Q1189353|http://www.wikidata.org/entity/Q1139301|http://www.wikidata.org/entity/Q594265|http://www.wikidata.org/entity/Q463683|http://www.wikidata.org/entity/Q391310|http://www.wikidata.org/entity/Q310637|http://www.wikidata.org/entity/Q220584|http://www.wikidata.org/entity/Q205435|http://www.wikidata.org/entity/Q134133|http://www.wikidata.org/entity/Q42601"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q369747|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2006 film by Colin Teague"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6407453"}, "Title": {"type": "literal", "value": "Killer Bud"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6805567"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q313712"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 film by Media Whore"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5450364"}, "Title": {"type": "literal", "value": "Finishing the Game"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q551876"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1267727|http://www.wikidata.org/entity/Q503013|http://www.wikidata.org/entity/Q317563|http://www.wikidata.org/entity/Q306403|http://www.wikidata.org/entity/Q295923|http://www.wikidata.org/entity/Q208117"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2007 film by Justin Lin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15886159"}, "Title": {"type": "literal", "value": "\u09aa\u09bf\u0981\u09aa\u09a1\u09bc\u09be\u09ac\u09bf\u09a6\u09cd\u09af\u09be"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6916984"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6916984"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7492374"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Mostofa Sarwar Farooki"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11263846"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11461833"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Sh\u014dtar\u014d Kobayashi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7758712"}, "Title": {"type": "literal", "value": "The Puffy Chair"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6166571|http://www.wikidata.org/entity/Q3273787"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6377395|http://www.wikidata.org/entity/Q3273787"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Mark Duplass, Jay Duplass"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q907311"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10277951"}, "Title": {"type": "literal", "value": "Eu odeio o Orkut"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10278413"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "129"}, "Description": {"type": "literal", "value": "2011 film by Evandro Berlesi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3040434"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2938811"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q240521|http://www.wikidata.org/entity/Q203840|http://www.wikidata.org/entity/Q16832010|http://www.wikidata.org/entity/Q3134621|http://www.wikidata.org/entity/Q3051727|http://www.wikidata.org/entity/Q2965328|http://www.wikidata.org/entity/Q2925088|http://www.wikidata.org/entity/Q1711059|http://www.wikidata.org/entity/Q1187592|http://www.wikidata.org/entity/Q289032"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Carine Tardieu"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28331179"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3509959"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3524924"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by S\u00e9bastien Betbeder"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q776952"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1470086"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1286036|http://www.wikidata.org/entity/Q1120300|http://www.wikidata.org/entity/Q1031644"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Attila \u00c1rpa"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1193109"}, "Title": {"type": "literal", "value": "Der Eisb\u00e4r"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q57391|http://www.wikidata.org/entity/Q16891732"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16891732"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q64823|http://www.wikidata.org/entity/Q60687|http://www.wikidata.org/entity/Q57391|http://www.wikidata.org/entity/Q1937361|http://www.wikidata.org/entity/Q1747632|http://www.wikidata.org/entity/Q1736475|http://www.wikidata.org/entity/Q1717755|http://www.wikidata.org/entity/Q546535|http://www.wikidata.org/entity/Q531287|http://www.wikidata.org/entity/Q109133|http://www.wikidata.org/entity/Q100312|http://www.wikidata.org/entity/Q97423|http://www.wikidata.org/entity/Q90041|http://www.wikidata.org/entity/Q88583|http://www.wikidata.org/entity/Q86655|http://www.wikidata.org/entity/Q78121|http://www.wikidata.org/entity/Q69640|http://www.wikidata.org/entity/Q16891732|http://www.wikidata.org/entity/Q2577560|http://www.wikidata.org/entity/Q2337883|http://www.wikidata.org/entity/Q2159077"}, "Published": {"type": "literal", "value": "1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "1998 film by Til Schweiger"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28127570"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2726196"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q944546"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Shreyas Talpade"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15098103"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q490410"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6312637"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 South Korean comedy film directed by Ha Jung-woo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1537404"}, "Title": {"type": "literal", "value": "Shanghai Kiss"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5238982"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5238982"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q312051|http://www.wikidata.org/entity/Q231116|http://www.wikidata.org/entity/Q171571"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by David Ren"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1219034"}, "Title": {"type": "literal", "value": "Maskeli Be\u015fler \u0130ntikam Pe\u015finde"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3328043"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3328043"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8082387|http://www.wikidata.org/entity/Q7666744|http://www.wikidata.org/entity/Q6812382|http://www.wikidata.org/entity/Q5058838|http://www.wikidata.org/entity/Q382106"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2005 film by Murat Aslan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q718996"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q278774"}, "Title": {"type": "literal", "value": "Surfer, Dude"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19364349"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2644079|http://www.wikidata.org/entity/Q1465235|http://www.wikidata.org/entity/Q967248|http://www.wikidata.org/entity/Q206112|http://www.wikidata.org/entity/Q201279|http://www.wikidata.org/entity/Q188955|http://www.wikidata.org/entity/Q139610|http://www.wikidata.org/entity/Q114179"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "2008 film by S. R. Bindler"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1626895"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7539939"}, "Title": {"type": "literal", "value": "Sleepwalk with Me"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5576465"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5576465|http://www.wikidata.org/entity/Q1672322"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q980277|http://www.wikidata.org/entity/Q952419|http://www.wikidata.org/entity/Q11832588|http://www.wikidata.org/entity/Q6187045|http://www.wikidata.org/entity/Q5902748|http://www.wikidata.org/entity/Q5726977|http://www.wikidata.org/entity/Q5649155|http://www.wikidata.org/entity/Q5605949|http://www.wikidata.org/entity/Q5576465|http://www.wikidata.org/entity/Q5186320|http://www.wikidata.org/entity/Q4830761|http://www.wikidata.org/entity/Q4749380|http://www.wikidata.org/entity/Q3288246|http://www.wikidata.org/entity/Q1672322|http://www.wikidata.org/entity/Q726140|http://www.wikidata.org/entity/Q561133|http://www.wikidata.org/entity/Q509953|http://www.wikidata.org/entity/Q460503|http://www.wikidata.org/entity/Q437752|http://www.wikidata.org/entity/Q272927|http://www.wikidata.org/entity/Q235302|http://www.wikidata.org/entity/Q232098"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2012 film by Mike Birbiglia"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7947099"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12221980"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12178530"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4164801"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Ahmed El Guindi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1130343"}, "Title": {"type": "literal", "value": "\u0930\u092c \u0928\u0947 \u092c\u0928\u093e \u0926\u0940 \u091c\u094b\u0921\u093c\u0940"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q357608"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q357608"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15215273|http://www.wikidata.org/entity/Q7937536|http://www.wikidata.org/entity/Q7500361|http://www.wikidata.org/entity/Q6750645|http://www.wikidata.org/entity/Q6368402|http://www.wikidata.org/entity/Q3522712|http://www.wikidata.org/entity/Q929422|http://www.wikidata.org/entity/Q485557|http://www.wikidata.org/entity/Q465815|http://www.wikidata.org/entity/Q290438|http://www.wikidata.org/entity/Q188671|http://www.wikidata.org/entity/Q158214|http://www.wikidata.org/entity/Q147395|http://www.wikidata.org/entity/Q32452|http://www.wikidata.org/entity/Q9535"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "167"}, "Description": {"type": "literal", "value": "2008 film by Aditya Chopra"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1696916"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5799948"}, "Title": {"type": "literal", "value": "Mi gente linda, mi gente bella"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16302557"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5562040"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1563876"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2012 film by Harold Trompetero"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10967433"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4164801"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12178651|http://www.wikidata.org/entity/Q2827647"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Ahmed Mekky"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15046541"}, "Title": {"type": "literal", "value": "Danny Collins"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5213495"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5213495"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2803741|http://www.wikidata.org/entity/Q1985488|http://www.wikidata.org/entity/Q1351441|http://www.wikidata.org/entity/Q1141130|http://www.wikidata.org/entity/Q499028|http://www.wikidata.org/entity/Q428819|http://www.wikidata.org/entity/Q311779|http://www.wikidata.org/entity/Q303192|http://www.wikidata.org/entity/Q190602|http://www.wikidata.org/entity/Q190523|http://www.wikidata.org/entity/Q172044|http://www.wikidata.org/entity/Q46677|http://www.wikidata.org/entity/Q41163"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2015 film by Dan Fogelman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30389361"}, "Title": {"type": "literal", "value": "Min b\u00f6rda"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16595666"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16595666"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "15"}, "Description": {"type": "literal", "value": "2017 animated film by Niki Lindroth von Bahr"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17513016"}, "Title": {"type": "literal", "value": "Buzzard"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16734657"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16734657"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q703676"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Joel Potrykus"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21027544"}, "Title": {"type": "literal", "value": "Le Mirage"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3430333"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3262749"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Ricardo Trogi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60852749"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2080043"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by R\u00e9mi Bezan\u00e7on"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1507221"}, "Title": {"type": "literal", "value": "Bring It On: In It to Win It"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2632767"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2043952|http://www.wikidata.org/entity/Q561324|http://www.wikidata.org/entity/Q233419|http://www.wikidata.org/entity/Q230609|http://www.wikidata.org/entity/Q162035|http://www.wikidata.org/entity/Q127471"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2007 film by Steve Rash"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1753580"}, "Title": {"type": "literal", "value": "What the Bleep Do We Know!?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16148751|http://www.wikidata.org/entity/Q1900489|http://www.wikidata.org/entity/Q832252"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16148751|http://www.wikidata.org/entity/Q1900489|http://www.wikidata.org/entity/Q832252"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3827125|http://www.wikidata.org/entity/Q3809587|http://www.wikidata.org/entity/Q3434590|http://www.wikidata.org/entity/Q705352|http://www.wikidata.org/entity/Q353101|http://www.wikidata.org/entity/Q271620|http://www.wikidata.org/entity/Q213287"}, "Published": {"type": "literal", "value": "2005|2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2004 film by William Arntz"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3010012"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3794198"}, "Title": {"type": "literal", "value": "Il giorno + bello"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23857049"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3959331|http://www.wikidata.org/entity/Q3956096|http://www.wikidata.org/entity/Q3897825|http://www.wikidata.org/entity/Q3850996|http://www.wikidata.org/entity/Q3846167|http://www.wikidata.org/entity/Q3765371|http://www.wikidata.org/entity/Q3737860|http://www.wikidata.org/entity/Q3726049|http://www.wikidata.org/entity/Q3679896|http://www.wikidata.org/entity/Q2861255|http://www.wikidata.org/entity/Q2708170|http://www.wikidata.org/entity/Q1041563|http://www.wikidata.org/entity/Q818736|http://www.wikidata.org/entity/Q455945"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2006 film by Massimo Cappelli"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6669858"}, "Title": {"type": "literal", "value": "London Betty"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7789275"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7789275"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7381226|http://www.wikidata.org/entity/Q1163293"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Thomas Edward Seymour"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3985371"}, "Title": {"type": "literal", "value": "Texas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q344075"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q344075"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5260783|http://www.wikidata.org/entity/Q4007861|http://www.wikidata.org/entity/Q344075|http://www.wikidata.org/entity/Q230710|http://www.wikidata.org/entity/Q133787"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2005 film by Fausto Paravidino"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3304113"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20720688"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7635089"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6444213"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film directed by Sugeeth"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1982655"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1428901|http://www.wikidata.org/entity/Q943006"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1428901|http://www.wikidata.org/entity/Q943006"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2434026"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "74"}, "Description": {"type": "literal", "value": "2012 film by Flip van der Kuil, Steffen Haars"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56311084"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55650688|http://www.wikidata.org/entity/Q21183509|http://www.wikidata.org/entity/Q2833792|http://www.wikidata.org/entity/Q344854"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16857528|http://www.wikidata.org/entity/Q4317349"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3479732|http://www.wikidata.org/entity/Q3033167|http://www.wikidata.org/entity/Q2329850|http://www.wikidata.org/entity/Q466169|http://www.wikidata.org/entity/Q442830"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2018 film directed by Timur Bekmambetov"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2892410"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q41754947"}, "Title": {"type": "literal", "value": "Harri Pinter, Drecksau"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60189101"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56631778|http://www.wikidata.org/entity/Q56632080"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28465786|http://www.wikidata.org/entity/Q18626702|http://www.wikidata.org/entity/Q15850960|http://www.wikidata.org/entity/Q1630325|http://www.wikidata.org/entity/Q499354|http://www.wikidata.org/entity/Q85841|http://www.wikidata.org/entity/Q43369921|http://www.wikidata.org/entity/Q31960833"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2017 film by Andreas Schmied"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61050129"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5829245"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Elena Trap\u00e9"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16250885"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7544363"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7544363"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5564076"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Smeep Kang"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4661678"}, "Title": {"type": "literal", "value": "\u0b86\u0bb0\u0ba3\u0bcd\u0baf \u0b95\u0bbe\u0ba3\u0bcd\u0b9f\u0bae\u0bcd"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7783816"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7783816"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7410100|http://www.wikidata.org/entity/Q7296637|http://www.wikidata.org/entity/Q560178"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2421031|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q188473"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Thiagarajan Kumararaja"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6893771"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7831216"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7831216"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "62"}, "Description": {"type": "literal", "value": "2005 film by Tracey Deer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1443690"}, "Title": {"type": "literal", "value": "Polska Love Serenade"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1944553"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "75"}, "Description": {"type": "literal", "value": "2008 film by Monika Anna Wojtyllo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5257031"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6265621"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by John de Rantau"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23042678"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2400575"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12720640|http://www.wikidata.org/entity/Q12720629|http://www.wikidata.org/entity/Q5297701|http://www.wikidata.org/entity/Q3860822|http://www.wikidata.org/entity/Q3437193|http://www.wikidata.org/entity/Q1684856"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Tudor Giurgiu"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3809340"}, "Title": {"type": "literal", "value": "7\ubc88\ubc29\uc758 \uc120\ubb3c"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16262094"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15073945|http://www.wikidata.org/entity/Q12615563|http://www.wikidata.org/entity/Q12582610|http://www.wikidata.org/entity/Q7138143|http://www.wikidata.org/entity/Q6678668|http://www.wikidata.org/entity/Q4120056|http://www.wikidata.org/entity/Q625572|http://www.wikidata.org/entity/Q497785|http://www.wikidata.org/entity/Q483575"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q586250|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "127"}, "Description": {"type": "literal", "value": "2013 film by Lee Hwan-kyung"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7732900"}, "Title": {"type": "literal", "value": "The Extreme Adventures of Super Dave"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q933856"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2051128"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2051128"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2000 film by Peter MacDonald"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q179200"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7993509"}, "Title": {"type": "literal", "value": "Wherever You Are"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7340338"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7340338"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2050378|http://www.wikidata.org/entity/Q1638065|http://www.wikidata.org/entity/Q459007|http://www.wikidata.org/entity/Q442019|http://www.wikidata.org/entity/Q436360"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Rob Margolies"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1232340"}, "Title": {"type": "literal", "value": "Heiter bis wolkig"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1893857"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18679286|http://www.wikidata.org/entity/Q15809470|http://www.wikidata.org/entity/Q2343553|http://www.wikidata.org/entity/Q2019755|http://www.wikidata.org/entity/Q1711811|http://www.wikidata.org/entity/Q1698276|http://www.wikidata.org/entity/Q1696765|http://www.wikidata.org/entity/Q1222900|http://www.wikidata.org/entity/Q99913|http://www.wikidata.org/entity/Q78766|http://www.wikidata.org/entity/Q76172|http://www.wikidata.org/entity/Q71673"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2012 film by Marco Petry"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15046523"}, "Title": {"type": "literal", "value": "Free the Nipple"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2655318"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Lina Esco"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1744313"}, "Title": {"type": "literal", "value": "Schwere Jungs"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q96164"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15445444"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2006 film by Marcus H. Rosenm\u00fcller"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18400498"}, "Title": {"type": "literal", "value": "Les Gorilles"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3539613"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q762906"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Tristan Aurouet"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15730414"}, "Title": {"type": "literal", "value": "Le Quepa sur la vilni !"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15415483"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15415483"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15973592|http://www.wikidata.org/entity/Q3012804|http://www.wikidata.org/entity/Q1086279|http://www.wikidata.org/entity/Q336694|http://www.wikidata.org/entity/Q109255"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Yann Le Quellec"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28001090"}, "Title": {"type": "literal", "value": "Alibi.com"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3380121"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3380121"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17175096|http://www.wikidata.org/entity/Q16663967|http://www.wikidata.org/entity/Q3588002|http://www.wikidata.org/entity/Q3559579|http://www.wikidata.org/entity/Q3380121|http://www.wikidata.org/entity/Q3379789|http://www.wikidata.org/entity/Q1210511|http://www.wikidata.org/entity/Q983159|http://www.wikidata.org/entity/Q291392|http://www.wikidata.org/entity/Q106573"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Philippe Lacheau"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4901655"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7399012"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7489427"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6380219|http://www.wikidata.org/entity/Q4747497|http://www.wikidata.org/entity/Q3527168|http://www.wikidata.org/entity/Q929422|http://www.wikidata.org/entity/Q365007"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Sagar Ballary"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7311024"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2078445"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18225395"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18225395"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q340552"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Kees van Nieuwkerk"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2870286"}, "Title": {"type": "literal", "value": "Au bonheur des ogres"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3340065"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3479315|http://www.wikidata.org/entity/Q3340065"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q287336|http://www.wikidata.org/entity/Q106365|http://www.wikidata.org/entity/Q94882|http://www.wikidata.org/entity/Q28487|http://www.wikidata.org/entity/Q3166616|http://www.wikidata.org/entity/Q3106169|http://www.wikidata.org/entity/Q3105513|http://www.wikidata.org/entity/Q2724026|http://www.wikidata.org/entity/Q1695127|http://www.wikidata.org/entity/Q1384312|http://www.wikidata.org/entity/Q928975|http://www.wikidata.org/entity/Q562852|http://www.wikidata.org/entity/Q462376|http://www.wikidata.org/entity/Q16069975|http://www.wikidata.org/entity/Q6531360|http://www.wikidata.org/entity/Q3572937|http://www.wikidata.org/entity/Q3490824|http://www.wikidata.org/entity/Q3302248|http://www.wikidata.org/entity/Q3190737|http://www.wikidata.org/entity/Q3189060"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2013 film by Nicolas Bary"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4690917"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17180936"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7418465|http://www.wikidata.org/entity/Q5276810"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Kedar Shinde"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16069551"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2663764"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3392598|http://www.wikidata.org/entity/Q2768812|http://www.wikidata.org/entity/Q2747880|http://www.wikidata.org/entity/Q2664924|http://www.wikidata.org/entity/Q2558742|http://www.wikidata.org/entity/Q2436718|http://www.wikidata.org/entity/Q2130507|http://www.wikidata.org/entity/Q2127029|http://www.wikidata.org/entity/Q2037957|http://www.wikidata.org/entity/Q1848089|http://www.wikidata.org/entity/Q514769"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192881"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Geoffrey Enthoven"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q47530501"}, "Title": {"type": "literal", "value": "S\u00f3lo por hoy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q659288"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q659288"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28070847|http://www.wikidata.org/entity/Q17566611|http://www.wikidata.org/entity/Q16274750|http://www.wikidata.org/entity/Q6762366"}, "Published": {"type": "literal", "value": "2004|2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2001 film by Ariel Rotter"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21112567"}, "Title": {"type": "literal", "value": "Macho Man"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17253608"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1948016"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3896343|http://www.wikidata.org/entity/Q2643664|http://www.wikidata.org/entity/Q2529359|http://www.wikidata.org/entity/Q2511663|http://www.wikidata.org/entity/Q2077604|http://www.wikidata.org/entity/Q1824918|http://www.wikidata.org/entity/Q1527740|http://www.wikidata.org/entity/Q444659|http://www.wikidata.org/entity/Q134976|http://www.wikidata.org/entity/Q125750|http://www.wikidata.org/entity/Q108942|http://www.wikidata.org/entity/Q108590|http://www.wikidata.org/entity/Q106781|http://www.wikidata.org/entity/Q103394|http://www.wikidata.org/entity/Q97335|http://www.wikidata.org/entity/Q77991|http://www.wikidata.org/entity/Q66548|http://www.wikidata.org/entity/Q63228"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2015 film by Christof Wahl"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q764472"}, "Title": {"type": "literal", "value": "Vampires Suck"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q936338|http://www.wikidata.org/entity/Q302690"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q936338|http://www.wikidata.org/entity/Q302690"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1077703|http://www.wikidata.org/entity/Q739062|http://www.wikidata.org/entity/Q607793|http://www.wikidata.org/entity/Q7027085|http://www.wikidata.org/entity/Q449947|http://www.wikidata.org/entity/Q443488|http://www.wikidata.org/entity/Q440910|http://www.wikidata.org/entity/Q312535|http://www.wikidata.org/entity/Q233697|http://www.wikidata.org/entity/Q231928"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2137852|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2010 film by Aaron Seltzer, Jason Friedberg"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q466459"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16619265"}, "Title": {"type": "literal", "value": "Pitch Perfect 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q219373"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4251124"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4678957|http://www.wikidata.org/entity/Q4251124|http://www.wikidata.org/entity/Q3423441|http://www.wikidata.org/entity/Q3374926|http://www.wikidata.org/entity/Q2617927|http://www.wikidata.org/entity/Q2156744|http://www.wikidata.org/entity/Q2046436|http://www.wikidata.org/entity/Q2041541|http://www.wikidata.org/entity/Q1255263|http://www.wikidata.org/entity/Q1150316|http://www.wikidata.org/entity/Q967130|http://www.wikidata.org/entity/Q716936|http://www.wikidata.org/entity/Q449013|http://www.wikidata.org/entity/Q442897|http://www.wikidata.org/entity/Q362332|http://www.wikidata.org/entity/Q329372|http://www.wikidata.org/entity/Q272929|http://www.wikidata.org/entity/Q271119|http://www.wikidata.org/entity/Q260134|http://www.wikidata.org/entity/Q242329|http://www.wikidata.org/entity/Q234076|http://www.wikidata.org/entity/Q41594|http://www.wikidata.org/entity/Q14313|http://www.wikidata.org/entity/Q13133|http://www.wikidata.org/entity/Q6096|http://www.wikidata.org/entity/Q4914|http://www.wikidata.org/entity/Q76|http://www.wikidata.org/entity/Q231726|http://www.wikidata.org/entity/Q229975|http://www.wikidata.org/entity/Q229244|http://www.wikidata.org/entity/Q219631|http://www.wikidata.org/entity/Q219373|http://www.wikidata.org/entity/Q115988|http://www.wikidata.org/entity/Q94831|http://www.wikidata.org/entity/Q67701|http://www.wikidata.org/entity/Q20002394|http://www.wikidata.org/entity/Q19938372|http://www.wikidata.org/entity/Q19668395|http://www.wikidata.org/entity/Q16548392|http://www.wikidata.org/entity/Q16236455|http://www.wikidata.org/entity/Q16203864|http://www.wikidata.org/entity/Q15739824|http://www.wikidata.org/entity/Q15074184|http://www.wikidata.org/entity/Q6498858|http://www.wikidata.org/entity/Q6395392|http://www.wikidata.org/entity/Q6382703"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q20442589"}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "2015 American film directed by Elizabeth Banks"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383|http://www.wikidata.org/entity/Q3109988"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5202125"}, "Title": {"type": "literal", "value": "On the Edge"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1682531|http://www.wikidata.org/entity/Q234610|http://www.wikidata.org/entity/Q233428"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5186054|http://www.wikidata.org/entity/Q4977667|http://www.wikidata.org/entity/Q724395|http://www.wikidata.org/entity/Q234610|http://www.wikidata.org/entity/Q233428"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q336144|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 anthology film by 3 different directors: Mary Stuart Masterson, Anne Heche, Jana Sue Memel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21612100"}, "Title": {"type": "literal", "value": "Ich bin dann mal weg"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15450497"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q98512"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22032529|http://www.wikidata.org/entity/Q21188721|http://www.wikidata.org/entity/Q18625516|http://www.wikidata.org/entity/Q18169576|http://www.wikidata.org/entity/Q2173227|http://www.wikidata.org/entity/Q1594698|http://www.wikidata.org/entity/Q1539481|http://www.wikidata.org/entity/Q1450182|http://www.wikidata.org/entity/Q1416947|http://www.wikidata.org/entity/Q758220|http://www.wikidata.org/entity/Q566566|http://www.wikidata.org/entity/Q563380|http://www.wikidata.org/entity/Q444659|http://www.wikidata.org/entity/Q364986|http://www.wikidata.org/entity/Q86919|http://www.wikidata.org/entity/Q69640|http://www.wikidata.org/entity/Q65111|http://www.wikidata.org/entity/Q25839"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2015 film by Julia Heinz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7259568"}, "Title": {"type": "literal", "value": "Pulp"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14945715"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1701933"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 British comedy film best known for being released exclusively on Xbox Live directed by Adam Hamdy"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21009167"}, "Title": {"type": "literal", "value": "Je suis \u00e0 vous tout de suite"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2892185"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3310148|http://www.wikidata.org/entity/Q2892185"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21294786|http://www.wikidata.org/entity/Q3570989|http://www.wikidata.org/entity/Q3559331|http://www.wikidata.org/entity/Q3418669|http://www.wikidata.org/entity/Q3340076|http://www.wikidata.org/entity/Q3310148|http://www.wikidata.org/entity/Q3269248|http://www.wikidata.org/entity/Q3190701|http://www.wikidata.org/entity/Q2978439|http://www.wikidata.org/entity/Q1044296|http://www.wikidata.org/entity/Q993671|http://www.wikidata.org/entity/Q467957|http://www.wikidata.org/entity/Q449240|http://www.wikidata.org/entity/Q240521|http://www.wikidata.org/entity/Q204394|http://www.wikidata.org/entity/Q169394"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Baya Kasmi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3193645"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15039835"}, "Title": {"type": "literal", "value": "Annie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2576503"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q511934|http://www.wikidata.org/entity/Q168724|http://www.wikidata.org/entity/Q2576503"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q241160|http://www.wikidata.org/entity/Q229268|http://www.wikidata.org/entity/Q228717|http://www.wikidata.org/entity/Q181484|http://www.wikidata.org/entity/Q171905|http://www.wikidata.org/entity/Q164782|http://www.wikidata.org/entity/Q44380|http://www.wikidata.org/entity/Q37628|http://www.wikidata.org/entity/Q36844|http://www.wikidata.org/entity/Q6537943|http://www.wikidata.org/entity/Q6192987|http://www.wikidata.org/entity/Q5576465|http://www.wikidata.org/entity/Q5262974|http://www.wikidata.org/entity/Q5217155|http://www.wikidata.org/entity/Q3110905|http://www.wikidata.org/entity/Q2907990|http://www.wikidata.org/entity/Q1651742|http://www.wikidata.org/entity/Q504706|http://www.wikidata.org/entity/Q476760|http://www.wikidata.org/entity/Q439438|http://www.wikidata.org/entity/Q428819|http://www.wikidata.org/entity/Q395274|http://www.wikidata.org/entity/Q294586|http://www.wikidata.org/entity/Q270665|http://www.wikidata.org/entity/Q16204431|http://www.wikidata.org/entity/Q12859354|http://www.wikidata.org/entity/Q20968446|http://www.wikidata.org/entity/Q20880732"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "118"}, "Description": {"type": "literal", "value": "2014 musical comedy-drama film by Will Gluck"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2326925|http://www.wikidata.org/entity/Q622668"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q708831"}, "Title": {"type": "literal", "value": "Son of Rambow"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q598683"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q598683"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q522057|http://www.wikidata.org/entity/Q457702|http://www.wikidata.org/entity/Q318607|http://www.wikidata.org/entity/Q313545|http://www.wikidata.org/entity/Q312524|http://www.wikidata.org/entity/Q297198|http://www.wikidata.org/entity/Q259679|http://www.wikidata.org/entity/Q40026|http://www.wikidata.org/entity/Q37266874|http://www.wikidata.org/entity/Q37266281|http://www.wikidata.org/entity/Q4678812|http://www.wikidata.org/entity/Q3588844|http://www.wikidata.org/entity/Q3160984|http://www.wikidata.org/entity/Q2583177|http://www.wikidata.org/entity/Q2352199|http://www.wikidata.org/entity/Q2079451|http://www.wikidata.org/entity/Q1319882|http://www.wikidata.org/entity/Q1060758|http://www.wikidata.org/entity/Q902800"}, "Published": {"type": "literal", "value": "2007|2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2007 film by Garth Jennings"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16482211"}, "Title": {"type": "literal", "value": "A los 40"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5734480"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9095740|http://www.wikidata.org/entity/Q6131272|http://www.wikidata.org/entity/Q6105615|http://www.wikidata.org/entity/Q6066567|http://www.wikidata.org/entity/Q5749962|http://www.wikidata.org/entity/Q5676200|http://www.wikidata.org/entity/Q5558094|http://www.wikidata.org/entity/Q5483505|http://www.wikidata.org/entity/Q466762"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Bruno Ascenzo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18290865"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6172133"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6172133"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6064444"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Jonas Selberg Augusts\u00e9n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15983504"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15983467"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15983467"}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Hamza Ali Abbasi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26912634"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26912642|http://www.wikidata.org/entity/Q26912640"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "15"}, "Description": {"type": "literal", "value": "2016 documentary film directed by Axel Danielson and Maximilien van Aertryck"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17112826"}, "Title": {"type": "literal", "value": "Pudsey: The Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3876026"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7153321"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q359665"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film directed by Nick Moore"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2755989"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q303213"}, "Title": {"type": "literal", "value": "Whip It"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q676094"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7491023"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19948176|http://www.wikidata.org/entity/Q15778512|http://www.wikidata.org/entity/Q2469007|http://www.wikidata.org/entity/Q676094|http://www.wikidata.org/entity/Q466051|http://www.wikidata.org/entity/Q454494|http://www.wikidata.org/entity/Q379811|http://www.wikidata.org/entity/Q335680|http://www.wikidata.org/entity/Q239464|http://www.wikidata.org/entity/Q231382|http://www.wikidata.org/entity/Q230523|http://www.wikidata.org/entity/Q228931|http://www.wikidata.org/entity/Q227123|http://www.wikidata.org/entity/Q173399"}, "Published": {"type": "literal", "value": "2010|2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2009 film by Drew Barrymore"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q644711|http://www.wikidata.org/entity/Q5368270"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q470585"}, "Title": {"type": "literal", "value": "Lammbock \u2013 Alles in Handarbeit"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1082448"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1082448"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1778862|http://www.wikidata.org/entity/Q58603"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2001 film by Christian Z\u00fcbert"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29995990"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13020286"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4120951"}, "Title": {"type": "literal", "value": "Muppets Most Wanted"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5925685"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5925685|http://www.wikidata.org/entity/Q2624066"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q312124|http://www.wikidata.org/entity/Q310944|http://www.wikidata.org/entity/Q296729|http://www.wikidata.org/entity/Q295803|http://www.wikidata.org/entity/Q248179|http://www.wikidata.org/entity/Q228603|http://www.wikidata.org/entity/Q223830|http://www.wikidata.org/entity/Q223117|http://www.wikidata.org/entity/Q218083|http://www.wikidata.org/entity/Q216936|http://www.wikidata.org/entity/Q211280|http://www.wikidata.org/entity/Q193659|http://www.wikidata.org/entity/Q165911|http://www.wikidata.org/entity/Q155775|http://www.wikidata.org/entity/Q139325|http://www.wikidata.org/entity/Q125106|http://www.wikidata.org/entity/Q76819|http://www.wikidata.org/entity/Q57391|http://www.wikidata.org/entity/Q23517|http://www.wikidata.org/entity/Q19848|http://www.wikidata.org/entity/Q14540|http://www.wikidata.org/entity/Q5105|http://www.wikidata.org/entity/Q4509|http://www.wikidata.org/entity/Q716998|http://www.wikidata.org/entity/Q455827|http://www.wikidata.org/entity/Q342419"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1200678|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q496523|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "2014 film by James Bobin"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191224|http://www.wikidata.org/entity/Q3285496"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27990695"}, "Title": {"type": "literal", "value": "Natale a Londra - Dio salvi la regina"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4016123"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2016 film by Volfango De Biasi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3745440"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21674485"}, "Title": {"type": "literal", "value": "\u0a9b\u0ac7\u0ab2\u0acd\u0ab2\u0acb \u0aa6\u0abf\u0ab5\u0ab8"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q62007448"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 Gujarati film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1029548"}, "Title": {"type": "literal", "value": "Chak De! India"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3482121"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6123531"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5102359|http://www.wikidata.org/entity/Q4750943|http://www.wikidata.org/entity/Q4739795|http://www.wikidata.org/entity/Q2917376|http://www.wikidata.org/entity/Q1018699|http://www.wikidata.org/entity/Q9535|http://www.wikidata.org/entity/Q17198387|http://www.wikidata.org/entity/Q9154912|http://www.wikidata.org/entity/Q7937536|http://www.wikidata.org/entity/Q7924596|http://www.wikidata.org/entity/Q7683966|http://www.wikidata.org/entity/Q7496769|http://www.wikidata.org/entity/Q7445859|http://www.wikidata.org/entity/Q7416320|http://www.wikidata.org/entity/Q7399061|http://www.wikidata.org/entity/Q6165311"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q1339864|http://www.wikidata.org/entity/Q1150666|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q93196"}, "Duration": {"type": "literal", "value": "152"}, "Description": {"type": "literal", "value": "2007 Hindi-language Indian sports drama film directed by Shimit Amin"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1696916"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6682932"}, "Title": {"type": "literal", "value": "Los Marziano"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5673824"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26156425|http://www.wikidata.org/entity/Q6457187|http://www.wikidata.org/entity/Q6109125|http://www.wikidata.org/entity/Q5996654|http://www.wikidata.org/entity/Q5661917|http://www.wikidata.org/entity/Q4801782|http://www.wikidata.org/entity/Q3306307|http://www.wikidata.org/entity/Q3277882|http://www.wikidata.org/entity/Q2272014"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "2010 film by Ana Katz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19824742"}, "Title": {"type": "literal", "value": "\u0915\u092a\u0942\u0930 \u090f\u0923\u094d\u0921 \u0938\u0928\u094d\u0938"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7487091"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3483111"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Shakun Batra"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1207592"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2902182"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3032767"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3471319|http://www.wikidata.org/entity/Q3386401|http://www.wikidata.org/entity/Q3350789|http://www.wikidata.org/entity/Q3286446|http://www.wikidata.org/entity/Q3190744|http://www.wikidata.org/entity/Q3189498|http://www.wikidata.org/entity/Q3189442|http://www.wikidata.org/entity/Q3047356|http://www.wikidata.org/entity/Q3013205|http://www.wikidata.org/entity/Q2874727|http://www.wikidata.org/entity/Q2869522|http://www.wikidata.org/entity/Q2865970|http://www.wikidata.org/entity/Q2856989|http://www.wikidata.org/entity/Q1713457|http://www.wikidata.org/entity/Q447709|http://www.wikidata.org/entity/Q188441"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2007 film by Djamel Bensalah"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q33284310"}, "Title": {"type": "literal", "value": "Movie Lovers"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q33281968"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q33281968"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q33283704|http://www.wikidata.org/entity/Q28528756"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 short film directed by Justin Burquist"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7050726"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1260345"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12412075"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film directed by Dror Shaul"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5672624"}, "Title": {"type": "literal", "value": "Amigos de Jes\u00fas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5699176"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Antonio Mu\u00f1oz de Mesa"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24451142"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24451145"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24451145|http://www.wikidata.org/entity/Q23008344"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28132648|http://www.wikidata.org/entity/Q16957126|http://www.wikidata.org/entity/Q12045139|http://www.wikidata.org/entity/Q12042686|http://www.wikidata.org/entity/Q11878902|http://www.wikidata.org/entity/Q10861544|http://www.wikidata.org/entity/Q8080321|http://www.wikidata.org/entity/Q4127206|http://www.wikidata.org/entity/Q3566452|http://www.wikidata.org/entity/Q3506639|http://www.wikidata.org/entity/Q3490854|http://www.wikidata.org/entity/Q3373190|http://www.wikidata.org/entity/Q1954437|http://www.wikidata.org/entity/Q1930601|http://www.wikidata.org/entity/Q525497|http://www.wikidata.org/entity/Q299394"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Marta Ferencov\u00e1"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42327749"}, "Title": {"type": "literal", "value": "Kein Herz f\u00fcr Inder"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27929944"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q59348643"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Viviane Andereggen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15953020"}, "Title": {"type": "literal", "value": "Kule kidz gr\u00e5ter ikke"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22344527"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 Norwegian drama film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q696163"}, "Title": {"type": "literal", "value": "Made Men"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1871869"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1074029|http://www.wikidata.org/entity/Q622651"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2308892|http://www.wikidata.org/entity/Q1320615|http://www.wikidata.org/entity/Q1126809|http://www.wikidata.org/entity/Q587641|http://www.wikidata.org/entity/Q549961|http://www.wikidata.org/entity/Q268271|http://www.wikidata.org/entity/Q204395|http://www.wikidata.org/entity/Q107933|http://www.wikidata.org/entity/Q41233"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "1999 film by Louis Morneau"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7715362"}, "Title": {"type": "literal", "value": "The Baker"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5522893"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5522893"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q342533"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Gareth Lewis"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q604889"}, "Title": {"type": "literal", "value": "Bachelorette"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13563071"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13563071"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3723465|http://www.wikidata.org/entity/Q2558129|http://www.wikidata.org/entity/Q2115130|http://www.wikidata.org/entity/Q2040329|http://www.wikidata.org/entity/Q1713263|http://www.wikidata.org/entity/Q921470|http://www.wikidata.org/entity/Q560516|http://www.wikidata.org/entity/Q485901|http://www.wikidata.org/entity/Q442897|http://www.wikidata.org/entity/Q336824|http://www.wikidata.org/entity/Q236578|http://www.wikidata.org/entity/Q228638|http://www.wikidata.org/entity/Q201842|http://www.wikidata.org/entity/Q76478"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q860626"}, "Duration": {"type": "literal", "value": "100|87"}, "Description": {"type": "literal", "value": "2012 film by Leslye Headland"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3098606"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18165705"}, "Title": {"type": "literal", "value": "Kill Me Three Times"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6438600"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q238464|http://www.wikidata.org/entity/Q234516|http://www.wikidata.org/entity/Q230903|http://www.wikidata.org/entity/Q7636430|http://www.wikidata.org/entity/Q1877051|http://www.wikidata.org/entity/Q932490|http://www.wikidata.org/entity/Q363659"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q2421031"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2014 film by Kriv Stenders"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5765406"}, "Title": {"type": "literal", "value": "\u0939\u093f\u092e\u094d\u092e\u0924\u0935\u093e\u0932\u093e"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3469329"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3469329"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3595441|http://www.wikidata.org/entity/Q3595198|http://www.wikidata.org/entity/Q3123705|http://www.wikidata.org/entity/Q3089275|http://www.wikidata.org/entity/Q151798|http://www.wikidata.org/entity/Q146929"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2678111|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "150"}, "Description": {"type": "literal", "value": "2013 film by Sajid Khan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q372631"}, "Title": {"type": "literal", "value": "\u7d14\u55ab\u8336\u78ef\u8fba"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1279855"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1347933|http://www.wikidata.org/entity/Q1154140|http://www.wikidata.org/entity/Q850958|http://www.wikidata.org/entity/Q271886"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Keisuke Yoshida"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17426169"}, "Title": {"type": "literal", "value": "The Hooligan Factory"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7027598"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6163057"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1339864|http://www.wikidata.org/entity/Q622548|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film directed by Nick Nevern"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3212207"}, "Title": {"type": "literal", "value": "La Reine des pommes"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130092"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3037215|http://www.wikidata.org/entity/Q130092"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23309170|http://www.wikidata.org/entity/Q16534621|http://www.wikidata.org/entity/Q15974180|http://www.wikidata.org/entity/Q3554548|http://www.wikidata.org/entity/Q3479221|http://www.wikidata.org/entity/Q3379286|http://www.wikidata.org/entity/Q3106385|http://www.wikidata.org/entity/Q1807890|http://www.wikidata.org/entity/Q1351652|http://www.wikidata.org/entity/Q722352|http://www.wikidata.org/entity/Q675471|http://www.wikidata.org/entity/Q130092"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Val\u00e9rie Donzelli"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10547354"}, "Title": {"type": "literal", "value": "Kommissarie Sp\u00e4ck"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5767882"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5899407"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q512721|http://www.wikidata.org/entity/Q5974094|http://www.wikidata.org/entity/Q5795483|http://www.wikidata.org/entity/Q5653804|http://www.wikidata.org/entity/Q4949043|http://www.wikidata.org/entity/Q4569429|http://www.wikidata.org/entity/Q4567447|http://www.wikidata.org/entity/Q4348368|http://www.wikidata.org/entity/Q3323998|http://www.wikidata.org/entity/Q1317100|http://www.wikidata.org/entity/Q582603"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q622548|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Fredde Granberg"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1687806"}, "Title": {"type": "literal", "value": "Jerry Cotton"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1148737|http://www.wikidata.org/entity/Q1001184"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q237152|http://www.wikidata.org/entity/Q77991|http://www.wikidata.org/entity/Q76149|http://www.wikidata.org/entity/Q74143|http://www.wikidata.org/entity/Q69108|http://www.wikidata.org/entity/Q64008|http://www.wikidata.org/entity/Q58603|http://www.wikidata.org/entity/Q45338"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q622548|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2010 film by Cyrill Boss"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1462822"}, "Title": {"type": "literal", "value": "Nick and Norah's Infinite Playlist"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3376892"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3259437"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q350811|http://www.wikidata.org/entity/Q316756|http://www.wikidata.org/entity/Q314640|http://www.wikidata.org/entity/Q312705|http://www.wikidata.org/entity/Q309555|http://www.wikidata.org/entity/Q302930|http://www.wikidata.org/entity/Q241867|http://www.wikidata.org/entity/Q231751|http://www.wikidata.org/entity/Q223443|http://www.wikidata.org/entity/Q14536|http://www.wikidata.org/entity/Q1334725|http://www.wikidata.org/entity/Q983230|http://www.wikidata.org/entity/Q943589|http://www.wikidata.org/entity/Q454494|http://www.wikidata.org/entity/Q7383107|http://www.wikidata.org/entity/Q3574528|http://www.wikidata.org/entity/Q3259437|http://www.wikidata.org/entity/Q3181186"}, "Published": {"type": "literal", "value": "2008|2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q860626"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2008 film by Peter Sollett"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5368270"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55616601"}, "Title": {"type": "literal", "value": "Late Night"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1261154"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q539917"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26921822|http://www.wikidata.org/entity/Q16241504|http://www.wikidata.org/entity/Q2139900|http://www.wikidata.org/entity/Q629696|http://www.wikidata.org/entity/Q539917|http://www.wikidata.org/entity/Q438065|http://www.wikidata.org/entity/Q368913|http://www.wikidata.org/entity/Q314603|http://www.wikidata.org/entity/Q311271|http://www.wikidata.org/entity/Q231203|http://www.wikidata.org/entity/Q168724"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film by Nisha Ganatra"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5448895|http://www.wikidata.org/entity/Q17295709|http://www.wikidata.org/entity/Q61864271"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1644593"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4023328"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4023328"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5752628|http://www.wikidata.org/entity/Q1645932|http://www.wikidata.org/entity/Q1138316"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3072049|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2003 film by Y\u016bdai Yamaguchi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60846397"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3215940"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 French comedy drama film directed by Ladislas Chollat"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18788491"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1582781"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1582781"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1042876"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Naoko Ogigami"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q650808"}, "Title": {"type": "literal", "value": "21 and Over"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3081957|http://www.wikidata.org/entity/Q7436898"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3081957"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q236086|http://www.wikidata.org/entity/Q438540|http://www.wikidata.org/entity/Q269137|http://www.wikidata.org/entity/Q267330|http://www.wikidata.org/entity/Q13560473|http://www.wikidata.org/entity/Q6273549|http://www.wikidata.org/entity/Q2046436|http://www.wikidata.org/entity/Q555559"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2013 film by Jon Lucas, Scott Moore"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7933978|http://www.wikidata.org/entity/Q3285496"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q41449782"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22279032"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22279032"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6167686"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Midhun Manuel Thomas"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q40219954"}, "Title": {"type": "literal", "value": "Verpiss dich, Schneewittchen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15804185"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q77760"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by C\u00fcneyt Kaya"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q564960"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29960474"}, "Title": {"type": "literal", "value": "Salur Kazan: Zoraki Kahraman"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6068775"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6097730|http://www.wikidata.org/entity/Q6086507|http://www.wikidata.org/entity/Q6082302"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Burak Aksak"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3638348"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29516666"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3827828|http://www.wikidata.org/entity/Q3764111|http://www.wikidata.org/entity/Q1121806"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "2008 film by Michele Coppini"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q934763"}, "Title": {"type": "literal", "value": "Recep \u0130vedik 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7813033"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q388027"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q388027"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "2009 film by Togan G\u00f6kbakar"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6043913"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1654891"}, "Title": {"type": "literal", "value": "Waking Up in Reno"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6276394|http://www.wikidata.org/entity/Q3810017"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q909704"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5089830|http://www.wikidata.org/entity/Q2978917|http://www.wikidata.org/entity/Q909704|http://www.wikidata.org/entity/Q327217|http://www.wikidata.org/entity/Q212545|http://www.wikidata.org/entity/Q202735|http://www.wikidata.org/entity/Q164328|http://www.wikidata.org/entity/Q80046|http://www.wikidata.org/entity/Q49004|http://www.wikidata.org/entity/Q39666"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q628165"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2002 film by Jordan Brady"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q465449"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3738714"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3678160"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3678160"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3938515|http://www.wikidata.org/entity/Q3762248|http://www.wikidata.org/entity/Q3678160|http://www.wikidata.org/entity/Q3610432|http://www.wikidata.org/entity/Q1116895|http://www.wikidata.org/entity/Q1035295|http://www.wikidata.org/entity/Q264120"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2012 film by Ciro Ceruti"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29455469"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2825052"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12720038"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Adrian Sitaru"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5645457"}, "Title": {"type": "literal", "value": "Hamlet A.D.D."}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4934855|http://www.wikidata.org/entity/Q4758679"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4758679"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7413148|http://www.wikidata.org/entity/Q6766784|http://www.wikidata.org/entity/Q5239101|http://www.wikidata.org/entity/Q4499081|http://www.wikidata.org/entity/Q3294184|http://www.wikidata.org/entity/Q3116296|http://www.wikidata.org/entity/Q2793721|http://www.wikidata.org/entity/Q2633253|http://www.wikidata.org/entity/Q2594562|http://www.wikidata.org/entity/Q973475|http://www.wikidata.org/entity/Q232917|http://www.wikidata.org/entity/Q55449"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Bobby Ciraldo, Andrew Swant"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15691475"}, "Title": {"type": "literal", "value": "Un attimo sospesi"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3900890"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2008 film by Peter Marcias"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q616385"}, "Title": {"type": "literal", "value": "The Actors"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q734207"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q734207"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7518602|http://www.wikidata.org/entity/Q6832667|http://www.wikidata.org/entity/Q816568|http://www.wikidata.org/entity/Q381685|http://www.wikidata.org/entity/Q229241|http://www.wikidata.org/entity/Q228789|http://www.wikidata.org/entity/Q203545|http://www.wikidata.org/entity/Q174315|http://www.wikidata.org/entity/Q123351"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2003 film by Conor McPherson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q867294"}, "Title": {"type": "literal", "value": "Scary Movie 5"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3843845"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q263607|http://www.wikidata.org/entity/Q452794"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2755894|http://www.wikidata.org/entity/Q719310|http://www.wikidata.org/entity/Q618352|http://www.wikidata.org/entity/Q557948|http://www.wikidata.org/entity/Q452794|http://www.wikidata.org/entity/Q448141|http://www.wikidata.org/entity/Q378672|http://www.wikidata.org/entity/Q377424|http://www.wikidata.org/entity/Q337557|http://www.wikidata.org/entity/Q324753|http://www.wikidata.org/entity/Q324726|http://www.wikidata.org/entity/Q312173|http://www.wikidata.org/entity/Q271464|http://www.wikidata.org/entity/Q241660|http://www.wikidata.org/entity/Q239595|http://www.wikidata.org/entity/Q239145|http://www.wikidata.org/entity/Q236472|http://www.wikidata.org/entity/Q233085|http://www.wikidata.org/entity/Q233022|http://www.wikidata.org/entity/Q231744|http://www.wikidata.org/entity/Q229979|http://www.wikidata.org/entity/Q229749|http://www.wikidata.org/entity/Q175305|http://www.wikidata.org/entity/Q165911|http://www.wikidata.org/entity/Q127471|http://www.wikidata.org/entity/Q103939|http://www.wikidata.org/entity/Q79031|http://www.wikidata.org/entity/Q44903|http://www.wikidata.org/entity/Q6096|http://www.wikidata.org/entity/Q19956342|http://www.wikidata.org/entity/Q5387851"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2013 film by Malcolm D. Lee"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q633631|http://www.wikidata.org/entity/Q908662"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30132086"}, "Title": {"type": "literal", "value": "Maria Mafiosi"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q101267"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q101267"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22295349|http://www.wikidata.org/entity/Q11977865|http://www.wikidata.org/entity/Q3992834|http://www.wikidata.org/entity/Q2273737|http://www.wikidata.org/entity/Q1698423|http://www.wikidata.org/entity/Q1044192|http://www.wikidata.org/entity/Q455007|http://www.wikidata.org/entity/Q125894|http://www.wikidata.org/entity/Q106390|http://www.wikidata.org/entity/Q97153|http://www.wikidata.org/entity/Q87676"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Jule Ronstedt"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7379521"}, "Title": {"type": "literal", "value": "Run Ronnie Run"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3541033"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q362332"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1769264|http://www.wikidata.org/entity/Q483907|http://www.wikidata.org/entity/Q164328|http://www.wikidata.org/entity/Q47100"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Troy Miller"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7678491"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56027154"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56027154"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12038578|http://www.wikidata.org/entity/Q12035724|http://www.wikidata.org/entity/Q12035516|http://www.wikidata.org/entity/Q12023617|http://www.wikidata.org/entity/Q12021140|http://www.wikidata.org/entity/Q11240059|http://www.wikidata.org/entity/Q10379775|http://www.wikidata.org/entity/Q10379771|http://www.wikidata.org/entity/Q9368204|http://www.wikidata.org/entity/Q8082902|http://www.wikidata.org/entity/Q8080321|http://www.wikidata.org/entity/Q6438505|http://www.wikidata.org/entity/Q4278011|http://www.wikidata.org/entity/Q3565126|http://www.wikidata.org/entity/Q3490004|http://www.wikidata.org/entity/Q1675647|http://www.wikidata.org/entity/Q730137"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film directed by Patrik Hartl"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42416706"}, "Title": {"type": "literal", "value": "Ummah \u2013 Unter Freunden"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15804185"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by C\u00fcneyt Kaya"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17450844"}, "Title": {"type": "literal", "value": "Limonata"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6093781"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6093781|http://www.wikidata.org/entity/Q6084312"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12809611|http://www.wikidata.org/entity/Q6101399|http://www.wikidata.org/entity/Q6084312|http://www.wikidata.org/entity/Q6073889"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Ali Atay"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16488907"}, "Title": {"type": "literal", "value": "Al\u00f4?!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10324869"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "1998 film directed by Mara Mour\u00e3o"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29963333"}, "Title": {"type": "literal", "value": "Estiu 1993"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q31158071"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q31158071"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23728778|http://www.wikidata.org/entity/Q17036678|http://www.wikidata.org/entity/Q11940610"}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2017 film by Carla Sim\u00f3n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12213315"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12247381|http://www.wikidata.org/entity/Q12179122"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2732233|http://www.wikidata.org/entity/Q353690"}, "Published": {"type": "literal", "value": "1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1998 film by Ahmed Nader Galal, Nader Galal"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25546596"}, "Title": {"type": "literal", "value": "V\u0259kil han\u0131?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16377112"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60852127"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q139735"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Hugo G\u00e9lin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26831002"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17386022"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "68"}, "Description": {"type": "literal", "value": "2016 film by Ian Harris"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18170211"}, "Title": {"type": "literal", "value": "Esperando a M\u00edster Kaplan"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2118367"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11682762|http://www.wikidata.org/entity/Q91337"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by \u00c1lvaro Brechner"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7037936"}, "Title": {"type": "literal", "value": "Nina Frisk"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1809801"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1809801"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3373068|http://www.wikidata.org/entity/Q756765|http://www.wikidata.org/entity/Q527059|http://www.wikidata.org/entity/Q272545|http://www.wikidata.org/entity/Q201685"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Maria Blom"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1103927"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1011297"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23821621|http://www.wikidata.org/entity/Q1011297"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Krisztina Goda"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27990625"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27990623"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27990623"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q536524|http://www.wikidata.org/entity/Q500404"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "film directed by Klim Shipenko"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4504080"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23999906"}, "Title": {"type": "literal", "value": "Ni\u00f1os envueltos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1160223"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27924800|http://www.wikidata.org/entity/Q5699996"}, "Published": {"type": "literal", "value": "1995"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "11"}, "Description": {"type": "literal", "value": "1995 film directed by Daniel Burman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23899238"}, "Title": {"type": "literal", "value": "Demain tout commence"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q139735"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19956191|http://www.wikidata.org/entity/Q3304492|http://www.wikidata.org/entity/Q3163696|http://www.wikidata.org/entity/Q139735|http://www.wikidata.org/entity/Q28121357"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q511848|http://www.wikidata.org/entity/Q357387|http://www.wikidata.org/entity/Q232868|http://www.wikidata.org/entity/Q1232804|http://www.wikidata.org/entity/Q954478|http://www.wikidata.org/entity/Q726074|http://www.wikidata.org/entity/Q2854016|http://www.wikidata.org/entity/Q3119707|http://www.wikidata.org/entity/Q3345725|http://www.wikidata.org/entity/Q3368997|http://www.wikidata.org/entity/Q3446459|http://www.wikidata.org/entity/Q3489539|http://www.wikidata.org/entity/Q7294433|http://www.wikidata.org/entity/Q16665050|http://www.wikidata.org/entity/Q28121357|http://www.wikidata.org/entity/Q2836561|http://www.wikidata.org/entity/Q2853678"}, "Published": {"type": "literal", "value": "2016|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "115|118"}, "Description": {"type": "literal", "value": "2016 film by Hugo G\u00e9lin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q54759834"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2874769"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2874769"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Axelle Laffont"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3409692"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4714852|http://www.wikidata.org/entity/Q3397037"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12908937"}, "Published": {"type": "literal", "value": "1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1998 film by Darko Mitrevski, Aleksandar Popovski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42593756"}, "Title": {"type": "literal", "value": "Daddy Cool"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19629665"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q721337"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Maxime Govare"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20800557"}, "Title": {"type": "literal", "value": "Mutual Friends"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6789494"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20630818|http://www.wikidata.org/entity/Q19958261|http://www.wikidata.org/entity/Q18387943|http://www.wikidata.org/entity/Q3649957|http://www.wikidata.org/entity/Q3554552|http://www.wikidata.org/entity/Q1189407|http://www.wikidata.org/entity/Q935217|http://www.wikidata.org/entity/Q679387"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Matt Watts"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15838346"}, "Title": {"type": "literal", "value": "\u0160\u0165astn\u00e1"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27866144"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27866144"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61043052|http://www.wikidata.org/entity/Q12033752|http://www.wikidata.org/entity/Q11774363|http://www.wikidata.org/entity/Q10823043|http://www.wikidata.org/entity/Q1159229|http://www.wikidata.org/entity/Q546367"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Eva Toulov\u00e1"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q33451765"}, "Title": {"type": "literal", "value": "Magical Mystery oder: Die R\u00fcckkehr des Karl Schmidt"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q692308"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q73909"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20243329|http://www.wikidata.org/entity/Q11918901|http://www.wikidata.org/entity/Q1892651|http://www.wikidata.org/entity/Q1528097|http://www.wikidata.org/entity/Q1067500|http://www.wikidata.org/entity/Q879361|http://www.wikidata.org/entity/Q91504|http://www.wikidata.org/entity/Q69092|http://www.wikidata.org/entity/Q22687458"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "2017 film by Arne Feldhusen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60675637"}, "Title": {"type": "literal", "value": "Eu Sou Mais Eu"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10347309"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19703078|http://www.wikidata.org/entity/Q18708005|http://www.wikidata.org/entity/Q15986735"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2019 film by Pedro Amorim"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3502474"}, "Title": {"type": "literal", "value": "Bobule"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12059167"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12059167|http://www.wikidata.org/entity/Q12050215"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20852640|http://www.wikidata.org/entity/Q12059167|http://www.wikidata.org/entity/Q12049496|http://www.wikidata.org/entity/Q12035359|http://www.wikidata.org/entity/Q12034156|http://www.wikidata.org/entity/Q12023093|http://www.wikidata.org/entity/Q11985792|http://www.wikidata.org/entity/Q11773741|http://www.wikidata.org/entity/Q7820613|http://www.wikidata.org/entity/Q6695529|http://www.wikidata.org/entity/Q5825305|http://www.wikidata.org/entity/Q3858922|http://www.wikidata.org/entity/Q530954|http://www.wikidata.org/entity/Q61043065|http://www.wikidata.org/entity/Q33436049"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2008 film by Tom\u00e1\u0161 Ba\u0159ina"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q547517"}, "Title": {"type": "literal", "value": "The Animal"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q322842"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2376327|http://www.wikidata.org/entity/Q192217"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3308100|http://www.wikidata.org/entity/Q3193969|http://www.wikidata.org/entity/Q2925059|http://www.wikidata.org/entity/Q2244897|http://www.wikidata.org/entity/Q1371229|http://www.wikidata.org/entity/Q982866|http://www.wikidata.org/entity/Q948751|http://www.wikidata.org/entity/Q718135|http://www.wikidata.org/entity/Q316032|http://www.wikidata.org/entity/Q192217|http://www.wikidata.org/entity/Q154421|http://www.wikidata.org/entity/Q132952"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2001 film by Luke Greenfield"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1160868|http://www.wikidata.org/entity/Q1584317"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22137260"}, "Title": {"type": "literal", "value": "Other People"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22338525"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19958195|http://www.wikidata.org/entity/Q16241504|http://www.wikidata.org/entity/Q16147452|http://www.wikidata.org/entity/Q13560481|http://www.wikidata.org/entity/Q8063863|http://www.wikidata.org/entity/Q3291828|http://www.wikidata.org/entity/Q1138674|http://www.wikidata.org/entity/Q352180|http://www.wikidata.org/entity/Q239145"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2016 film by Chris Kelly"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55634129"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3308160"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6443390|http://www.wikidata.org/entity/Q2350460|http://www.wikidata.org/entity/Q212026|http://www.wikidata.org/entity/Q44158"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Michael Dowse"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q580716"}, "Title": {"type": "literal", "value": "Punch-Drunk Love"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25132"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25132"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15665021|http://www.wikidata.org/entity/Q779151|http://www.wikidata.org/entity/Q347395|http://www.wikidata.org/entity/Q230510|http://www.wikidata.org/entity/Q229535|http://www.wikidata.org/entity/Q180560|http://www.wikidata.org/entity/Q132952"}, "Published": {"type": "literal", "value": "2003|2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2002 film by Paul Thomas Anderson"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1160868|http://www.wikidata.org/entity/Q79202"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3410898"}, "Title": {"type": "literal", "value": "Puppe, Icke & der Dicke"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17537044"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17537044"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15638375|http://www.wikidata.org/entity/Q2646866|http://www.wikidata.org/entity/Q1910274|http://www.wikidata.org/entity/Q1594698|http://www.wikidata.org/entity/Q1535172|http://www.wikidata.org/entity/Q1416947|http://www.wikidata.org/entity/Q1085198"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q628165|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2012 film by Felix Stienz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4352968"}, "Title": {"type": "literal", "value": "The Sex and Violence Family Hour"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3128032"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1980"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1980 film by Harvey Frost"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1087225"}, "Title": {"type": "literal", "value": "Taxidermia"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q507813"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q507813|http://www.wikidata.org/entity/Q163190"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1645755|http://www.wikidata.org/entity/Q969122|http://www.wikidata.org/entity/Q86767"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1135802|http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q53094"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2006 film by Gy\u00f6rgy P\u00e1lfi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15729023"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q710314"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q710314"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "2014 film by Fernando Eimbcke"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1326153"}, "Title": {"type": "literal", "value": "Kommand\u00f8r Treholt & Ninjatroppen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3428903"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3428903"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21885936|http://www.wikidata.org/entity/Q17195240|http://www.wikidata.org/entity/Q17098885|http://www.wikidata.org/entity/Q16633119|http://www.wikidata.org/entity/Q12005557|http://www.wikidata.org/entity/Q11975059|http://www.wikidata.org/entity/Q11964980|http://www.wikidata.org/entity/Q7845435|http://www.wikidata.org/entity/Q6728713|http://www.wikidata.org/entity/Q6271813|http://www.wikidata.org/entity/Q4967637|http://www.wikidata.org/entity/Q4571413|http://www.wikidata.org/entity/Q29875"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2010 film by Thomas Cappelen Malling"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12006943"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5967568"}, "Title": {"type": "literal", "value": "La noche que dej\u00f3 de llover"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12382782"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12382782"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2757345|http://www.wikidata.org/entity/Q1224788|http://www.wikidata.org/entity/Q930148|http://www.wikidata.org/entity/Q649887|http://www.wikidata.org/entity/Q63228"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film directed by Alfonso Zarauza"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1211239"}, "Title": {"type": "literal", "value": "\u05d1\u05d9\u05e7\u05d5\u05e8 \u05d4\u05ea\u05d6\u05de\u05d5\u05e8\u05ea|Bikur Ha-Tizmoret|\u0627\u0644\u0644\u0642\u0627\u0621 \u0627\u0644\u0623\u062e\u064a\u0631"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2916255"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2916255"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16129621|http://www.wikidata.org/entity/Q12406576|http://www.wikidata.org/entity/Q12406574|http://www.wikidata.org/entity/Q7061145|http://www.wikidata.org/entity/Q7036809|http://www.wikidata.org/entity/Q7024180|http://www.wikidata.org/entity/Q3515717|http://www.wikidata.org/entity/Q3196024|http://www.wikidata.org/entity/Q3148852|http://www.wikidata.org/entity/Q2901028|http://www.wikidata.org/entity/Q1359402|http://www.wikidata.org/entity/Q554606|http://www.wikidata.org/entity/Q455824"}, "Published": {"type": "literal", "value": "2008|2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2007 film by Eran Kolirin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4000787"}, "Title": {"type": "literal", "value": "Tutti al mare"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3852100"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3852100|http://www.wikidata.org/entity/Q1334704"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3956119|http://www.wikidata.org/entity/Q3939968|http://www.wikidata.org/entity/Q3846163|http://www.wikidata.org/entity/Q3765504|http://www.wikidata.org/entity/Q3750319|http://www.wikidata.org/entity/Q3750318|http://www.wikidata.org/entity/Q3679896|http://www.wikidata.org/entity/Q1334704|http://www.wikidata.org/entity/Q1052746|http://www.wikidata.org/entity/Q1006624|http://www.wikidata.org/entity/Q697188|http://www.wikidata.org/entity/Q555190|http://www.wikidata.org/entity/Q450442|http://www.wikidata.org/entity/Q437455|http://www.wikidata.org/entity/Q435763|http://www.wikidata.org/entity/Q372481|http://www.wikidata.org/entity/Q50896"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2011 film by Matteo Cerami"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q569941"}, "Title": {"type": "literal", "value": "Due Date"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q362824"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q362824"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52447|http://www.wikidata.org/entity/Q26202699|http://www.wikidata.org/entity/Q16935021|http://www.wikidata.org/entity/Q6382703|http://www.wikidata.org/entity/Q3336580|http://www.wikidata.org/entity/Q2820073|http://www.wikidata.org/entity/Q2278533|http://www.wikidata.org/entity/Q434661|http://www.wikidata.org/entity/Q362824|http://www.wikidata.org/entity/Q336400|http://www.wikidata.org/entity/Q310367|http://www.wikidata.org/entity/Q230523|http://www.wikidata.org/entity/Q229112|http://www.wikidata.org/entity/Q171905|http://www.wikidata.org/entity/Q165219|http://www.wikidata.org/entity/Q139325|http://www.wikidata.org/entity/Q103939"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q628165|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q663106"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2010 American comedy road film directed by Todd Phillips"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q126399|http://www.wikidata.org/entity/Q621364"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28667216"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4171916"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4525520"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17351038|http://www.wikidata.org/entity/Q16594250|http://www.wikidata.org/entity/Q4415625|http://www.wikidata.org/entity/Q4172505|http://www.wikidata.org/entity/Q4099923|http://www.wikidata.org/entity/Q1350195|http://www.wikidata.org/entity/Q631058|http://www.wikidata.org/entity/Q466169"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "2017 Russian comedy fantasy film by Dmitry Dyachenko"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191224|http://www.wikidata.org/entity/Q622668|http://www.wikidata.org/entity/Q28179983"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20078138"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6111034"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6165439|http://www.wikidata.org/entity/Q6111034"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Roger Gual"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19850724"}, "Title": {"type": "literal", "value": "Victory's Short"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3313116"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "15"}, "Description": {"type": "literal", "value": "2014 film by Mika'ela Fisher"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18280998"}, "Title": {"type": "literal", "value": "Telefona-me!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10285770"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "15"}, "Description": {"type": "literal", "value": "2000 film by Frederico Corado"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12754352"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5252708"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12957129|http://www.wikidata.org/entity/Q12756079|http://www.wikidata.org/entity/Q12754953|http://www.wikidata.org/entity/Q12752151|http://www.wikidata.org/entity/Q12751628|http://www.wikidata.org/entity/Q12749309|http://www.wikidata.org/entity/Q12748218|http://www.wikidata.org/entity/Q11141512|http://www.wikidata.org/entity/Q2444480|http://www.wikidata.org/entity/Q1749786|http://www.wikidata.org/entity/Q1266719|http://www.wikidata.org/entity/Q1260865|http://www.wikidata.org/entity/Q948201"}, "Published": {"type": "literal", "value": "1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1998 film by Dejan Ze\u010devi\u0107"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55598788"}, "Title": {"type": "literal", "value": "Nos batailles"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20978738"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23926222"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19677216|http://www.wikidata.org/entity/Q3218747|http://www.wikidata.org/entity/Q441272"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Guillaume Senez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4184223"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3136157"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12498974"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7809983|http://www.wikidata.org/entity/Q6410397|http://www.wikidata.org/entity/Q5318090"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Rudy Soedjarwo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1428027"}, "Title": {"type": "literal", "value": "Le Juge"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1400447|http://www.wikidata.org/entity/Q945904"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3697532|http://www.wikidata.org/entity/Q3547802|http://www.wikidata.org/entity/Q2651925|http://www.wikidata.org/entity/Q2093776|http://www.wikidata.org/entity/Q1294547|http://www.wikidata.org/entity/Q696152|http://www.wikidata.org/entity/Q435962|http://www.wikidata.org/entity/Q376261|http://www.wikidata.org/entity/Q375290|http://www.wikidata.org/entity/Q276361"}, "Published": {"type": "literal", "value": "1971"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "1971 film by Jean Girault, Federico Chentrens"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28793040"}, "Title": {"type": "literal", "value": "The Upside"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q706300"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2031292"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q618352|http://www.wikidata.org/entity/Q37459|http://www.wikidata.org/entity/Q23547"}, "Published": {"type": "literal", "value": "2019|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "118"}, "Description": {"type": "literal", "value": "2018 film by Neil Burger"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q369786"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48810933"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20971246"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3707170"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2017 film directed by Alessio Maria Federici"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17514772"}, "Title": {"type": "literal", "value": "\u0c2c\u0c02\u0c26\u0c3f\u0c2a\u0c4b\u0c1f\u0c41"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6893545"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4731165"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Mohan Krishna Indraganti"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4004415"}, "Title": {"type": "literal", "value": "Una storia malata"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3741879"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2195744"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "1999 film by Federico Rizzo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26304735"}, "Title": {"type": "literal", "value": "Zipi y Zape y la isla del capit\u00e1n"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17274824"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by \u00d3skar Santos"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41594791"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6401607"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4805156"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6933443|http://www.wikidata.org/entity/Q3595480|http://www.wikidata.org/entity/Q1395430|http://www.wikidata.org/entity/Q470226|http://www.wikidata.org/entity/Q379604|http://www.wikidata.org/entity/Q233748"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Ashish R Mohan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5657167"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17414104"}, "Title": {"type": "literal", "value": "Hjelp, vi er i filmbransjen!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22338571|http://www.wikidata.org/entity/Q17106851"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7710517|http://www.wikidata.org/entity/Q7077298|http://www.wikidata.org/entity/Q5416504|http://www.wikidata.org/entity/Q4569518|http://www.wikidata.org/entity/Q3655880|http://www.wikidata.org/entity/Q1937154|http://www.wikidata.org/entity/Q17113457|http://www.wikidata.org/entity/Q17111851|http://www.wikidata.org/entity/Q12002889|http://www.wikidata.org/entity/Q11988474|http://www.wikidata.org/entity/Q7710693"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 Norwegian film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12005220"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56244016"}, "Title": {"type": "literal", "value": "Metti una notte"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56244180"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15110818|http://www.wikidata.org/entity/Q3956047|http://www.wikidata.org/entity/Q3290121|http://www.wikidata.org/entity/Q678076|http://www.wikidata.org/entity/Q454010|http://www.wikidata.org/entity/Q291413"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2017 Italian film directed by Cosimo Messeri"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6902788"}, "Title": {"type": "literal", "value": "Monster Mutt"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7812685"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2652491|http://www.wikidata.org/entity/Q1369157|http://www.wikidata.org/entity/Q1190235|http://www.wikidata.org/entity/Q439358"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q761469|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 television film directed by Todd Tucker"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15979736"}, "Title": {"type": "literal", "value": "\ud574\uc801: \ubc14\ub2e4\ub85c \uac04 \uc0b0\uc801"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18815680"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q256932|http://www.wikidata.org/entity/Q11264845|http://www.wikidata.org/entity/Q5909411|http://www.wikidata.org/entity/Q483575"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q319221"}, "Duration": {"type": "literal", "value": "130"}, "Description": {"type": "literal", "value": "2014 South Korean film directed by Lee Seok-hoon"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5467082"}, "Title": {"type": "literal", "value": "For the Love of God"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6212732"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6212732"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Joe Tucker"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10856968"}, "Title": {"type": "literal", "value": "Kr\u00e1sno"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3566452"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15076049|http://www.wikidata.org/entity/Q3566452"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60411061|http://www.wikidata.org/entity/Q15076049|http://www.wikidata.org/entity/Q12042686|http://www.wikidata.org/entity/Q12036810|http://www.wikidata.org/entity/Q12036784|http://www.wikidata.org/entity/Q12024009|http://www.wikidata.org/entity/Q12023435|http://www.wikidata.org/entity/Q12022932|http://www.wikidata.org/entity/Q12022667|http://www.wikidata.org/entity/Q11774379|http://www.wikidata.org/entity/Q11774110|http://www.wikidata.org/entity/Q3566452|http://www.wikidata.org/entity/Q1992770|http://www.wikidata.org/entity/Q1675630|http://www.wikidata.org/entity/Q463683"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Ond\u0159ej Sokol"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16677724"}, "Title": {"type": "literal", "value": "Spike Island"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3298143"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5106208"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17005758|http://www.wikidata.org/entity/Q7026788|http://www.wikidata.org/entity/Q6834504|http://www.wikidata.org/entity/Q5365734|http://www.wikidata.org/entity/Q2535520|http://www.wikidata.org/entity/Q2481824|http://www.wikidata.org/entity/Q2040218|http://www.wikidata.org/entity/Q1906421|http://www.wikidata.org/entity/Q1273669|http://www.wikidata.org/entity/Q444410|http://www.wikidata.org/entity/Q363978|http://www.wikidata.org/entity/Q235132|http://www.wikidata.org/entity/Q229651"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2012 film by Mat Whitecross"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1119322"}, "Title": {"type": "literal", "value": "Exit Through the Gift Shop"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q133600"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19545820|http://www.wikidata.org/entity/Q133600"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3575336|http://www.wikidata.org/entity/Q3506692|http://www.wikidata.org/entity/Q2847120|http://www.wikidata.org/entity/Q1849264|http://www.wikidata.org/entity/Q1671666|http://www.wikidata.org/entity/Q1332698|http://www.wikidata.org/entity/Q582475|http://www.wikidata.org/entity/Q218718|http://www.wikidata.org/entity/Q215017|http://www.wikidata.org/entity/Q169452|http://www.wikidata.org/entity/Q160432|http://www.wikidata.org/entity/Q133600|http://www.wikidata.org/entity/Q41594|http://www.wikidata.org/entity/Q35332|http://www.wikidata.org/entity/Q13909"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q459290|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2010 film directed by Banksy"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21646762"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5651484"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9114254"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Hao Jie"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20646613"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4418570"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4418570"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4506333|http://www.wikidata.org/entity/Q4464055|http://www.wikidata.org/entity/Q4174263|http://www.wikidata.org/entity/Q4080114|http://www.wikidata.org/entity/Q2642325|http://www.wikidata.org/entity/Q1385036|http://www.wikidata.org/entity/Q447069"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Vassily Sigarev"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4793638"}, "Title": {"type": "literal", "value": "Armless"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5636759"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6789484|http://www.wikidata.org/entity/Q3701661|http://www.wikidata.org/entity/Q218211|http://www.wikidata.org/entity/Q114447"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Habib Azar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1018042"}, "Title": {"type": "literal", "value": "Butter"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12810116"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6769109|http://www.wikidata.org/entity/Q1378118|http://www.wikidata.org/entity/Q1198697|http://www.wikidata.org/entity/Q508280|http://www.wikidata.org/entity/Q504390|http://www.wikidata.org/entity/Q453620|http://www.wikidata.org/entity/Q272927|http://www.wikidata.org/entity/Q248179|http://www.wikidata.org/entity/Q200355|http://www.wikidata.org/entity/Q199945|http://www.wikidata.org/entity/Q189992|http://www.wikidata.org/entity/Q172044|http://www.wikidata.org/entity/Q129591"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "2011 film by Jim Field Smith"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1138789"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5166586"}, "Title": {"type": "literal", "value": "Convincing Clooney"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4714098"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q552975|http://www.wikidata.org/entity/Q268039|http://www.wikidata.org/entity/Q109232|http://www.wikidata.org/entity/Q6386241|http://www.wikidata.org/entity/Q1686928|http://www.wikidata.org/entity/Q1190037|http://www.wikidata.org/entity/Q724918|http://www.wikidata.org/entity/Q707410"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Alec Cartio"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14901500"}, "Title": {"type": "literal", "value": "Les Coquillettes"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3490984"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3490984"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15415483|http://www.wikidata.org/entity/Q15407996|http://www.wikidata.org/entity/Q15210586|http://www.wikidata.org/entity/Q3490984|http://www.wikidata.org/entity/Q3292840|http://www.wikidata.org/entity/Q2896517|http://www.wikidata.org/entity/Q1871396|http://www.wikidata.org/entity/Q1661394|http://www.wikidata.org/entity/Q382393"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Sophie Letourneur"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15210611"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2147045"}, "Title": {"type": "literal", "value": "Rewers"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3434587"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q514760"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11817503|http://www.wikidata.org/entity/Q11797805|http://www.wikidata.org/entity/Q11768402|http://www.wikidata.org/entity/Q11767544|http://www.wikidata.org/entity/Q11767535|http://www.wikidata.org/entity/Q11748789|http://www.wikidata.org/entity/Q11727317|http://www.wikidata.org/entity/Q11715518|http://www.wikidata.org/entity/Q11702709|http://www.wikidata.org/entity/Q11685395|http://www.wikidata.org/entity/Q11684593|http://www.wikidata.org/entity/Q9394647|http://www.wikidata.org/entity/Q9381849|http://www.wikidata.org/entity/Q9376919|http://www.wikidata.org/entity/Q9376850|http://www.wikidata.org/entity/Q9282113|http://www.wikidata.org/entity/Q9183213|http://www.wikidata.org/entity/Q9151875|http://www.wikidata.org/entity/Q9140519|http://www.wikidata.org/entity/Q6185448|http://www.wikidata.org/entity/Q4127206|http://www.wikidata.org/entity/Q536465|http://www.wikidata.org/entity/Q390870|http://www.wikidata.org/entity/Q272433|http://www.wikidata.org/entity/Q55371"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2009 Polish drama film directed by Borys Lankosz"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1150832"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6379279"}, "Title": {"type": "literal", "value": "La grande bellezza"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q374678"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q374678|http://www.wikidata.org/entity/Q4003361"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1124850|http://www.wikidata.org/entity/Q1085895|http://www.wikidata.org/entity/Q1044992|http://www.wikidata.org/entity/Q950495|http://www.wikidata.org/entity/Q603089|http://www.wikidata.org/entity/Q556069|http://www.wikidata.org/entity/Q285034|http://www.wikidata.org/entity/Q13460338|http://www.wikidata.org/entity/Q13460329|http://www.wikidata.org/entity/Q6096246|http://www.wikidata.org/entity/Q3972275|http://www.wikidata.org/entity/Q3894242|http://www.wikidata.org/entity/Q3851411|http://www.wikidata.org/entity/Q3851224|http://www.wikidata.org/entity/Q3838188|http://www.wikidata.org/entity/Q3836970|http://www.wikidata.org/entity/Q3791451|http://www.wikidata.org/entity/Q3769510|http://www.wikidata.org/entity/Q3757463|http://www.wikidata.org/entity/Q3702570|http://www.wikidata.org/entity/Q3617591|http://www.wikidata.org/entity/Q3525113|http://www.wikidata.org/entity/Q272409|http://www.wikidata.org/entity/Q205868|http://www.wikidata.org/entity/Q106349|http://www.wikidata.org/entity/Q53046"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "141"}, "Description": {"type": "literal", "value": "2013 film directed by Paolo Sorrentino"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q525894|http://www.wikidata.org/entity/Q1544011|http://www.wikidata.org/entity/Q3304113|http://www.wikidata.org/entity/Q16321327"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25454486"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12243777"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12239588"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Moataz El Touni"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20406308"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12243777"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12239588"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Moataz El Touni"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1551080"}, "Title": {"type": "literal", "value": "Eu Tu Eles"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4759560"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1797422|http://www.wikidata.org/entity/Q1791430"}, "Published": {"type": "literal", "value": "2001|2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2000 film by Andrucha Waddington"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3098674"}, "Title": {"type": "literal", "value": "Gar\u00e7on stupide"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3241813"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3336321|http://www.wikidata.org/entity/Q3241813|http://www.wikidata.org/entity/Q3195970"}, "Published": {"type": "literal", "value": "2006|2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2004 film by Lionel Baier"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23925076"}, "Title": {"type": "literal", "value": "Victoria"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15069938"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20991634|http://www.wikidata.org/entity/Q15069938"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27051011|http://www.wikidata.org/entity/Q24940525|http://www.wikidata.org/entity/Q20991634|http://www.wikidata.org/entity/Q15974043|http://www.wikidata.org/entity/Q3560737|http://www.wikidata.org/entity/Q3559693|http://www.wikidata.org/entity/Q3559589|http://www.wikidata.org/entity/Q3490932|http://www.wikidata.org/entity/Q1339485|http://www.wikidata.org/entity/Q3485203|http://www.wikidata.org/entity/Q3460757|http://www.wikidata.org/entity/Q3386073|http://www.wikidata.org/entity/Q3288369|http://www.wikidata.org/entity/Q3219454|http://www.wikidata.org/entity/Q3218747|http://www.wikidata.org/entity/Q3129270|http://www.wikidata.org/entity/Q3051734|http://www.wikidata.org/entity/Q2872024|http://www.wikidata.org/entity/Q2865232"}, "Published": {"type": "literal", "value": "2017|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2016 film by Justine Triet"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29906232"}, "Title": {"type": "literal", "value": "Sonic the Hedgehog"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15453979"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7146216"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q350589|http://www.wikidata.org/entity/Q40504|http://www.wikidata.org/entity/Q4886423|http://www.wikidata.org/entity/Q748404|http://www.wikidata.org/entity/Q485901|http://www.wikidata.org/entity/Q445125"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q1361932"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Jeff Fowler"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q557387|http://www.wikidata.org/entity/Q921556|http://www.wikidata.org/entity/Q7135302|http://www.wikidata.org/entity/Q11341740|http://www.wikidata.org/entity/Q122741|http://www.wikidata.org/entity/Q159846"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25446290"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18408276"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18408276"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2016 film directed by Ivan Tverdovski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21998619"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19921882"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2533357|http://www.wikidata.org/entity/Q2379440|http://www.wikidata.org/entity/Q2375095|http://www.wikidata.org/entity/Q2200667|http://www.wikidata.org/entity/Q2154387"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 Belgian film directed by Tim Van Aelst"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18170412"}, "Title": {"type": "literal", "value": "Boreg|\u05d1\u05d5\u05e8\u05d2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6157634"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6157634"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3575461|http://www.wikidata.org/entity/Q3036966|http://www.wikidata.org/entity/Q2776777"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2014 film directed by Shira Geffen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30314503"}, "Title": {"type": "literal", "value": "\u00bfQu\u00e9 culpa tiene el ni\u00f1o?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19482689"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1377330"}, "Title": {"type": "literal", "value": "Futurama: Bender's Game"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q388404"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q455743"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q761469"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2008 film by Dwayne Carey-Hill"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434841|http://www.wikidata.org/entity/Q634019|http://www.wikidata.org/entity/Q3325728"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1049558"}, "Title": {"type": "literal", "value": "Minoes"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2482702"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2780257|http://www.wikidata.org/entity/Q2482702|http://www.wikidata.org/entity/Q2370746"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2606559|http://www.wikidata.org/entity/Q2282736|http://www.wikidata.org/entity/Q2255366|http://www.wikidata.org/entity/Q2100206|http://www.wikidata.org/entity/Q2088442|http://www.wikidata.org/entity/Q1989503|http://www.wikidata.org/entity/Q1971627|http://www.wikidata.org/entity/Q1960272|http://www.wikidata.org/entity/Q633177|http://www.wikidata.org/entity/Q354241|http://www.wikidata.org/entity/Q327600|http://www.wikidata.org/entity/Q232384|http://www.wikidata.org/entity/Q82246|http://www.wikidata.org/entity/Q16145244|http://www.wikidata.org/entity/Q3283242"}, "Published": {"type": "literal", "value": "2002|2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2001 Dutch film directed by Vincent Bal"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1889303"}, "Title": {"type": "literal", "value": "Ronal Barbaren"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q37494107|http://www.wikidata.org/entity/Q37494099|http://www.wikidata.org/entity/Q37493592"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2011 Danish stereoscopic computer animation feature film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23900055"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3739588"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Fariborz Kamkari"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2140357"}, "Title": {"type": "literal", "value": "Reine Geschmacksache"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1663184"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q109492"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2007 film by Ingo Rasper"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7750685"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q908962"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5359450|http://www.wikidata.org/entity/Q3549436|http://www.wikidata.org/entity/Q1039595|http://www.wikidata.org/entity/Q873908"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Nobuhiro Yamashita"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15057183"}, "Title": {"type": "literal", "value": "Pinoy Sunday"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9105575"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3264585"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Wi Ding Ho"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26720525"}, "Title": {"type": "literal", "value": "The Idiotmaker's Gravity Tour"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26251356"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Daniel Kremer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q929325"}, "Title": {"type": "literal", "value": "Sleepover"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6211585"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15630234|http://www.wikidata.org/entity/Q3714646|http://www.wikidata.org/entity/Q2419900|http://www.wikidata.org/entity/Q1252523|http://www.wikidata.org/entity/Q983082|http://www.wikidata.org/entity/Q785270|http://www.wikidata.org/entity/Q566037|http://www.wikidata.org/entity/Q442847|http://www.wikidata.org/entity/Q372704|http://www.wikidata.org/entity/Q355361|http://www.wikidata.org/entity/Q355059|http://www.wikidata.org/entity/Q272130|http://www.wikidata.org/entity/Q271059|http://www.wikidata.org/entity/Q239382|http://www.wikidata.org/entity/Q236854|http://www.wikidata.org/entity/Q231635|http://www.wikidata.org/entity/Q228852|http://www.wikidata.org/entity/Q216221|http://www.wikidata.org/entity/Q152555|http://www.wikidata.org/entity/Q29328"}, "Published": {"type": "literal", "value": "2005|2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5442753|http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2004 film by Joe Nussbaum"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4735698"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6836963"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6836963"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6836963|http://www.wikidata.org/entity/Q3890841"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Michelle Chong"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11795829"}, "Title": {"type": "literal", "value": "Od pe\u0142ni do pe\u0142ni"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9359729"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9141922"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q617644"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Tomasz Szafra\u0144ski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2551207"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q971159"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q971159"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4291413"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192881"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Tom Six"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60853534"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028520"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Mohamed Hamidi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20616718"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4808343"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12405898|http://www.wikidata.org/entity/Q12403452|http://www.wikidata.org/entity/Q7066335"}, "Published": {"type": "literal", "value": "1995"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "34"}, "Description": {"type": "literal", "value": "1995 film by Assaf Bernstein"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17415406"}, "Title": {"type": "literal", "value": "ORPS \u2013 The Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17099977"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16899382"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 Norwegian film directed by Atle Knudsen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12814617"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1009685"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Tam\u00e1s Gerencs\u00e9r"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2110480"}, "Title": {"type": "literal", "value": "Safety Not Guaranteed"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5145625"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5261887"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q210547|http://www.wikidata.org/entity/Q178882|http://www.wikidata.org/entity/Q171525|http://www.wikidata.org/entity/Q22815258|http://www.wikidata.org/entity/Q3273787|http://www.wikidata.org/entity/Q983082|http://www.wikidata.org/entity/Q230510"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q2975633"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2012 film by Colin Trevorrow"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2902139"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17450878"}, "Title": {"type": "literal", "value": "Sa\u011f Salim 2: Sil Ba\u015ftan"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q31189612"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Ersoy G\u00fcler"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1232225"}, "Title": {"type": "literal", "value": "La pazienza ha un limite... noi no!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1242166"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q454301"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3937219|http://www.wikidata.org/entity/Q3839271|http://www.wikidata.org/entity/Q1876342|http://www.wikidata.org/entity/Q1041544|http://www.wikidata.org/entity/Q324143|http://www.wikidata.org/entity/Q178307"}, "Published": {"type": "literal", "value": "1974"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "1974 film by Franco Ciferri"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20972531"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3525440"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3525440"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3525440"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Thomas N'Gijol"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55388281"}, "Title": {"type": "literal", "value": "Missing Link"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2964669"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2964669"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q139325|http://www.wikidata.org/entity/Q129591|http://www.wikidata.org/entity/Q57098323|http://www.wikidata.org/entity/Q4748667|http://www.wikidata.org/entity/Q359665|http://www.wikidata.org/entity/Q317251|http://www.wikidata.org/entity/Q309835|http://www.wikidata.org/entity/Q192912|http://www.wikidata.org/entity/Q190162|http://www.wikidata.org/entity/Q168724"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2019 film directed by Chris Butler"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1314323|http://www.wikidata.org/entity/Q16242963"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28726414"}, "Title": {"type": "literal", "value": "Afacerea Est"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12730266"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Igor Cobileanski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q62267996"}, "Title": {"type": "literal", "value": "Lucky"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q32625239"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q32625239"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15894174"}, "Title": {"type": "literal", "value": "Wrong Cops"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q453691"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q453691"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5387705|http://www.wikidata.org/entity/Q5218510|http://www.wikidata.org/entity/Q3591196|http://www.wikidata.org/entity/Q3135658|http://www.wikidata.org/entity/Q1994133|http://www.wikidata.org/entity/Q1285062|http://www.wikidata.org/entity/Q1239533|http://www.wikidata.org/entity/Q953735|http://www.wikidata.org/entity/Q714645|http://www.wikidata.org/entity/Q712647|http://www.wikidata.org/entity/Q530646|http://www.wikidata.org/entity/Q415406|http://www.wikidata.org/entity/Q336824|http://www.wikidata.org/entity/Q242552|http://www.wikidata.org/entity/Q239396|http://www.wikidata.org/entity/Q207969|http://www.wikidata.org/entity/Q186327|http://www.wikidata.org/entity/Q164869"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2013 film by Mr. Oizo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4694889"}, "Title": {"type": "literal", "value": "\u0c05\u0c39 \u0c28\u0c3e \u0c2a\u0c46\u0c33\u0c4d\u0c33\u0c02\u0c1f"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16728026"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7336830|http://www.wikidata.org/entity/Q4731165"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 Telugu film directed by Veerabhadram Chowdary"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15039869"}, "Title": {"type": "literal", "value": "St. Vincent"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19517847"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19517847"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7364157|http://www.wikidata.org/entity/Q4460041|http://www.wikidata.org/entity/Q3952813|http://www.wikidata.org/entity/Q3854103|http://www.wikidata.org/entity/Q3082862|http://www.wikidata.org/entity/Q2558129|http://www.wikidata.org/entity/Q2528786|http://www.wikidata.org/entity/Q1524102|http://www.wikidata.org/entity/Q973783|http://www.wikidata.org/entity/Q933129|http://www.wikidata.org/entity/Q456838|http://www.wikidata.org/entity/Q373895|http://www.wikidata.org/entity/Q296500|http://www.wikidata.org/entity/Q230196|http://www.wikidata.org/entity/Q229048|http://www.wikidata.org/entity/Q138576|http://www.wikidata.org/entity/Q132616|http://www.wikidata.org/entity/Q29250|http://www.wikidata.org/entity/Q19517962|http://www.wikidata.org/entity/Q19019158|http://www.wikidata.org/entity/Q17466570|http://www.wikidata.org/entity/Q16734816|http://www.wikidata.org/entity/Q15501325|http://www.wikidata.org/entity/Q11835140"}, "Published": {"type": "literal", "value": "2014|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2014 film by Theodore Melfi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17335666"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60075921"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3565126"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3565126"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61043065|http://www.wikidata.org/entity/Q14777153|http://www.wikidata.org/entity/Q12048516|http://www.wikidata.org/entity/Q11925857|http://www.wikidata.org/entity/Q5241524|http://www.wikidata.org/entity/Q4734268|http://www.wikidata.org/entity/Q3858922"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film project directed by Ji\u0159i M\u00e1dl"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18922803"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19939057|http://www.wikidata.org/entity/Q5262121"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19939057"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18574945|http://www.wikidata.org/entity/Q16259986|http://www.wikidata.org/entity/Q11573175|http://www.wikidata.org/entity/Q9343509|http://www.wikidata.org/entity/Q9319793|http://www.wikidata.org/entity/Q9293347|http://www.wikidata.org/entity/Q9211893|http://www.wikidata.org/entity/Q8997927|http://www.wikidata.org/entity/Q8980263|http://www.wikidata.org/entity/Q8973541|http://www.wikidata.org/entity/Q7532206|http://www.wikidata.org/entity/Q7244051|http://www.wikidata.org/entity/Q6788483|http://www.wikidata.org/entity/Q6125633|http://www.wikidata.org/entity/Q3270144|http://www.wikidata.org/entity/Q903237|http://www.wikidata.org/entity/Q738936|http://www.wikidata.org/entity/Q717129|http://www.wikidata.org/entity/Q700277|http://www.wikidata.org/entity/Q699866|http://www.wikidata.org/entity/Q698533|http://www.wikidata.org/entity/Q455691|http://www.wikidata.org/entity/Q454881"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Derek Kwok, Henri Wong"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1010104"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7844679"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7844679"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16198893|http://www.wikidata.org/entity/Q7994331|http://www.wikidata.org/entity/Q7920464|http://www.wikidata.org/entity/Q7683304|http://www.wikidata.org/entity/Q7282980|http://www.wikidata.org/entity/Q5269357|http://www.wikidata.org/entity/Q4724516|http://www.wikidata.org/entity/Q3765029|http://www.wikidata.org/entity/Q3536811|http://www.wikidata.org/entity/Q3521977|http://www.wikidata.org/entity/Q2087610|http://www.wikidata.org/entity/Q1322453|http://www.wikidata.org/entity/Q330970|http://www.wikidata.org/entity/Q21067195|http://www.wikidata.org/entity/Q17495881|http://www.wikidata.org/entity/Q16314846"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Trivikram Srinivas"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15632949"}, "Title": {"type": "literal", "value": "The Grinch"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24951590|http://www.wikidata.org/entity/Q354010"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q298685"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 animated film by Yarrow Cheney and Scott Mosier"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383|http://www.wikidata.org/entity/Q1189512"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12187704"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12218751"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10948923"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 film by Sherif Mandour"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15623092"}, "Title": {"type": "literal", "value": "Nicht mein Tag"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2078661"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2078661|http://www.wikidata.org/entity/Q2336552"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q58603|http://www.wikidata.org/entity/Q57391|http://www.wikidata.org/entity/Q24278987|http://www.wikidata.org/entity/Q23060305|http://www.wikidata.org/entity/Q17353105|http://www.wikidata.org/entity/Q2422213|http://www.wikidata.org/entity/Q1905418|http://www.wikidata.org/entity/Q1739671|http://www.wikidata.org/entity/Q1646934|http://www.wikidata.org/entity/Q1302143|http://www.wikidata.org/entity/Q1082059|http://www.wikidata.org/entity/Q816586|http://www.wikidata.org/entity/Q111498|http://www.wikidata.org/entity/Q108942|http://www.wikidata.org/entity/Q105617|http://www.wikidata.org/entity/Q95248|http://www.wikidata.org/entity/Q90041|http://www.wikidata.org/entity/Q63033"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "2014 film by Peter Thorwarth"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18228443"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8932472"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8932472"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Chen Jianbin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15297593"}, "Title": {"type": "literal", "value": "45 Minutes to Ramallah"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1679707"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28973644"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6116639|http://www.wikidata.org/entity/Q3193213|http://www.wikidata.org/entity/Q1972418|http://www.wikidata.org/entity/Q87930"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2013 film by Ali Samadi Ahadi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61642158"}, "Title": {"type": "literal", "value": "Tel Aviv on Fire"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3470752"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3470752"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17556244|http://www.wikidata.org/entity/Q2916467|http://www.wikidata.org/entity/Q2907443|http://www.wikidata.org/entity/Q2842786|http://www.wikidata.org/entity/Q979285|http://www.wikidata.org/entity/Q462256"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2018 film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2866005"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15055478"}, "Title": {"type": "literal", "value": "Paddington"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7151786"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q122127"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19960315|http://www.wikidata.org/entity/Q15639406|http://www.wikidata.org/entity/Q7803442|http://www.wikidata.org/entity/Q7518724|http://www.wikidata.org/entity/Q1909222|http://www.wikidata.org/entity/Q732661|http://www.wikidata.org/entity/Q342617|http://www.wikidata.org/entity/Q317251|http://www.wikidata.org/entity/Q234798|http://www.wikidata.org/entity/Q233563|http://www.wikidata.org/entity/Q228747|http://www.wikidata.org/entity/Q203545|http://www.wikidata.org/entity/Q185079|http://www.wikidata.org/entity/Q155775|http://www.wikidata.org/entity/Q122127|http://www.wikidata.org/entity/Q37459"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q699|http://www.wikidata.org/entity/Q1361932"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2014 comedy film directed by Paul King"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2415769|http://www.wikidata.org/entity/Q2450848"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2028280"}, "Title": {"type": "literal", "value": "\u0412\u0441\u0435 \u0443\u043c\u0440\u0443\u0442, \u0430 \u044f \u043e\u0441\u0442\u0430\u043d\u0443\u0441\u044c"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q468621"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4222765"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16271982|http://www.wikidata.org/entity/Q4527285|http://www.wikidata.org/entity/Q4492999|http://www.wikidata.org/entity/Q4484282|http://www.wikidata.org/entity/Q4377440|http://www.wikidata.org/entity/Q4288668|http://www.wikidata.org/entity/Q4268819|http://www.wikidata.org/entity/Q4245097"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2008 film by Valeriya Guy Germanika"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4341103"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q50143448"}, "Title": {"type": "literal", "value": "\u5510\u4eba\u8857\u63a2\u6848 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q703779"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q703779"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22774261|http://www.wikidata.org/entity/Q7967359"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1200678|http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Chen Sicheng"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20897605"}, "Title": {"type": "literal", "value": "\u0540\u0575\u0578\u0582\u057d\u056b\u057d-\u0540\u0561\u0580\u0561\u057e"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21572795"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27885150|http://www.wikidata.org/entity/Q23038181|http://www.wikidata.org/entity/Q22138704|http://www.wikidata.org/entity/Q20511346|http://www.wikidata.org/entity/Q20510404|http://www.wikidata.org/entity/Q6875613"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2015 film by David Babakhanyan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15818203"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1140540"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1140540|http://www.wikidata.org/entity/Q1137458"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Deng Chao"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16325320"}, "Title": {"type": "literal", "value": "Jacky au royaume des filles"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3430005"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3430005"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3292384|http://www.wikidata.org/entity/Q3086913|http://www.wikidata.org/entity/Q2852965|http://www.wikidata.org/entity/Q1807890|http://www.wikidata.org/entity/Q1672665|http://www.wikidata.org/entity/Q1210511|http://www.wikidata.org/entity/Q886513|http://www.wikidata.org/entity/Q485419|http://www.wikidata.org/entity/Q449240|http://www.wikidata.org/entity/Q440995|http://www.wikidata.org/entity/Q440609|http://www.wikidata.org/entity/Q276005|http://www.wikidata.org/entity/Q241043|http://www.wikidata.org/entity/Q230710|http://www.wikidata.org/entity/Q28556|http://www.wikidata.org/entity/Q16534621|http://www.wikidata.org/entity/Q15069815|http://www.wikidata.org/entity/Q3568783|http://www.wikidata.org/entity/Q3559693|http://www.wikidata.org/entity/Q3430005|http://www.wikidata.org/entity/Q3358488|http://www.wikidata.org/entity/Q3340587"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2014 film directed by Riad Sattouf"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2628332"}, "Title": {"type": "literal", "value": "Touch of Pink"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15461094"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15461094"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1066454|http://www.wikidata.org/entity/Q978469|http://www.wikidata.org/entity/Q724227|http://www.wikidata.org/entity/Q274139|http://www.wikidata.org/entity/Q207506"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Ian Iqbal Rashid"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16987989"}, "Title": {"type": "literal", "value": "Jem and the Holograms"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1702754"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q33605|http://www.wikidata.org/entity/Q10738|http://www.wikidata.org/entity/Q5711332|http://www.wikidata.org/entity/Q4675901|http://www.wikidata.org/entity/Q714133|http://www.wikidata.org/entity/Q572761|http://www.wikidata.org/entity/Q555738|http://www.wikidata.org/entity/Q503706|http://www.wikidata.org/entity/Q335680|http://www.wikidata.org/entity/Q272960|http://www.wikidata.org/entity/Q239195|http://www.wikidata.org/entity/Q231460|http://www.wikidata.org/entity/Q230523|http://www.wikidata.org/entity/Q121507"}, "Published": {"type": "literal", "value": "2015|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q842256"}, "Duration": {"type": "literal", "value": "118"}, "Description": {"type": "literal", "value": "2015 film by Jon M. Chu"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3783594"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q9379797"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11828879"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11828879"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55374"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Przemys\u0142aw Angerman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3522804"}, "Title": {"type": "literal", "value": "The Spectacular Now"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1680997"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5965293|http://www.wikidata.org/entity/Q16886480"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q888178|http://www.wikidata.org/entity/Q589836|http://www.wikidata.org/entity/Q519784|http://www.wikidata.org/entity/Q493227|http://www.wikidata.org/entity/Q359604|http://www.wikidata.org/entity/Q267330|http://www.wikidata.org/entity/Q232902|http://www.wikidata.org/entity/Q231058|http://www.wikidata.org/entity/Q207873|http://www.wikidata.org/entity/Q29328|http://www.wikidata.org/entity/Q18581761|http://www.wikidata.org/entity/Q5526127|http://www.wikidata.org/entity/Q3990695"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q1054574"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2013 film by James Ponsoldt"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3027511"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2833411"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2833411"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3525007|http://www.wikidata.org/entity/Q3484193|http://www.wikidata.org/entity/Q3340339|http://www.wikidata.org/entity/Q3241976|http://www.wikidata.org/entity/Q3169949|http://www.wikidata.org/entity/Q3164751|http://www.wikidata.org/entity/Q3158492|http://www.wikidata.org/entity/Q3082237|http://www.wikidata.org/entity/Q2834533|http://www.wikidata.org/entity/Q2833411"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Alexandre Astier"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61951873"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2576503"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2020"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Will Gluck"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55420238"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q935646"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3286702"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27962117|http://www.wikidata.org/entity/Q3524860|http://www.wikidata.org/entity/Q3321452|http://www.wikidata.org/entity/Q3286702|http://www.wikidata.org/entity/Q3183342|http://www.wikidata.org/entity/Q2865960|http://www.wikidata.org/entity/Q2837284|http://www.wikidata.org/entity/Q32608"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Xavier Gens"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48757158"}, "Title": {"type": "literal", "value": "C'est \u00e7a l'amour"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15974043"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15974043"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q895091"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "film directed by Claire Burger"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11345817"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11413949"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11259198|http://www.wikidata.org/entity/Q10669833|http://www.wikidata.org/entity/Q3548252|http://www.wikidata.org/entity/Q2705964|http://www.wikidata.org/entity/Q875644"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q599558|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 Japanese erotic comedy drama film directed by K\u014dta Yoshida"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43160927"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26234865"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5423258"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Caner \u00d6zyurtlu"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21539948"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30673497"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4907283"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film directed by Rajesh Nair"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16123070"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28716221"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10997199|http://www.wikidata.org/entity/Q981905"}, "Published": {"type": "literal", "value": "1951"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1951 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4447747"}, "Title": {"type": "literal", "value": "Scenes of a Sexual Nature"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5334572"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5881891|http://www.wikidata.org/entity/Q5301604|http://www.wikidata.org/entity/Q817739|http://www.wikidata.org/entity/Q373395|http://www.wikidata.org/entity/Q312712|http://www.wikidata.org/entity/Q296843|http://www.wikidata.org/entity/Q269835|http://www.wikidata.org/entity/Q257293|http://www.wikidata.org/entity/Q254766|http://www.wikidata.org/entity/Q238864|http://www.wikidata.org/entity/Q237904|http://www.wikidata.org/entity/Q208026|http://www.wikidata.org/entity/Q165518|http://www.wikidata.org/entity/Q155775"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Ed Blum"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10452700"}, "Title": {"type": "literal", "value": "Ciao Bella"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5978777"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5891679"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5958592|http://www.wikidata.org/entity/Q5900295|http://www.wikidata.org/entity/Q4962567|http://www.wikidata.org/entity/Q4958072|http://www.wikidata.org/entity/Q4937102|http://www.wikidata.org/entity/Q15633709|http://www.wikidata.org/entity/Q5966500"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Mani Maserrat"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56366701"}, "Title": {"type": "literal", "value": "\u041f\u0440\u0438\u0433\u043e\u0434\u0438 S \u041c\u0438\u043a\u043e\u043b\u0430\u044f"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4173781"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11828896|http://www.wikidata.org/entity/Q2601051|http://www.wikidata.org/entity/Q438402"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "77"}, "Description": {"type": "literal", "value": "2018 film directed by Semyon Gorov"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15216005"}, "Title": {"type": "literal", "value": "Dating Lanzelot"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2020499"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55849622"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2011 film by Oliver Rihs"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15270885"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4502216"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4502216|http://www.wikidata.org/entity/Q2035141"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4494015"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2013 film by Pavel Khudyakov"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4463658"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2894488"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6745634"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q471740"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Leonid Prudovsky"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16323182"}, "Title": {"type": "literal", "value": "Antboy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20670245"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2867634"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1797671|http://www.wikidata.org/entity/Q40523594|http://www.wikidata.org/entity/Q40523393|http://www.wikidata.org/entity/Q37491133|http://www.wikidata.org/entity/Q37491048|http://www.wikidata.org/entity/Q28939734|http://www.wikidata.org/entity/Q18341999|http://www.wikidata.org/entity/Q16948835|http://www.wikidata.org/entity/Q16948833|http://www.wikidata.org/entity/Q12339254|http://www.wikidata.org/entity/Q12325345|http://www.wikidata.org/entity/Q12320295|http://www.wikidata.org/entity/Q12318939|http://www.wikidata.org/entity/Q12305524|http://www.wikidata.org/entity/Q12302308|http://www.wikidata.org/entity/Q11213025|http://www.wikidata.org/entity/Q8727486"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "77"}, "Description": {"type": "literal", "value": "2013 film by Ask Hasselbalch"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q117555"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12308501"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12308264"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12312667"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41236246|http://www.wikidata.org/entity/Q41236212|http://www.wikidata.org/entity/Q12333598|http://www.wikidata.org/entity/Q12325626|http://www.wikidata.org/entity/Q12316483|http://www.wikidata.org/entity/Q12312667|http://www.wikidata.org/entity/Q12301381|http://www.wikidata.org/entity/Q12006703|http://www.wikidata.org/entity/Q5575542|http://www.wikidata.org/entity/Q4938062|http://www.wikidata.org/entity/Q1535885|http://www.wikidata.org/entity/Q323563"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Dennis Holck Petersen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q32067450"}, "Title": {"type": "literal", "value": "Sorry to Bother You"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4944043"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4944043"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q271464|http://www.wikidata.org/entity/Q228692|http://www.wikidata.org/entity/Q192165|http://www.wikidata.org/entity/Q182763|http://www.wikidata.org/entity/Q104061|http://www.wikidata.org/entity/Q28819579|http://www.wikidata.org/entity/Q22957978|http://www.wikidata.org/entity/Q16762370|http://www.wikidata.org/entity/Q13217306|http://www.wikidata.org/entity/Q7089885|http://www.wikidata.org/entity/Q552176|http://www.wikidata.org/entity/Q374273|http://www.wikidata.org/entity/Q374065|http://www.wikidata.org/entity/Q362332|http://www.wikidata.org/entity/Q271500"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q471839"}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "2018 film by Boots Riley"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5120878"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3232908"}, "Title": {"type": "literal", "value": "Les Gamins"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18744856"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3302043"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3196131|http://www.wikidata.org/entity/Q3168853|http://www.wikidata.org/entity/Q2861469|http://www.wikidata.org/entity/Q2830767|http://www.wikidata.org/entity/Q2390803|http://www.wikidata.org/entity/Q462376|http://www.wikidata.org/entity/Q452106|http://www.wikidata.org/entity/Q448021|http://www.wikidata.org/entity/Q440335|http://www.wikidata.org/entity/Q16678081|http://www.wikidata.org/entity/Q3525573|http://www.wikidata.org/entity/Q3340143|http://www.wikidata.org/entity/Q3340076|http://www.wikidata.org/entity/Q3302043|http://www.wikidata.org/entity/Q327549|http://www.wikidata.org/entity/Q262822|http://www.wikidata.org/entity/Q182665|http://www.wikidata.org/entity/Q171530"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2013 film by Anthony Marciano"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3841084"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2101169"}, "Title": {"type": "literal", "value": "Poldis Engel"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2435592"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1085501"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "10"}, "Description": {"type": "literal", "value": "2006 film by Tina Traben"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4656339"}, "Title": {"type": "literal", "value": "A Day with the Meatball"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7026507"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q525572"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Nicholaus Goossen"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1584317"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14948559"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19898411"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19898411"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7328681"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by SK Basheed"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5500630"}, "Title": {"type": "literal", "value": "Freedom State"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20631221"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20631221"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q459719|http://www.wikidata.org/entity/Q453552"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Cullen Hoback"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27877511"}, "Title": {"type": "literal", "value": "Enredados: La Confusi\u00f3n"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q47492960"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Prabhakar Sharan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18209450"}, "Title": {"type": "literal", "value": "Preggoland"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434244"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7561895"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Jacob Tierney"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27049590"}, "Title": {"type": "literal", "value": "\u0412\u0441\u0451 \u043e \u043c\u0443\u0436\u0447\u0438\u043d\u0430\u0445"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28368075|http://www.wikidata.org/entity/Q4065391"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28368075|http://www.wikidata.org/entity/Q4065391"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3033167"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2016 film by Sarik Andreasyan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4919064"}, "Title": {"type": "literal", "value": "Bitters and Blue Ruin"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7441117"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2421031|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Sean Kelley"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7282755"}, "Title": {"type": "literal", "value": "Raf\u0165\u00e1ci"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12028282"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15042966|http://www.wikidata.org/entity/Q12050215|http://www.wikidata.org/entity/Q12028282"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5825305|http://www.wikidata.org/entity/Q3566396|http://www.wikidata.org/entity/Q3565126|http://www.wikidata.org/entity/Q312695|http://www.wikidata.org/entity/Q60789659|http://www.wikidata.org/entity/Q31931838|http://www.wikidata.org/entity/Q29343451|http://www.wikidata.org/entity/Q18718708|http://www.wikidata.org/entity/Q15074156|http://www.wikidata.org/entity/Q15074155|http://www.wikidata.org/entity/Q12045111|http://www.wikidata.org/entity/Q12044365|http://www.wikidata.org/entity/Q12036102|http://www.wikidata.org/entity/Q3497007|http://www.wikidata.org/entity/Q2064639|http://www.wikidata.org/entity/Q544058|http://www.wikidata.org/entity/Q430017|http://www.wikidata.org/entity/Q12018943|http://www.wikidata.org/entity/Q11926027|http://www.wikidata.org/entity/Q11879923|http://www.wikidata.org/entity/Q11878252|http://www.wikidata.org/entity/Q11230425|http://www.wikidata.org/entity/Q10856191|http://www.wikidata.org/entity/Q10819148|http://www.wikidata.org/entity/Q7922503|http://www.wikidata.org/entity/Q7777909|http://www.wikidata.org/entity/Q6465281"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Karel Jan\u00e1k"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q767788"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3316225"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2370746"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2007 film by Mischa Kamp"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5918754"}, "Title": {"type": "literal", "value": "How to Stop Being a Loser"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18808541"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7519532|http://www.wikidata.org/entity/Q5180845|http://www.wikidata.org/entity/Q4913081|http://www.wikidata.org/entity/Q4681905|http://www.wikidata.org/entity/Q3295485|http://www.wikidata.org/entity/Q460898|http://www.wikidata.org/entity/Q448683|http://www.wikidata.org/entity/Q380856|http://www.wikidata.org/entity/Q239187"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Dominic Burns"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1061749"}, "Title": {"type": "literal", "value": "\u091a\u093e\u0901\u0926\u0928\u0940 \u091a\u094c\u0915 \u091f\u0942 \u091a\u093e\u0907\u0928\u093e"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2332619"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7285862|http://www.wikidata.org/entity/Q4938065|http://www.wikidata.org/entity/Q1391295"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6414804|http://www.wikidata.org/entity/Q4809088|http://www.wikidata.org/entity/Q3595440|http://www.wikidata.org/entity/Q1530432|http://www.wikidata.org/entity/Q1071583|http://www.wikidata.org/entity/Q717527|http://www.wikidata.org/entity/Q379604|http://www.wikidata.org/entity/Q233748|http://www.wikidata.org/entity/Q159178"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3072042|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q319221"}, "Duration": {"type": "literal", "value": "154"}, "Description": {"type": "literal", "value": "2009 film by Nikhil Advani"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60457305"}, "Title": {"type": "literal", "value": "\u00c7akallarla Dans 5"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6064908"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6064908"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19610992|http://www.wikidata.org/entity/Q6082607|http://www.wikidata.org/entity/Q6066945|http://www.wikidata.org/entity/Q3624103"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Murat \u015eeker"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q641362"}, "Title": {"type": "literal", "value": "Monsters University"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5214348"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15069803|http://www.wikidata.org/entity/Q5214348|http://www.wikidata.org/entity/Q4473347"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q1342372|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2013 American animated film directed by Dan Scanlon"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q127552"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22350722"}, "Title": {"type": "literal", "value": "Carrie Pilby"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7648040"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4881743|http://www.wikidata.org/entity/Q1108634|http://www.wikidata.org/entity/Q723370|http://www.wikidata.org/entity/Q491264|http://www.wikidata.org/entity/Q431362|http://www.wikidata.org/entity/Q311143|http://www.wikidata.org/entity/Q296616"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Susan Johnson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28496973"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028883"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q42034059"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Magaly Richard-Serrano"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1825092"}, "Title": {"type": "literal", "value": "Baby on Board"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4964032"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q486103|http://www.wikidata.org/entity/Q378672|http://www.wikidata.org/entity/Q224026|http://www.wikidata.org/entity/Q178010"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2009 television film directed by Brian Herzlinger"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30929637"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18275574"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Halder Gomes"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q401512"}, "Title": {"type": "literal", "value": "Smash Cut"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6513443"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q890204|http://www.wikidata.org/entity/Q779529|http://www.wikidata.org/entity/Q561067|http://www.wikidata.org/entity/Q2709"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q853630|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "2009 film by Lee Demarbre"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2201"}, "Title": {"type": "literal", "value": "Kick-Ass"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2593"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2593|http://www.wikidata.org/entity/Q32661"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q361610|http://www.wikidata.org/entity/Q312712|http://www.wikidata.org/entity/Q22916122|http://www.wikidata.org/entity/Q15695313|http://www.wikidata.org/entity/Q7089885|http://www.wikidata.org/entity/Q5248400|http://www.wikidata.org/entity/Q3418797|http://www.wikidata.org/entity/Q2302888|http://www.wikidata.org/entity/Q1189681|http://www.wikidata.org/entity/Q1132632|http://www.wikidata.org/entity/Q1058562|http://www.wikidata.org/entity/Q785270|http://www.wikidata.org/entity/Q541428|http://www.wikidata.org/entity/Q512818|http://www.wikidata.org/entity/Q472504|http://www.wikidata.org/entity/Q440956|http://www.wikidata.org/entity/Q388557|http://www.wikidata.org/entity/Q233868|http://www.wikidata.org/entity/Q229914|http://www.wikidata.org/entity/Q72867|http://www.wikidata.org/entity/Q45923|http://www.wikidata.org/entity/Q42869|http://www.wikidata.org/entity/Q4509"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1535153|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "117"}, "Description": {"type": "literal", "value": "2010 film by Matthew Vaughn"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28252|http://www.wikidata.org/entity/Q1906017"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17091202"}, "Title": {"type": "literal", "value": "Die Gstettensaga: The Rise of Echsenfriedl"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q90384"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q90384"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20443008|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 Austrian science fiction and fantasy film directed by Johannes Grenzfurthner"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16672466"}, "Title": {"type": "literal", "value": "Relatos salvajes"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5212638"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5212638"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3357012|http://www.wikidata.org/entity/Q1189379|http://www.wikidata.org/entity/Q610750|http://www.wikidata.org/entity/Q26156430|http://www.wikidata.org/entity/Q26156416|http://www.wikidata.org/entity/Q26156303|http://www.wikidata.org/entity/Q26156301|http://www.wikidata.org/entity/Q26156298|http://www.wikidata.org/entity/Q26156123|http://www.wikidata.org/entity/Q19009022|http://www.wikidata.org/entity/Q16629559|http://www.wikidata.org/entity/Q8078416|http://www.wikidata.org/entity/Q7107150|http://www.wikidata.org/entity/Q6457187|http://www.wikidata.org/entity/Q6109125|http://www.wikidata.org/entity/Q6036287|http://www.wikidata.org/entity/Q5796159|http://www.wikidata.org/entity/Q5655823|http://www.wikidata.org/entity/Q3870095|http://www.wikidata.org/entity/Q463860|http://www.wikidata.org/entity/Q285022"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5778924|http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q16950433"}, "Duration": {"type": "literal", "value": "122"}, "Description": {"type": "literal", "value": "2014 anthology film by Dami\u00e1n Szifron"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2102224"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1976500"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2649944|http://www.wikidata.org/entity/Q2103750|http://www.wikidata.org/entity/Q514769|http://www.wikidata.org/entity/Q470843"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Hans Herbots"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16985835"}, "Title": {"type": "literal", "value": "The Inbetweeners 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5212810|http://www.wikidata.org/entity/Q5980564"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5980564|http://www.wikidata.org/entity/Q5212810"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1320512|http://www.wikidata.org/entity/Q591596|http://www.wikidata.org/entity/Q517974|http://www.wikidata.org/entity/Q352575|http://www.wikidata.org/entity/Q14902479"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q1146335"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2014 film directed by Damon Beesley and Iain Morris"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7210134"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q616728"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16429462|http://www.wikidata.org/entity/Q16423890|http://www.wikidata.org/entity/Q3480955|http://www.wikidata.org/entity/Q962283|http://www.wikidata.org/entity/Q739950|http://www.wikidata.org/entity/Q496913|http://www.wikidata.org/entity/Q249946"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Olaf de Fleur"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2336453"}, "Title": {"type": "literal", "value": "Les Amours imaginaires|Heartbeats"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q551861"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q551861"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q382393|http://www.wikidata.org/entity/Q338704|http://www.wikidata.org/entity/Q19543978|http://www.wikidata.org/entity/Q3375576|http://www.wikidata.org/entity/Q3302551|http://www.wikidata.org/entity/Q2851072|http://www.wikidata.org/entity/Q964873|http://www.wikidata.org/entity/Q551861"}, "Published": {"type": "literal", "value": "2011|2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q20442589"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2010 film by Xavier Dolan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10748653"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4159361"}, "Title": {"type": "literal", "value": "Min s\u00f8sters b\u00f8rn"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q952621"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12338513|http://www.wikidata.org/entity/Q12326885"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q38052575|http://www.wikidata.org/entity/Q38052540|http://www.wikidata.org/entity/Q21208039|http://www.wikidata.org/entity/Q12341493|http://www.wikidata.org/entity/Q12337040|http://www.wikidata.org/entity/Q12331627|http://www.wikidata.org/entity/Q12328868|http://www.wikidata.org/entity/Q12328505|http://www.wikidata.org/entity/Q12327192|http://www.wikidata.org/entity/Q12326969|http://www.wikidata.org/entity/Q12324918|http://www.wikidata.org/entity/Q12323948|http://www.wikidata.org/entity/Q12304588|http://www.wikidata.org/entity/Q1967835|http://www.wikidata.org/entity/Q1801272|http://www.wikidata.org/entity/Q443662|http://www.wikidata.org/entity/Q212661"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 film by Tomas Villum Jensen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6877200"}, "Title": {"type": "literal", "value": "Miss Nobody"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2433936"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q299324|http://www.wikidata.org/entity/Q239453|http://www.wikidata.org/entity/Q236250"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Tim Cox"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3226230"}, "Title": {"type": "literal", "value": "Le Raid"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3032767"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3106333|http://www.wikidata.org/entity/Q3032767"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23926410|http://www.wikidata.org/entity/Q15676192|http://www.wikidata.org/entity/Q3460880|http://www.wikidata.org/entity/Q3367400|http://www.wikidata.org/entity/Q3300994|http://www.wikidata.org/entity/Q3300366|http://www.wikidata.org/entity/Q3219419|http://www.wikidata.org/entity/Q3189442|http://www.wikidata.org/entity/Q3101365|http://www.wikidata.org/entity/Q3085933|http://www.wikidata.org/entity/Q2903928|http://www.wikidata.org/entity/Q2874769|http://www.wikidata.org/entity/Q2869522|http://www.wikidata.org/entity/Q2602323|http://www.wikidata.org/entity/Q1713457|http://www.wikidata.org/entity/Q1210548|http://www.wikidata.org/entity/Q728158|http://www.wikidata.org/entity/Q658468|http://www.wikidata.org/entity/Q462147|http://www.wikidata.org/entity/Q456360|http://www.wikidata.org/entity/Q437254|http://www.wikidata.org/entity/Q434287|http://www.wikidata.org/entity/Q391974|http://www.wikidata.org/entity/Q357387"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film directed by Djamel Bensalah"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q913462|http://www.wikidata.org/entity/Q2412906|http://www.wikidata.org/entity/Q1032540"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15044971"}, "Title": {"type": "literal", "value": "\u091c\u0917\u094d\u0917\u093e \u091c\u093e\u0938\u0942\u0938"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2857813"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2857813"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30070267|http://www.wikidata.org/entity/Q29174023|http://www.wikidata.org/entity/Q23712963|http://www.wikidata.org/entity/Q20090576|http://www.wikidata.org/entity/Q7427518|http://www.wikidata.org/entity/Q7425841|http://www.wikidata.org/entity/Q7285877|http://www.wikidata.org/entity/Q1063412|http://www.wikidata.org/entity/Q9550"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Anurag Basu"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3523273"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27959516"}, "Title": {"type": "literal", "value": "Diary of a Wimpy Kid: The Long Haul"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18558"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22350835"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28924936|http://www.wikidata.org/entity/Q23621815|http://www.wikidata.org/entity/Q494393|http://www.wikidata.org/entity/Q199945"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2017 American film by David Bowers"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19875286"}, "Title": {"type": "literal", "value": "The Little Death"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11685650"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11685650"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16617143|http://www.wikidata.org/entity/Q11685650|http://www.wikidata.org/entity/Q8073259|http://www.wikidata.org/entity/Q7687583|http://www.wikidata.org/entity/Q7609590|http://www.wikidata.org/entity/Q7146146|http://www.wikidata.org/entity/Q6451725|http://www.wikidata.org/entity/Q5968695|http://www.wikidata.org/entity/Q4133103|http://www.wikidata.org/entity/Q2033318|http://www.wikidata.org/entity/Q1093867|http://www.wikidata.org/entity/Q457905"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2014 film by Josh Lawson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18420627"}, "Title": {"type": "literal", "value": "Tutto molto bello"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3894444"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2014 film by Paolo Ruffini"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3304113"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18786603"}, "Title": {"type": "literal", "value": "Let's Kill Ward's Wife"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q364822"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q364822"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "2014 film by Scott Foley"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3233045"}, "Title": {"type": "literal", "value": "Les Grandes Personnes"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2850578"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3187997|http://www.wikidata.org/entity/Q615469|http://www.wikidata.org/entity/Q434051"}, "Published": {"type": "literal", "value": "2009|2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2008 film by Anna Novion"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60848749"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19630268"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2018 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11680829"}, "Title": {"type": "literal", "value": "The Story of Luke"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16217462"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16217462"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q918404|http://www.wikidata.org/entity/Q708512|http://www.wikidata.org/entity/Q311093|http://www.wikidata.org/entity/Q272296|http://www.wikidata.org/entity/Q186757|http://www.wikidata.org/entity/Q39974"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2012 film by Alonso Mayo"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16249376"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2940902"}, "Title": {"type": "literal", "value": "Case d\u00e9part"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3241948|http://www.wikidata.org/entity/Q3063963|http://www.wikidata.org/entity/Q3525440"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3063963"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3063963|http://www.wikidata.org/entity/Q3037894|http://www.wikidata.org/entity/Q3018751|http://www.wikidata.org/entity/Q2941947|http://www.wikidata.org/entity/Q2905980|http://www.wikidata.org/entity/Q2636417|http://www.wikidata.org/entity/Q1340950|http://www.wikidata.org/entity/Q511485|http://www.wikidata.org/entity/Q289524|http://www.wikidata.org/entity/Q15069912|http://www.wikidata.org/entity/Q3559843|http://www.wikidata.org/entity/Q3525440|http://www.wikidata.org/entity/Q3501476|http://www.wikidata.org/entity/Q3340568|http://www.wikidata.org/entity/Q3292200|http://www.wikidata.org/entity/Q3227983|http://www.wikidata.org/entity/Q3082317"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2011 film by Lionel Steketee"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5191791"}, "Title": {"type": "literal", "value": "Ctrl Emotion"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11926027"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11926027"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12057735|http://www.wikidata.org/entity/Q12035518|http://www.wikidata.org/entity/Q11926027|http://www.wikidata.org/entity/Q11878252|http://www.wikidata.org/entity/Q5825305|http://www.wikidata.org/entity/Q3565126"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "23"}, "Description": {"type": "literal", "value": "2009 film by Vojt\u011bch Kotek"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30123838"}, "Title": {"type": "literal", "value": "Solan og Ludvig: Herfra til Fl\u00e5klypa"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17107287"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 animated film directed by Rasmus A. Sivertsen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q775207"}, "Title": {"type": "literal", "value": "Thelma, Louise et Chantal"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2896630"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3510133|http://www.wikidata.org/entity/Q2861469|http://www.wikidata.org/entity/Q2604338|http://www.wikidata.org/entity/Q2360373|http://www.wikidata.org/entity/Q1931307|http://www.wikidata.org/entity/Q1775644|http://www.wikidata.org/entity/Q548400|http://www.wikidata.org/entity/Q511833|http://www.wikidata.org/entity/Q511485|http://www.wikidata.org/entity/Q446235|http://www.wikidata.org/entity/Q273292|http://www.wikidata.org/entity/Q212873"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2010 film by Beno\u00eet P\u00e9tr\u00e9"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28121275"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18819941"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20508902|http://www.wikidata.org/entity/Q20508545|http://www.wikidata.org/entity/Q471740"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2014 film by Hrach Keshishyan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3284891"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q462147"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q462147"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3193296|http://www.wikidata.org/entity/Q462147|http://www.wikidata.org/entity/Q328511|http://www.wikidata.org/entity/Q239868"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by H\u00e9l\u00e8ne de Fougerolles"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16955499"}, "Title": {"type": "literal", "value": "The Right Way"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3294198"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3294198"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3193640"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Mark Penney"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q46078989"}, "Title": {"type": "literal", "value": "Sv\u011bt podle Daliborka"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11991022"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q53255911|http://www.wikidata.org/entity/Q11991022"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11991022"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2017 documentary film directed by V\u00edt Klus\u00e1k"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55605752"}, "Title": {"type": "literal", "value": "Booksmart"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q200355"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22958170|http://www.wikidata.org/entity/Q7422381"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q519784|http://www.wikidata.org/entity/Q179041|http://www.wikidata.org/entity/Q14539|http://www.wikidata.org/entity/Q20973709|http://www.wikidata.org/entity/Q17487638|http://www.wikidata.org/entity/Q2175951|http://www.wikidata.org/entity/Q1319744"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2019 film directed by Olivia Wilde"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55612714|http://www.wikidata.org/entity/Q16242963"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27611265"}, "Title": {"type": "literal", "value": "El candidato"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2272014"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 Uruguayan film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24905254"}, "Title": {"type": "literal", "value": "Finding Sofia"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18353257"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18353257"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q355361|http://www.wikidata.org/entity/Q326187"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2016 Argentine and American comedy film directed by Nico Casavecchia"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26737709"}, "Title": {"type": "literal", "value": "Tiszta sz\u00edvvel"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1321044"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1321044"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28736479|http://www.wikidata.org/entity/Q12813716|http://www.wikidata.org/entity/Q901786"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2016 film by Attila Till"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16249005"}, "Title": {"type": "literal", "value": "Buford's Beach Bunnies"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6769271"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1993"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1993 film by Mark Pirro"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15533576"}, "Title": {"type": "literal", "value": "Muita Calma Nessa Hora 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16337452"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9667642"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10281196|http://www.wikidata.org/entity/Q9667642|http://www.wikidata.org/entity/Q6756484|http://www.wikidata.org/entity/Q3321300"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2014 film by Felipe Joffily"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q348275"}, "Title": {"type": "literal", "value": "The TV Set"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1678831"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1678831"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2514422|http://www.wikidata.org/entity/Q2240987|http://www.wikidata.org/entity/Q946980|http://www.wikidata.org/entity/Q722038|http://www.wikidata.org/entity/Q484365|http://www.wikidata.org/entity/Q469914|http://www.wikidata.org/entity/Q463402|http://www.wikidata.org/entity/Q447669|http://www.wikidata.org/entity/Q442309|http://www.wikidata.org/entity/Q436620|http://www.wikidata.org/entity/Q403885|http://www.wikidata.org/entity/Q299297|http://www.wikidata.org/entity/Q295974|http://www.wikidata.org/entity/Q275434|http://www.wikidata.org/entity/Q263737|http://www.wikidata.org/entity/Q242206|http://www.wikidata.org/entity/Q237817|http://www.wikidata.org/entity/Q236189|http://www.wikidata.org/entity/Q232511|http://www.wikidata.org/entity/Q102124|http://www.wikidata.org/entity/Q4066455|http://www.wikidata.org/entity/Q3045844"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2006 film by Jake Kasdan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434841|http://www.wikidata.org/entity/Q1163074"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19602521"}, "Title": {"type": "literal", "value": "Pades\u00e1tka"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11926027"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28804044"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q265560|http://www.wikidata.org/entity/Q56705918|http://www.wikidata.org/entity/Q30363232|http://www.wikidata.org/entity/Q24639765|http://www.wikidata.org/entity/Q18193456|http://www.wikidata.org/entity/Q17200928|http://www.wikidata.org/entity/Q15124129|http://www.wikidata.org/entity/Q12044365|http://www.wikidata.org/entity/Q12043246|http://www.wikidata.org/entity/Q12042691|http://www.wikidata.org/entity/Q12042686|http://www.wikidata.org/entity/Q12036129|http://www.wikidata.org/entity/Q12034388|http://www.wikidata.org/entity/Q12023617|http://www.wikidata.org/entity/Q12022586|http://www.wikidata.org/entity/Q12022294|http://www.wikidata.org/entity/Q11926027|http://www.wikidata.org/entity/Q11899095|http://www.wikidata.org/entity/Q11878252|http://www.wikidata.org/entity/Q10826715|http://www.wikidata.org/entity/Q5825305|http://www.wikidata.org/entity/Q5179943|http://www.wikidata.org/entity/Q3565126|http://www.wikidata.org/entity/Q3501323|http://www.wikidata.org/entity/Q1363652|http://www.wikidata.org/entity/Q711186|http://www.wikidata.org/entity/Q530954"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Vojt\u011bch Kotek"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7776349"}, "Title": {"type": "literal", "value": "The Wrong Ferarri"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q349591"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6112107|http://www.wikidata.org/entity/Q630863|http://www.wikidata.org/entity/Q460561|http://www.wikidata.org/entity/Q103578"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Adam Green"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4154028"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4077105"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4077105"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4061602"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Ruslan Balttser"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3627503"}, "Title": {"type": "literal", "value": "\u092a\u0940\u092a\u0932\u0940 \u0932\u093e\u0907\u0935"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4777914"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4777914"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7282998|http://www.wikidata.org/entity/Q7090232|http://www.wikidata.org/entity/Q6741093|http://www.wikidata.org/entity/Q4661497|http://www.wikidata.org/entity/Q2995800|http://www.wikidata.org/entity/Q469945"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q128758"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Anusha Rizvi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2820005"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21334163"}, "Title": {"type": "literal", "value": "VAN valami furcsa \u00e9s megmagyar\u00e1zhatatlan"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23304074"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23304074"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16521709|http://www.wikidata.org/entity/Q1316186|http://www.wikidata.org/entity/Q1120453"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by G\u00e1bor Reisz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q392686"}, "Title": {"type": "literal", "value": "Max Rules"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7342507"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7342507"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q444312"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2004 kids' action-adventure feature film directed by Robert Burke"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28970855"}, "Title": {"type": "literal", "value": "Half Magic"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q224026"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q224026"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Heather Graham"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23130730"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2471653"}, "Title": {"type": "literal", "value": "The Beloved"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q551772"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q551772"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11985744|http://www.wikidata.org/entity/Q10861544|http://www.wikidata.org/entity/Q3419812|http://www.wikidata.org/entity/Q2064616|http://www.wikidata.org/entity/Q1375823|http://www.wikidata.org/entity/Q972386|http://www.wikidata.org/entity/Q386501|http://www.wikidata.org/entity/Q233742|http://www.wikidata.org/entity/Q106418|http://www.wikidata.org/entity/Q51525|http://www.wikidata.org/entity/Q382393|http://www.wikidata.org/entity/Q283317"}, "Published": {"type": "literal", "value": "2012|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "139"}, "Description": {"type": "literal", "value": "2011 film by Christophe Honor\u00e9"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3567885"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55390756"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16200503"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Harsh Chhaya"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48751477"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q970408"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3559719"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Samuel Benchetrit"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3064580"}, "Title": {"type": "literal", "value": "Fais-moi plaisir !"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q532505"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q532505"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13634875|http://www.wikidata.org/entity/Q3574834|http://www.wikidata.org/entity/Q3165595|http://www.wikidata.org/entity/Q1165205|http://www.wikidata.org/entity/Q532505|http://www.wikidata.org/entity/Q465157|http://www.wikidata.org/entity/Q323112|http://www.wikidata.org/entity/Q267542|http://www.wikidata.org/entity/Q239498"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Emmanuel Mouret"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q46078971"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q46091103"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12771065|http://www.wikidata.org/entity/Q12035516|http://www.wikidata.org/entity/Q12021998|http://www.wikidata.org/entity/Q11985744|http://www.wikidata.org/entity/Q7777909|http://www.wikidata.org/entity/Q6150146|http://www.wikidata.org/entity/Q2069118|http://www.wikidata.org/entity/Q1904628|http://www.wikidata.org/entity/Q1449324|http://www.wikidata.org/entity/Q1159843|http://www.wikidata.org/entity/Q326629"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2017 film by V\u00edt Karas"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19543842"}, "Title": {"type": "literal", "value": "Macadam Stories"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q970408"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q970408"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1306432|http://www.wikidata.org/entity/Q232470|http://www.wikidata.org/entity/Q106365"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2015 film by Samuel Benchetrit"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18414525"}, "Title": {"type": "literal", "value": "Le P\u00e8re No\u00ebl"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15070019"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15070019"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3380605|http://www.wikidata.org/entity/Q3308651|http://www.wikidata.org/entity/Q2851463|http://www.wikidata.org/entity/Q981690|http://www.wikidata.org/entity/Q693534"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "81"}, "Description": {"type": "literal", "value": "2014 film by Alexandre Coffre"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5203134"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12520829"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Tengku Firmansyah"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4315477"}, "Title": {"type": "literal", "value": "\u041d\u0435\u0430\u0434\u0435\u043a\u0432\u0430\u0442\u043d\u044b\u0435 \u043b\u044e\u0434\u0438"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4215049"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4215049"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4333656|http://www.wikidata.org/entity/Q4271506"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2010 film by Roman Karimov"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21526691"}, "Title": {"type": "literal", "value": "Nadide Hayat"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q272718"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5255185"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by \u00c7a\u011fan Irmak"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19631764"}, "Title": {"type": "literal", "value": "Ho ucciso Napoleone"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18202654"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3791451|http://www.wikidata.org/entity/Q3525113|http://www.wikidata.org/entity/Q2708170|http://www.wikidata.org/entity/Q1077542|http://www.wikidata.org/entity/Q1054843|http://www.wikidata.org/entity/Q1006624|http://www.wikidata.org/entity/Q697471|http://www.wikidata.org/entity/Q451279"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2015 film by Giorgia Farina"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4456167"}, "Title": {"type": "literal", "value": "Terri"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4832305"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3702063"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29345494|http://www.wikidata.org/entity/Q19832737|http://www.wikidata.org/entity/Q15837493|http://www.wikidata.org/entity/Q7803640|http://www.wikidata.org/entity/Q2238008|http://www.wikidata.org/entity/Q223110"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Azazel Jacobs"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7168754"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1479227"}, "Title": {"type": "literal", "value": "F\u00e5 meg p\u00e5, for faen!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4372994"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4372994"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17488946|http://www.wikidata.org/entity/Q4015946|http://www.wikidata.org/entity/Q3924588|http://www.wikidata.org/entity/Q3135928"}, "Published": {"type": "literal", "value": "2014|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "75"}, "Description": {"type": "literal", "value": "2011 Norwegian film directed by Jannicke Systad Jacobsen"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3657087"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20972711"}, "Title": {"type": "literal", "value": "Ich will mich nicht k\u00fcnstlich aufregen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22979560"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22979560"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16064476|http://www.wikidata.org/entity/Q5217496|http://www.wikidata.org/entity/Q1645024|http://www.wikidata.org/entity/Q122879"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 German movie by Max Linz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18663900"}, "Title": {"type": "literal", "value": "Si accettano miracoli"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q769800"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q769800"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3955847|http://www.wikidata.org/entity/Q3767179|http://www.wikidata.org/entity/Q3762248|http://www.wikidata.org/entity/Q3737674|http://www.wikidata.org/entity/Q769800|http://www.wikidata.org/entity/Q482746"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "2015 film by Alessandro Siani"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55106022"}, "Title": {"type": "literal", "value": "\uadf9\ud55c\uc9c1\uc5c5"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18328904"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19939351|http://www.wikidata.org/entity/Q18013648|http://www.wikidata.org/entity/Q12618258|http://www.wikidata.org/entity/Q4120056|http://www.wikidata.org/entity/Q485640"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "2019 film by Lee Byeong-heon"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6808769"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1582781"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1582781"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054683|http://www.wikidata.org/entity/Q1042876|http://www.wikidata.org/entity/Q1036275|http://www.wikidata.org/entity/Q873908|http://www.wikidata.org/entity/Q265091"}, "Published": {"type": "literal", "value": "2009|2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Naoko Ogigami"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11921378"}, "Title": {"type": "literal", "value": "Excuses!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3180247"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3180247"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q40831"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Joel Joan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21866873"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q233347"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q233347"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4886423|http://www.wikidata.org/entity/Q4013057|http://www.wikidata.org/entity/Q466051|http://www.wikidata.org/entity/Q431362|http://www.wikidata.org/entity/Q235905|http://www.wikidata.org/entity/Q234207|http://www.wikidata.org/entity/Q233347|http://www.wikidata.org/entity/Q200566"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 American film directed by Clea DuVall"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16493200"}, "Title": {"type": "literal", "value": "Flacas vacas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20018073"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5308326"}, "Title": {"type": "literal", "value": "Drones"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q730582|http://www.wikidata.org/entity/Q456862"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6144533|http://www.wikidata.org/entity/Q943613|http://www.wikidata.org/entity/Q117528"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q761469|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Amber Benson, Adam Busch"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16938167"}, "Title": {"type": "literal", "value": "La vida inesperada"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3183895"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q237058"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Jorge Torregrossa"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60840207"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3429925"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3852837"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2019 film directed by Eros Puglielli"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1508772"}, "Title": {"type": "literal", "value": "It's Kind of a Funny Story"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3453777|http://www.wikidata.org/entity/Q4766862"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3453777"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3260138|http://www.wikidata.org/entity/Q2093638|http://www.wikidata.org/entity/Q972014|http://www.wikidata.org/entity/Q822780|http://www.wikidata.org/entity/Q312337|http://www.wikidata.org/entity/Q303538|http://www.wikidata.org/entity/Q229181|http://www.wikidata.org/entity/Q228755|http://www.wikidata.org/entity/Q228598|http://www.wikidata.org/entity/Q227129|http://www.wikidata.org/entity/Q171687|http://www.wikidata.org/entity/Q139325|http://www.wikidata.org/entity/Q80804|http://www.wikidata.org/entity/Q15695313|http://www.wikidata.org/entity/Q3309607|http://www.wikidata.org/entity/Q3296147"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2010 film by Ryan Fleck, Anna Boden"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q649649|http://www.wikidata.org/entity/Q1607312|http://www.wikidata.org/entity/Q1938797"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16028676"}, "Title": {"type": "literal", "value": "La Marche"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3334684"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3334684"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19545120|http://www.wikidata.org/entity/Q18179055|http://www.wikidata.org/entity/Q18009998|http://www.wikidata.org/entity/Q16637389|http://www.wikidata.org/entity/Q3559829|http://www.wikidata.org/entity/Q3519305|http://www.wikidata.org/entity/Q3385776|http://www.wikidata.org/entity/Q3380527|http://www.wikidata.org/entity/Q3380199|http://www.wikidata.org/entity/Q3334837|http://www.wikidata.org/entity/Q3328896|http://www.wikidata.org/entity/Q3193303|http://www.wikidata.org/entity/Q3042380|http://www.wikidata.org/entity/Q3009038|http://www.wikidata.org/entity/Q2997347|http://www.wikidata.org/entity/Q2960989|http://www.wikidata.org/entity/Q2925088|http://www.wikidata.org/entity/Q2830765|http://www.wikidata.org/entity/Q2362835|http://www.wikidata.org/entity/Q2185587|http://www.wikidata.org/entity/Q1255329|http://www.wikidata.org/entity/Q983020|http://www.wikidata.org/entity/Q964474|http://www.wikidata.org/entity/Q715111|http://www.wikidata.org/entity/Q541721|http://www.wikidata.org/entity/Q462256|http://www.wikidata.org/entity/Q312661"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film directed by Nabil Ben Yadir"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1375196"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19672223"}, "Title": {"type": "literal", "value": "Negociador"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8250879"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12264678|http://www.wikidata.org/entity/Q12260748|http://www.wikidata.org/entity/Q8964749|http://www.wikidata.org/entity/Q6174843|http://www.wikidata.org/entity/Q2687792|http://www.wikidata.org/entity/Q2655070|http://www.wikidata.org/entity/Q349396|http://www.wikidata.org/entity/Q35642|http://www.wikidata.org/entity/Q18406"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Borja Cobeaga"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q47101973"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7813033"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7813033|http://www.wikidata.org/entity/Q388027"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21528383|http://www.wikidata.org/entity/Q388027"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Togan G\u00f6kbakar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3532404"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3299889"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3299889"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3162869|http://www.wikidata.org/entity/Q2965134|http://www.wikidata.org/entity/Q1306432|http://www.wikidata.org/entity/Q177840|http://www.wikidata.org/entity/Q164976|http://www.wikidata.org/entity/Q103756"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film directed by Matthieu Donck"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3343355"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q453691"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q982784"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "44"}, "Description": {"type": "literal", "value": "2001 film by Mr. Oizo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56274435"}, "Title": {"type": "literal", "value": "Dorst"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18225091"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18225091|http://www.wikidata.org/entity/Q2517533"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30024527|http://www.wikidata.org/entity/Q2428097|http://www.wikidata.org/entity/Q2334963|http://www.wikidata.org/entity/Q1925101"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2018 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2457512"}, "Title": {"type": "literal", "value": "The Goods: Live Hard, Sell Hard."}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6984068"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2918839|http://www.wikidata.org/entity/Q2671438|http://www.wikidata.org/entity/Q2278533|http://www.wikidata.org/entity/Q1616538|http://www.wikidata.org/entity/Q1148822|http://www.wikidata.org/entity/Q1141395|http://www.wikidata.org/entity/Q1139526|http://www.wikidata.org/entity/Q956021|http://www.wikidata.org/entity/Q942066|http://www.wikidata.org/entity/Q926912|http://www.wikidata.org/entity/Q611871|http://www.wikidata.org/entity/Q601032|http://www.wikidata.org/entity/Q595479|http://www.wikidata.org/entity/Q452555|http://www.wikidata.org/entity/Q440910|http://www.wikidata.org/entity/Q431356|http://www.wikidata.org/entity/Q353042|http://www.wikidata.org/entity/Q328790|http://www.wikidata.org/entity/Q315083|http://www.wikidata.org/entity/Q315051|http://www.wikidata.org/entity/Q310315|http://www.wikidata.org/entity/Q277895|http://www.wikidata.org/entity/Q272927|http://www.wikidata.org/entity/Q271986|http://www.wikidata.org/entity/Q218503|http://www.wikidata.org/entity/Q164328"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2009 film by Neal Brennan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1148711|http://www.wikidata.org/entity/Q3098606"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1301823"}, "Title": {"type": "literal", "value": "Wer\u2019s glaubt, wird selig"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q96164"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q503907"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2012 film by Marcus H. Rosenm\u00fcller"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q261044"}, "Title": {"type": "literal", "value": "American Pie Presents: Band Camp"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2632767"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q349750"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6548531|http://www.wikidata.org/entity/Q3856089|http://www.wikidata.org/entity/Q3189977|http://www.wikidata.org/entity/Q2714437|http://www.wikidata.org/entity/Q2442842|http://www.wikidata.org/entity/Q2409827|http://www.wikidata.org/entity/Q549366|http://www.wikidata.org/entity/Q549232|http://www.wikidata.org/entity/Q435675|http://www.wikidata.org/entity/Q433121|http://www.wikidata.org/entity/Q362236|http://www.wikidata.org/entity/Q312129|http://www.wikidata.org/entity/Q288680|http://www.wikidata.org/entity/Q273778|http://www.wikidata.org/entity/Q231928|http://www.wikidata.org/entity/Q213856"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2005 film by Steve Rash"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4796943"}, "Title": {"type": "literal", "value": "Art Machine"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5300618"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1706810|http://www.wikidata.org/entity/Q237115|http://www.wikidata.org/entity/Q229036"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Doug Karr"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12124961"}, "Title": {"type": "literal", "value": "I Killed My Lesbian Wife, Hung Her on a Meat Hook, and Now I Have a Three-Picture Deal at Disney"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q483118"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1993"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1993 film by Ben Affleck"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21328804"}, "Title": {"type": "literal", "value": "Im Sommer wohnt er unten"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23304064"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17537123|http://www.wikidata.org/entity/Q15907175|http://www.wikidata.org/entity/Q1533711"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2015 film by Tom Sommerlatte"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27144861"}, "Title": {"type": "literal", "value": "Antboy 3"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20670245"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28868395"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q40011917|http://www.wikidata.org/entity/Q40011876|http://www.wikidata.org/entity/Q38052444|http://www.wikidata.org/entity/Q37491048|http://www.wikidata.org/entity/Q20202411|http://www.wikidata.org/entity/Q18341999|http://www.wikidata.org/entity/Q16948835|http://www.wikidata.org/entity/Q16948833|http://www.wikidata.org/entity/Q12325345|http://www.wikidata.org/entity/Q8727486|http://www.wikidata.org/entity/Q6409031|http://www.wikidata.org/entity/Q5586759|http://www.wikidata.org/entity/Q2347440|http://www.wikidata.org/entity/Q1797671|http://www.wikidata.org/entity/Q256395|http://www.wikidata.org/entity/Q11295301|http://www.wikidata.org/entity/Q40012094"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q319221"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 Danish film by Ask Hasselbalch"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q117555"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2416117"}, "Title": {"type": "literal", "value": "Guy X"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7427324"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q443961|http://www.wikidata.org/entity/Q344973|http://www.wikidata.org/entity/Q314421|http://www.wikidata.org/entity/Q229237"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2005 film by Saul Metzstein"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28860129"}, "Title": {"type": "literal", "value": "Can You Ever Forgive Me?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21032133"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6175265|http://www.wikidata.org/entity/Q1987021"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5289370|http://www.wikidata.org/entity/Q2082056|http://www.wikidata.org/entity/Q1264331|http://www.wikidata.org/entity/Q529478|http://www.wikidata.org/entity/Q380856|http://www.wikidata.org/entity/Q286777|http://www.wikidata.org/entity/Q271554|http://www.wikidata.org/entity/Q234120|http://www.wikidata.org/entity/Q229048"}, "Published": {"type": "literal", "value": "2019|2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q645928"}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "2018 film directed by Marielle Heller"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q953040"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6454446"}, "Title": {"type": "literal", "value": "Off the Black"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1680997"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1680997"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q730074|http://www.wikidata.org/entity/Q310324|http://www.wikidata.org/entity/Q235221|http://www.wikidata.org/entity/Q188018"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2006 film by James Ponsoldt"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42757841"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5053417"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12970124|http://www.wikidata.org/entity/Q5186397|http://www.wikidata.org/entity/Q3543293|http://www.wikidata.org/entity/Q1869913|http://www.wikidata.org/entity/Q145424"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 Filipino comedy drama film directed by Cathy Garcia-Molina"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22116885"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1944468"}, "Title": {"type": "literal", "value": "\u7da0\u8349\u5730|\u7eff\u8349\u5730"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q354554"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q354554"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21012876"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2005 film by Ning Hao"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18602769"}, "Title": {"type": "literal", "value": "Pornopung"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17099329"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Johan Kaos"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15906152"}, "Title": {"type": "literal", "value": "N\u011b\u017en\u00e9 vlny"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11727279"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11727279"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61690691|http://www.wikidata.org/entity/Q61043065|http://www.wikidata.org/entity/Q60411345|http://www.wikidata.org/entity/Q51798599|http://www.wikidata.org/entity/Q20165868|http://www.wikidata.org/entity/Q17312097|http://www.wikidata.org/entity/Q16957126|http://www.wikidata.org/entity/Q15639976|http://www.wikidata.org/entity/Q12056045|http://www.wikidata.org/entity/Q12034182|http://www.wikidata.org/entity/Q12022549|http://www.wikidata.org/entity/Q12021140|http://www.wikidata.org/entity/Q11985642|http://www.wikidata.org/entity/Q11925857|http://www.wikidata.org/entity/Q10857428|http://www.wikidata.org/entity/Q8082902|http://www.wikidata.org/entity/Q7690553|http://www.wikidata.org/entity/Q3506639|http://www.wikidata.org/entity/Q1930399|http://www.wikidata.org/entity/Q525497|http://www.wikidata.org/entity/Q509607"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film directed by Ji\u0159\u00ed Vejd\u011blek"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20762698"}, "Title": {"type": "literal", "value": "Sing"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q598683"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q598683"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2016 American computer-animated jukebox musical comedy-drama film directed by Garth Jennings"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383|http://www.wikidata.org/entity/Q1189512"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56745603"}, "Title": {"type": "literal", "value": "Ditte & Louise"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7028719"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12308738|http://www.wikidata.org/entity/Q6688858"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12308738|http://www.wikidata.org/entity/Q6688858"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Niclas Bendixen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24856052"}, "Title": {"type": "literal", "value": "\ub7ed\ud0a4"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27915062"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 South Korean comedy film by Lee Gae-byok"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q44268586"}, "Title": {"type": "literal", "value": "Daphne & Velma"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7651091"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q336824|http://www.wikidata.org/entity/Q267119|http://www.wikidata.org/entity/Q30634090|http://www.wikidata.org/entity/Q20651401|http://www.wikidata.org/entity/Q17165296|http://www.wikidata.org/entity/Q439358"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1200678|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q1361932"}, "Duration": {"type": "literal", "value": "75"}, "Description": {"type": "literal", "value": "2018 American comedy mystery film directed by Suzi Yoonessi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12062633"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48754449"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3092547"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3092547"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q714765"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by F\u00e9lix Moati"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19757544"}, "Title": {"type": "literal", "value": "Spark"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14645232"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14645232"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q133050|http://www.wikidata.org/entity/Q93187|http://www.wikidata.org/entity/Q16296|http://www.wikidata.org/entity/Q17417475|http://www.wikidata.org/entity/Q163249"}, "Published": {"type": "literal", "value": "2017|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Aaron Woodley"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q797106"}, "Title": {"type": "literal", "value": "BURN-E"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17386294"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1689199|http://www.wikidata.org/entity/Q357627"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "8"}, "Description": {"type": "literal", "value": "2008 animated short film by Angus MacLane"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q127552"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q543163"}, "Title": {"type": "literal", "value": "Surviving Christmas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2507259"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3186038|http://www.wikidata.org/entity/Q3127820|http://www.wikidata.org/entity/Q3020873|http://www.wikidata.org/entity/Q2635912"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q783351|http://www.wikidata.org/entity/Q552889|http://www.wikidata.org/entity/Q531195|http://www.wikidata.org/entity/Q483118|http://www.wikidata.org/entity/Q464320|http://www.wikidata.org/entity/Q372613|http://www.wikidata.org/entity/Q308722|http://www.wikidata.org/entity/Q259825|http://www.wikidata.org/entity/Q247064|http://www.wikidata.org/entity/Q233365|http://www.wikidata.org/entity/Q199929|http://www.wikidata.org/entity/Q7659422|http://www.wikidata.org/entity/Q3195292|http://www.wikidata.org/entity/Q1176588|http://www.wikidata.org/entity/Q188280|http://www.wikidata.org/entity/Q77035"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2004 film by Mike Mitchell"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6654572"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1342121"}, "Title": {"type": "literal", "value": "The Specials"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1138605"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q717015"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23887610|http://www.wikidata.org/entity/Q3181360|http://www.wikidata.org/entity/Q1396278|http://www.wikidata.org/entity/Q717015|http://www.wikidata.org/entity/Q687311|http://www.wikidata.org/entity/Q449520|http://www.wikidata.org/entity/Q431753|http://www.wikidata.org/entity/Q429777|http://www.wikidata.org/entity/Q355133|http://www.wikidata.org/entity/Q311615|http://www.wikidata.org/entity/Q296505|http://www.wikidata.org/entity/Q241841|http://www.wikidata.org/entity/Q238877|http://www.wikidata.org/entity/Q237669|http://www.wikidata.org/entity/Q236946|http://www.wikidata.org/entity/Q236189|http://www.wikidata.org/entity/Q221923"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1535153|http://www.wikidata.org/entity/Q622548|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "2000 American comedy film directed by Craig Mazin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17036671"}, "Title": {"type": "literal", "value": "What We Do in the Shadows"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2388576|http://www.wikidata.org/entity/Q439315"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q439315|http://www.wikidata.org/entity/Q2388576"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1806933|http://www.wikidata.org/entity/Q439315|http://www.wikidata.org/entity/Q17712836|http://www.wikidata.org/entity/Q15261819|http://www.wikidata.org/entity/Q6764684|http://www.wikidata.org/entity/Q6162739|http://www.wikidata.org/entity/Q5314597|http://www.wikidata.org/entity/Q2388576|http://www.wikidata.org/entity/Q56257237|http://www.wikidata.org/entity/Q56257228|http://www.wikidata.org/entity/Q42270998|http://www.wikidata.org/entity/Q28871339|http://www.wikidata.org/entity/Q27921425"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q622548|http://www.wikidata.org/entity/Q459435|http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204|http://www.wikidata.org/entity/Q2137852|http://www.wikidata.org/entity/Q1747837"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2014 film by Taika Waititi, Jemaine Clement"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28808145"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4714847"}, "Title": {"type": "literal", "value": "Der Wixxer"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2437672"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q122048|http://www.wikidata.org/entity/Q102480"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q77027|http://www.wikidata.org/entity/Q74037|http://www.wikidata.org/entity/Q62398|http://www.wikidata.org/entity/Q43763|http://www.wikidata.org/entity/Q11878902|http://www.wikidata.org/entity/Q2437672|http://www.wikidata.org/entity/Q2424639|http://www.wikidata.org/entity/Q1806325|http://www.wikidata.org/entity/Q1522491|http://www.wikidata.org/entity/Q1379168|http://www.wikidata.org/entity/Q1310498|http://www.wikidata.org/entity/Q1038736|http://www.wikidata.org/entity/Q807593|http://www.wikidata.org/entity/Q586772|http://www.wikidata.org/entity/Q518355|http://www.wikidata.org/entity/Q318290|http://www.wikidata.org/entity/Q122048|http://www.wikidata.org/entity/Q108164|http://www.wikidata.org/entity/Q105679|http://www.wikidata.org/entity/Q104670|http://www.wikidata.org/entity/Q102480|http://www.wikidata.org/entity/Q96687|http://www.wikidata.org/entity/Q95757|http://www.wikidata.org/entity/Q89764|http://www.wikidata.org/entity/Q88236"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q622548"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "2004 German comedy film directed by Tobias Baumann"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1402681"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18562378"}, "Title": {"type": "literal", "value": "Break-Up"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18562379"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18562379"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2014 film by Alexander Tuschinski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6745753"}, "Title": {"type": "literal", "value": "Mammalian"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5490451"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "64"}, "Description": {"type": "literal", "value": "2010 film by Frank Wolf"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q386342"}, "Title": {"type": "literal", "value": "Concursante"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1887437"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1887437"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16636977|http://www.wikidata.org/entity/Q9033606|http://www.wikidata.org/entity/Q9025419|http://www.wikidata.org/entity/Q8961277|http://www.wikidata.org/entity/Q8345274|http://www.wikidata.org/entity/Q5888329|http://www.wikidata.org/entity/Q1189379"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2007 film by Rodrigo Cort\u00e9s"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17136066"}, "Title": {"type": "literal", "value": "Somebody Up There Likes Me"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4931990"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4931990"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "76"}, "Description": {"type": "literal", "value": "2012 film by Bob Byington"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15901539"}, "Title": {"type": "literal", "value": "Tammy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2082056"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2082056|http://www.wikidata.org/entity/Q229048"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2347123|http://www.wikidata.org/entity/Q2082056|http://www.wikidata.org/entity/Q544465|http://www.wikidata.org/entity/Q315864|http://www.wikidata.org/entity/Q229487|http://www.wikidata.org/entity/Q229291|http://www.wikidata.org/entity/Q229048|http://www.wikidata.org/entity/Q133050|http://www.wikidata.org/entity/Q105221|http://www.wikidata.org/entity/Q40337|http://www.wikidata.org/entity/Q7422078|http://www.wikidata.org/entity/Q3273787|http://www.wikidata.org/entity/Q2514422"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2014 film by Ben Falcone"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q79202"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5589911"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17198440"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17198440"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7310617|http://www.wikidata.org/entity/Q1828366"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Pawan Wadeyar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q58609682"}, "Title": {"type": "literal", "value": "Not So Happy Campers - Part 1"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14647181"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2697348"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008|2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17113138|http://www.wikidata.org/entity/Q3421644|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "22"}, "Description": {"type": "literal", "value": "episode of Total Drama Island (E1)"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3499025|http://www.wikidata.org/entity/Q6995585"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15054512"}, "Title": {"type": "literal", "value": "Finsterworld"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15630836"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q123242"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q70003"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2013 film by Frauke Finsterwalder"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19258089"}, "Title": {"type": "literal", "value": "3 T\u00fcrken und ein Baby"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q98255"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q98255"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1292000|http://www.wikidata.org/entity/Q1279837|http://www.wikidata.org/entity/Q1157339|http://www.wikidata.org/entity/Q889906|http://www.wikidata.org/entity/Q559888|http://www.wikidata.org/entity/Q492219|http://www.wikidata.org/entity/Q316388|http://www.wikidata.org/entity/Q109581|http://www.wikidata.org/entity/Q108942|http://www.wikidata.org/entity/Q104670|http://www.wikidata.org/entity/Q98255|http://www.wikidata.org/entity/Q96101|http://www.wikidata.org/entity/Q91504|http://www.wikidata.org/entity/Q72046|http://www.wikidata.org/entity/Q70775|http://www.wikidata.org/entity/Q67026|http://www.wikidata.org/entity/Q22265578|http://www.wikidata.org/entity/Q21035816|http://www.wikidata.org/entity/Q16508914|http://www.wikidata.org/entity/Q2336892|http://www.wikidata.org/entity/Q2128092|http://www.wikidata.org/entity/Q1773250|http://www.wikidata.org/entity/Q1755401|http://www.wikidata.org/entity/Q1714755|http://www.wikidata.org/entity/Q1652293"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2015 film by Sinan Akku\u015f"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q47520467"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6093781"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6094666|http://www.wikidata.org/entity/Q6092717|http://www.wikidata.org/entity/Q6084756|http://www.wikidata.org/entity/Q4696189"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Ali Atay"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15291320"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q123115"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q120378"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2013 film by Yangzom Brauen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q742614"}, "Title": {"type": "literal", "value": "Transamerica"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q454022"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q454022"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7920009|http://www.wikidata.org/entity/Q3702265|http://www.wikidata.org/entity/Q329700|http://www.wikidata.org/entity/Q311517|http://www.wikidata.org/entity/Q311169|http://www.wikidata.org/entity/Q262267|http://www.wikidata.org/entity/Q238855|http://www.wikidata.org/entity/Q237579|http://www.wikidata.org/entity/Q190519"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2005 independent comedy-drama film directed by Duncan Tucker"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5546702"}, "Title": {"type": "literal", "value": "Je\u017c Jerzy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9377546|http://www.wikidata.org/entity/Q9359485"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11833608"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Wojtek Wawszczyk"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3412541"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3385967"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3385967"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16682707|http://www.wikidata.org/entity/Q3554281|http://www.wikidata.org/entity/Q3015115|http://www.wikidata.org/entity/Q2925481|http://www.wikidata.org/entity/Q2910910|http://www.wikidata.org/entity/Q2844752"}, "Published": {"type": "literal", "value": "1996"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1996 film by Pierre Linhart"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22162406"}, "Title": {"type": "literal", "value": "Parasol"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3554333"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22162408|http://www.wikidata.org/entity/Q3554333|http://www.wikidata.org/entity/Q3299889"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q47018081"}, "Published": {"type": "literal", "value": "2017|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Val\u00e9ry Rosier"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2603569"}, "Title": {"type": "literal", "value": "\u0420\u0436\u0435\u0432\u0441\u043a\u0438\u0439 \u043f\u0440\u043e\u0442\u0438\u0432 \u041d\u0430\u043f\u043e\u043b\u0435\u043e\u043d\u0430"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4102539"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4536851"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4080114|http://www.wikidata.org/entity/Q3874799|http://www.wikidata.org/entity/Q3033167|http://www.wikidata.org/entity/Q2974837|http://www.wikidata.org/entity/Q2626247|http://www.wikidata.org/entity/Q2373179|http://www.wikidata.org/entity/Q2368070|http://www.wikidata.org/entity/Q1660403|http://www.wikidata.org/entity/Q593332|http://www.wikidata.org/entity/Q536524|http://www.wikidata.org/entity/Q308840|http://www.wikidata.org/entity/Q287099|http://www.wikidata.org/entity/Q274362|http://www.wikidata.org/entity/Q25080|http://www.wikidata.org/entity/Q4344122"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q128758"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2012 film by Marius Vaisbergas"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4444575|http://www.wikidata.org/entity/Q4504080"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1302032"}, "Title": {"type": "literal", "value": "Poulet aux prunes"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q126633|http://www.wikidata.org/entity/Q1890346"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1890346|http://www.wikidata.org/entity/Q126633"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2714385|http://www.wikidata.org/entity/Q2567681|http://www.wikidata.org/entity/Q1807701|http://www.wikidata.org/entity/Q1210548|http://www.wikidata.org/entity/Q464712|http://www.wikidata.org/entity/Q364986|http://www.wikidata.org/entity/Q355835|http://www.wikidata.org/entity/Q312661|http://www.wikidata.org/entity/Q288009|http://www.wikidata.org/entity/Q283317|http://www.wikidata.org/entity/Q274227|http://www.wikidata.org/entity/Q235115|http://www.wikidata.org/entity/Q203840|http://www.wikidata.org/entity/Q21693715|http://www.wikidata.org/entity/Q18625904|http://www.wikidata.org/entity/Q3090187"}, "Published": {"type": "literal", "value": "2012|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2011 film by Marjane Satrapi, Vincent Paronnaud"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21647697"}, "Title": {"type": "literal", "value": "Atrapa la bandera"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5785736"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2015 film by Enrique Gato"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17630598"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2892185"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2892185"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3559331|http://www.wikidata.org/entity/Q3164941|http://www.wikidata.org/entity/Q2978439|http://www.wikidata.org/entity/Q993671"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Baya Kasmi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29949484"}, "Title": {"type": "literal", "value": "\uc544\uc774 \uce94 \uc2a4\ud53c\ud06c"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028600"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29434922|http://www.wikidata.org/entity/Q12611182|http://www.wikidata.org/entity/Q12597254|http://www.wikidata.org/entity/Q4022731|http://www.wikidata.org/entity/Q496314|http://www.wikidata.org/entity/Q486084"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Kim Hyun-seok"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21544607"}, "Title": {"type": "literal", "value": "Les Dissoci\u00e9s"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028391"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21545164|http://www.wikidata.org/entity/Q21544893|http://www.wikidata.org/entity/Q16028391"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "75"}, "Description": {"type": "literal", "value": "2015 film by Rapha\u00ebl Descraques"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16639391"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16254769"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6749893"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6749893"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q704859"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Manish Jha"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16154258"}, "Title": {"type": "literal", "value": "Appropriate Behavior"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16147303"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16147303"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16195218|http://www.wikidata.org/entity/Q16147303|http://www.wikidata.org/entity/Q6318347|http://www.wikidata.org/entity/Q4790207|http://www.wikidata.org/entity/Q3952813|http://www.wikidata.org/entity/Q2849884|http://www.wikidata.org/entity/Q1571684|http://www.wikidata.org/entity/Q261056"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2014 film by Desiree Akhavan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21525046"}, "Title": {"type": "literal", "value": "D\u00fc\u011f\u00fcn Dernek 2: S\u00fcnnet"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6052251"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6097675"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Sel\u00e7uk Aydemir"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56110441"}, "Title": {"type": "literal", "value": "L\u00fcgen und andere Wahrheiten"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q104726"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q65511|http://www.wikidata.org/entity/Q2424639|http://www.wikidata.org/entity/Q87432"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Vanessa Jopp"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60498223"}, "Title": {"type": "literal", "value": "Maikol Yordan 2: La cura lejana"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q524506"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2018 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1576130"}, "Title": {"type": "literal", "value": "Hanni & Nanni 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15450497"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2012 film by Julia Heinz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q487447"}, "Title": {"type": "literal", "value": "Kung Fu Panda 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q705711"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6263287"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21401869|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2011 American animated film directed by Jennifer Yuh Nelson"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q500088"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15655770"}, "Title": {"type": "literal", "value": "Happy Christmas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6212564"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6212564"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6212564|http://www.wikidata.org/entity/Q1378842|http://www.wikidata.org/entity/Q288359|http://www.wikidata.org/entity/Q235905|http://www.wikidata.org/entity/Q67701"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "2014 film by Joe Swanberg"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q659671"}, "Title": {"type": "literal", "value": "Boy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2388576"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2388576"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17582511|http://www.wikidata.org/entity/Q2388576"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2010 New Zealand coming-of-age comedy-drama film by Taika Waititi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16241878"}, "Title": {"type": "literal", "value": "El Americano: The Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24305204"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3378830"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6075502|http://www.wikidata.org/entity/Q5964071|http://www.wikidata.org/entity/Q4678511|http://www.wikidata.org/entity/Q2738010|http://www.wikidata.org/entity/Q706338|http://www.wikidata.org/entity/Q552090|http://www.wikidata.org/entity/Q326939|http://www.wikidata.org/entity/Q259877|http://www.wikidata.org/entity/Q211415|http://www.wikidata.org/entity/Q179041|http://www.wikidata.org/entity/Q73007"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2850090"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3236208"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3190825"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3190825"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3287898|http://www.wikidata.org/entity/Q235429|http://www.wikidata.org/entity/Q15727723|http://www.wikidata.org/entity/Q3351313|http://www.wikidata.org/entity/Q3336549"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by J\u00e9r\u00f4me Bonnell"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1657080"}, "Title": {"type": "literal", "value": "Planes"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6420019"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q269214"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2013 animated Pixar film directed by Klay Hall"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2081339"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30900344"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q313044"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "11"}, "Description": {"type": "literal", "value": "2013 film by Diego Luna"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7532716"}, "Title": {"type": "literal", "value": "Six Degrees of Separation from Lilia Cuntapay"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18719493"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18719493"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6547641"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Antoinette Jadaone"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5120754"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24521521"}, "Title": {"type": "literal", "value": "Two-Bit Waltz"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16210963"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16210963"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Clara Mamet"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12336502"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4753869"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4753869"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61764522|http://www.wikidata.org/entity/Q41236660|http://www.wikidata.org/entity/Q12339214|http://www.wikidata.org/entity/Q12338577|http://www.wikidata.org/entity/Q12327728|http://www.wikidata.org/entity/Q12326422|http://www.wikidata.org/entity/Q12324520|http://www.wikidata.org/entity/Q12321995|http://www.wikidata.org/entity/Q12320468|http://www.wikidata.org/entity/Q12318950|http://www.wikidata.org/entity/Q12303105|http://www.wikidata.org/entity/Q5983810|http://www.wikidata.org/entity/Q5360489|http://www.wikidata.org/entity/Q4753869|http://www.wikidata.org/entity/Q1369910|http://www.wikidata.org/entity/Q84081"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Anders Matthesen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16176372"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q486039"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Jang Jin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q837945"}, "Title": {"type": "literal", "value": "Disaster Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q302690|http://www.wikidata.org/entity/Q936338"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q302690|http://www.wikidata.org/entity/Q936338"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q549366|http://www.wikidata.org/entity/Q312535|http://www.wikidata.org/entity/Q298995|http://www.wikidata.org/entity/Q270638|http://www.wikidata.org/entity/Q259798|http://www.wikidata.org/entity/Q186304|http://www.wikidata.org/entity/Q16208587|http://www.wikidata.org/entity/Q2645090|http://www.wikidata.org/entity/Q739062|http://www.wikidata.org/entity/Q589797|http://www.wikidata.org/entity/Q185122|http://www.wikidata.org/entity/Q89536"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q622548|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q846544"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2008 American parody film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17295785|http://www.wikidata.org/entity/Q5610650"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2132204"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4707732"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2574850|http://www.wikidata.org/entity/Q837539|http://www.wikidata.org/entity/Q709655|http://www.wikidata.org/entity/Q708456|http://www.wikidata.org/entity/Q445608"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 Hong Kong film directed by Pang Ho-cheung"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22690727"}, "Title": {"type": "literal", "value": "Die Helden aus der Nachbarschaft"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1247986"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1247986"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15296618|http://www.wikidata.org/entity/Q1992796|http://www.wikidata.org/entity/Q1892860|http://www.wikidata.org/entity/Q1663644|http://www.wikidata.org/entity/Q1379064|http://www.wikidata.org/entity/Q114152|http://www.wikidata.org/entity/Q90374"}, "Published": {"type": "literal", "value": "2009|2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Jovan Arsenic"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3823522"}, "Title": {"type": "literal", "value": "La peggior settimana della mia vita"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3610041"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3737674|http://www.wikidata.org/entity/Q3610041"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3769065|http://www.wikidata.org/entity/Q3737674|http://www.wikidata.org/entity/Q3615871|http://www.wikidata.org/entity/Q3610041|http://www.wikidata.org/entity/Q2963238|http://www.wikidata.org/entity/Q1681812|http://www.wikidata.org/entity/Q1042185|http://www.wikidata.org/entity/Q769800|http://www.wikidata.org/entity/Q445698|http://www.wikidata.org/entity/Q368627|http://www.wikidata.org/entity/Q291413"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2011 film by Alessandro Genovesi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3683611"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28877459"}, "Title": {"type": "literal", "value": "\u0932\u0942\u091f \u0968"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16198160"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16198160"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q54854360|http://www.wikidata.org/entity/Q30111700|http://www.wikidata.org/entity/Q29512107|http://www.wikidata.org/entity/Q26702993|http://www.wikidata.org/entity/Q25345236|http://www.wikidata.org/entity/Q16734870|http://www.wikidata.org/entity/Q16731881|http://www.wikidata.org/entity/Q7306595"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 Nepali Blockbuster film directed by Nischal Basnet"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17458046"}, "Title": {"type": "literal", "value": "\u0412\u0441\u0451 \u0438 \u0441\u0440\u0430\u0437\u0443"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4215049"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4215049"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21183528"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q53094"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2014 film directed by Roman Karimov"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4504080"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17627840"}, "Title": {"type": "literal", "value": "Elle l'adore"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3176065"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3176065"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28992788|http://www.wikidata.org/entity/Q27704886|http://www.wikidata.org/entity/Q22248002|http://www.wikidata.org/entity/Q15973995|http://www.wikidata.org/entity/Q15973222|http://www.wikidata.org/entity/Q3588854|http://www.wikidata.org/entity/Q3510153|http://www.wikidata.org/entity/Q3367364|http://www.wikidata.org/entity/Q3328126|http://www.wikidata.org/entity/Q3311660|http://www.wikidata.org/entity/Q3260130|http://www.wikidata.org/entity/Q3219319|http://www.wikidata.org/entity/Q3157696|http://www.wikidata.org/entity/Q3074038|http://www.wikidata.org/entity/Q933434|http://www.wikidata.org/entity/Q262822"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2014 film directed by Jeanne Herry"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21427084"}, "Title": {"type": "literal", "value": "Comment c'est loin"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2813374|http://www.wikidata.org/entity/Q2966415"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2966415|http://www.wikidata.org/entity/Q2813374|http://www.wikidata.org/entity/Q3502209"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18744760|http://www.wikidata.org/entity/Q3491066|http://www.wikidata.org/entity/Q3486380|http://www.wikidata.org/entity/Q3287856|http://www.wikidata.org/entity/Q2829745|http://www.wikidata.org/entity/Q2813374|http://www.wikidata.org/entity/Q25378996"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q645928|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 flm by Orelsan and Christophe Offenstein"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17555825"}, "Title": {"type": "literal", "value": "Piotrek trzynastego 2: Sk\u00f3rza Twarz"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11817800"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11817800"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Piotr Matwiejczyk"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10663066"}, "Title": {"type": "literal", "value": "Scener ur ett k\u00e4ndisskap"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6034640"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6034640"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6228896"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Christopher Panov"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5748759"}, "Title": {"type": "literal", "value": "Cara de queso \u2014mi primer ghetto\u2014"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5704113"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28100227|http://www.wikidata.org/entity/Q7649867|http://www.wikidata.org/entity/Q7454230|http://www.wikidata.org/entity/Q6782141|http://www.wikidata.org/entity/Q6457187|http://www.wikidata.org/entity/Q6128595|http://www.wikidata.org/entity/Q6121085|http://www.wikidata.org/entity/Q6042164|http://www.wikidata.org/entity/Q6002829|http://www.wikidata.org/entity/Q5951187|http://www.wikidata.org/entity/Q5751721|http://www.wikidata.org/entity/Q5749833|http://www.wikidata.org/entity/Q5675253|http://www.wikidata.org/entity/Q3660084|http://www.wikidata.org/entity/Q3341184|http://www.wikidata.org/entity/Q3306307|http://www.wikidata.org/entity/Q2879350|http://www.wikidata.org/entity/Q2272014|http://www.wikidata.org/entity/Q1393963|http://www.wikidata.org/entity/Q289064|http://www.wikidata.org/entity/Q271836"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2006 film by Ariel Winograd"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56364056"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4102539"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film directed by Maryus Vaysberg"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24905226"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7420144"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5183212"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1995"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1995 film by Santhana Bharathi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20424058"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12243777"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7289489"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Moataz El Touni"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3824873"}, "Title": {"type": "literal", "value": "La verit\u00e0 vi prego sull'amore"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q743887"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q743887"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4010211|http://www.wikidata.org/entity/Q3852869|http://www.wikidata.org/entity/Q3849404|http://www.wikidata.org/entity/Q3761924|http://www.wikidata.org/entity/Q3756762|http://www.wikidata.org/entity/Q3721195|http://www.wikidata.org/entity/Q3660170|http://www.wikidata.org/entity/Q3637258|http://www.wikidata.org/entity/Q3608458|http://www.wikidata.org/entity/Q743887|http://www.wikidata.org/entity/Q555241|http://www.wikidata.org/entity/Q274220"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2001 film by Francesco Apolloni"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5822584"}, "Title": {"type": "literal", "value": "El Mundo es Nuestro"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5667204"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Alfonso S\u00e1nchez Fern\u00e1ndez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q47265121"}, "Title": {"type": "literal", "value": "Eighth Grade"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q887347"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q887347"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26405870|http://www.wikidata.org/entity/Q21208008|http://www.wikidata.org/entity/Q5486186|http://www.wikidata.org/entity/Q641352"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2018 film by Bo Burnham"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16248298|http://www.wikidata.org/entity/Q17295709"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1154789"}, "Title": {"type": "literal", "value": "Fifty Pills"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7781424"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3302899|http://www.wikidata.org/entity/Q1237204|http://www.wikidata.org/entity/Q786106|http://www.wikidata.org/entity/Q708512|http://www.wikidata.org/entity/Q475773|http://www.wikidata.org/entity/Q359488|http://www.wikidata.org/entity/Q350811|http://www.wikidata.org/entity/Q283504|http://www.wikidata.org/entity/Q255883|http://www.wikidata.org/entity/Q232171|http://www.wikidata.org/entity/Q228852|http://www.wikidata.org/entity/Q182931|http://www.wikidata.org/entity/Q178882"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2006 film by Theo Avgerinos"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3365358"}, "Title": {"type": "literal", "value": "Paris \u00e0 tout prix"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3423028"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3423028|http://www.wikidata.org/entity/Q3380121"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15944854|http://www.wikidata.org/entity/Q3482347|http://www.wikidata.org/entity/Q3423028|http://www.wikidata.org/entity/Q3395911|http://www.wikidata.org/entity/Q3380121|http://www.wikidata.org/entity/Q3334874|http://www.wikidata.org/entity/Q3241976|http://www.wikidata.org/entity/Q3089707|http://www.wikidata.org/entity/Q1857676|http://www.wikidata.org/entity/Q1450857|http://www.wikidata.org/entity/Q1367862|http://www.wikidata.org/entity/Q1232804|http://www.wikidata.org/entity/Q360899|http://www.wikidata.org/entity/Q17175096"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2013 film by Reem Kherici"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16662670"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q874772"}, "Title": {"type": "literal", "value": "Emmas Gl\u00fcck"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2371376"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q111625|http://www.wikidata.org/entity/Q1520844"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1711811|http://www.wikidata.org/entity/Q1619430|http://www.wikidata.org/entity/Q19899655|http://www.wikidata.org/entity/Q18684278|http://www.wikidata.org/entity/Q2338745|http://www.wikidata.org/entity/Q1905418|http://www.wikidata.org/entity/Q1903738|http://www.wikidata.org/entity/Q1468043|http://www.wikidata.org/entity/Q717013|http://www.wikidata.org/entity/Q123177|http://www.wikidata.org/entity/Q108956|http://www.wikidata.org/entity/Q62052"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q1054574"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2006 film by Sven Taddicken"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5752999"}, "Title": {"type": "literal", "value": "Carne de ne\u00f3n"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2654533"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Paco Cabezas"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q747877"}, "Title": {"type": "literal", "value": "Clerks"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q489831"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q489831"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q354010|http://www.wikidata.org/entity/Q316627|http://www.wikidata.org/entity/Q314081|http://www.wikidata.org/entity/Q6763535|http://www.wikidata.org/entity/Q4223223|http://www.wikidata.org/entity/Q3242448|http://www.wikidata.org/entity/Q2681188|http://www.wikidata.org/entity/Q1738587|http://www.wikidata.org/entity/Q1175006|http://www.wikidata.org/entity/Q1140895|http://www.wikidata.org/entity/Q723672|http://www.wikidata.org/entity/Q489831"}, "Published": {"type": "literal", "value": "1994"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "1994 American comedy film directed by Kevin Smith"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q465449|http://www.wikidata.org/entity/Q2700070"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q841118"}, "Title": {"type": "literal", "value": "Epic Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q936338|http://www.wikidata.org/entity/Q302690"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q302690|http://www.wikidata.org/entity/Q936338"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2755894|http://www.wikidata.org/entity/Q2706805|http://www.wikidata.org/entity/Q2646713|http://www.wikidata.org/entity/Q2260913|http://www.wikidata.org/entity/Q853018|http://www.wikidata.org/entity/Q788717|http://www.wikidata.org/entity/Q618352|http://www.wikidata.org/entity/Q589797|http://www.wikidata.org/entity/Q557948|http://www.wikidata.org/entity/Q552090|http://www.wikidata.org/entity/Q549366|http://www.wikidata.org/entity/Q499063|http://www.wikidata.org/entity/Q449521|http://www.wikidata.org/entity/Q428796|http://www.wikidata.org/entity/Q348952|http://www.wikidata.org/entity/Q310060|http://www.wikidata.org/entity/Q304322|http://www.wikidata.org/entity/Q298995|http://www.wikidata.org/entity/Q231006|http://www.wikidata.org/entity/Q230278|http://www.wikidata.org/entity/Q230169|http://www.wikidata.org/entity/Q220536|http://www.wikidata.org/entity/Q11682757|http://www.wikidata.org/entity/Q5696733|http://www.wikidata.org/entity/Q2993970|http://www.wikidata.org/entity/Q187038|http://www.wikidata.org/entity/Q185122"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2007 film by Jason Friedberg and Aaron Seltzer"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7153463"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20949822"}, "Title": {"type": "literal", "value": "Autoerotic"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6212564"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Joe Swanberg"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2065937"}, "Title": {"type": "literal", "value": "\uc288\ud37c\ub9e8\uc774\uc5c8\ub358 \uc0ac\ub098\uc774"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6180299"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q491333|http://www.wikidata.org/entity/Q253626"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2008 film by Jeong Yun-cheol"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14901503"}, "Title": {"type": "literal", "value": "Le Crocodile du Botswanga"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3241948|http://www.wikidata.org/entity/Q3063963"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3063963|http://www.wikidata.org/entity/Q2905980"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23774047|http://www.wikidata.org/entity/Q19629486|http://www.wikidata.org/entity/Q3525440|http://www.wikidata.org/entity/Q3516056|http://www.wikidata.org/entity/Q3367537|http://www.wikidata.org/entity/Q3292200|http://www.wikidata.org/entity/Q3270032|http://www.wikidata.org/entity/Q3155677|http://www.wikidata.org/entity/Q3147503|http://www.wikidata.org/entity/Q3082317|http://www.wikidata.org/entity/Q3063963|http://www.wikidata.org/entity/Q3018751|http://www.wikidata.org/entity/Q2978439|http://www.wikidata.org/entity/Q2842675|http://www.wikidata.org/entity/Q2050238|http://www.wikidata.org/entity/Q1340950|http://www.wikidata.org/entity/Q289524"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Lionel Steketee, Fabrice \u00c9bou\u00e9"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17275620"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19363412"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24007557"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Simranjit Singh Hundal"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18463786"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16954246"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16954246"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2013 film by Bryan Poyser"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5331221"}, "Title": {"type": "literal", "value": "Eat Cake"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4101387"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Robin Bain"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6864718"}, "Title": {"type": "literal", "value": "Minghags: The Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6209915|http://www.wikidata.org/entity/Q297173"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6209915"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6209915|http://www.wikidata.org/entity/Q3390959|http://www.wikidata.org/entity/Q3239121|http://www.wikidata.org/entity/Q2631010|http://www.wikidata.org/entity/Q606523|http://www.wikidata.org/entity/Q316036|http://www.wikidata.org/entity/Q297173"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Bam Margera"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q39050648"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q39075610"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Sudhar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10283120"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11727279"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11727279"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28132648|http://www.wikidata.org/entity/Q17312097|http://www.wikidata.org/entity/Q16957126|http://www.wikidata.org/entity/Q12036712|http://www.wikidata.org/entity/Q12035875|http://www.wikidata.org/entity/Q11925857|http://www.wikidata.org/entity/Q11879923|http://www.wikidata.org/entity/Q8364984|http://www.wikidata.org/entity/Q7362255|http://www.wikidata.org/entity/Q3497007|http://www.wikidata.org/entity/Q3229474|http://www.wikidata.org/entity/Q734192|http://www.wikidata.org/entity/Q61690691|http://www.wikidata.org/entity/Q48478021"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Ji\u0159\u00ed Vejd\u011blek"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56300066"}, "Title": {"type": "literal", "value": "Amat\u00f6rer"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4972877"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4972877|http://www.wikidata.org/entity/Q1475327"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2018 film directed by Gabriela Pichler"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12331012"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12321689"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q33157949|http://www.wikidata.org/entity/Q12321689"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q42047365|http://www.wikidata.org/entity/Q40523954|http://www.wikidata.org/entity/Q40523447|http://www.wikidata.org/entity/Q12339791|http://www.wikidata.org/entity/Q12331656|http://www.wikidata.org/entity/Q12331509|http://www.wikidata.org/entity/Q12308738|http://www.wikidata.org/entity/Q12308732|http://www.wikidata.org/entity/Q12301028|http://www.wikidata.org/entity/Q7295091|http://www.wikidata.org/entity/Q2033737|http://www.wikidata.org/entity/Q1703043|http://www.wikidata.org/entity/Q467073|http://www.wikidata.org/entity/Q438580|http://www.wikidata.org/entity/Q435310|http://www.wikidata.org/entity/Q383754"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Kenneth Kainz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1988305"}, "Title": {"type": "literal", "value": "Cemetery Junction"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23814|http://www.wikidata.org/entity/Q23517"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23814|http://www.wikidata.org/entity/Q23517"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1428289|http://www.wikidata.org/entity/Q1139996|http://www.wikidata.org/entity/Q644911|http://www.wikidata.org/entity/Q317337|http://www.wikidata.org/entity/Q234447|http://www.wikidata.org/entity/Q229535|http://www.wikidata.org/entity/Q28493|http://www.wikidata.org/entity/Q23517"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2010 British coming-of-age comedy-drama film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q186941"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3938108"}, "Title": {"type": "literal", "value": "Road Trip: Beer Pong"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2632767"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16735219"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13560498|http://www.wikidata.org/entity/Q6834959|http://www.wikidata.org/entity/Q6085681|http://www.wikidata.org/entity/Q620822|http://www.wikidata.org/entity/Q445638|http://www.wikidata.org/entity/Q269891|http://www.wikidata.org/entity/Q18933"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2009 film by Steve Rash"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192557"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q39597940"}, "Title": {"type": "literal", "value": "Easy - Un viaggio facile facile"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q40741201"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3876295|http://www.wikidata.org/entity/Q1006624|http://www.wikidata.org/entity/Q455280|http://www.wikidata.org/entity/Q30961643|http://www.wikidata.org/entity/Q4444707"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2017 film by Andrea Magnani"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5071818"}, "Title": {"type": "literal", "value": "Change Your Life!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7147639|http://www.wikidata.org/entity/Q4678851"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4963857|http://www.wikidata.org/entity/Q4678851"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3516498|http://www.wikidata.org/entity/Q924213|http://www.wikidata.org/entity/Q544692"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 comedy mockumentary"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4193712"}, "Title": {"type": "literal", "value": "\u0417\u043e\u043b\u0443\u0448\u043a\u0430"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4173781"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4492737"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15206502|http://www.wikidata.org/entity/Q4503705|http://www.wikidata.org/entity/Q4446033|http://www.wikidata.org/entity/Q4344658|http://www.wikidata.org/entity/Q4273841|http://www.wikidata.org/entity/Q4262141|http://www.wikidata.org/entity/Q4168406|http://www.wikidata.org/entity/Q4146257|http://www.wikidata.org/entity/Q2509356|http://www.wikidata.org/entity/Q2504592|http://www.wikidata.org/entity/Q2391534|http://www.wikidata.org/entity/Q2350283|http://www.wikidata.org/entity/Q2086086|http://www.wikidata.org/entity/Q1988375|http://www.wikidata.org/entity/Q1984215|http://www.wikidata.org/entity/Q1972714|http://www.wikidata.org/entity/Q275875|http://www.wikidata.org/entity/Q194917|http://www.wikidata.org/entity/Q32927"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "113"}, "Description": {"type": "literal", "value": "2002 film by Semyon Gorov"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21644309"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16857528"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16857528"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q447069|http://www.wikidata.org/entity/Q24009781|http://www.wikidata.org/entity/Q16271982|http://www.wikidata.org/entity/Q3320764|http://www.wikidata.org/entity/Q3033167"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q2743|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "2015 film by Zhora Kryzhovnikov"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2892410"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43451452"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q43451597"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q43451597"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film directed by Steffen Weinert"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21170238"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5395326"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1981"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1981 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16251228"}, "Title": {"type": "literal", "value": "\u0c2e\u0c28\u0c02"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7929565"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5673802"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q278980"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q40831"}, "Duration": {"type": "literal", "value": "163"}, "Description": {"type": "literal", "value": "2014 film by Vikram Kumar"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4768004"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56274884"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56290066"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by D Satya Prakash"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55803541"}, "Title": {"type": "literal", "value": "Los Oriyinales"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16302557"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Harold Trompetero"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q40539406"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3376726"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Peter Luisi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15207721"}, "Title": {"type": "literal", "value": "Les Conqu\u00e9rants"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3570535"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3570535"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3570535|http://www.wikidata.org/entity/Q3380483|http://www.wikidata.org/entity/Q3142548|http://www.wikidata.org/entity/Q3074009|http://www.wikidata.org/entity/Q3026971|http://www.wikidata.org/entity/Q2965173|http://www.wikidata.org/entity/Q2964946|http://www.wikidata.org/entity/Q1684748|http://www.wikidata.org/entity/Q1187592|http://www.wikidata.org/entity/Q949017|http://www.wikidata.org/entity/Q434051"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Xabi Molia"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15208154"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q909767"}, "Title": {"type": "literal", "value": "Nacho Libre"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2480656"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2480656"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5041069|http://www.wikidata.org/entity/Q3700033|http://www.wikidata.org/entity/Q483907|http://www.wikidata.org/entity/Q310429|http://www.wikidata.org/entity/Q295148|http://www.wikidata.org/entity/Q256256|http://www.wikidata.org/entity/Q130709"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2006 film by Jared and Jerusha Hess"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q159846|http://www.wikidata.org/entity/Q1785329|http://www.wikidata.org/entity/Q2330632"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5232957"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21119970"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21119970"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q483704|http://www.wikidata.org/entity/Q333192"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "2010 South Korean comedy film directed by Kim Yeong-tak"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12809917"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7813033"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q388027"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film by Togan G\u00f6kbakar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1017254"}, "Title": {"type": "literal", "value": "Buscando a Miguel"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6300493"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18202737"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "2007 film by Juan Mat\u00edas Fischer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6945803"}, "Title": {"type": "literal", "value": "My Last Day Without You"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7606260"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6504561|http://www.wikidata.org/entity/Q3341003|http://www.wikidata.org/entity/Q2126049|http://www.wikidata.org/entity/Q2101495|http://www.wikidata.org/entity/Q973783|http://www.wikidata.org/entity/Q68084"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Stefan Schaefer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20817284"}, "Title": {"type": "literal", "value": "Becks letzter Sommer"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1328470"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1328470|http://www.wikidata.org/entity/Q2020663"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q104213|http://www.wikidata.org/entity/Q77991|http://www.wikidata.org/entity/Q16218089|http://www.wikidata.org/entity/Q15890988|http://www.wikidata.org/entity/Q15431511|http://www.wikidata.org/entity/Q2879350|http://www.wikidata.org/entity/Q2511663|http://www.wikidata.org/entity/Q2262563|http://www.wikidata.org/entity/Q1610685|http://www.wikidata.org/entity/Q1360326"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2015 film by Frieder Wittich"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21010887"}, "Title": {"type": "literal", "value": "Youth in Oregon"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q371786"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188280|http://www.wikidata.org/entity/Q53651|http://www.wikidata.org/entity/Q6781118|http://www.wikidata.org/entity/Q5749370|http://www.wikidata.org/entity/Q4717778|http://www.wikidata.org/entity/Q1928335|http://www.wikidata.org/entity/Q718857|http://www.wikidata.org/entity/Q560413|http://www.wikidata.org/entity/Q313650|http://www.wikidata.org/entity/Q310944|http://www.wikidata.org/entity/Q302930|http://www.wikidata.org/entity/Q238924|http://www.wikidata.org/entity/Q236347"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Joel David Moore"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2627002"}, "Title": {"type": "literal", "value": "\u042f \u043b\u044e\u0431\u043b\u044e \u0442\u0435\u0431\u044f"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5285779"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1976000"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Dmitry Troitsky"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q53318860"}, "Title": {"type": "literal", "value": "The Kissing Booth"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22101580"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23419103|http://www.wikidata.org/entity/Q22101580"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q53909401|http://www.wikidata.org/entity/Q42329363|http://www.wikidata.org/entity/Q1691699|http://www.wikidata.org/entity/Q231460|http://www.wikidata.org/entity/Q112536"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2018 film by Vince Marcello"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q907311"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18697224"}, "Title": {"type": "literal", "value": "D\u011bdictv\u00ed aneb Kurvasene\u0159\u00edk\u00e1"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12049525"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q676173"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q62050907|http://www.wikidata.org/entity/Q20852640|http://www.wikidata.org/entity/Q12049496|http://www.wikidata.org/entity/Q12036784|http://www.wikidata.org/entity/Q12035359|http://www.wikidata.org/entity/Q12034157|http://www.wikidata.org/entity/Q12025430|http://www.wikidata.org/entity/Q12023617|http://www.wikidata.org/entity/Q12023314|http://www.wikidata.org/entity/Q12022899|http://www.wikidata.org/entity/Q12022059|http://www.wikidata.org/entity/Q12018970|http://www.wikidata.org/entity/Q11706883|http://www.wikidata.org/entity/Q10853432|http://www.wikidata.org/entity/Q6369300|http://www.wikidata.org/entity/Q3646680|http://www.wikidata.org/entity/Q2069118|http://www.wikidata.org/entity/Q2045924|http://www.wikidata.org/entity/Q1675647|http://www.wikidata.org/entity/Q676173|http://www.wikidata.org/entity/Q555628|http://www.wikidata.org/entity/Q333187|http://www.wikidata.org/entity/Q55729"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Robert Sedl\u00e1\u010dek"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25489472"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6781975"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6781975"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2004810"}, "Title": {"type": "literal", "value": "Les Barons"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3334684"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3334684"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3560737|http://www.wikidata.org/entity/Q3334837|http://www.wikidata.org/entity/Q3325972|http://www.wikidata.org/entity/Q3189442|http://www.wikidata.org/entity/Q3167115|http://www.wikidata.org/entity/Q2978146|http://www.wikidata.org/entity/Q2921537|http://www.wikidata.org/entity/Q2842675|http://www.wikidata.org/entity/Q930220|http://www.wikidata.org/entity/Q922639|http://www.wikidata.org/entity/Q470843|http://www.wikidata.org/entity/Q274227"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Nabil Ben Yadir"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q693722"}, "Title": {"type": "literal", "value": "Der Sandmann"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3376726"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3376726"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16500131|http://www.wikidata.org/entity/Q1913325|http://www.wikidata.org/entity/Q1672487|http://www.wikidata.org/entity/Q1315719|http://www.wikidata.org/entity/Q813085"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2011 film dircted by Peter Luisi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q609573"}, "Title": {"type": "literal", "value": "Any Way the Wind Blows"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q538160"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q538160"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2045858"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Tom Barman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3645258"}, "Title": {"type": "literal", "value": "Brokers - Eroi per gioco"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27481672"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3846936|http://www.wikidata.org/entity/Q3738110|http://www.wikidata.org/entity/Q3707153|http://www.wikidata.org/entity/Q3617915|http://www.wikidata.org/entity/Q1135477"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "2009 film by Emiliano Cribari"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16312683"}, "Title": {"type": "literal", "value": "\u0baa\u0bb2\u0bc7 \u0baa\u0bbe\u0ba3\u0bcd\u0b9f\u0bbf\u0baf\u0bbe"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7508098"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7508098"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7935988|http://www.wikidata.org/entity/Q3595284"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Siddharth Chandrasekhar"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4651702"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3206655"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3525578|http://www.wikidata.org/entity/Q3084424"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1712292"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16185740|http://www.wikidata.org/entity/Q3559579|http://www.wikidata.org/entity/Q3280631|http://www.wikidata.org/entity/Q3165613|http://www.wikidata.org/entity/Q2896175|http://www.wikidata.org/entity/Q2832932|http://www.wikidata.org/entity/Q1341507|http://www.wikidata.org/entity/Q1146107|http://www.wikidata.org/entity/Q983159|http://www.wikidata.org/entity/Q737676|http://www.wikidata.org/entity/Q357387|http://www.wikidata.org/entity/Q318991|http://www.wikidata.org/entity/Q246518|http://www.wikidata.org/entity/Q227097"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Thomas Sorriaux, Fran\u00e7ois Desagnat"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15221574"}, "Title": {"type": "literal", "value": "Cine Holli\u00fady"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18275574"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10363255|http://www.wikidata.org/entity/Q9033575|http://www.wikidata.org/entity/Q5480918|http://www.wikidata.org/entity/Q3724582"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2012 film by Halder Gomes"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19321900"}, "Title": {"type": "literal", "value": "\u0b8e\u0bb2\u0bbf"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8062165"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8062165"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q967495"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Yuvaraj Dhayalan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4804116"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22928635"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q591801"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Khaled Marei"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3842328"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3703148"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "7"}, "Description": {"type": "literal", "value": "2009 film by David Constantin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16673195"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4717890"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Alex Timbers"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q940139"}, "Title": {"type": "literal", "value": "Get Him to the Greek"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2624066"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2624066"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3304418|http://www.wikidata.org/entity/Q2903607|http://www.wikidata.org/entity/Q1322677|http://www.wikidata.org/entity/Q1148822|http://www.wikidata.org/entity/Q863042|http://www.wikidata.org/entity/Q531195|http://www.wikidata.org/entity/Q434497|http://www.wikidata.org/entity/Q432281|http://www.wikidata.org/entity/Q372559|http://www.wikidata.org/entity/Q369482|http://www.wikidata.org/entity/Q366044|http://www.wikidata.org/entity/Q313671|http://www.wikidata.org/entity/Q313388|http://www.wikidata.org/entity/Q303751|http://www.wikidata.org/entity/Q296609|http://www.wikidata.org/entity/Q272927|http://www.wikidata.org/entity/Q233466|http://www.wikidata.org/entity/Q228717|http://www.wikidata.org/entity/Q216936|http://www.wikidata.org/entity/Q178882|http://www.wikidata.org/entity/Q171525|http://www.wikidata.org/entity/Q160009|http://www.wikidata.org/entity/Q131112|http://www.wikidata.org/entity/Q106193|http://www.wikidata.org/entity/Q105682|http://www.wikidata.org/entity/Q72077|http://www.wikidata.org/entity/Q41594|http://www.wikidata.org/entity/Q14313|http://www.wikidata.org/entity/Q18638566|http://www.wikidata.org/entity/Q6554671|http://www.wikidata.org/entity/Q6372303|http://www.wikidata.org/entity/Q4817144|http://www.wikidata.org/entity/Q4241574|http://www.wikidata.org/entity/Q3806811"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "2010 film by Nicholas Stoller"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383|http://www.wikidata.org/entity/Q2702789|http://www.wikidata.org/entity/Q512858|http://www.wikidata.org/entity/Q618091"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20969852"}, "Title": {"type": "literal", "value": "La solita commedia - Inferno"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3850245|http://www.wikidata.org/entity/Q3737951|http://www.wikidata.org/entity/Q532126"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2015 italian film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61919365"}, "Title": {"type": "literal", "value": "Die Hummel"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29014731"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29014731"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q109720|http://www.wikidata.org/entity/Q95932"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2010 film by Sebastian Stern"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30936573"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10309289"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2016 film by Jos\u00e9 Eduardo Belmonte"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28051209"}, "Title": {"type": "literal", "value": "I Don't Feel at Home in This World Anymore"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23834468"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23834468"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q290156|http://www.wikidata.org/entity/Q235905|http://www.wikidata.org/entity/Q23834468|http://www.wikidata.org/entity/Q3807417|http://www.wikidata.org/entity/Q2083106|http://www.wikidata.org/entity/Q704184|http://www.wikidata.org/entity/Q616982|http://www.wikidata.org/entity/Q483771|http://www.wikidata.org/entity/Q452618|http://www.wikidata.org/entity/Q376031"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19367312|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2017 film by Macon Blair"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6090332"}, "Title": {"type": "literal", "value": "\u00c7akallarla Dans 2:Hastas\u0131y\u0131z Dede"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6064908"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6064908"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6082607|http://www.wikidata.org/entity/Q3624103"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Murat \u015eeker"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21856438"}, "Title": {"type": "literal", "value": "Hallo bungalow"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21856656"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21856656|http://www.wikidata.org/entity/Q1819488"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3531870|http://www.wikidata.org/entity/Q2753095|http://www.wikidata.org/entity/Q2339126|http://www.wikidata.org/entity/Q2288122|http://www.wikidata.org/entity/Q2235321|http://www.wikidata.org/entity/Q2170702|http://www.wikidata.org/entity/Q2006928|http://www.wikidata.org/entity/Q1925101|http://www.wikidata.org/entity/Q1639373|http://www.wikidata.org/entity/Q958994|http://www.wikidata.org/entity/Q540524"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Anne de Clercq"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21856660"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19473492"}, "Title": {"type": "literal", "value": "\u00c7akallarla Dans 3: S\u0131f\u0131r S\u0131k\u0131nt\u0131"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6064908"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6064908"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6082607|http://www.wikidata.org/entity/Q3624103"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Murat \u015eeker"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4003624"}, "Title": {"type": "literal", "value": "Un altr'anno e poi cresco"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3741699"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3879056|http://www.wikidata.org/entity/Q3838468|http://www.wikidata.org/entity/Q3756624|http://www.wikidata.org/entity/Q3741699|http://www.wikidata.org/entity/Q3681203|http://www.wikidata.org/entity/Q1042721"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2000 film by Federico Di Cicilia"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3706935"}, "Title": {"type": "literal", "value": "Diciotto anni dopo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3719608"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3845969|http://www.wikidata.org/entity/Q3719608"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4013682|http://www.wikidata.org/entity/Q3944358|http://www.wikidata.org/entity/Q3853059|http://www.wikidata.org/entity/Q3845969|http://www.wikidata.org/entity/Q3840444|http://www.wikidata.org/entity/Q3762891|http://www.wikidata.org/entity/Q3734264|http://www.wikidata.org/entity/Q3719608|http://www.wikidata.org/entity/Q3660170|http://www.wikidata.org/entity/Q555379"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2010 film by Edoardo Leo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20506836"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21572795"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28597204|http://www.wikidata.org/entity/Q27910500|http://www.wikidata.org/entity/Q23887684|http://www.wikidata.org/entity/Q20508545|http://www.wikidata.org/entity/Q16398433|http://www.wikidata.org/entity/Q6875613|http://www.wikidata.org/entity/Q4530743|http://www.wikidata.org/entity/Q3648587"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2012 film by David Babakhanyan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3211481"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3021834"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3021834"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q557272"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Delphine Gleize"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4527119"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21092329"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4441794"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2000 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43079134"}, "Title": {"type": "literal", "value": "Welcome to Acapulco"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18223669"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18223669|http://www.wikidata.org/entity/Q4532402|http://www.wikidata.org/entity/Q3643523|http://www.wikidata.org/entity/Q2734431|http://www.wikidata.org/entity/Q698094|http://www.wikidata.org/entity/Q313546|http://www.wikidata.org/entity/Q220584|http://www.wikidata.org/entity/Q21067398"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Guillermo Iv\u00e1n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q51756444"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26721163"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26721163"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27449526|http://www.wikidata.org/entity/Q454249"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2018 film directed by Augustine Frizzell"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q317921"}, "Title": {"type": "literal", "value": "Goldene Zeiten"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2078661"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q90041|http://www.wikidata.org/entity/Q89793|http://www.wikidata.org/entity/Q77758|http://www.wikidata.org/entity/Q74258|http://www.wikidata.org/entity/Q1577922|http://www.wikidata.org/entity/Q1517525|http://www.wikidata.org/entity/Q471006|http://www.wikidata.org/entity/Q103918|http://www.wikidata.org/entity/Q95316"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "129"}, "Description": {"type": "literal", "value": "2006 film by Peter Thorwarth"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6489030"}, "Title": {"type": "literal", "value": "Large"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6317549"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 feature film directed by Justin Edgar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5826055"}, "Title": {"type": "literal", "value": "El paseo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16302557"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2939936"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Harold Trompetero"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3234648"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q74428|http://www.wikidata.org/entity/Q2778106"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2778106|http://www.wikidata.org/entity/Q74428"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1265121|http://www.wikidata.org/entity/Q391974|http://www.wikidata.org/entity/Q318991|http://www.wikidata.org/entity/Q312661|http://www.wikidata.org/entity/Q3491010|http://www.wikidata.org/entity/Q3026948|http://www.wikidata.org/entity/Q2874769|http://www.wikidata.org/entity/Q2869522"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1999 film by Olivier Nakache, \u00c9ric Toledano"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61912659"}, "Title": {"type": "literal", "value": "Notes from Melanie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q53820435"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q53820435"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61912702|http://www.wikidata.org/entity/Q61912694|http://www.wikidata.org/entity/Q58391956"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "20"}, "Description": {"type": "literal", "value": "2019 film by Chris Stuckmann"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6153364"}, "Title": {"type": "literal", "value": "Truco"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5401729"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Andr\u00e9s Borghi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1543028"}, "Title": {"type": "literal", "value": "Grandma's Boy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7026507"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q984077|http://www.wikidata.org/entity/Q1713151"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q313388|http://www.wikidata.org/entity/Q298658|http://www.wikidata.org/entity/Q280793|http://www.wikidata.org/entity/Q238884|http://www.wikidata.org/entity/Q234204|http://www.wikidata.org/entity/Q232959|http://www.wikidata.org/entity/Q230218|http://www.wikidata.org/entity/Q192217|http://www.wikidata.org/entity/Q16935140|http://www.wikidata.org/entity/Q16832020|http://www.wikidata.org/entity/Q7291478|http://www.wikidata.org/entity/Q6386759|http://www.wikidata.org/entity/Q5617048|http://www.wikidata.org/entity/Q3110318|http://www.wikidata.org/entity/Q2640506|http://www.wikidata.org/entity/Q1713151|http://www.wikidata.org/entity/Q984077|http://www.wikidata.org/entity/Q547811|http://www.wikidata.org/entity/Q449531|http://www.wikidata.org/entity/Q371786"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2006 American comedy directed by Nicholaus Goossen"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434841|http://www.wikidata.org/entity/Q1584317|http://www.wikidata.org/entity/Q6535000"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7756140"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2107090"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Yin Lichuan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18610820"}, "Title": {"type": "literal", "value": "Babysitting 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3340086|http://www.wikidata.org/entity/Q3380121"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3380121"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3559579|http://www.wikidata.org/entity/Q3380121|http://www.wikidata.org/entity/Q2836561"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3272147|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2015 French film by Nicolas Benamou and Philippe Lacheau"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5160042"}, "Title": {"type": "literal", "value": "Confessions of an Action Star"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4954108"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16185735|http://www.wikidata.org/entity/Q5236475|http://www.wikidata.org/entity/Q2082056|http://www.wikidata.org/entity/Q1963814|http://www.wikidata.org/entity/Q1396357|http://www.wikidata.org/entity/Q1321014|http://www.wikidata.org/entity/Q1319770|http://www.wikidata.org/entity/Q711898|http://www.wikidata.org/entity/Q548163|http://www.wikidata.org/entity/Q471018|http://www.wikidata.org/entity/Q462354|http://www.wikidata.org/entity/Q449822|http://www.wikidata.org/entity/Q437449|http://www.wikidata.org/entity/Q371786|http://www.wikidata.org/entity/Q327217|http://www.wikidata.org/entity/Q263501|http://www.wikidata.org/entity/Q207969|http://www.wikidata.org/entity/Q206890|http://www.wikidata.org/entity/Q47100|http://www.wikidata.org/entity/Q42204|http://www.wikidata.org/entity/Q13909"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Brad Martin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5222196"}, "Title": {"type": "literal", "value": "Todas las azafatas van al cielo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1160223"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1160223"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29418768|http://www.wikidata.org/entity/Q28008966|http://www.wikidata.org/entity/Q7910849|http://www.wikidata.org/entity/Q6983286|http://www.wikidata.org/entity/Q6160727|http://www.wikidata.org/entity/Q6110584|http://www.wikidata.org/entity/Q5371858|http://www.wikidata.org/entity/Q4723737|http://www.wikidata.org/entity/Q2393638|http://www.wikidata.org/entity/Q2272014|http://www.wikidata.org/entity/Q240136"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2002 film by Daniel Burman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q884293"}, "Title": {"type": "literal", "value": "Blindflug"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q816653"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "63"}, "Description": {"type": "literal", "value": "2007 film by Ben von Grafenstein"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28065109"}, "Title": {"type": "literal", "value": "Die Migrantigen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28064800"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q51762590|http://www.wikidata.org/entity/Q28064800|http://www.wikidata.org/entity/Q51765860"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1231780|http://www.wikidata.org/entity/Q1228093|http://www.wikidata.org/entity/Q916436|http://www.wikidata.org/entity/Q167090|http://www.wikidata.org/entity/Q1711858|http://www.wikidata.org/entity/Q1554211|http://www.wikidata.org/entity/Q51765860|http://www.wikidata.org/entity/Q51762590|http://www.wikidata.org/entity/Q22351143|http://www.wikidata.org/entity/Q5219252|http://www.wikidata.org/entity/Q1895135"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2017 film by Arman T. Riahi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19370813"}, "Title": {"type": "literal", "value": "Der Nanny"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q64645"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1953755|http://www.wikidata.org/entity/Q64645"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19816547|http://www.wikidata.org/entity/Q2647101|http://www.wikidata.org/entity/Q2502302|http://www.wikidata.org/entity/Q2080205|http://www.wikidata.org/entity/Q1929298|http://www.wikidata.org/entity/Q1702610|http://www.wikidata.org/entity/Q1527740|http://www.wikidata.org/entity/Q1497350|http://www.wikidata.org/entity/Q1494512|http://www.wikidata.org/entity/Q1260674|http://www.wikidata.org/entity/Q1251322|http://www.wikidata.org/entity/Q469574|http://www.wikidata.org/entity/Q103918|http://www.wikidata.org/entity/Q91031|http://www.wikidata.org/entity/Q90771|http://www.wikidata.org/entity/Q64645|http://www.wikidata.org/entity/Q63059"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Matthias Schweigh\u00f6fer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2065911"}, "Title": {"type": "literal", "value": "Chutney Popcorn"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1261154"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3469385|http://www.wikidata.org/entity/Q2556603|http://www.wikidata.org/entity/Q1261154|http://www.wikidata.org/entity/Q723014|http://www.wikidata.org/entity/Q412643|http://www.wikidata.org/entity/Q289540|http://www.wikidata.org/entity/Q237925"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "1999 film by Nisha Ganatra"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q623072"}, "Title": {"type": "literal", "value": "Aquamarine"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4062581"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3177645"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q242204|http://www.wikidata.org/entity/Q231928|http://www.wikidata.org/entity/Q231635|http://www.wikidata.org/entity/Q228598|http://www.wikidata.org/entity/Q215219|http://www.wikidata.org/entity/Q704314|http://www.wikidata.org/entity/Q549948|http://www.wikidata.org/entity/Q439895|http://www.wikidata.org/entity/Q271926|http://www.wikidata.org/entity/Q1394456"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q5442753|http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2006 Australian-American teen fantasy comedy film directed by Elizabeth Allen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q536811"}, "Title": {"type": "literal", "value": "Dance Flick"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q517362"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q310785"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1990727|http://www.wikidata.org/entity/Q1508008|http://www.wikidata.org/entity/Q1158726|http://www.wikidata.org/entity/Q522981|http://www.wikidata.org/entity/Q456199|http://www.wikidata.org/entity/Q370102|http://www.wikidata.org/entity/Q323201|http://www.wikidata.org/entity/Q310785|http://www.wikidata.org/entity/Q261812"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q622548|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2009 film by Damien Dante Wayans"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1111024"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56884483"}, "Title": {"type": "literal", "value": "Polvo carnavalero"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50358500"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Juan Camilo Pinz\u00f3n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q637169"}, "Title": {"type": "literal", "value": "Cloudy with a Chance of Meatballs"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13638984|http://www.wikidata.org/entity/Q7182133|http://www.wikidata.org/entity/Q3378803"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13638984|http://www.wikidata.org/entity/Q7363505|http://www.wikidata.org/entity/Q7340167|http://www.wikidata.org/entity/Q3810978|http://www.wikidata.org/entity/Q3378803"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010|2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q846544|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q21401869|http://www.wikidata.org/entity/Q2143665"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2009 animated film by Christopher Miller and Phil Lord"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1416835"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3878962"}, "Title": {"type": "literal", "value": "Notturno bus"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3703572"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3762536"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6096246|http://www.wikidata.org/entity/Q3893835|http://www.wikidata.org/entity/Q3849040|http://www.wikidata.org/entity/Q3845634|http://www.wikidata.org/entity/Q3791451|http://www.wikidata.org/entity/Q3611690|http://www.wikidata.org/entity/Q2717287|http://www.wikidata.org/entity/Q1052746|http://www.wikidata.org/entity/Q1042623|http://www.wikidata.org/entity/Q1042185|http://www.wikidata.org/entity/Q808664|http://www.wikidata.org/entity/Q555190|http://www.wikidata.org/entity/Q49026"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2421031|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2007 film by Davide Marengo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q54862508"}, "Title": {"type": "literal", "value": "Jojo Rabbit"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2388576"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2388576"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28935124|http://www.wikidata.org/entity/Q2388576|http://www.wikidata.org/entity/Q442897|http://www.wikidata.org/entity/Q316446|http://www.wikidata.org/entity/Q34436"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Taika Waititi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q953040"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7208673"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7943974"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2721855"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film directed by Vyshakh"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q595"}, "Title": {"type": "literal", "value": "Intouchables"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2778106|http://www.wikidata.org/entity/Q74428"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q74428|http://www.wikidata.org/entity/Q2778106"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3191017|http://www.wikidata.org/entity/Q3165518|http://www.wikidata.org/entity/Q3118485|http://www.wikidata.org/entity/Q3084174|http://www.wikidata.org/entity/Q3084132|http://www.wikidata.org/entity/Q3009038|http://www.wikidata.org/entity/Q2979699|http://www.wikidata.org/entity/Q2851174|http://www.wikidata.org/entity/Q2830742|http://www.wikidata.org/entity/Q1044462|http://www.wikidata.org/entity/Q600051|http://www.wikidata.org/entity/Q20723802|http://www.wikidata.org/entity/Q18326681|http://www.wikidata.org/entity/Q17352673|http://www.wikidata.org/entity/Q16685232|http://www.wikidata.org/entity/Q15146875|http://www.wikidata.org/entity/Q15069878|http://www.wikidata.org/entity/Q3525573|http://www.wikidata.org/entity/Q3380569|http://www.wikidata.org/entity/Q511485|http://www.wikidata.org/entity/Q457089|http://www.wikidata.org/entity/Q357387"}, "Published": {"type": "literal", "value": "2012|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q645928"}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "2011 French film directed by Olivier Nakache and \u00c9ric Toledano"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q214683|http://www.wikidata.org/entity/Q913462"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18393245"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19894394"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19894394"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3595178"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Dileesh Nair"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16653874"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3084424"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3380215"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3380215|http://www.wikidata.org/entity/Q3017572|http://www.wikidata.org/entity/Q1609167|http://www.wikidata.org/entity/Q447419"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film directed by Fran\u00e7ois Desagnat"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1375196"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q719937"}, "Title": {"type": "literal", "value": "Hasta la Vista!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2663764"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20870076|http://www.wikidata.org/entity/Q4810494"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16069975|http://www.wikidata.org/entity/Q14639747|http://www.wikidata.org/entity/Q4810494|http://www.wikidata.org/entity/Q4725827|http://www.wikidata.org/entity/Q2961022|http://www.wikidata.org/entity/Q2914122|http://www.wikidata.org/entity/Q2791063|http://www.wikidata.org/entity/Q2784372|http://www.wikidata.org/entity/Q2773568|http://www.wikidata.org/entity/Q2768812|http://www.wikidata.org/entity/Q2735917|http://www.wikidata.org/entity/Q2443087|http://www.wikidata.org/entity/Q2436718|http://www.wikidata.org/entity/Q2431878|http://www.wikidata.org/entity/Q2306338|http://www.wikidata.org/entity/Q2278795|http://www.wikidata.org/entity/Q2103868|http://www.wikidata.org/entity/Q1813504|http://www.wikidata.org/entity/Q514769"}, "Published": {"type": "literal", "value": "2012|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1257444|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "2011 film by Geoffrey Enthoven"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3535865"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3367704"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17521664|http://www.wikidata.org/entity/Q3141565|http://www.wikidata.org/entity/Q2934960|http://www.wikidata.org/entity/Q2884036|http://www.wikidata.org/entity/Q2865970|http://www.wikidata.org/entity/Q2863229|http://www.wikidata.org/entity/Q746932|http://www.wikidata.org/entity/Q681451|http://www.wikidata.org/entity/Q586054|http://www.wikidata.org/entity/Q239033|http://www.wikidata.org/entity/Q189422"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Pascale Pouzadoux"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3758274"}, "Title": {"type": "literal", "value": "Gardener of Eden"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q359331"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4678605"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20815413|http://www.wikidata.org/entity/Q19668406|http://www.wikidata.org/entity/Q15257250|http://www.wikidata.org/entity/Q3827889|http://www.wikidata.org/entity/Q2846601|http://www.wikidata.org/entity/Q2558129|http://www.wikidata.org/entity/Q1268936|http://www.wikidata.org/entity/Q1189169|http://www.wikidata.org/entity/Q532169|http://www.wikidata.org/entity/Q234564|http://www.wikidata.org/entity/Q224081|http://www.wikidata.org/entity/Q210076|http://www.wikidata.org/entity/Q190972|http://www.wikidata.org/entity/Q4293"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2007 film by Kevin Connolly"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14071865"}, "Title": {"type": "literal", "value": "Meet Me in Montenegro"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4717191"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7858375|http://www.wikidata.org/entity/Q742498|http://www.wikidata.org/entity/Q314659|http://www.wikidata.org/entity/Q232990|http://www.wikidata.org/entity/Q76188"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Alex Holdridge"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q57610049"}, "Title": {"type": "literal", "value": "\u041f\u0440\u0430\u0437\u0434\u043d\u0438\u043a"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29167705"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29167705"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q58096889|http://www.wikidata.org/entity/Q50840112|http://www.wikidata.org/entity/Q19859531|http://www.wikidata.org/entity/Q4503115|http://www.wikidata.org/entity/Q4462945|http://www.wikidata.org/entity/Q4074272"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "73"}, "Description": {"type": "literal", "value": "film directed by Alexey Gennadievich Krasovsky"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61672481"}, "Title": {"type": "literal", "value": "Matwetwe"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24885607"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24885607"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2017 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20899742"}, "Title": {"type": "literal", "value": "Neighbors 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2624066"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3061320|http://www.wikidata.org/entity/Q2624066|http://www.wikidata.org/entity/Q220308"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16210963|http://www.wikidata.org/entity/Q15306031|http://www.wikidata.org/entity/Q5649155|http://www.wikidata.org/entity/Q4912515|http://www.wikidata.org/entity/Q4132067|http://www.wikidata.org/entity/Q739062|http://www.wikidata.org/entity/Q440956|http://www.wikidata.org/entity/Q432281|http://www.wikidata.org/entity/Q272915|http://www.wikidata.org/entity/Q228717|http://www.wikidata.org/entity/Q220308|http://www.wikidata.org/entity/Q196560|http://www.wikidata.org/entity/Q179041|http://www.wikidata.org/entity/Q83287|http://www.wikidata.org/entity/Q45229|http://www.wikidata.org/entity/Q4509|http://www.wikidata.org/entity/Q383930"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2016 film by Nicholas Stoller"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7973063"}, "Title": {"type": "literal", "value": "Watch Out"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7611855"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7611855"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6789241"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Steve Balderson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3695198"}, "Title": {"type": "literal", "value": "Cosmonauta"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3978256"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3984277|http://www.wikidata.org/entity/Q3978256"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3679866|http://www.wikidata.org/entity/Q697816|http://www.wikidata.org/entity/Q6423720|http://www.wikidata.org/entity/Q4007739|http://www.wikidata.org/entity/Q3978256|http://www.wikidata.org/entity/Q3838709"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q2975633"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2009 Italian coming-of-age film directed by Susanna Nicchiarelli"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3739211|http://www.wikidata.org/entity/Q3929491"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1228413"}, "Title": {"type": "literal", "value": "Kein Bund f\u00fcr\u2019s Leben"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16891732"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2020663|http://www.wikidata.org/entity/Q16891732"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2024805|http://www.wikidata.org/entity/Q1927038|http://www.wikidata.org/entity/Q1721422|http://www.wikidata.org/entity/Q1707681|http://www.wikidata.org/entity/Q1247316|http://www.wikidata.org/entity/Q692590|http://www.wikidata.org/entity/Q108942|http://www.wikidata.org/entity/Q108302|http://www.wikidata.org/entity/Q101840|http://www.wikidata.org/entity/Q64823|http://www.wikidata.org/entity/Q23019131|http://www.wikidata.org/entity/Q2940433|http://www.wikidata.org/entity/Q2165705|http://www.wikidata.org/entity/Q2087712"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Granz Henman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7580397"}, "Title": {"type": "literal", "value": "Spring Break '83"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1902549|http://www.wikidata.org/entity/Q965826"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1902549"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q355133"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Scott Spiegel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q725842"}, "Title": {"type": "literal", "value": "Monster House"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1523831"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7340535|http://www.wikidata.org/entity/Q2150289"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2006 film by Gil Kenan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q186941|http://www.wikidata.org/entity/Q457893|http://www.wikidata.org/entity/Q2405352|http://www.wikidata.org/entity/Q2702789"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20762680"}, "Title": {"type": "literal", "value": "Jumanji"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1678831"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5107425|http://www.wikidata.org/entity/Q3476302|http://www.wikidata.org/entity/Q3267145|http://www.wikidata.org/entity/Q139346"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q618352|http://www.wikidata.org/entity/Q483907|http://www.wikidata.org/entity/Q25999313|http://www.wikidata.org/entity/Q6755544|http://www.wikidata.org/entity/Q1806933|http://www.wikidata.org/entity/Q712457|http://www.wikidata.org/entity/Q234438|http://www.wikidata.org/entity/Q233786|http://www.wikidata.org/entity/Q231237|http://www.wikidata.org/entity/Q201656|http://www.wikidata.org/entity/Q10738|http://www.wikidata.org/entity/Q428819|http://www.wikidata.org/entity/Q318134"}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2973181|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "119"}, "Description": {"type": "literal", "value": "2017 American action adventure comedy film directed by Jake Kasdan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17335679|http://www.wikidata.org/entity/Q186941"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2500842"}, "Title": {"type": "literal", "value": "Urlaub vom Leben"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1974092"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1974092|http://www.wikidata.org/entity/Q102418"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15429213|http://www.wikidata.org/entity/Q13548622|http://www.wikidata.org/entity/Q2512085|http://www.wikidata.org/entity/Q2503708|http://www.wikidata.org/entity/Q2080400|http://www.wikidata.org/entity/Q2080258|http://www.wikidata.org/entity/Q2020430|http://www.wikidata.org/entity/Q1806325|http://www.wikidata.org/entity/Q1686658|http://www.wikidata.org/entity/Q1606331|http://www.wikidata.org/entity/Q1556252|http://www.wikidata.org/entity/Q1288624|http://www.wikidata.org/entity/Q559891|http://www.wikidata.org/entity/Q122041|http://www.wikidata.org/entity/Q118053|http://www.wikidata.org/entity/Q65511"}, "Published": {"type": "literal", "value": "2006|2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2005 film by Neele Vollmar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1199301"}, "Title": {"type": "literal", "value": "The Powerpuff Girls Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q655250"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q655250|http://www.wikidata.org/entity/Q262510"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "72"}, "Description": {"type": "literal", "value": "2002 film by Craig McCracken"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q858803|http://www.wikidata.org/entity/Q2701255"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43371364"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q43371305"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q43371305"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60448463|http://www.wikidata.org/entity/Q60448456|http://www.wikidata.org/entity/Q60372117|http://www.wikidata.org/entity/Q33438653|http://www.wikidata.org/entity/Q21685705|http://www.wikidata.org/entity/Q12023459|http://www.wikidata.org/entity/Q12022667|http://www.wikidata.org/entity/Q11985642|http://www.wikidata.org/entity/Q11881121|http://www.wikidata.org/entity/Q11774418|http://www.wikidata.org/entity/Q10861544|http://www.wikidata.org/entity/Q5825305|http://www.wikidata.org/entity/Q1675647"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "77"}, "Description": {"type": "literal", "value": "2018 film by Tom\u00e1\u0161 Pavl\u00ed\u010dek"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28868136"}, "Title": {"type": "literal", "value": "\u0643\u0644\u0628 \u0628\u0644\u062f\u064a"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12243777"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22931475|http://www.wikidata.org/entity/Q22928869|http://www.wikidata.org/entity/Q18594203"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q919135"}, "Title": {"type": "literal", "value": "Cashback"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3476723"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3476723"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q798174|http://www.wikidata.org/entity/Q785482|http://www.wikidata.org/entity/Q447218|http://www.wikidata.org/entity/Q362228|http://www.wikidata.org/entity/Q236431|http://www.wikidata.org/entity/Q233707|http://www.wikidata.org/entity/Q213257"}, "Published": {"type": "literal", "value": "2006|2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2006 feature film by Sean Ellis"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2756503"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q186873"}, "Title": {"type": "literal", "value": "13 Semester"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1328470"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2020663|http://www.wikidata.org/entity/Q1328470"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19946588|http://www.wikidata.org/entity/Q2263101|http://www.wikidata.org/entity/Q2157388|http://www.wikidata.org/entity/Q1896401|http://www.wikidata.org/entity/Q1698467|http://www.wikidata.org/entity/Q1354323|http://www.wikidata.org/entity/Q1163254|http://www.wikidata.org/entity/Q1097434|http://www.wikidata.org/entity/Q817579|http://www.wikidata.org/entity/Q96660|http://www.wikidata.org/entity/Q90820|http://www.wikidata.org/entity/Q90293|http://www.wikidata.org/entity/Q76172"}, "Published": {"type": "literal", "value": "2010|2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2009 film by Frieder Wittich"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1217944"}, "Title": {"type": "literal", "value": "Die blaue Grenze"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2433403"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2433403"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2005 film by Till Franzen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q45232327"}, "Title": {"type": "literal", "value": "Verano no miente"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q45232266"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q45232266"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17364489|http://www.wikidata.org/entity/Q2884177"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "125"}, "Description": {"type": "literal", "value": "2018 film directed by Ernesto Santisteban"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15699342"}, "Title": {"type": "literal", "value": "The Muslims Are Coming!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6987345"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5246387"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Negin Farsad"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q52565044"}, "Title": {"type": "literal", "value": "Comme des rois"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3570535"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3570535"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q40675861|http://www.wikidata.org/entity/Q20240962|http://www.wikidata.org/entity/Q3265253|http://www.wikidata.org/entity/Q3191724|http://www.wikidata.org/entity/Q983159|http://www.wikidata.org/entity/Q242526"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Xabi Molia"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q631377"}, "Title": {"type": "literal", "value": "Napapiirin sankarit"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2665374"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5411720"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6303995|http://www.wikidata.org/entity/Q3742950|http://www.wikidata.org/entity/Q3742931|http://www.wikidata.org/entity/Q1378023|http://www.wikidata.org/entity/Q468517"}, "Published": {"type": "literal", "value": "2012|2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2010 Finnish comedy film directed by Dome Karukoski"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18688791"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30731066"}, "Title": {"type": "literal", "value": "Patients"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q738880"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q738880"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28967602|http://www.wikidata.org/entity/Q2411736"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Grand Corps Malade"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q913462|http://www.wikidata.org/entity/Q16662670"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q815425"}, "Title": {"type": "literal", "value": "Wer fr\u00fcher stirbt ist l\u00e4nger tot"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q96164"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15794221|http://www.wikidata.org/entity/Q96164"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q91813|http://www.wikidata.org/entity/Q88861|http://www.wikidata.org/entity/Q43766528|http://www.wikidata.org/entity/Q109720"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q304538|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2006 film comedy directed by Marcus H. Rosenm\u00fcller"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16973734"}, "Title": {"type": "literal", "value": "The Diary of a Teenage Girl"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21032133"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21032133"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19938372|http://www.wikidata.org/entity/Q11781641|http://www.wikidata.org/entity/Q7859798|http://www.wikidata.org/entity/Q6289066|http://www.wikidata.org/entity/Q4881743|http://www.wikidata.org/entity/Q3499302|http://www.wikidata.org/entity/Q3017888|http://www.wikidata.org/entity/Q380095|http://www.wikidata.org/entity/Q310637|http://www.wikidata.org/entity/Q240206|http://www.wikidata.org/entity/Q231382"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2015 American comedy-drama film directed by Marielle Heller"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28211219"}, "Title": {"type": "literal", "value": "Os Penetras 2 \u2013 Quem D\u00e1 Mais?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4759560"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2017 film by Andrucha Waddington"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3635593"}, "Title": {"type": "literal", "value": "Basette"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3756624"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3876239"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3846163|http://www.wikidata.org/entity/Q1144984|http://www.wikidata.org/entity/Q1052746|http://www.wikidata.org/entity/Q980037|http://www.wikidata.org/entity/Q82887"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "17"}, "Description": {"type": "literal", "value": "2008 film by Gabriele Mainetti"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28773369"}, "Title": {"type": "literal", "value": "Pieles"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3626210"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3626210"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q63120044|http://www.wikidata.org/entity/Q5044778|http://www.wikidata.org/entity/Q2757345|http://www.wikidata.org/entity/Q716527|http://www.wikidata.org/entity/Q275932|http://www.wikidata.org/entity/Q250382"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q53094"}, "Duration": {"type": "literal", "value": "77"}, "Description": {"type": "literal", "value": "2017 film by Eduardo Casanova"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29514872"}, "Title": {"type": "literal", "value": "The Florida Project"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7441419"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7441419|http://www.wikidata.org/entity/Q27230886"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23834468|http://www.wikidata.org/entity/Q920607|http://www.wikidata.org/entity/Q188772|http://www.wikidata.org/entity/Q47006108|http://www.wikidata.org/entity/Q42302437"}, "Published": {"type": "literal", "value": "2017|2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "2017 American drama film by Sean Baker"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28873425"}, "Title": {"type": "literal", "value": "De plus belle"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28872958"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28872958"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16666759|http://www.wikidata.org/entity/Q3375576|http://www.wikidata.org/entity/Q3186632|http://www.wikidata.org/entity/Q3183342|http://www.wikidata.org/entity/Q2625575|http://www.wikidata.org/entity/Q1857676|http://www.wikidata.org/entity/Q491766|http://www.wikidata.org/entity/Q434060"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Anne-Ga\u00eblle Daval"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2917130"}, "Title": {"type": "literal", "value": "Casa de Mi Padre"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6789190"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2846739"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q179576"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q622548|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2012 film by Matt Piedmont"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3098606|http://www.wikidata.org/entity/Q6952279"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42048434"}, "Title": {"type": "literal", "value": "Bodied"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1363428"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6404556"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17385846|http://www.wikidata.org/entity/Q17141311|http://www.wikidata.org/entity/Q16223951|http://www.wikidata.org/entity/Q16203002|http://www.wikidata.org/entity/Q11233915|http://www.wikidata.org/entity/Q7965817|http://www.wikidata.org/entity/Q6116482|http://www.wikidata.org/entity/Q2934421|http://www.wikidata.org/entity/Q361215|http://www.wikidata.org/entity/Q194032"}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "121"}, "Description": {"type": "literal", "value": "2017 film directed by Joseph Kahn"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19204752"}, "Title": {"type": "literal", "value": "The Boss"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2082056"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2082056|http://www.wikidata.org/entity/Q229048"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18921335|http://www.wikidata.org/entity/Q16226409|http://www.wikidata.org/entity/Q5056524|http://www.wikidata.org/entity/Q4419294|http://www.wikidata.org/entity/Q4355538|http://www.wikidata.org/entity/Q3938395|http://www.wikidata.org/entity/Q2943801|http://www.wikidata.org/entity/Q2754439|http://www.wikidata.org/entity/Q2082056|http://www.wikidata.org/entity/Q934467|http://www.wikidata.org/entity/Q544465|http://www.wikidata.org/entity/Q462354|http://www.wikidata.org/entity/Q310937|http://www.wikidata.org/entity/Q272927|http://www.wikidata.org/entity/Q257317|http://www.wikidata.org/entity/Q229048|http://www.wikidata.org/entity/Q221155|http://www.wikidata.org/entity/Q178882|http://www.wikidata.org/entity/Q44158"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2016 film by Ben Falcone"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q550558"}, "Title": {"type": "literal", "value": "The Muppets"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5925685"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q202304|http://www.wikidata.org/entity/Q2624066"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q237194|http://www.wikidata.org/entity/Q229013|http://www.wikidata.org/entity/Q223830|http://www.wikidata.org/entity/Q202304|http://www.wikidata.org/entity/Q193517|http://www.wikidata.org/entity/Q190972|http://www.wikidata.org/entity/Q186485|http://www.wikidata.org/entity/Q139325|http://www.wikidata.org/entity/Q108283|http://www.wikidata.org/entity/Q481832|http://www.wikidata.org/entity/Q440910|http://www.wikidata.org/entity/Q432437|http://www.wikidata.org/entity/Q365023|http://www.wikidata.org/entity/Q313039|http://www.wikidata.org/entity/Q273208|http://www.wikidata.org/entity/Q272927|http://www.wikidata.org/entity/Q104081|http://www.wikidata.org/entity/Q83287|http://www.wikidata.org/entity/Q49001|http://www.wikidata.org/entity/Q23517|http://www.wikidata.org/entity/Q12006|http://www.wikidata.org/entity/Q862028|http://www.wikidata.org/entity/Q552090|http://www.wikidata.org/entity/Q540608|http://www.wikidata.org/entity/Q485310|http://www.wikidata.org/entity/Q483907|http://www.wikidata.org/entity/Q6391089|http://www.wikidata.org/entity/Q3116185|http://www.wikidata.org/entity/Q1378118|http://www.wikidata.org/entity/Q1239933"}, "Published": {"type": "literal", "value": "2011|2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2011 film by James Bobin"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191224"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2995658"}, "Title": {"type": "literal", "value": "Continental, un film sans fusil"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3501883"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3501883"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3105869|http://www.wikidata.org/entity/Q3098516|http://www.wikidata.org/entity/Q3066473|http://www.wikidata.org/entity/Q3035411|http://www.wikidata.org/entity/Q2910037|http://www.wikidata.org/entity/Q28806573|http://www.wikidata.org/entity/Q3454390|http://www.wikidata.org/entity/Q3372741|http://www.wikidata.org/entity/Q3292400|http://www.wikidata.org/entity/Q3291851"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2007 film by St\u00e9phane Lafleur"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2964928"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24931663"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4065391"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28368075"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2035141"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2015 film by Sarik Andreasyan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22074948"}, "Title": {"type": "literal", "value": "Bad Moms"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3081957|http://www.wikidata.org/entity/Q7436898"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3081957|http://www.wikidata.org/entity/Q7436898"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q271986|http://www.wikidata.org/entity/Q237194|http://www.wikidata.org/entity/Q234606|http://www.wikidata.org/entity/Q228787|http://www.wikidata.org/entity/Q188280|http://www.wikidata.org/entity/Q178882|http://www.wikidata.org/entity/Q37628|http://www.wikidata.org/entity/Q33605|http://www.wikidata.org/entity/Q512818|http://www.wikidata.org/entity/Q2754439|http://www.wikidata.org/entity/Q1153513|http://www.wikidata.org/entity/Q1097511|http://www.wikidata.org/entity/Q727730|http://www.wikidata.org/entity/Q533655|http://www.wikidata.org/entity/Q18581762|http://www.wikidata.org/entity/Q17403226|http://www.wikidata.org/entity/Q17270160|http://www.wikidata.org/entity/Q5407903"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2016 film by Jon Lucas, Scott Moore"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19868261"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3494885"}, "Title": {"type": "literal", "value": "Tout ce qui brille"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3134600|http://www.wikidata.org/entity/Q541690"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3134600|http://www.wikidata.org/entity/Q541690"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15136777|http://www.wikidata.org/entity/Q436888|http://www.wikidata.org/entity/Q292756|http://www.wikidata.org/entity/Q234683|http://www.wikidata.org/entity/Q3509994|http://www.wikidata.org/entity/Q3484224|http://www.wikidata.org/entity/Q3367364|http://www.wikidata.org/entity/Q3335761|http://www.wikidata.org/entity/Q3334837|http://www.wikidata.org/entity/Q3286702|http://www.wikidata.org/entity/Q3265253|http://www.wikidata.org/entity/Q3176042|http://www.wikidata.org/entity/Q2866088|http://www.wikidata.org/entity/Q2671216|http://www.wikidata.org/entity/Q1835077|http://www.wikidata.org/entity/Q759001|http://www.wikidata.org/entity/Q541690"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2010 film by G\u00e9raldine Nakache"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q62067070"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3610041"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2019 Italian film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3304113"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2032336"}, "Title": {"type": "literal", "value": "Welcome Home Roscoe Jenkins"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3843845"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3843845"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4974455|http://www.wikidata.org/entity/Q492327|http://www.wikidata.org/entity/Q483148|http://www.wikidata.org/entity/Q433692|http://www.wikidata.org/entity/Q311962|http://www.wikidata.org/entity/Q271846|http://www.wikidata.org/entity/Q267422|http://www.wikidata.org/entity/Q261796|http://www.wikidata.org/entity/Q229169|http://www.wikidata.org/entity/Q203960|http://www.wikidata.org/entity/Q183542|http://www.wikidata.org/entity/Q15079"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "2008 film by Malcolm D. Lee"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q512858"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43295375"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7079736"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film directed by Ofir Lobel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16734019"}, "Title": {"type": "literal", "value": "Phone Swap"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15981681"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24852501"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014|2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Kunle Afolayan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q426828"}, "Title": {"type": "literal", "value": "Donnie Darko"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q711022"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q711022"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3500836|http://www.wikidata.org/entity/Q2240987|http://www.wikidata.org/entity/Q964783|http://www.wikidata.org/entity/Q676094|http://www.wikidata.org/entity/Q589849|http://www.wikidata.org/entity/Q546115|http://www.wikidata.org/entity/Q349928|http://www.wikidata.org/entity/Q3624322|http://www.wikidata.org/entity/Q327217|http://www.wikidata.org/entity/Q315208|http://www.wikidata.org/entity/Q271635|http://www.wikidata.org/entity/Q237774|http://www.wikidata.org/entity/Q233368|http://www.wikidata.org/entity/Q232837|http://www.wikidata.org/entity/Q220308|http://www.wikidata.org/entity/Q202381|http://www.wikidata.org/entity/Q133313|http://www.wikidata.org/entity/Q127471|http://www.wikidata.org/entity/Q117500|http://www.wikidata.org/entity/Q49004|http://www.wikidata.org/entity/Q26935179|http://www.wikidata.org/entity/Q18340454|http://www.wikidata.org/entity/Q6269911"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "113|134"}, "Description": {"type": "literal", "value": "2001 film by Richard Kelly"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q644711"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5932659"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3418411"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Rambod Javan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q33284986"}, "Title": {"type": "literal", "value": "A Quint-mas Carol"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q33281968"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q33283086"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q33283086"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 short film by Justin Burquist"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10438882"}, "Title": {"type": "literal", "value": "Landspeed presents: CKY"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q297173"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q297173"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3390959|http://www.wikidata.org/entity/Q919042|http://www.wikidata.org/entity/Q316036|http://www.wikidata.org/entity/Q297173"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1999 film by Bam Margera"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11733137"}, "Title": {"type": "literal", "value": "\u0915\u093e\u092c\u0941\u0932 \u090f\u0915\u094d\u0938\u092a\u094d\u0930\u0947\u0938"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6344216"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6344216"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7405419|http://www.wikidata.org/entity/Q6551383|http://www.wikidata.org/entity/Q704859|http://www.wikidata.org/entity/Q313025|http://www.wikidata.org/entity/Q32452"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q628165|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q93196"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2006 Bollywood film directed by Kabir Khan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1696916"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17639852"}, "Title": {"type": "literal", "value": "The Editor"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4202035"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q272633|http://www.wikidata.org/entity/Q77035"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Matthew Kennedy"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4811599"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21639973"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21092329"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16236684"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5289192|http://www.wikidata.org/entity/Q4444277|http://www.wikidata.org/entity/Q4441999|http://www.wikidata.org/entity/Q4163864|http://www.wikidata.org/entity/Q1944158|http://www.wikidata.org/entity/Q487157"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2014 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3055062"}, "Title": {"type": "literal", "value": "\u5927\u4f6c\u611b\u7f8e\u9e97"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q996607"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q996607"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5238052|http://www.wikidata.org/entity/Q1059865|http://www.wikidata.org/entity/Q996607|http://www.wikidata.org/entity/Q912505|http://www.wikidata.org/entity/Q716027|http://www.wikidata.org/entity/Q704041|http://www.wikidata.org/entity/Q701039|http://www.wikidata.org/entity/Q380579|http://www.wikidata.org/entity/Q319364|http://www.wikidata.org/entity/Q277193|http://www.wikidata.org/entity/Q36970"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Stephen Fung"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56435721"}, "Title": {"type": "literal", "value": "Auditorium 6"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q53820435"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 comedic horror film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2497065"}, "Title": {"type": "literal", "value": "Unter Umst\u00e4nden verliebt"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2370977"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15791708"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Sven Bohse"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1219329"}, "Title": {"type": "literal", "value": "O Palha\u00e7o"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4289700"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10325181|http://www.wikidata.org/entity/Q4289700"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7155242|http://www.wikidata.org/entity/Q5613873|http://www.wikidata.org/entity/Q4289700"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2011 film by Selton Mello"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1520721"}, "Title": {"type": "literal", "value": "\u091c\u092c \u0935\u0940 \u092e\u0947\u091f"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3149575"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319491|http://www.wikidata.org/entity/Q184885"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "142"}, "Description": {"type": "literal", "value": "2007 film by Imtiaz Ali"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55272444"}, "Title": {"type": "literal", "value": "Diamantino"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19955958"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5042824"}, "Published": {"type": "literal", "value": "2019|2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Gabriel Abrantes"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q52229110"}, "Title": {"type": "literal", "value": "Vorsicht vor Leuten"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q692308"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q47484898|http://www.wikidata.org/entity/Q111498"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2343105|http://www.wikidata.org/entity/Q1594355|http://www.wikidata.org/entity/Q1175671|http://www.wikidata.org/entity/Q1067500|http://www.wikidata.org/entity/Q102606|http://www.wikidata.org/entity/Q100841|http://www.wikidata.org/entity/Q20829652|http://www.wikidata.org/entity/Q15623309|http://www.wikidata.org/entity/Q11974288|http://www.wikidata.org/entity/Q2372579"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Arne Feldhusen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2455827"}, "Title": {"type": "literal", "value": "Without a Paddle: Nature's Calling"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1332531"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4741274|http://www.wikidata.org/entity/Q52345"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2009 film by Ellory Elkayem"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18703125"}, "Title": {"type": "literal", "value": "Dyke Hard"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19629905"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Bitte Andersson"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10495189"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3319369"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3428387"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2006 film by Berni Goldblat"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20851383"}, "Title": {"type": "literal", "value": "Schmitke"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q57155677"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q57155677"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56705918|http://www.wikidata.org/entity/Q15990501|http://www.wikidata.org/entity/Q12019405|http://www.wikidata.org/entity/Q11911163|http://www.wikidata.org/entity/Q2343282|http://www.wikidata.org/entity/Q1577817|http://www.wikidata.org/entity/Q26734"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1200678|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2014 film by \u0160t\u011bp\u00e1n Altrichter"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2933985"}, "Title": {"type": "literal", "value": "California Dreamin'"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q638096"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29455061|http://www.wikidata.org/entity/Q12720629|http://www.wikidata.org/entity/Q7386866|http://www.wikidata.org/entity/Q6761146|http://www.wikidata.org/entity/Q351247|http://www.wikidata.org/entity/Q310511"}, "Published": {"type": "literal", "value": "2009|2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "155"}, "Description": {"type": "literal", "value": "2007 film by Cristian Nemescu"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27590871"}, "Title": {"type": "literal", "value": "Paddington 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7151786"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7151786|http://www.wikidata.org/entity/Q7518724"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q206659|http://www.wikidata.org/entity/Q185079|http://www.wikidata.org/entity/Q167774|http://www.wikidata.org/entity/Q163286|http://www.wikidata.org/entity/Q155775|http://www.wikidata.org/entity/Q19960315|http://www.wikidata.org/entity/Q15639406|http://www.wikidata.org/entity/Q3472307|http://www.wikidata.org/entity/Q1333118|http://www.wikidata.org/entity/Q816568|http://www.wikidata.org/entity/Q732661|http://www.wikidata.org/entity/Q563177|http://www.wikidata.org/entity/Q269835|http://www.wikidata.org/entity/Q261981|http://www.wikidata.org/entity/Q259679|http://www.wikidata.org/entity/Q254886|http://www.wikidata.org/entity/Q241962|http://www.wikidata.org/entity/Q233563|http://www.wikidata.org/entity/Q228747"}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2017 film by Paul King"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2415769|http://www.wikidata.org/entity/Q2450848|http://www.wikidata.org/entity/Q3700394"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23822706"}, "Title": {"type": "literal", "value": "El preg\u00f3n"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23663310"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q503459"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Dani de la Orden"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q498287"}, "Title": {"type": "literal", "value": "Hansel and Gretel: Witch Hunters"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2669356"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2669356"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6900353|http://www.wikidata.org/entity/Q4919937|http://www.wikidata.org/entity/Q4346488|http://www.wikidata.org/entity/Q3179653|http://www.wikidata.org/entity/Q2419067|http://www.wikidata.org/entity/Q616982|http://www.wikidata.org/entity/Q523373|http://www.wikidata.org/entity/Q295148|http://www.wikidata.org/entity/Q255323|http://www.wikidata.org/entity/Q227123|http://www.wikidata.org/entity/Q190794|http://www.wikidata.org/entity/Q171687|http://www.wikidata.org/entity/Q97010|http://www.wikidata.org/entity/Q23365"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q2678111|http://www.wikidata.org/entity/Q909586|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2013 film by Tommy Wirkola"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q159846|http://www.wikidata.org/entity/Q179200|http://www.wikidata.org/entity/Q1111024|http://www.wikidata.org/entity/Q3098606"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18405973"}, "Title": {"type": "literal", "value": "\u0413\u043e\u0440\u044c\u043a\u043e! 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16857528"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4503115"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8812380|http://www.wikidata.org/entity/Q192881"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2014 film by Zhora Kryzhovnikov"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2892410"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56884163"}, "Title": {"type": "literal", "value": "Co kdyby...?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56871589|http://www.wikidata.org/entity/Q526473|http://www.wikidata.org/entity/Q361032"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56871589|http://www.wikidata.org/entity/Q526473|http://www.wikidata.org/entity/Q361032"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1972"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "8"}, "Description": {"type": "literal", "value": "1972 animated film by Milo\u0161 Macourek, Adolf Born and Jaroslav Doubrava"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11081466"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48965024"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7489427"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7916220|http://www.wikidata.org/entity/Q7282998|http://www.wikidata.org/entity/Q465815"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Sharat Katariya"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1696916"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43079072"}, "Title": {"type": "literal", "value": "If I Were You"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q43079418"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q235384|http://www.wikidata.org/entity/Q228931"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "2012 film by Joan Carr-Wiggin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56302295"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1160223"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film directed by Daniel Burman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q466443"}, "Title": {"type": "literal", "value": "\u0915\u092d\u0940 \u0916\u0941\u0936\u0940 \u0915\u092d\u0940 \u0917\u093c\u092e"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q468442"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q468442"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q184885|http://www.wikidata.org/entity/Q157803|http://www.wikidata.org/entity/Q147395|http://www.wikidata.org/entity/Q9570|http://www.wikidata.org/entity/Q9535|http://www.wikidata.org/entity/Q3785692|http://www.wikidata.org/entity/Q3632832|http://www.wikidata.org/entity/Q2839215|http://www.wikidata.org/entity/Q2347167|http://www.wikidata.org/entity/Q983571|http://www.wikidata.org/entity/Q485557|http://www.wikidata.org/entity/Q464932|http://www.wikidata.org/entity/Q233619"}, "Published": {"type": "literal", "value": "2003|2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "210"}, "Description": {"type": "literal", "value": "2001 Indian film directed by Karan Johar"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1207592"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55474374"}, "Title": {"type": "literal", "value": "Hello Ladies: The Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23814"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6513524|http://www.wikidata.org/entity/Q5531483"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3936377|http://www.wikidata.org/entity/Q708320|http://www.wikidata.org/entity/Q348952|http://www.wikidata.org/entity/Q298995|http://www.wikidata.org/entity/Q290156|http://www.wikidata.org/entity/Q281951|http://www.wikidata.org/entity/Q268271|http://www.wikidata.org/entity/Q37459|http://www.wikidata.org/entity/Q16223299|http://www.wikidata.org/entity/Q23814"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film directed by Stephen Merchant"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24807373"}, "Title": {"type": "literal", "value": "Well Wishes"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24743212"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24743212"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24852042"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Anderson Boyd"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21682626"}, "Title": {"type": "literal", "value": "Rico, Oskar und der Diebstahlstein"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1974092"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1903917"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q111879|http://www.wikidata.org/entity/Q103544|http://www.wikidata.org/entity/Q91504|http://www.wikidata.org/entity/Q69092|http://www.wikidata.org/entity/Q62510|http://www.wikidata.org/entity/Q61099|http://www.wikidata.org/entity/Q58065|http://www.wikidata.org/entity/Q23061313|http://www.wikidata.org/entity/Q21206530|http://www.wikidata.org/entity/Q19839425|http://www.wikidata.org/entity/Q11956074|http://www.wikidata.org/entity/Q1676772|http://www.wikidata.org/entity/Q1527740|http://www.wikidata.org/entity/Q1260674|http://www.wikidata.org/entity/Q559891|http://www.wikidata.org/entity/Q160305|http://www.wikidata.org/entity/Q125596|http://www.wikidata.org/entity/Q114624"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2016 film by Neele Vollmar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5853907"}, "Title": {"type": "literal", "value": "FBI: Frikis Buscan Incordiar"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5927636"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Javier C\u00e0rdenas"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5600270"}, "Title": {"type": "literal", "value": "Great World of Sound"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5181627"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3368538"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Craig Zobel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15040917"}, "Title": {"type": "literal", "value": "22 Jump Street"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3378803|http://www.wikidata.org/entity/Q13638984"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q313388|http://www.wikidata.org/entity/Q7357051|http://www.wikidata.org/entity/Q7146670|http://www.wikidata.org/entity/Q2262850|http://www.wikidata.org/entity/Q470282"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14537|http://www.wikidata.org/entity/Q4491|http://www.wikidata.org/entity/Q295148|http://www.wikidata.org/entity/Q276273|http://www.wikidata.org/entity/Q220308|http://www.wikidata.org/entity/Q212064|http://www.wikidata.org/entity/Q173637|http://www.wikidata.org/entity/Q1112005|http://www.wikidata.org/entity/Q960809|http://www.wikidata.org/entity/Q533781|http://www.wikidata.org/entity/Q508404|http://www.wikidata.org/entity/Q444146|http://www.wikidata.org/entity/Q383930|http://www.wikidata.org/entity/Q374065|http://www.wikidata.org/entity/Q313388|http://www.wikidata.org/entity/Q1319744|http://www.wikidata.org/entity/Q1267727|http://www.wikidata.org/entity/Q1616538|http://www.wikidata.org/entity/Q1985488|http://www.wikidata.org/entity/Q3400399|http://www.wikidata.org/entity/Q3952080|http://www.wikidata.org/entity/Q6755544|http://www.wikidata.org/entity/Q6838621|http://www.wikidata.org/entity/Q12859526|http://www.wikidata.org/entity/Q15542608|http://www.wikidata.org/entity/Q15633838|http://www.wikidata.org/entity/Q16198576|http://www.wikidata.org/entity/Q17417513"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q4984974"}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "2014 film by Phil Lord, Christopher Miller"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q179200|http://www.wikidata.org/entity/Q557387|http://www.wikidata.org/entity/Q2702789|http://www.wikidata.org/entity/Q2856187"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60852134"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q686366"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Judith Davis"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1997051"}, "Title": {"type": "literal", "value": "A Fistful of Fingers"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q522057"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q522057"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1994"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q622548|http://www.wikidata.org/entity/Q172980|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "78"}, "Description": {"type": "literal", "value": "1994 film by Edgar Wright"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20856821"}, "Title": {"type": "literal", "value": "All Creatures Big and Small"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22988070|http://www.wikidata.org/entity/Q1532740"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2015 film by Toby Genkel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4020832"}, "Title": {"type": "literal", "value": "Workers - Pronti a tutto"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3837102"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19788328"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3893815|http://www.wikidata.org/entity/Q3840387|http://www.wikidata.org/entity/Q3832540|http://www.wikidata.org/entity/Q3749631|http://www.wikidata.org/entity/Q3702561|http://www.wikidata.org/entity/Q3701841|http://www.wikidata.org/entity/Q3639426|http://www.wikidata.org/entity/Q3615555|http://www.wikidata.org/entity/Q3610339|http://www.wikidata.org/entity/Q808664|http://www.wikidata.org/entity/Q559570|http://www.wikidata.org/entity/Q512146|http://www.wikidata.org/entity/Q457841"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Lorenzo Vignolo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3319810"}, "Title": {"type": "literal", "value": "Finn on the Fly"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22236380"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7383872|http://www.wikidata.org/entity/Q2844979|http://www.wikidata.org/entity/Q714071"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Mark Jean"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3831473"}, "Title": {"type": "literal", "value": "Lezioni di cioccolato"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3680001"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13427396"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3972384|http://www.wikidata.org/entity/Q3804842|http://www.wikidata.org/entity/Q3783619|http://www.wikidata.org/entity/Q3338344|http://www.wikidata.org/entity/Q3320729|http://www.wikidata.org/entity/Q1223109|http://www.wikidata.org/entity/Q808664|http://www.wikidata.org/entity/Q455945"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2007 film by Claudio Cupellini"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3663776"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4905600"}, "Title": {"type": "literal", "value": "Big Dreams Little Tokyo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5228393"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5228393"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Dave Boyle"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4249907"}, "Title": {"type": "literal", "value": "Sandheden om m\u00e6nd"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2867634"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2867634|http://www.wikidata.org/entity/Q12332906|http://www.wikidata.org/entity/Q12323855"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5251588|http://www.wikidata.org/entity/Q4968553|http://www.wikidata.org/entity/Q3896343|http://www.wikidata.org/entity/Q41236196|http://www.wikidata.org/entity/Q40523840|http://www.wikidata.org/entity/Q38052532|http://www.wikidata.org/entity/Q37494099|http://www.wikidata.org/entity/Q37491150|http://www.wikidata.org/entity/Q35985647|http://www.wikidata.org/entity/Q28498467|http://www.wikidata.org/entity/Q12339206|http://www.wikidata.org/entity/Q12335233|http://www.wikidata.org/entity/Q12333677|http://www.wikidata.org/entity/Q12333487|http://www.wikidata.org/entity/Q12333484|http://www.wikidata.org/entity/Q12332888|http://www.wikidata.org/entity/Q12328974|http://www.wikidata.org/entity/Q12328505|http://www.wikidata.org/entity/Q12325827|http://www.wikidata.org/entity/Q12324648|http://www.wikidata.org/entity/Q12322113|http://www.wikidata.org/entity/Q12320462|http://www.wikidata.org/entity/Q12316399|http://www.wikidata.org/entity/Q12316265|http://www.wikidata.org/entity/Q12315378|http://www.wikidata.org/entity/Q12310008|http://www.wikidata.org/entity/Q12305454|http://www.wikidata.org/entity/Q11996468|http://www.wikidata.org/entity/Q5983810|http://www.wikidata.org/entity/Q5882039|http://www.wikidata.org/entity/Q5810625|http://www.wikidata.org/entity/Q3066309|http://www.wikidata.org/entity/Q2913347|http://www.wikidata.org/entity/Q1967835|http://www.wikidata.org/entity/Q1797671|http://www.wikidata.org/entity/Q1712212|http://www.wikidata.org/entity/Q1341671|http://www.wikidata.org/entity/Q984186|http://www.wikidata.org/entity/Q707827|http://www.wikidata.org/entity/Q508739|http://www.wikidata.org/entity/Q491315|http://www.wikidata.org/entity/Q468499|http://www.wikidata.org/entity/Q307929|http://www.wikidata.org/entity/Q155142|http://www.wikidata.org/entity/Q115988"}, "Published": {"type": "literal", "value": "2010|2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2010 film by Nikolaj Arcel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7831441"}, "Title": {"type": "literal", "value": "Traci Townsend"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5181397"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1755605|http://www.wikidata.org/entity/Q1719161|http://www.wikidata.org/entity/Q941922|http://www.wikidata.org/entity/Q374181"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Craig Ross, Jr."}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q967335"}, "Title": {"type": "literal", "value": "Beur sur la ville"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3032767"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3106333"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q314972|http://www.wikidata.org/entity/Q308840|http://www.wikidata.org/entity/Q262822|http://www.wikidata.org/entity/Q259940|http://www.wikidata.org/entity/Q201810|http://www.wikidata.org/entity/Q171557|http://www.wikidata.org/entity/Q1341507|http://www.wikidata.org/entity/Q1031692|http://www.wikidata.org/entity/Q930862|http://www.wikidata.org/entity/Q728158|http://www.wikidata.org/entity/Q551873|http://www.wikidata.org/entity/Q465157|http://www.wikidata.org/entity/Q437254|http://www.wikidata.org/entity/Q328511|http://www.wikidata.org/entity/Q3196011|http://www.wikidata.org/entity/Q3192383|http://www.wikidata.org/entity/Q3189442|http://www.wikidata.org/entity/Q3189294|http://www.wikidata.org/entity/Q3158341|http://www.wikidata.org/entity/Q3155677|http://www.wikidata.org/entity/Q3018752|http://www.wikidata.org/entity/Q2964183|http://www.wikidata.org/entity/Q2910406|http://www.wikidata.org/entity/Q2905002|http://www.wikidata.org/entity/Q2869522|http://www.wikidata.org/entity/Q2602323|http://www.wikidata.org/entity/Q2050238|http://www.wikidata.org/entity/Q1450857|http://www.wikidata.org/entity/Q3499140|http://www.wikidata.org/entity/Q3483072|http://www.wikidata.org/entity/Q3471319|http://www.wikidata.org/entity/Q3460880|http://www.wikidata.org/entity/Q3440076|http://www.wikidata.org/entity/Q3418669|http://www.wikidata.org/entity/Q3397928|http://www.wikidata.org/entity/Q3386401|http://www.wikidata.org/entity/Q3362788|http://www.wikidata.org/entity/Q3286441"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2011 film by Djamel Bensalah"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3967460"}, "Title": {"type": "literal", "value": "Squeeze Play!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q944978|http://www.wikidata.org/entity/Q183347"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q183347"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q983418|http://www.wikidata.org/entity/Q578612|http://www.wikidata.org/entity/Q273065|http://www.wikidata.org/entity/Q211913|http://www.wikidata.org/entity/Q183347"}, "Published": {"type": "literal", "value": "1979"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "1979 film by Michael Herz, Lloyd Kaufman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q640786"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55539697"}, "Title": {"type": "literal", "value": "\u00cemi este indiferent dac\u0103 \u00een istorie vom intra ca barbari"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1248032"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1248032"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22687812|http://www.wikidata.org/entity/Q12720305"}, "Published": {"type": "literal", "value": "2019|2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17013749|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "140"}, "Description": {"type": "literal", "value": "2018 film directed by Radu Jude"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4072219"}, "Title": {"type": "literal", "value": "\u0410\u0442\u043e\u043c\u043d\u044b\u0439 \u0418\u0432\u0430\u043d"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4078762"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4078762"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2642325"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Vasily Barkhatov"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q59386394"}, "Title": {"type": "literal", "value": "Soltera Codiciada"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q59391272|http://www.wikidata.org/entity/Q5734480"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5564906|http://www.wikidata.org/entity/Q1261353|http://www.wikidata.org/entity/Q436854"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Bruno Ascenzo and Joanna Lombardi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28496988"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20971921"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Damien Manivel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61249167"}, "Title": {"type": "literal", "value": "Doble"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q44573328"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9073088|http://www.wikidata.org/entity/Q8193674|http://www.wikidata.org/entity/Q5954893|http://www.wikidata.org/entity/Q1562942|http://www.wikidata.org/entity/Q952433|http://www.wikidata.org/entity/Q861324"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 drama Colombian film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4463351"}, "Title": {"type": "literal", "value": "\u0422\u0440\u043e\u0435 \u0438 \u0421\u043d\u0435\u0436\u0438\u043d\u043a\u0430"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4078134"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q442830"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Pavel Bardin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18633955"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3194132"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3194132"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3308651|http://www.wikidata.org/entity/Q3183504|http://www.wikidata.org/entity/Q2776777|http://www.wikidata.org/entity/Q465971|http://www.wikidata.org/entity/Q456360|http://www.wikidata.org/entity/Q440609|http://www.wikidata.org/entity/Q283513|http://www.wikidata.org/entity/Q127206|http://www.wikidata.org/entity/Q86336"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film directed by Katia Lewkowicz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15987821"}, "Title": {"type": "literal", "value": "Kill Buljo 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2022437"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7710517|http://www.wikidata.org/entity/Q2669356"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7710517|http://www.wikidata.org/entity/Q2419067"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 Norwegian film directed by Vegar Hoel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1199877"}, "Title": {"type": "literal", "value": "Jawbreaker"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5225170"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5225170"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3059248|http://www.wikidata.org/entity/Q2745996|http://www.wikidata.org/entity/Q1336685|http://www.wikidata.org/entity/Q451978|http://www.wikidata.org/entity/Q445445|http://www.wikidata.org/entity/Q342612|http://www.wikidata.org/entity/Q272141|http://www.wikidata.org/entity/Q270079|http://www.wikidata.org/entity/Q241681|http://www.wikidata.org/entity/Q240541|http://www.wikidata.org/entity/Q236189|http://www.wikidata.org/entity/Q235302|http://www.wikidata.org/entity/Q233862|http://www.wikidata.org/entity/Q230320|http://www.wikidata.org/entity/Q211040|http://www.wikidata.org/entity/Q186327"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "1999 film by Darren Stein"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3214264"}, "Title": {"type": "literal", "value": "La vraie vie est ailleurs"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2400882"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2400882"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q58208486|http://www.wikidata.org/entity/Q680173"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Fr\u00e9d\u00e9ric Choffat"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22696234"}, "Title": {"type": "literal", "value": "Osman Pazarlama"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7813033"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q388027"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Togan G\u00f6kbakar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3020363"}, "Title": {"type": "literal", "value": "De l'autre c\u00f4t\u00e9 du p\u00e9riph"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3017644"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3219319|http://www.wikidata.org/entity/Q3017644"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30728789|http://www.wikidata.org/entity/Q3572937|http://www.wikidata.org/entity/Q3369254|http://www.wikidata.org/entity/Q3219319|http://www.wikidata.org/entity/Q3194138|http://www.wikidata.org/entity/Q2848242|http://www.wikidata.org/entity/Q1341507|http://www.wikidata.org/entity/Q436888|http://www.wikidata.org/entity/Q357387|http://www.wikidata.org/entity/Q139052"}, "Published": {"type": "literal", "value": "2013|2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2012 film by David Charhon"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3117481"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18693377"}, "Title": {"type": "literal", "value": "Lovemilla"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11896737"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18720033|http://www.wikidata.org/entity/Q11896737"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2015 Finnish film directed by Teemu Nikki"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18759861"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q50821703"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12472095"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12525054|http://www.wikidata.org/entity/Q7478484|http://www.wikidata.org/entity/Q5653028|http://www.wikidata.org/entity/Q5262511"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1033891|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Indonesian comedy martial arts movie directed by Angga Dwimas Sasongko"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21427590"}, "Title": {"type": "literal", "value": "Les Malheurs de Sophie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q551772"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3106513|http://www.wikidata.org/entity/Q551772"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q37793145|http://www.wikidata.org/entity/Q3309608|http://www.wikidata.org/entity/Q3189528|http://www.wikidata.org/entity/Q2525146|http://www.wikidata.org/entity/Q464712|http://www.wikidata.org/entity/Q434051"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Christophe Honor\u00e9"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3232641"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3608281"}, "Title": {"type": "literal", "value": "Prince Avalanche"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2296698"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2296698"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1378226|http://www.wikidata.org/entity/Q420041|http://www.wikidata.org/entity/Q276525|http://www.wikidata.org/entity/Q244678"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2013 comedy-drama film directed by David Gordon Green"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5288342"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11989059"}, "Title": {"type": "literal", "value": "Mer eller mindre mann"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11988524"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11988524"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17194694|http://www.wikidata.org/entity/Q16175152|http://www.wikidata.org/entity/Q12007001|http://www.wikidata.org/entity/Q4978023|http://www.wikidata.org/entity/Q4807257"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "75"}, "Description": {"type": "literal", "value": "2012 Norwegian comedy film directed by Martin Lund"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q739440"}, "Title": {"type": "literal", "value": "Assassination of a High School President"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4962377"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7803274"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3574528|http://www.wikidata.org/entity/Q3545522|http://www.wikidata.org/entity/Q3308598|http://www.wikidata.org/entity/Q3288143|http://www.wikidata.org/entity/Q2820059|http://www.wikidata.org/entity/Q2050378|http://www.wikidata.org/entity/Q1290062|http://www.wikidata.org/entity/Q1060344|http://www.wikidata.org/entity/Q646189|http://www.wikidata.org/entity/Q460503|http://www.wikidata.org/entity/Q449626|http://www.wikidata.org/entity/Q350589|http://www.wikidata.org/entity/Q342252|http://www.wikidata.org/entity/Q232968|http://www.wikidata.org/entity/Q227129|http://www.wikidata.org/entity/Q207458|http://www.wikidata.org/entity/Q139385|http://www.wikidata.org/entity/Q2680|http://www.wikidata.org/entity/Q18156735|http://www.wikidata.org/entity/Q8073314|http://www.wikidata.org/entity/Q6246377|http://www.wikidata.org/entity/Q4013057|http://www.wikidata.org/entity/Q3810262"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2421031|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2008 film by Brett Simon"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55007988"}, "Title": {"type": "literal", "value": "I Will Sing This Type of Song"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30302507"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q54957886|http://www.wikidata.org/entity/Q54855137|http://www.wikidata.org/entity/Q54854418|http://www.wikidata.org/entity/Q47464822|http://www.wikidata.org/entity/Q26705192"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 Nepalese film directed by Sudarshan Thapa"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7165100"}, "Title": {"type": "literal", "value": "Pentecost"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2655230"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2655230"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "11"}, "Description": {"type": "literal", "value": "2011 film by Peter McDonald"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1451835"}, "Title": {"type": "literal", "value": "Frauenparkplatz"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q115138"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "5"}, "Description": {"type": "literal", "value": "2004 film by Christopher Becker"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16653663"}, "Title": {"type": "literal", "value": "Le Dernier des immobiles"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3339906"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3386712|http://www.wikidata.org/entity/Q3339906|http://www.wikidata.org/entity/Q3309138|http://www.wikidata.org/entity/Q3299919|http://www.wikidata.org/entity/Q3028270"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Nicola Sornaga"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5650556"}, "Title": {"type": "literal", "value": "15 d\u00edas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1887437"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2000 film by Rodrigo Cort\u00e9s"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28671004"}, "Title": {"type": "literal", "value": "Omicidio all'italiana"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q921998"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q921998"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2017 film by Marcello Macchia"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q908473"}, "Title": {"type": "literal", "value": "DodgeBall: A True Underdog Story"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2745616"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2745616"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11221289|http://www.wikidata.org/entity/Q3475182|http://www.wikidata.org/entity/Q2745616|http://www.wikidata.org/entity/Q2620648|http://www.wikidata.org/entity/Q1077862|http://www.wikidata.org/entity/Q641050|http://www.wikidata.org/entity/Q512376|http://www.wikidata.org/entity/Q464320|http://www.wikidata.org/entity/Q443128|http://www.wikidata.org/entity/Q371786|http://www.wikidata.org/entity/Q349350|http://www.wikidata.org/entity/Q315864|http://www.wikidata.org/entity/Q313522|http://www.wikidata.org/entity/Q298672|http://www.wikidata.org/entity/Q284636|http://www.wikidata.org/entity/Q268303|http://www.wikidata.org/entity/Q242560|http://www.wikidata.org/entity/Q233786|http://www.wikidata.org/entity/Q233022|http://www.wikidata.org/entity/Q202056|http://www.wikidata.org/entity/Q201927|http://www.wikidata.org/entity/Q107730|http://www.wikidata.org/entity/Q47100|http://www.wikidata.org/entity/Q16297|http://www.wikidata.org/entity/Q2673|http://www.wikidata.org/entity/Q2172"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2004 film by Rawson Marshall Thurber"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434841|http://www.wikidata.org/entity/Q7304367"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30912346"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5657942"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Adolfo Aguilar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6750455"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6893585"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6122567"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Mohan Shankar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12327278"}, "Title": {"type": "literal", "value": "Min s\u00f8sters b\u00f8rn i sneen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q952621"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12338513|http://www.wikidata.org/entity/Q12326885"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12326885|http://www.wikidata.org/entity/Q12324918|http://www.wikidata.org/entity/Q1967835|http://www.wikidata.org/entity/Q1789215|http://www.wikidata.org/entity/Q1772927|http://www.wikidata.org/entity/Q38052575|http://www.wikidata.org/entity/Q21208039|http://www.wikidata.org/entity/Q12341493|http://www.wikidata.org/entity/Q12337040|http://www.wikidata.org/entity/Q12328868|http://www.wikidata.org/entity/Q12328505|http://www.wikidata.org/entity/Q12327192"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Tomas Villum Jensen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4015634"}, "Title": {"type": "literal", "value": "Viva l'Italia"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3850996"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3850996"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3932495|http://www.wikidata.org/entity/Q3897832|http://www.wikidata.org/entity/Q3893598|http://www.wikidata.org/entity/Q3876322|http://www.wikidata.org/entity/Q3852654|http://www.wikidata.org/entity/Q3851083|http://www.wikidata.org/entity/Q3838468|http://www.wikidata.org/entity/Q3838012|http://www.wikidata.org/entity/Q3802324|http://www.wikidata.org/entity/Q3796647|http://www.wikidata.org/entity/Q3719651|http://www.wikidata.org/entity/Q3719608|http://www.wikidata.org/entity/Q3697462|http://www.wikidata.org/entity/Q3651404|http://www.wikidata.org/entity/Q3639283|http://www.wikidata.org/entity/Q3634624|http://www.wikidata.org/entity/Q3610116|http://www.wikidata.org/entity/Q1993073|http://www.wikidata.org/entity/Q1276918|http://www.wikidata.org/entity/Q1008634|http://www.wikidata.org/entity/Q772282|http://www.wikidata.org/entity/Q437455|http://www.wikidata.org/entity/Q434574|http://www.wikidata.org/entity/Q381110|http://www.wikidata.org/entity/Q380685|http://www.wikidata.org/entity/Q3972506|http://www.wikidata.org/entity/Q3956119|http://www.wikidata.org/entity/Q3940278"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2012 film by Massimiliano Bruno"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3929491|http://www.wikidata.org/entity/Q3804257"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26000006"}, "Title": {"type": "literal", "value": "El Rey Tuerto"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28575458"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21036173"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q40831"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Marc Crehuet"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2668305"}, "Title": {"type": "literal", "value": "Narco"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q552639|http://www.wikidata.org/entity/Q3539613"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q552639|http://www.wikidata.org/entity/Q2829519"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3484876|http://www.wikidata.org/entity/Q3380215|http://www.wikidata.org/entity/Q3380199|http://www.wikidata.org/entity/Q3350981|http://www.wikidata.org/entity/Q3349242|http://www.wikidata.org/entity/Q3299848|http://www.wikidata.org/entity/Q3287898|http://www.wikidata.org/entity/Q3219319|http://www.wikidata.org/entity/Q3190701|http://www.wikidata.org/entity/Q3165613|http://www.wikidata.org/entity/Q3035225|http://www.wikidata.org/entity/Q2966467|http://www.wikidata.org/entity/Q2863129|http://www.wikidata.org/entity/Q2834662|http://www.wikidata.org/entity/Q1341507|http://www.wikidata.org/entity/Q954370|http://www.wikidata.org/entity/Q714765|http://www.wikidata.org/entity/Q658664|http://www.wikidata.org/entity/Q576085|http://www.wikidata.org/entity/Q552639|http://www.wikidata.org/entity/Q466991|http://www.wikidata.org/entity/Q446842|http://www.wikidata.org/entity/Q441676|http://www.wikidata.org/entity/Q388744|http://www.wikidata.org/entity/Q319527|http://www.wikidata.org/entity/Q314403|http://www.wikidata.org/entity/Q308840|http://www.wikidata.org/entity/Q259940|http://www.wikidata.org/entity/Q3591418|http://www.wikidata.org/entity/Q3588004|http://www.wikidata.org/entity/Q3580169|http://www.wikidata.org/entity/Q139052|http://www.wikidata.org/entity/Q57118|http://www.wikidata.org/entity/Q3559829"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2004 film by Gilles Lellouche"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22249125"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15039649"}, "Title": {"type": "literal", "value": "Nice Package"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16731753"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16734623"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q713173"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Dan Macarthur"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23709842"}, "Title": {"type": "literal", "value": "Grand Hotel"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11958682"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Arild Fr\u00f6hlich"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26769703"}, "Title": {"type": "literal", "value": "M\u00e4nnertag"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1624514"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1808962|http://www.wikidata.org/entity/Q1409320|http://www.wikidata.org/entity/Q1292000|http://www.wikidata.org/entity/Q1260674|http://www.wikidata.org/entity/Q865880|http://www.wikidata.org/entity/Q583792|http://www.wikidata.org/entity/Q124451|http://www.wikidata.org/entity/Q108942|http://www.wikidata.org/entity/Q95314|http://www.wikidata.org/entity/Q62929"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Holger Haase"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2363879"}, "Title": {"type": "literal", "value": "Suicide Club"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1248749"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1248749"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2010 film by Olaf Saumer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7397650"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7491056|http://www.wikidata.org/entity/Q6781094"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16217187"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7491056|http://www.wikidata.org/entity/Q6781094"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Shaurya Chauhan, Maryam Zakaria"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3203620"}, "Title": {"type": "literal", "value": "El hombre de al lado"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21191123|http://www.wikidata.org/entity/Q21191121|http://www.wikidata.org/entity/Q5526897"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28466027|http://www.wikidata.org/entity/Q27050725|http://www.wikidata.org/entity/Q21191123|http://www.wikidata.org/entity/Q21191121|http://www.wikidata.org/entity/Q5798126|http://www.wikidata.org/entity/Q326187"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2010 film by Gast\u00f3n Duprat & Mariano Cohn"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2877819"}, "Title": {"type": "literal", "value": "Carmina o revienta"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3621855"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6004136"}, "Published": {"type": "literal", "value": "2014|2013|2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 Spanish comedy-drama film directed by Paco Le\u00f3n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26221034"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26214506"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26214506"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26214506"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Jordan Goldnadel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q47064265"}, "Title": {"type": "literal", "value": "Blindspotting"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5042294"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7282069|http://www.wikidata.org/entity/Q20973977"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q264960|http://www.wikidata.org/entity/Q39986|http://www.wikidata.org/entity/Q29453375|http://www.wikidata.org/entity/Q20974000|http://www.wikidata.org/entity/Q20973977|http://www.wikidata.org/entity/Q7902890|http://www.wikidata.org/entity/Q7282069|http://www.wikidata.org/entity/Q383064|http://www.wikidata.org/entity/Q311976"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2018 film directed by Carlos L\u00f3pez Estrada"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q632323|http://www.wikidata.org/entity/Q5139969"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q649966"}, "Title": {"type": "literal", "value": "Dallas 362"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q314673"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q314673"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q723027|http://www.wikidata.org/entity/Q450714|http://www.wikidata.org/entity/Q362697|http://www.wikidata.org/entity/Q352203|http://www.wikidata.org/entity/Q314673|http://www.wikidata.org/entity/Q264748|http://www.wikidata.org/entity/Q242523|http://www.wikidata.org/entity/Q235072|http://www.wikidata.org/entity/Q228638|http://www.wikidata.org/entity/Q106706|http://www.wikidata.org/entity/Q95043"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2003 film by Scott Caan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q47063963"}, "Title": {"type": "literal", "value": "Apartment Troubles"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2646925"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film directed by Jess Weixler"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12377743"}, "Title": {"type": "literal", "value": "Umbkotid"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16407064|http://www.wikidata.org/entity/Q12359148"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16407064|http://www.wikidata.org/entity/Q12359148"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Andres Maimik and Rain Tolk"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19019142"}, "Title": {"type": "literal", "value": "\u0417\u0432\u0435\u0437\u0434\u0430"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4289477"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4289477"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50840112|http://www.wikidata.org/entity/Q28112146|http://www.wikidata.org/entity/Q27113807"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192881"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Anna Melikian"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7492085"}, "Title": {"type": "literal", "value": "She Wants Me"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7340338"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7340338"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6437798|http://www.wikidata.org/entity/Q3180255|http://www.wikidata.org/entity/Q1190319|http://www.wikidata.org/entity/Q718366|http://www.wikidata.org/entity/Q458512|http://www.wikidata.org/entity/Q449626|http://www.wikidata.org/entity/Q433618|http://www.wikidata.org/entity/Q311976|http://www.wikidata.org/entity/Q302930|http://www.wikidata.org/entity/Q256144|http://www.wikidata.org/entity/Q122020|http://www.wikidata.org/entity/Q103939"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2012 film by Rob Margolies"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q44491815"}, "Title": {"type": "literal", "value": "Long Shot"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1320930"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q42099156|http://www.wikidata.org/entity/Q5214442"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19667862|http://www.wikidata.org/entity/Q7291588|http://www.wikidata.org/entity/Q1713263|http://www.wikidata.org/entity/Q888178|http://www.wikidata.org/entity/Q310637|http://www.wikidata.org/entity/Q220308|http://www.wikidata.org/entity/Q206922|http://www.wikidata.org/entity/Q80046"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "125"}, "Description": {"type": "literal", "value": "2019 comedy film directed by Jonathan Levine"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17092493|http://www.wikidata.org/entity/Q23016773|http://www.wikidata.org/entity/Q27150184"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15805849"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60189101"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60189101"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2013 film by Andreas Schmied"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q51822263"}, "Title": {"type": "literal", "value": "Plaire, aimer et courir vite"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q551772"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q551772"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22248249|http://www.wikidata.org/entity/Q15904323|http://www.wikidata.org/entity/Q3559693|http://www.wikidata.org/entity/Q3490984|http://www.wikidata.org/entity/Q1187592"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "132"}, "Description": {"type": "literal", "value": "2018 film directed by Christophe Honor\u00e9"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18291583"}, "Title": {"type": "literal", "value": "K\u00e4rlek deluxe"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18169856"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4949423"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Kicki Kjellin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3446027"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5219645"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5219645"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12646341|http://www.wikidata.org/entity/Q12634890|http://www.wikidata.org/entity/Q3501477|http://www.wikidata.org/entity/Q3478613|http://www.wikidata.org/entity/Q1564017|http://www.wikidata.org/entity/Q1280064|http://www.wikidata.org/entity/Q1270642|http://www.wikidata.org/entity/Q1252125|http://www.wikidata.org/entity/Q434291|http://www.wikidata.org/entity/Q299977"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Danilo \u0160erbed\u017eija"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15106947"}, "Title": {"type": "literal", "value": "Last Weekend"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7815604"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7815604"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3574528|http://www.wikidata.org/entity/Q1706810|http://www.wikidata.org/entity/Q229268"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2014 film by Tom Dolby"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10544366"}, "Title": {"type": "literal", "value": "Katinkas kalas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5544917"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5544917"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4968250"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Levan Akin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23566245"}, "Title": {"type": "literal", "value": "Willkommen in L\u00fcsgraf"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1806295"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24039132"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2006 film by Lars Montag"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3110361"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3009076|http://www.wikidata.org/entity/Q3106429"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q989586|http://www.wikidata.org/entity/Q778573|http://www.wikidata.org/entity/Q265782|http://www.wikidata.org/entity/Q3529590|http://www.wikidata.org/entity/Q3499698|http://www.wikidata.org/entity/Q3165613|http://www.wikidata.org/entity/Q3142106|http://www.wikidata.org/entity/Q2977082|http://www.wikidata.org/entity/Q2864476|http://www.wikidata.org/entity/Q1685364"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Cyril Sebas, Gilles Paquet-Brenner"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q83703"}, "Title": {"type": "literal", "value": "\u00c0 la folie... pas du tout"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3216065"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2940066"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3591351|http://www.wikidata.org/entity/Q3460757|http://www.wikidata.org/entity/Q2980691|http://www.wikidata.org/entity/Q943295|http://www.wikidata.org/entity/Q451107|http://www.wikidata.org/entity/Q304123|http://www.wikidata.org/entity/Q289032|http://www.wikidata.org/entity/Q274759"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2002 film by L\u00e6titia Colombani"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27908086"}, "Title": {"type": "literal", "value": "Alle for tre"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12332904"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12332904|http://www.wikidata.org/entity/Q6119355"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12333484|http://www.wikidata.org/entity/Q12327036|http://www.wikidata.org/entity/Q12323846|http://www.wikidata.org/entity/Q12320299|http://www.wikidata.org/entity/Q12301381|http://www.wikidata.org/entity/Q11980775|http://www.wikidata.org/entity/Q7295091|http://www.wikidata.org/entity/Q4961227|http://www.wikidata.org/entity/Q456176|http://www.wikidata.org/entity/Q454250|http://www.wikidata.org/entity/Q207149"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 Danish film by Rasmus Heide"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11072093"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q698533"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q698533"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Ronald Cheng"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20649194"}, "Title": {"type": "literal", "value": "Ut\u00f3\u00e9let"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29832585"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29832585"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2014 film by Vir\u00e1g Zombor\u00e1cz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18170283"}, "Title": {"type": "literal", "value": "Fratelli unici"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20971246"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1223109|http://www.wikidata.org/entity/Q1039164|http://www.wikidata.org/entity/Q676749|http://www.wikidata.org/entity/Q381110|http://www.wikidata.org/entity/Q202281"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2014 film by Alessio Maria Federici"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3929491"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1523194"}, "Title": {"type": "literal", "value": "\u0926\u093f\u0932 \u092c\u094b\u0932\u0947 \u0939\u0921\u093c\u0940\u092a\u094d\u092a\u093e"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17385584"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4779117"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7942575|http://www.wikidata.org/entity/Q7500361|http://www.wikidata.org/entity/Q3595934|http://www.wikidata.org/entity/Q3543017|http://www.wikidata.org/entity/Q560163|http://www.wikidata.org/entity/Q485557|http://www.wikidata.org/entity/Q319491"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "148"}, "Description": {"type": "literal", "value": "2009 film by Anurag Singh"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1194810"}, "Title": {"type": "literal", "value": "Daddy Day Camp"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q447392"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5534297|http://www.wikidata.org/entity/Q5237900"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26719071|http://www.wikidata.org/entity/Q3898137|http://www.wikidata.org/entity/Q1280821|http://www.wikidata.org/entity/Q912103|http://www.wikidata.org/entity/Q454035|http://www.wikidata.org/entity/Q136209|http://www.wikidata.org/entity/Q73930"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2007 film by Fred Savage"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1160868|http://www.wikidata.org/entity/Q2579492"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q510456"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q332998"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12615545|http://www.wikidata.org/entity/Q402179"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1033891|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 South Korean film directed by Ryoo Seung-wan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6407773"}, "Title": {"type": "literal", "value": "Killing Winston Jones"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q371786"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192165"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Joel David Moore"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3473393"}, "Title": {"type": "literal", "value": "\u0b89\u0ba4\u0bcd\u0ba4\u0bae \u0baa\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0bb0\u0ba9\u0bcd"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6881664"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16214855"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6167419|http://www.wikidata.org/entity/Q3595438|http://www.wikidata.org/entity/Q3537602|http://www.wikidata.org/entity/Q331050|http://www.wikidata.org/entity/Q312783|http://www.wikidata.org/entity/Q63730"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Mithran Jawahar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16139157"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1015952"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Poj Arnon"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q52777610"}, "Title": {"type": "literal", "value": "Wer hat eigentlich die Liebe erfunden?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22998193"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22998193"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27928780|http://www.wikidata.org/entity/Q1703003|http://www.wikidata.org/entity/Q993135|http://www.wikidata.org/entity/Q124551|http://www.wikidata.org/entity/Q103430|http://www.wikidata.org/entity/Q65511|http://www.wikidata.org/entity/Q65116"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Kerstin Polte"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q47064337"}, "Title": {"type": "literal", "value": "A Happening of Monumental Proportions"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q236189"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Judy Greer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q57899021"}, "Title": {"type": "literal", "value": "Canceled"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28913562"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28913562"}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 short film by Jimmy Caputo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1075436"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1645932"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1988"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7696995|http://www.wikidata.org/entity/Q231302"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1988 film directed by Tak Sakaguchi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12126298"}, "Title": {"type": "literal", "value": "Movin' In"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1546566"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7408642|http://www.wikidata.org/entity/Q1546566|http://www.wikidata.org/entity/Q272935|http://www.wikidata.org/entity/Q235388|http://www.wikidata.org/entity/Q123115|http://www.wikidata.org/entity/Q117566"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Griff Furst"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q214014"}, "Title": {"type": "literal", "value": "21 Jump Street"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3378803|http://www.wikidata.org/entity/Q13638984"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2262850|http://www.wikidata.org/entity/Q470282|http://www.wikidata.org/entity/Q457431"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1077635|http://www.wikidata.org/entity/Q745235|http://www.wikidata.org/entity/Q663741|http://www.wikidata.org/entity/Q508404|http://www.wikidata.org/entity/Q434003|http://www.wikidata.org/entity/Q383930|http://www.wikidata.org/entity/Q313388|http://www.wikidata.org/entity/Q212064|http://www.wikidata.org/entity/Q173637|http://www.wikidata.org/entity/Q171525|http://www.wikidata.org/entity/Q116636|http://www.wikidata.org/entity/Q72077|http://www.wikidata.org/entity/Q7291478|http://www.wikidata.org/entity/Q2315802|http://www.wikidata.org/entity/Q2002151|http://www.wikidata.org/entity/Q1985488|http://www.wikidata.org/entity/Q1616538|http://www.wikidata.org/entity/Q18953|http://www.wikidata.org/entity/Q37175|http://www.wikidata.org/entity/Q29328|http://www.wikidata.org/entity/Q23815604"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q4984974"}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "2012 American action comedy film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q179200|http://www.wikidata.org/entity/Q186941|http://www.wikidata.org/entity/Q557387|http://www.wikidata.org/entity/Q2702789"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5280980"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11857339"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6303995|http://www.wikidata.org/entity/Q4354690"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Elias Koskimies"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20992049"}, "Title": {"type": "literal", "value": "Par\u00eds Nor\u00f0ursins"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22928232"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18748108"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1602419"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2014 film by Hafsteinn Gunnar Sigur\u00f0sson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1153505"}, "Title": {"type": "literal", "value": "The Damned United"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q295912"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q948122"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3132807|http://www.wikidata.org/entity/Q1616520|http://www.wikidata.org/entity/Q442547|http://www.wikidata.org/entity/Q313671|http://www.wikidata.org/entity/Q298276|http://www.wikidata.org/entity/Q287824|http://www.wikidata.org/entity/Q185079"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q1339864|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2009 film by Tom Hooper"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q971446|http://www.wikidata.org/entity/Q6516806|http://www.wikidata.org/entity/Q7309238"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1545861"}, "Title": {"type": "literal", "value": "Grenzverkehr"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2336016"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2336016"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1405763|http://www.wikidata.org/entity/Q1373476|http://www.wikidata.org/entity/Q109720|http://www.wikidata.org/entity/Q91813|http://www.wikidata.org/entity/Q90316|http://www.wikidata.org/entity/Q78188|http://www.wikidata.org/entity/Q65533|http://www.wikidata.org/entity/Q62676|http://www.wikidata.org/entity/Q42335|http://www.wikidata.org/entity/Q23060657|http://www.wikidata.org/entity/Q2336016|http://www.wikidata.org/entity/Q2077727|http://www.wikidata.org/entity/Q2020358|http://www.wikidata.org/entity/Q1707681|http://www.wikidata.org/entity/Q1582402"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2005 film by Stefan Betz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42564814"}, "Title": {"type": "literal", "value": "Sen Kiminle Dans Ediyorsun?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6068775"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15304882|http://www.wikidata.org/entity/Q6056880|http://www.wikidata.org/entity/Q4914460"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Burak Aksak"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1476272"}, "Title": {"type": "literal", "value": "Southland Tales"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q711022"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q711022"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3992157|http://www.wikidata.org/entity/Q2442275|http://www.wikidata.org/entity/Q1321005|http://www.wikidata.org/entity/Q1145528|http://www.wikidata.org/entity/Q708512|http://www.wikidata.org/entity/Q508428|http://www.wikidata.org/entity/Q489831|http://www.wikidata.org/entity/Q471003|http://www.wikidata.org/entity/Q464612|http://www.wikidata.org/entity/Q456329|http://www.wikidata.org/entity/Q456178|http://www.wikidata.org/entity/Q327217|http://www.wikidata.org/entity/Q311068|http://www.wikidata.org/entity/Q310322|http://www.wikidata.org/entity/Q296524|http://www.wikidata.org/entity/Q275246|http://www.wikidata.org/entity/Q271635|http://www.wikidata.org/entity/Q230203|http://www.wikidata.org/entity/Q229241|http://www.wikidata.org/entity/Q193212|http://www.wikidata.org/entity/Q187832|http://www.wikidata.org/entity/Q187345|http://www.wikidata.org/entity/Q180665|http://www.wikidata.org/entity/Q105158|http://www.wikidata.org/entity/Q43432|http://www.wikidata.org/entity/Q40143|http://www.wikidata.org/entity/Q10738"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20656352|http://www.wikidata.org/entity/Q20443008|http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q1341051|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q471839"}, "Duration": {"type": "literal", "value": "145"}, "Description": {"type": "literal", "value": "2006 thriller and comedy-drama film directed by Richard Kelly"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q913965"}, "Title": {"type": "literal", "value": "Orange County"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1678831"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1378351"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q286890|http://www.wikidata.org/entity/Q273178|http://www.wikidata.org/entity/Q260241|http://www.wikidata.org/entity/Q255883|http://www.wikidata.org/entity/Q236578|http://www.wikidata.org/entity/Q233365|http://www.wikidata.org/entity/Q229271|http://www.wikidata.org/entity/Q229011|http://www.wikidata.org/entity/Q132217|http://www.wikidata.org/entity/Q105817|http://www.wikidata.org/entity/Q47100|http://www.wikidata.org/entity/Q2514422|http://www.wikidata.org/entity/Q2454742|http://www.wikidata.org/entity/Q2240987|http://www.wikidata.org/entity/Q1825219|http://www.wikidata.org/entity/Q1378351|http://www.wikidata.org/entity/Q910472|http://www.wikidata.org/entity/Q483907|http://www.wikidata.org/entity/Q463489|http://www.wikidata.org/entity/Q463239|http://www.wikidata.org/entity/Q445135|http://www.wikidata.org/entity/Q444190|http://www.wikidata.org/entity/Q436360|http://www.wikidata.org/entity/Q318134|http://www.wikidata.org/entity/Q315087|http://www.wikidata.org/entity/Q311271|http://www.wikidata.org/entity/Q310926|http://www.wikidata.org/entity/Q299282"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "2002 film by Jake Kasdan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q159846|http://www.wikidata.org/entity/Q1111024"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5105412"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4778056"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13113668"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13113818|http://www.wikidata.org/entity/Q6750290|http://www.wikidata.org/entity/Q6122250|http://www.wikidata.org/entity/Q5957703|http://www.wikidata.org/entity/Q3530961|http://www.wikidata.org/entity/Q2210343|http://www.wikidata.org/entity/Q2050534|http://www.wikidata.org/entity/Q283512|http://www.wikidata.org/entity/Q278015|http://www.wikidata.org/entity/Q277725"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Anwar Rasheed"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7914066"}, "Title": {"type": "literal", "value": "Vance and Pepe's Porn Start"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6768358"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6768358"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Mark Kenneth Woods"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55361709"}, "Title": {"type": "literal", "value": "De Film van Dylan Haegens"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30087374|http://www.wikidata.org/entity/Q28934572"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52144870"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56525243|http://www.wikidata.org/entity/Q52113785|http://www.wikidata.org/entity/Q52098489|http://www.wikidata.org/entity/Q28934572|http://www.wikidata.org/entity/Q17351333|http://www.wikidata.org/entity/Q2629811"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "81"}, "Description": {"type": "literal", "value": "2018 Dutch movie directed by Dylan Haegens and Bas van Teylingen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11818371"}, "Title": {"type": "literal", "value": "Piotrek trzynastego"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11817800"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11817800"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55365"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Piotr Matwiejczyk"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26720927"}, "Title": {"type": "literal", "value": "Speech & Debate"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2556156"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7609649"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2016 film by Dan Harris"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18154751"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3140598"}, "Title": {"type": "literal", "value": "horloge biologique"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3430333"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3383044|http://www.wikidata.org/entity/Q3369021|http://www.wikidata.org/entity/Q3264862|http://www.wikidata.org/entity/Q3193104|http://www.wikidata.org/entity/Q3189253|http://www.wikidata.org/entity/Q3189200|http://www.wikidata.org/entity/Q3035411|http://www.wikidata.org/entity/Q2977823|http://www.wikidata.org/entity/Q2977284|http://www.wikidata.org/entity/Q2942037"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Ricardo Trogi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1083002"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5262121|http://www.wikidata.org/entity/Q16239484|http://www.wikidata.org/entity/Q6308609"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16239484|http://www.wikidata.org/entity/Q5262121"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6522728|http://www.wikidata.org/entity/Q6503124|http://www.wikidata.org/entity/Q6663140|http://www.wikidata.org/entity/Q6309487|http://www.wikidata.org/entity/Q5090823|http://www.wikidata.org/entity/Q4922395|http://www.wikidata.org/entity/Q1154813|http://www.wikidata.org/entity/Q712083|http://www.wikidata.org/entity/Q700297|http://www.wikidata.org/entity/Q7532206|http://www.wikidata.org/entity/Q6829206"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3072042|http://www.wikidata.org/entity/Q1033891|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 Hong Kong film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28180128"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q48473040"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7286088|http://www.wikidata.org/entity/Q5408135|http://www.wikidata.org/entity/Q5284717|http://www.wikidata.org/entity/Q560163|http://www.wikidata.org/entity/Q233748|http://www.wikidata.org/entity/Q19664326|http://www.wikidata.org/entity/Q15697622|http://www.wikidata.org/entity/Q12454357|http://www.wikidata.org/entity/Q7396741"}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "155"}, "Description": {"type": "literal", "value": "2017 Indian film directed by Shree Narayan Singh"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16250829"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42049340"}, "Title": {"type": "literal", "value": "Assassination Nation"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7407789"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7407789"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q862460|http://www.wikidata.org/entity/Q745092|http://www.wikidata.org/entity/Q462955|http://www.wikidata.org/entity/Q436839|http://www.wikidata.org/entity/Q311993|http://www.wikidata.org/entity/Q259825|http://www.wikidata.org/entity/Q208117|http://www.wikidata.org/entity/Q199929|http://www.wikidata.org/entity/Q51754587|http://www.wikidata.org/entity/Q47467699|http://www.wikidata.org/entity/Q29622423|http://www.wikidata.org/entity/Q27555181|http://www.wikidata.org/entity/Q25999316|http://www.wikidata.org/entity/Q22959195|http://www.wikidata.org/entity/Q22680869|http://www.wikidata.org/entity/Q19665738|http://www.wikidata.org/entity/Q17385901|http://www.wikidata.org/entity/Q16235151|http://www.wikidata.org/entity/Q16147452|http://www.wikidata.org/entity/Q5147723|http://www.wikidata.org/entity/Q3007115"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q53094|http://www.wikidata.org/entity/Q2484376"}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "2018 film directed by Sam Levinson"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16954085"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2448813"}, "Title": {"type": "literal", "value": "Trans Bavaria"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15440291"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15440291"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22295349|http://www.wikidata.org/entity/Q2077727|http://www.wikidata.org/entity/Q1696908|http://www.wikidata.org/entity/Q1317642|http://www.wikidata.org/entity/Q1080329|http://www.wikidata.org/entity/Q43769|http://www.wikidata.org/entity/Q43764"}, "Published": {"type": "literal", "value": "2012|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "2011 film by Konstantin Ferstl"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27964389"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1718178"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6150953"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q278980"}, "Published": {"type": "literal", "value": "1981"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1981 film by Kovelamudi Bapayya"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6838715"}, "Title": {"type": "literal", "value": "Mickey Matson and the Copperhead Conspiracy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16214799"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16214799"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q542810|http://www.wikidata.org/entity/Q471018|http://www.wikidata.org/entity/Q109324"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 American adventure-comedy film directed by Harold Cronk"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14716055"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30638713"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7377749"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7377749"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5520823"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Yogaraj Bhat"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5861445"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5929474"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3374287|http://www.wikidata.org/entity/Q2574737"}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Bahman Goudarzi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7734997"}, "Title": {"type": "literal", "value": "The Four Corners of Nowhere"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2070360"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1995"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1995 film by Stephen Chbosky"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6064603"}, "Title": {"type": "literal", "value": "Bana Bir Soygun Yaz"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6062781"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6092808"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Biray Dalk\u0131ran"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22252016"}, "Title": {"type": "literal", "value": "The Perfect Match"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1058003"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18390657|http://www.wikidata.org/entity/Q17182925|http://www.wikidata.org/entity/Q7703472|http://www.wikidata.org/entity/Q3177688|http://www.wikidata.org/entity/Q2344116|http://www.wikidata.org/entity/Q1455261|http://www.wikidata.org/entity/Q690974|http://www.wikidata.org/entity/Q314819|http://www.wikidata.org/entity/Q296883|http://www.wikidata.org/entity/Q262495|http://www.wikidata.org/entity/Q233213|http://www.wikidata.org/entity/Q72832"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Bille Woodruff"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11744214"}, "Title": {"type": "literal", "value": "Koszmar minionej zimy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11817800"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Piotr Matwiejczyk"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4688778"}, "Title": {"type": "literal", "value": "Af banen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q33436677"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41340778"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41730273|http://www.wikidata.org/entity/Q41236660|http://www.wikidata.org/entity/Q41236544|http://www.wikidata.org/entity/Q12337814|http://www.wikidata.org/entity/Q12328967|http://www.wikidata.org/entity/Q12325964|http://www.wikidata.org/entity/Q12324516|http://www.wikidata.org/entity/Q5788631|http://www.wikidata.org/entity/Q4994547|http://www.wikidata.org/entity/Q4938062|http://www.wikidata.org/entity/Q1985752|http://www.wikidata.org/entity/Q1797671|http://www.wikidata.org/entity/Q1789215|http://www.wikidata.org/entity/Q1098466|http://www.wikidata.org/entity/Q967680|http://www.wikidata.org/entity/Q879360|http://www.wikidata.org/entity/Q139911"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Martin Hagbjer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7784260"}, "Title": {"type": "literal", "value": "Thin Ice"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3808290"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3808290"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q269869"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2011 film by Jill Sprecher"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7983208"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27536543"}, "Title": {"type": "literal", "value": "Jimmy Vestvood: Amerikan Hero"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q63229274"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2016 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15731589"}, "Title": {"type": "literal", "value": "\u0985\u09ad\u09bf\u09b6\u09aa\u09cd\u09a4 \u09a8\u09be\u0987\u099f\u09bf"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16215189"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Birsa Dasgupta"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7503531"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55375023"}, "Title": {"type": "literal", "value": "Nur ein Tag in Berlin"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23947040"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23947040"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "74"}, "Description": {"type": "literal", "value": "2018 film directed by Malte Wirtz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6486967"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12213023"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12240482|http://www.wikidata.org/entity/Q12210108|http://www.wikidata.org/entity/Q3571921|http://www.wikidata.org/entity/Q2827647|http://www.wikidata.org/entity/Q420727"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Rami Imam"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14578326"}, "Title": {"type": "literal", "value": "Wish I Was Here"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q139330"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q139330"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3382695|http://www.wikidata.org/entity/Q267097|http://www.wikidata.org/entity/Q190972|http://www.wikidata.org/entity/Q189992|http://www.wikidata.org/entity/Q169946|http://www.wikidata.org/entity/Q139330|http://www.wikidata.org/entity/Q112536|http://www.wikidata.org/entity/Q83677|http://www.wikidata.org/entity/Q287346|http://www.wikidata.org/entity/Q1190319|http://www.wikidata.org/entity/Q939174|http://www.wikidata.org/entity/Q867701|http://www.wikidata.org/entity/Q550653|http://www.wikidata.org/entity/Q493077|http://www.wikidata.org/entity/Q372613|http://www.wikidata.org/entity/Q325814|http://www.wikidata.org/entity/Q314819|http://www.wikidata.org/entity/Q4817144|http://www.wikidata.org/entity/Q4756207"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2014 American comedy-drama film directed by Zach Braff"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22686357"}, "Title": {"type": "literal", "value": "Trash Detective"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23197747"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11899665|http://www.wikidata.org/entity/Q2419577"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2015 film by Maximilian Buck"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16262362"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q486039"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q486039"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q490389"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 South Korean film directed by Jang Jin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23793836"}, "Title": {"type": "literal", "value": "Wreck It!|Schrotten!|Les ferrailleurs"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q117062"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q117062"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1605539|http://www.wikidata.org/entity/Q1594698|http://www.wikidata.org/entity/Q1555527|http://www.wikidata.org/entity/Q98286|http://www.wikidata.org/entity/Q97010|http://www.wikidata.org/entity/Q70775|http://www.wikidata.org/entity/Q30237394|http://www.wikidata.org/entity/Q1929989|http://www.wikidata.org/entity/Q1928471|http://www.wikidata.org/entity/Q1806325|http://www.wikidata.org/entity/Q1778862|http://www.wikidata.org/entity/Q1681528"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2016 film by Max Zahle"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3718484"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1522089"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3842287|http://www.wikidata.org/entity/Q3659538|http://www.wikidata.org/entity/Q3623519|http://www.wikidata.org/entity/Q3616028"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2003 film directed by Giacomo Ciarrapico"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43208792"}, "Title": {"type": "literal", "value": "The Hustle"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2964639"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6110444"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20685513|http://www.wikidata.org/entity/Q6033252|http://www.wikidata.org/entity/Q515095|http://www.wikidata.org/entity/Q442897|http://www.wikidata.org/entity/Q36301"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Chris Addison"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q179200"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17168960"}, "Title": {"type": "literal", "value": "Que M... \u00c9 Essa?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4979223"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1989"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1989 film by Bruno Garcia"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30612315"}, "Title": {"type": "literal", "value": "Eaten by Lions"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23303136"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Jason Wingard"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1395278"}, "Title": {"type": "literal", "value": "Familienradgeber 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1905444|http://www.wikidata.org/entity/Q68990"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q909586|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "71"}, "Description": {"type": "literal", "value": "2009 film by Olaf Ittenbach, Martina Ittenbach"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55642298"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4754967"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4754967"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11835264|http://www.wikidata.org/entity/Q233466|http://www.wikidata.org/entity/Q229048"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Andrea Berloff"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q79202|http://www.wikidata.org/entity/Q16954085"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2387839"}, "Title": {"type": "literal", "value": "Tage wie Jahre"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15440291"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15440291"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19275635|http://www.wikidata.org/entity/Q11977865|http://www.wikidata.org/entity/Q1705588|http://www.wikidata.org/entity/Q1468507|http://www.wikidata.org/entity/Q1317642|http://www.wikidata.org/entity/Q1080329|http://www.wikidata.org/entity/Q496278|http://www.wikidata.org/entity/Q74171|http://www.wikidata.org/entity/Q43769"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "39"}, "Description": {"type": "literal", "value": "2008 film by Konstantin Ferstl"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26963304"}, "Title": {"type": "literal", "value": "The Young Offenders"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27881407"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27881407"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2016 film by Peter Foott"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12192036"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12250381"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4120152"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Wael Ehsan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3497740"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q453691"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q453691"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24936985|http://www.wikidata.org/entity/Q22248486|http://www.wikidata.org/entity/Q3591196|http://www.wikidata.org/entity/Q3564267|http://www.wikidata.org/entity/Q3559849|http://www.wikidata.org/entity/Q3501635|http://www.wikidata.org/entity/Q3418669|http://www.wikidata.org/entity/Q3370787|http://www.wikidata.org/entity/Q3264771|http://www.wikidata.org/entity/Q3263679|http://www.wikidata.org/entity/Q3183404|http://www.wikidata.org/entity/Q3165487|http://www.wikidata.org/entity/Q3157470|http://www.wikidata.org/entity/Q3142469|http://www.wikidata.org/entity/Q3011283|http://www.wikidata.org/entity/Q2851497|http://www.wikidata.org/entity/Q982784|http://www.wikidata.org/entity/Q734098|http://www.wikidata.org/entity/Q370711"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Mr. Oizo"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3211552"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7100810"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7635089"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7504210|http://www.wikidata.org/entity/Q6444213|http://www.wikidata.org/entity/Q6203171|http://www.wikidata.org/entity/Q4907283|http://www.wikidata.org/entity/Q4806897|http://www.wikidata.org/entity/Q4766243"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film directed by Sugeeth"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q466383"}, "Title": {"type": "literal", "value": "American Pie Presents: The Naked Mile"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6211585"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5386974"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18392762|http://www.wikidata.org/entity/Q17562361|http://www.wikidata.org/entity/Q8979854|http://www.wikidata.org/entity/Q6811319|http://www.wikidata.org/entity/Q6118147|http://www.wikidata.org/entity/Q3013164|http://www.wikidata.org/entity/Q2012219|http://www.wikidata.org/entity/Q552896|http://www.wikidata.org/entity/Q549290|http://www.wikidata.org/entity/Q549207|http://www.wikidata.org/entity/Q466383|http://www.wikidata.org/entity/Q459380|http://www.wikidata.org/entity/Q459082|http://www.wikidata.org/entity/Q349857|http://www.wikidata.org/entity/Q312129|http://www.wikidata.org/entity/Q263720"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2006 film by Joe Nussbaum"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383|http://www.wikidata.org/entity/Q5035471|http://www.wikidata.org/entity/Q17386235"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42566890"}, "Title": {"type": "literal", "value": "Ein g\u00f6ttlicher Job"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1406201"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1406201"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20638950|http://www.wikidata.org/entity/Q2020358|http://www.wikidata.org/entity/Q1937361|http://www.wikidata.org/entity/Q104925|http://www.wikidata.org/entity/Q95580|http://www.wikidata.org/entity/Q66434|http://www.wikidata.org/entity/Q62510"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 film by Thorsten Wettcke"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1235358"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q609797"}, "Title": {"type": "literal", "value": "Lymelife"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5262580"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5262580"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1320648|http://www.wikidata.org/entity/Q431038|http://www.wikidata.org/entity/Q313204|http://www.wikidata.org/entity/Q310324|http://www.wikidata.org/entity/Q237925|http://www.wikidata.org/entity/Q228725|http://www.wikidata.org/entity/Q228598|http://www.wikidata.org/entity/Q170572"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2008 film by Derick Martini"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3801252"}, "Title": {"type": "literal", "value": "Identity Thief"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q524897"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1138605"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6730221|http://www.wikidata.org/entity/Q3195687|http://www.wikidata.org/entity/Q3007115|http://www.wikidata.org/entity/Q2082056|http://www.wikidata.org/entity/Q512818|http://www.wikidata.org/entity/Q508043|http://www.wikidata.org/entity/Q472053|http://www.wikidata.org/entity/Q312705|http://www.wikidata.org/entity/Q295964|http://www.wikidata.org/entity/Q284636|http://www.wikidata.org/entity/Q272977|http://www.wikidata.org/entity/Q240355|http://www.wikidata.org/entity/Q229048|http://www.wikidata.org/entity/Q214227|http://www.wikidata.org/entity/Q198638|http://www.wikidata.org/entity/Q131332|http://www.wikidata.org/entity/Q72077"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "2013 film by Seth Gordon"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2702789"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3611893"}, "Title": {"type": "literal", "value": "All'ultima spiaggia"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3763185"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3763185"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3893598|http://www.wikidata.org/entity/Q3804842|http://www.wikidata.org/entity/Q3770667|http://www.wikidata.org/entity/Q3732277|http://www.wikidata.org/entity/Q3702561|http://www.wikidata.org/entity/Q3660364|http://www.wikidata.org/entity/Q3629869|http://www.wikidata.org/entity/Q3619665|http://www.wikidata.org/entity/Q3609982|http://www.wikidata.org/entity/Q457841"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2012 film by Gianluca Ansanelli"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q411405"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55595741"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028394"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q949017"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2000 film by Antoine Desrosi\u00e8res"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28840480"}, "Title": {"type": "literal", "value": "Infinity Baby"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4931990"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19667309"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Bob Byington"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1446504"}, "Title": {"type": "literal", "value": "Les Petits Mouchoirs"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q314403"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q314403"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q458899|http://www.wikidata.org/entity/Q444170|http://www.wikidata.org/entity/Q440995|http://www.wikidata.org/entity/Q274398|http://www.wikidata.org/entity/Q239033|http://www.wikidata.org/entity/Q189422|http://www.wikidata.org/entity/Q3473319|http://www.wikidata.org/entity/Q3382884|http://www.wikidata.org/entity/Q3342136|http://www.wikidata.org/entity/Q3219319|http://www.wikidata.org/entity/Q2365459|http://www.wikidata.org/entity/Q600051|http://www.wikidata.org/entity/Q552639|http://www.wikidata.org/entity/Q539703|http://www.wikidata.org/entity/Q466991|http://www.wikidata.org/entity/Q461617|http://www.wikidata.org/entity/Q8927"}, "Published": {"type": "literal", "value": "2011|2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "154"}, "Description": {"type": "literal", "value": "2010 film by Guillaume Canet"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1375196"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19019144"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16857528"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21183528|http://www.wikidata.org/entity/Q16271982|http://www.wikidata.org/entity/Q4462945|http://www.wikidata.org/entity/Q4245080"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q53094"}, "Duration": {"type": "literal", "value": "20"}, "Description": {"type": "literal", "value": "2014 film by Zhora Kryzhovnikov"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4341103"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4381594"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1849339"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1849339"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4172981|http://www.wikidata.org/entity/Q1675617|http://www.wikidata.org/entity/Q112048"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Alexei Popogrebski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q273676"}, "Title": {"type": "literal", "value": "Ast\u00e9rix aux Jeux olympiques"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q117147|http://www.wikidata.org/entity/Q3089814"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q580810"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q360899|http://www.wikidata.org/entity/Q319527|http://www.wikidata.org/entity/Q312661|http://www.wikidata.org/entity/Q274656|http://www.wikidata.org/entity/Q242896|http://www.wikidata.org/entity/Q237152|http://www.wikidata.org/entity/Q230846|http://www.wikidata.org/entity/Q193108|http://www.wikidata.org/entity/Q180872|http://www.wikidata.org/entity/Q171998|http://www.wikidata.org/entity/Q106529|http://www.wikidata.org/entity/Q106508|http://www.wikidata.org/entity/Q45292|http://www.wikidata.org/entity/Q9671|http://www.wikidata.org/entity/Q1835|http://www.wikidata.org/entity/Q2360332|http://www.wikidata.org/entity/Q1894524|http://www.wikidata.org/entity/Q1685186|http://www.wikidata.org/entity/Q1343716|http://www.wikidata.org/entity/Q1165205|http://www.wikidata.org/entity/Q951671|http://www.wikidata.org/entity/Q895091|http://www.wikidata.org/entity/Q778451|http://www.wikidata.org/entity/Q726232|http://www.wikidata.org/entity/Q16680413|http://www.wikidata.org/entity/Q15965529|http://www.wikidata.org/entity/Q8315472|http://www.wikidata.org/entity/Q3894159|http://www.wikidata.org/entity/Q3838043|http://www.wikidata.org/entity/Q3559759|http://www.wikidata.org/entity/Q3328929|http://www.wikidata.org/entity/Q3325897|http://www.wikidata.org/entity/Q3089814|http://www.wikidata.org/entity/Q714765|http://www.wikidata.org/entity/Q707158|http://www.wikidata.org/entity/Q606555|http://www.wikidata.org/entity/Q576577|http://www.wikidata.org/entity/Q509900|http://www.wikidata.org/entity/Q3081533|http://www.wikidata.org/entity/Q3066887|http://www.wikidata.org/entity/Q3037216|http://www.wikidata.org/entity/Q3021819|http://www.wikidata.org/entity/Q2864476|http://www.wikidata.org/entity/Q2833411|http://www.wikidata.org/entity/Q2646765|http://www.wikidata.org/entity/Q2423378"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "2008 French film Thomas Langmann and Fr\u00e9d\u00e9ric Forestier"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1544011"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6929482"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q45889"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q45889"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q45889"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "136"}, "Description": {"type": "literal", "value": "2005 film by Antara Mali"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20466070"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4688834"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Afdlin Shauki"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17633156"}, "Title": {"type": "literal", "value": "Les Nouvelles aventures d'Aladin"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27962117"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2202755"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Arthur Benzaquen"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1544011"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55230971"}, "Title": {"type": "literal", "value": "Les Affam\u00e9s"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55424329"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q39071474|http://www.wikidata.org/entity/Q27704877|http://www.wikidata.org/entity/Q25975683|http://www.wikidata.org/entity/Q18684181|http://www.wikidata.org/entity/Q15918282|http://www.wikidata.org/entity/Q3491566|http://www.wikidata.org/entity/Q2895292|http://www.wikidata.org/entity/Q2851057|http://www.wikidata.org/entity/Q2833045|http://www.wikidata.org/entity/Q554103"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2018 film by L\u00e9a Fr\u00e9deval"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20855694"}, "Title": {"type": "literal", "value": "Marry Me!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1171155"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6423858|http://www.wikidata.org/entity/Q2358017|http://www.wikidata.org/entity/Q2343282|http://www.wikidata.org/entity/Q1803817|http://www.wikidata.org/entity/Q1656803|http://www.wikidata.org/entity/Q1406964|http://www.wikidata.org/entity/Q1349501|http://www.wikidata.org/entity/Q1254017|http://www.wikidata.org/entity/Q124360|http://www.wikidata.org/entity/Q118961|http://www.wikidata.org/entity/Q114624|http://www.wikidata.org/entity/Q106466|http://www.wikidata.org/entity/Q88891|http://www.wikidata.org/entity/Q88236"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Neelesha Barthel"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1235358"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4424038"}, "Title": {"type": "literal", "value": "\u0421\u043b\u0443\u0436\u0435\u0431\u043d\u044b\u0439 \u0440\u043e\u043c\u0430\u043d. \u041d\u0430\u0448\u0435 \u0432\u0440\u0435\u043c\u044f"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4065391"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3874799"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3874799|http://www.wikidata.org/entity/Q2974837|http://www.wikidata.org/entity/Q2626768|http://www.wikidata.org/entity/Q2064926|http://www.wikidata.org/entity/Q536524"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2011 film by Sarik Andreasyan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4444575"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q58462903"}, "Title": {"type": "literal", "value": "Geschenkt"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q39018978"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56632080|http://www.wikidata.org/entity/Q56631778"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q38188602|http://www.wikidata.org/entity/Q23958715|http://www.wikidata.org/entity/Q23060446|http://www.wikidata.org/entity/Q22081536|http://www.wikidata.org/entity/Q19839425|http://www.wikidata.org/entity/Q2210162|http://www.wikidata.org/entity/Q1895935|http://www.wikidata.org/entity/Q1673573|http://www.wikidata.org/entity/Q1512059|http://www.wikidata.org/entity/Q1428994|http://www.wikidata.org/entity/Q1384218"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2018 television film directed by Daniel Prochaska"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7916881"}, "Title": {"type": "literal", "value": "\u0bb5\u0b9a\u0bc2\u0bb2\u0bcd\u0bb0\u0bbe\u0b9c\u0bbe \u0b8e\u0bae\u0bcd.\u0baa\u0bbf.\u0baa\u0bbf.\u0b8e\u0bb8\u0bcd"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12977997"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1607373"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6373686|http://www.wikidata.org/entity/Q6167686|http://www.wikidata.org/entity/Q3533678|http://www.wikidata.org/entity/Q3520670|http://www.wikidata.org/entity/Q1606036|http://www.wikidata.org/entity/Q1322453|http://www.wikidata.org/entity/Q1022530|http://www.wikidata.org/entity/Q381477|http://www.wikidata.org/entity/Q277665"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 Tamil comedy film directed by Saran"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5530647"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55106043"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12962832"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q54945490"}, "Title": {"type": "literal", "value": "100 Dinge"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q87432"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q87432"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23561591|http://www.wikidata.org/entity/Q1697154|http://www.wikidata.org/entity/Q88891|http://www.wikidata.org/entity/Q87432|http://www.wikidata.org/entity/Q77777|http://www.wikidata.org/entity/Q77774|http://www.wikidata.org/entity/Q69640|http://www.wikidata.org/entity/Q64645"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Florian David Fitz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7992677"}, "Title": {"type": "literal", "value": "\u015eans Kap\u0131y\u0131 K\u0131r\u0131nca"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6079743"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6079743"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12810813|http://www.wikidata.org/entity/Q6090990|http://www.wikidata.org/entity/Q5444280|http://www.wikidata.org/entity/Q4811871|http://www.wikidata.org/entity/Q3041530|http://www.wikidata.org/entity/Q187253"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Tayfun G\u00fcneyer"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6018869"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q32362264"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16857528|http://www.wikidata.org/entity/Q4222061|http://www.wikidata.org/entity/Q2833792|http://www.wikidata.org/entity/Q28498172"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16857528"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16271982|http://www.wikidata.org/entity/Q4099649|http://www.wikidata.org/entity/Q3479732|http://www.wikidata.org/entity/Q3033167|http://www.wikidata.org/entity/Q2213598|http://www.wikidata.org/entity/Q466169|http://www.wikidata.org/entity/Q442830|http://www.wikidata.org/entity/Q112048|http://www.wikidata.org/entity/Q19859531"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2017 film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1754271|http://www.wikidata.org/entity/Q2892410|http://www.wikidata.org/entity/Q574625"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7578338"}, "Title": {"type": "literal", "value": "Spivs"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5145613"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2351201|http://www.wikidata.org/entity/Q1139301|http://www.wikidata.org/entity/Q722927|http://www.wikidata.org/entity/Q509628|http://www.wikidata.org/entity/Q152165"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Colin Teague"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q9348639"}, "Title": {"type": "literal", "value": "Swing"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9138174"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 Polish comedy of errors film directed by and based on a play Abelard Giza."}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10822396"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6203818"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12034162"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12056045|http://www.wikidata.org/entity/Q12043246|http://www.wikidata.org/entity/Q12042457|http://www.wikidata.org/entity/Q12035874|http://www.wikidata.org/entity/Q12025430|http://www.wikidata.org/entity/Q12018004|http://www.wikidata.org/entity/Q11719712|http://www.wikidata.org/entity/Q10861560|http://www.wikidata.org/entity/Q8075473|http://www.wikidata.org/entity/Q7922529|http://www.wikidata.org/entity/Q6203641|http://www.wikidata.org/entity/Q5241524|http://www.wikidata.org/entity/Q3506276|http://www.wikidata.org/entity/Q1689754|http://www.wikidata.org/entity/Q866999|http://www.wikidata.org/entity/Q555650|http://www.wikidata.org/entity/Q544058|http://www.wikidata.org/entity/Q440954|http://www.wikidata.org/entity/Q430017|http://www.wikidata.org/entity/Q299394|http://www.wikidata.org/entity/Q274168"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Ji\u0159\u00ed Strach"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2711786"}, "Title": {"type": "literal", "value": "No sos vos, soy yo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2885371"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28746686|http://www.wikidata.org/entity/Q28466034|http://www.wikidata.org/entity/Q28070848|http://www.wikidata.org/entity/Q27646495|http://www.wikidata.org/entity/Q19788655|http://www.wikidata.org/entity/Q16611887|http://www.wikidata.org/entity/Q16297688|http://www.wikidata.org/entity/Q10326216|http://www.wikidata.org/entity/Q6757896|http://www.wikidata.org/entity/Q6700387|http://www.wikidata.org/entity/Q6111340|http://www.wikidata.org/entity/Q5759788|http://www.wikidata.org/entity/Q5274770|http://www.wikidata.org/entity/Q3059589|http://www.wikidata.org/entity/Q769719"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2004 film by Juan Taratuto"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4025147"}, "Title": {"type": "literal", "value": "\u00c1 Annan Veg"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22928232"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22928232|http://www.wikidata.org/entity/Q19957976"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19957976|http://www.wikidata.org/entity/Q8079549"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Hafsteinn Gunnar Sigur\u00f0sson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17037781"}, "Title": {"type": "literal", "value": "Shotgun Wedding"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5220778"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7146216"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6846484"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Danny Roew"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21009249"}, "Title": {"type": "literal", "value": "Le Nouveau"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3446661"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19956191"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Rudi Rosenberg"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16994572"}, "Title": {"type": "literal", "value": "Grow Up, Tony Phillips"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5372192"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5372192"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Emily Hagins"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11252497"}, "Title": {"type": "literal", "value": "K\u00f6t\u00fc Kedi \u015eerafettin"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q78168"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6535202"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2016 animated film by Ayse \u00dcnal"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5350179"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7418444"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3494299|http://www.wikidata.org/entity/Q511589"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Sanjay Khanduri"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2474366"}, "Title": {"type": "literal", "value": "\u0413\u0438\u0442\u043b\u0435\u0440 \u043a\u0430\u043f\u0443\u0442!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4102539"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4102539"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1074254|http://www.wikidata.org/entity/Q593332|http://www.wikidata.org/entity/Q287099|http://www.wikidata.org/entity/Q274362|http://www.wikidata.org/entity/Q176846|http://www.wikidata.org/entity/Q136847|http://www.wikidata.org/entity/Q26688|http://www.wikidata.org/entity/Q25080|http://www.wikidata.org/entity/Q4528820|http://www.wikidata.org/entity/Q4242781|http://www.wikidata.org/entity/Q4134092|http://www.wikidata.org/entity/Q4132905|http://www.wikidata.org/entity/Q4100033|http://www.wikidata.org/entity/Q4098902|http://www.wikidata.org/entity/Q4088503"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q170539|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q622548|http://www.wikidata.org/entity/Q193979"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2008 spoof film directed by Marius Vaisbergas"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4504080"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12180631"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12250381"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4166476"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Wael Ehsan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1782738"}, "Title": {"type": "literal", "value": "Tucker & Dale vs Evil"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q975203"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17338460|http://www.wikidata.org/entity/Q975203|http://www.wikidata.org/entity/Q934467|http://www.wikidata.org/entity/Q867364|http://www.wikidata.org/entity/Q650423|http://www.wikidata.org/entity/Q349350|http://www.wikidata.org/entity/Q270260|http://www.wikidata.org/entity/Q236472"}, "Published": {"type": "literal", "value": "2011|2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q853630|http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2010 Canadian horror-comedy film directed by Eli Craig"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3703884"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q232052|http://www.wikidata.org/entity/Q18223523|http://www.wikidata.org/entity/Q13600455|http://www.wikidata.org/entity/Q13600449|http://www.wikidata.org/entity/Q3608604|http://www.wikidata.org/entity/Q2641366|http://www.wikidata.org/entity/Q2092695|http://www.wikidata.org/entity/Q818736"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q556039|http://www.wikidata.org/entity/Q515534|http://www.wikidata.org/entity/Q13600455|http://www.wikidata.org/entity/Q13600449|http://www.wikidata.org/entity/Q3972331|http://www.wikidata.org/entity/Q3902862|http://www.wikidata.org/entity/Q3847904|http://www.wikidata.org/entity/Q3657884|http://www.wikidata.org/entity/Q3608559|http://www.wikidata.org/entity/Q1052910|http://www.wikidata.org/entity/Q232052|http://www.wikidata.org/entity/Q818736|http://www.wikidata.org/entity/Q795628"}, "Published": {"type": "literal", "value": "1994"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "1994 anthology film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q127045"}, "Title": {"type": "literal", "value": "The Last Supper"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3480356"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5214308"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q44380|http://www.wikidata.org/entity/Q779352|http://www.wikidata.org/entity/Q710169|http://www.wikidata.org/entity/Q508428|http://www.wikidata.org/entity/Q462903|http://www.wikidata.org/entity/Q455847|http://www.wikidata.org/entity/Q329784|http://www.wikidata.org/entity/Q311754|http://www.wikidata.org/entity/Q296774|http://www.wikidata.org/entity/Q230779|http://www.wikidata.org/entity/Q220698|http://www.wikidata.org/entity/Q110374"}, "Published": {"type": "literal", "value": "1995|1997"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "1995 film by Stacy Title"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q186941"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q945109"}, "Title": {"type": "literal", "value": "Eating Out 4: Drama Camp"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3412282"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3412282"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4406124|http://www.wikidata.org/entity/Q4236621"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2011 film by Q. Allan Brocka"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20001218"}, "Title": {"type": "literal", "value": "Barbershop 3"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3843845"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19896764|http://www.wikidata.org/entity/Q5259997|http://www.wikidata.org/entity/Q3778264|http://www.wikidata.org/entity/Q959052|http://www.wikidata.org/entity/Q937805|http://www.wikidata.org/entity/Q918866|http://www.wikidata.org/entity/Q500628|http://www.wikidata.org/entity/Q492327|http://www.wikidata.org/entity/Q450219|http://www.wikidata.org/entity/Q358087|http://www.wikidata.org/entity/Q317008|http://www.wikidata.org/entity/Q313918|http://www.wikidata.org/entity/Q286022|http://www.wikidata.org/entity/Q239464|http://www.wikidata.org/entity/Q235141|http://www.wikidata.org/entity/Q173637|http://www.wikidata.org/entity/Q162202"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Malcolm D. Lee"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q179200"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15271108"}, "Title": {"type": "literal", "value": "\u0427\u0442\u043e \u0442\u0432\u043e\u0440\u044f\u0442 \u043c\u0443\u0436\u0447\u0438\u043d\u044b!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4065391"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4065391"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4287350|http://www.wikidata.org/entity/Q4248489|http://www.wikidata.org/entity/Q4243126|http://www.wikidata.org/entity/Q4143810|http://www.wikidata.org/entity/Q2035141|http://www.wikidata.org/entity/Q438799|http://www.wikidata.org/entity/Q4534682|http://www.wikidata.org/entity/Q4497619"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2013 film by Sarik Andreasyan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4038074"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q849140"}, "Title": {"type": "literal", "value": "Cop Out"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q489831"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6767215"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1684394|http://www.wikidata.org/entity/Q1140031|http://www.wikidata.org/entity/Q540608|http://www.wikidata.org/entity/Q351812|http://www.wikidata.org/entity/Q294372|http://www.wikidata.org/entity/Q256256|http://www.wikidata.org/entity/Q229528|http://www.wikidata.org/entity/Q193212|http://www.wikidata.org/entity/Q40220|http://www.wikidata.org/entity/Q14542|http://www.wikidata.org/entity/Q14535|http://www.wikidata.org/entity/Q4960|http://www.wikidata.org/entity/Q2680|http://www.wikidata.org/entity/Q19571827|http://www.wikidata.org/entity/Q15097951|http://www.wikidata.org/entity/Q5648980|http://www.wikidata.org/entity/Q3124543"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q4984974|http://www.wikidata.org/entity/Q663106"}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "2010 American action comedy film directed by Kevin Smith"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17417784"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q387348"}, "Title": {"type": "literal", "value": "Alvin and the Chipmunks"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2037657"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3177566|http://www.wikidata.org/entity/Q8002970"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q258237|http://www.wikidata.org/entity/Q242451|http://www.wikidata.org/entity/Q228852|http://www.wikidata.org/entity/Q191842|http://www.wikidata.org/entity/Q4960|http://www.wikidata.org/entity/Q462468|http://www.wikidata.org/entity/Q362332|http://www.wikidata.org/entity/Q313501|http://www.wikidata.org/entity/Q298672"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q643684|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2007 American comedy film directed by Tim Hill"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434841|http://www.wikidata.org/entity/Q466459|http://www.wikidata.org/entity/Q697131|http://www.wikidata.org/entity/Q4841523|http://www.wikidata.org/entity/Q3041294"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q46392313"}, "Title": {"type": "literal", "value": "Teen Titans Go! to the Movies"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q47492998"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5394838|http://www.wikidata.org/entity/Q47492998"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q2973181"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2018 American animated superhero fantasy comedy film by Peter Rida Michail and Aaron Horvath"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2924461|http://www.wikidata.org/entity/Q13416804|http://www.wikidata.org/entity/Q708290"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16160881"}, "Title": {"type": "literal", "value": "Kobry a u\u017eovky"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15042966"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12024194"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60411061|http://www.wikidata.org/entity/Q33438653|http://www.wikidata.org/entity/Q25340695|http://www.wikidata.org/entity/Q19362142|http://www.wikidata.org/entity/Q12034183|http://www.wikidata.org/entity/Q12023479|http://www.wikidata.org/entity/Q12022586|http://www.wikidata.org/entity/Q12001909|http://www.wikidata.org/entity/Q4765872|http://www.wikidata.org/entity/Q530954"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "2015 film by Jan Pru\u0161inovsk\u00fd"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1779547"}, "Title": {"type": "literal", "value": "Max Keeble's Big Move"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2037657"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25418648|http://www.wikidata.org/entity/Q25418646|http://www.wikidata.org/entity/Q6134940"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2469967|http://www.wikidata.org/entity/Q943028|http://www.wikidata.org/entity/Q741473|http://www.wikidata.org/entity/Q716099|http://www.wikidata.org/entity/Q508428|http://www.wikidata.org/entity/Q463734|http://www.wikidata.org/entity/Q452307|http://www.wikidata.org/entity/Q451108|http://www.wikidata.org/entity/Q438355|http://www.wikidata.org/entity/Q355133|http://www.wikidata.org/entity/Q311779|http://www.wikidata.org/entity/Q295020|http://www.wikidata.org/entity/Q206235|http://www.wikidata.org/entity/Q133820"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2001 film by Tim Hill"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191224|http://www.wikidata.org/entity/Q25418626"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18967314"}, "Title": {"type": "literal", "value": "Staying Alive"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18967371"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18967371"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4580829|http://www.wikidata.org/entity/Q1780001|http://www.wikidata.org/entity/Q394570"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Charlotte Blom"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6736868"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10638837"}, "Title": {"type": "literal", "value": "Prinsessa"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4947374"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4947374"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5795551|http://www.wikidata.org/entity/Q4978610|http://www.wikidata.org/entity/Q4935946|http://www.wikidata.org/entity/Q4568692|http://www.wikidata.org/entity/Q486872|http://www.wikidata.org/entity/Q465175|http://www.wikidata.org/entity/Q440826"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Teresa Fabik"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4356136"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12250381"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q353690"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Wael Ehsan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6899172"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6105225"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6105225"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3765029"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by J. D. Chakravarthy"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4137975"}, "Title": {"type": "literal", "value": "Liberal Arts"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q223455"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q223455"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q229487|http://www.wikidata.org/entity/Q223455|http://www.wikidata.org/entity/Q83677|http://www.wikidata.org/entity/Q60802|http://www.wikidata.org/entity/Q45229|http://www.wikidata.org/entity/Q6246377|http://www.wikidata.org/entity/Q460457|http://www.wikidata.org/entity/Q313043|http://www.wikidata.org/entity/Q234644"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2012 film by Josh Radnor"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7817481"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2092203"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3760228"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1680701"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19758079|http://www.wikidata.org/entity/Q6962622|http://www.wikidata.org/entity/Q947748|http://www.wikidata.org/entity/Q447721|http://www.wikidata.org/entity/Q349166|http://www.wikidata.org/entity/Q257317|http://www.wikidata.org/entity/Q237809|http://www.wikidata.org/entity/Q213706"}, "Published": {"type": "literal", "value": "1996"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "1996 film by Geoffrey Sax"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q54473106"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q40177542"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2018 film directed by Simone Spada"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1271407"}, "Title": {"type": "literal", "value": "La D\u00e9licatesse"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q325133"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q325133"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16667921|http://www.wikidata.org/entity/Q3561353|http://www.wikidata.org/entity/Q3287898|http://www.wikidata.org/entity/Q2966368|http://www.wikidata.org/entity/Q2833950|http://www.wikidata.org/entity/Q1139064|http://www.wikidata.org/entity/Q511485|http://www.wikidata.org/entity/Q462376|http://www.wikidata.org/entity/Q457089|http://www.wikidata.org/entity/Q304123|http://www.wikidata.org/entity/Q274043|http://www.wikidata.org/entity/Q268690|http://www.wikidata.org/entity/Q164976|http://www.wikidata.org/entity/Q116189"}, "Published": {"type": "literal", "value": "2012|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2011 film by David Foenkinos"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2450848"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2424215"}, "Title": {"type": "literal", "value": "Somers Town"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1372134"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7150728"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3900087|http://www.wikidata.org/entity/Q1334874|http://www.wikidata.org/entity/Q212351"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "71"}, "Description": {"type": "literal", "value": "2008 film by Shane Meadows"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q52144738"}, "Title": {"type": "literal", "value": "Uno al a\u00f1o no hace da\u00f1o"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50358500"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Juan Camilo Pinz\u00f3n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q9192203"}, "Title": {"type": "literal", "value": "Ciacho"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11813603"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11813603"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2509820"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Patryk Vega"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15809797"}, "Title": {"type": "literal", "value": "Fliegende Fische m\u00fcssen ins Meer"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1562353"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1562353"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2011 Swiss film by G\u00fczin Kar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20963032"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7146964"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17276302|http://www.wikidata.org/entity/Q6691102|http://www.wikidata.org/entity/Q6130604|http://www.wikidata.org/entity/Q5355019|http://www.wikidata.org/entity/Q4263481|http://www.wikidata.org/entity/Q717579"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 Hong Kong film directed by Patrick Kong"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q667548"}, "Title": {"type": "literal", "value": "Death of a Dynasty"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q344384"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3196366|http://www.wikidata.org/entity/Q2739748|http://www.wikidata.org/entity/Q2366744|http://www.wikidata.org/entity/Q1387412|http://www.wikidata.org/entity/Q1279993|http://www.wikidata.org/entity/Q1052019|http://www.wikidata.org/entity/Q962378|http://www.wikidata.org/entity/Q769259|http://www.wikidata.org/entity/Q708185|http://www.wikidata.org/entity/Q706911|http://www.wikidata.org/entity/Q618352|http://www.wikidata.org/entity/Q559074|http://www.wikidata.org/entity/Q541821|http://www.wikidata.org/entity/Q540608|http://www.wikidata.org/entity/Q516716|http://www.wikidata.org/entity/Q465814|http://www.wikidata.org/entity/Q462735|http://www.wikidata.org/entity/Q434913|http://www.wikidata.org/entity/Q425821|http://www.wikidata.org/entity/Q388785|http://www.wikidata.org/entity/Q348696|http://www.wikidata.org/entity/Q344384|http://www.wikidata.org/entity/Q315099|http://www.wikidata.org/entity/Q238045|http://www.wikidata.org/entity/Q235870|http://www.wikidata.org/entity/Q234715|http://www.wikidata.org/entity/Q230817|http://www.wikidata.org/entity/Q229319|http://www.wikidata.org/entity/Q216936|http://www.wikidata.org/entity/Q62766|http://www.wikidata.org/entity/Q59185|http://www.wikidata.org/entity/Q42025|http://www.wikidata.org/entity/Q41076"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Damon Dash"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q62893588"}, "Title": {"type": "literal", "value": "Lo dejo cuando quiera"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6404813"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50825960"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3266852|http://www.wikidata.org/entity/Q2888100|http://www.wikidata.org/entity/Q594270|http://www.wikidata.org/entity/Q576436|http://www.wikidata.org/entity/Q261072|http://www.wikidata.org/entity/Q251636|http://www.wikidata.org/entity/Q23728778|http://www.wikidata.org/entity/Q8338310|http://www.wikidata.org/entity/Q6111016|http://www.wikidata.org/entity/Q6068440|http://www.wikidata.org/entity/Q5883909"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Carlos Ther\u00f3n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6488304"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12243777"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12243649|http://www.wikidata.org/entity/Q12237244|http://www.wikidata.org/entity/Q12222399|http://www.wikidata.org/entity/Q12182704|http://www.wikidata.org/entity/Q12181358|http://www.wikidata.org/entity/Q10982907"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Moataz El Touni"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18615719"}, "Title": {"type": "literal", "value": "\u0401\u043b\u043a\u0438 1914"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q344854|http://www.wikidata.org/entity/Q28498172|http://www.wikidata.org/entity/Q17582593|http://www.wikidata.org/entity/Q4222061|http://www.wikidata.org/entity/Q4207063|http://www.wikidata.org/entity/Q2833792"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7510890|http://www.wikidata.org/entity/Q344854"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4503115|http://www.wikidata.org/entity/Q3479732|http://www.wikidata.org/entity/Q3291006|http://www.wikidata.org/entity/Q2865340|http://www.wikidata.org/entity/Q442830|http://www.wikidata.org/entity/Q25918148|http://www.wikidata.org/entity/Q21183528|http://www.wikidata.org/entity/Q15064549|http://www.wikidata.org/entity/Q4526492"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2014 film by Timur Bekmambetov"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2892410"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3277441"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3014956"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3014956"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3016120|http://www.wikidata.org/entity/Q1339485|http://www.wikidata.org/entity/Q311165|http://www.wikidata.org/entity/Q260778"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Danielle Arbid"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27907637"}, "Title": {"type": "literal", "value": "Le Petit Locataire"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29053918"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q462950"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16672166|http://www.wikidata.org/entity/Q3380605|http://www.wikidata.org/entity/Q3335002|http://www.wikidata.org/entity/Q3144876|http://www.wikidata.org/entity/Q3118434|http://www.wikidata.org/entity/Q3010586|http://www.wikidata.org/entity/Q2899484|http://www.wikidata.org/entity/Q2853678|http://www.wikidata.org/entity/Q1945547|http://www.wikidata.org/entity/Q271944"}, "Published": {"type": "literal", "value": "2017|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2016 film by Nad\u00e8ge Loiseau"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6346551"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6389380"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6389380"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q908782|http://www.wikidata.org/entity/Q561820|http://www.wikidata.org/entity/Q234574"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Kenji Uchida"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12406694"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12403899"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12403899"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12403789|http://www.wikidata.org/entity/Q6860389"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Alon Gur Arye"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3351117"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q652149"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5996234"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3123705|http://www.wikidata.org/entity/Q3089275|http://www.wikidata.org/entity/Q470226|http://www.wikidata.org/entity/Q9543"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "145"}, "Description": {"type": "literal", "value": "2011 film by Anees Bazmee"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7667850"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22000314"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2896517"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3351313"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Beno\u00eet Forgeard"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4271816"}, "Title": {"type": "literal", "value": "\u041b\u044e\u0431\u043e\u0432\u044c \u0432 \u0431\u043e\u043b\u044c\u0448\u043e\u043c \u0433\u043e\u0440\u043e\u0434\u0435"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4102539"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4536851|http://www.wikidata.org/entity/Q4102539"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3874799|http://www.wikidata.org/entity/Q2832626|http://www.wikidata.org/entity/Q397682"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q624771|http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q132311"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2009 Russian-Ukrainian romantic comedy film by Marius Vaisbergas"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11733862"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11715212"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11715212"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2000 film by Jacek Borcuch"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21640541"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15064148"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4314368"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2014 film by Oleg Assadulin"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4038074"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16326600"}, "Title": {"type": "literal", "value": "Sex Tape"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1678831"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2624066|http://www.wikidata.org/entity/Q202304"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2514422|http://www.wikidata.org/entity/Q1378118|http://www.wikidata.org/entity/Q529262|http://www.wikidata.org/entity/Q483907|http://www.wikidata.org/entity/Q296505|http://www.wikidata.org/entity/Q234466|http://www.wikidata.org/entity/Q202304|http://www.wikidata.org/entity/Q72077|http://www.wikidata.org/entity/Q44380|http://www.wikidata.org/entity/Q7291588|http://www.wikidata.org/entity/Q4258026"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2014 film by Jake Kasdan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q822314"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5708728"}, "Title": {"type": "literal", "value": "Hello I Must Be Going"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2438469"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1701620|http://www.wikidata.org/entity/Q1189470|http://www.wikidata.org/entity/Q269802|http://www.wikidata.org/entity/Q235905|http://www.wikidata.org/entity/Q40064"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2012 film by Todd Louiso"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15895891"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028745"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028745"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18605727"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Noh Young-seok"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55831162"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3694286"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3719572"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2018 film directed by Corrado Nuzzo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q548066"}, "Title": {"type": "literal", "value": "Shrink"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6272209"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18608856"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18608856|http://www.wikidata.org/entity/Q1629331|http://www.wikidata.org/entity/Q1378842|http://www.wikidata.org/entity/Q1190693|http://www.wikidata.org/entity/Q1138674|http://www.wikidata.org/entity/Q739062|http://www.wikidata.org/entity/Q536653|http://www.wikidata.org/entity/Q470260|http://www.wikidata.org/entity/Q452560|http://www.wikidata.org/entity/Q361238|http://www.wikidata.org/entity/Q273044|http://www.wikidata.org/entity/Q262862|http://www.wikidata.org/entity/Q232419|http://www.wikidata.org/entity/Q225239|http://www.wikidata.org/entity/Q189992|http://www.wikidata.org/entity/Q167821|http://www.wikidata.org/entity/Q83338|http://www.wikidata.org/entity/Q25144|http://www.wikidata.org/entity/Q24057"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2009 film directed by Jonas Pate"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21008492"}, "Title": {"type": "literal", "value": "Die Kleinen und die B\u00f6sen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1901804"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2597852"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19958886|http://www.wikidata.org/entity/Q2450481|http://www.wikidata.org/entity/Q1669565|http://www.wikidata.org/entity/Q1578987|http://www.wikidata.org/entity/Q1577817|http://www.wikidata.org/entity/Q1409622|http://www.wikidata.org/entity/Q527047|http://www.wikidata.org/entity/Q125372|http://www.wikidata.org/entity/Q104670"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2015 film by Markus Sehr"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1763181"}, "Title": {"type": "literal", "value": "A Good Old Fashioned Orgy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1351776"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1351776"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q469914|http://www.wikidata.org/entity/Q449822|http://www.wikidata.org/entity/Q437813|http://www.wikidata.org/entity/Q309788|http://www.wikidata.org/entity/Q261579|http://www.wikidata.org/entity/Q241686|http://www.wikidata.org/entity/Q239453|http://www.wikidata.org/entity/Q164328|http://www.wikidata.org/entity/Q14539|http://www.wikidata.org/entity/Q4241574|http://www.wikidata.org/entity/Q1319744|http://www.wikidata.org/entity/Q934467|http://www.wikidata.org/entity/Q716343|http://www.wikidata.org/entity/Q685861|http://www.wikidata.org/entity/Q553895"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2011 film by Alex Gregory"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12124994"}, "Title": {"type": "literal", "value": "The Idea"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7114379"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Owen 'Alik Shahadah"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1198448"}, "Title": {"type": "literal", "value": "Der die Tollkirsche ausgr\u00e4bt"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q65105"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q65105"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1710828|http://www.wikidata.org/entity/Q67917"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "43"}, "Description": {"type": "literal", "value": "2006 film by Franka Potente"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3598070"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18176387"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4017949|http://www.wikidata.org/entity/Q3944350|http://www.wikidata.org/entity/Q3939549|http://www.wikidata.org/entity/Q3840387|http://www.wikidata.org/entity/Q3804842|http://www.wikidata.org/entity/Q3712957|http://www.wikidata.org/entity/Q3664104|http://www.wikidata.org/entity/Q3615934|http://www.wikidata.org/entity/Q583977|http://www.wikidata.org/entity/Q327660"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2000 Italian comedy-drama film directed by Marco Pozzi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5870789"}, "Title": {"type": "literal", "value": "Fuga de cerebros 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6404813"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6067390|http://www.wikidata.org/entity/Q6056316|http://www.wikidata.org/entity/Q5883639|http://www.wikidata.org/entity/Q5822281|http://www.wikidata.org/entity/Q5747266|http://www.wikidata.org/entity/Q5662745|http://www.wikidata.org/entity/Q5658554|http://www.wikidata.org/entity/Q5559610|http://www.wikidata.org/entity/Q3826907|http://www.wikidata.org/entity/Q3624764|http://www.wikidata.org/entity/Q265719|http://www.wikidata.org/entity/Q201927"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Carlos Ther\u00f3n"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3772373|http://www.wikidata.org/entity/Q5696776"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60852191"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q74428"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Olivier Nakache"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30744922"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30729150"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30729150"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by St\u00e9phane H\u00e9nocque"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17052629"}, "Title": {"type": "literal", "value": "Eu N\u00e3o Fa\u00e7o a Menor Ideia do Que Eu T\u00f4 Fazendo Com a Minha Vida"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27835287"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15890642"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2012 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22928422"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12179122"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16119803"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Ahmed Nader Galal"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14901494"}, "Title": {"type": "literal", "value": "La Bataille de Solf\u00e9rino"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15069938"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15069938"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17497099|http://www.wikidata.org/entity/Q14605170|http://www.wikidata.org/entity/Q3559719|http://www.wikidata.org/entity/Q2872024"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Justine Triet"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15210611"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16250629"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5616586"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5616586"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Guinness Pakru"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20045021"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18818365"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Kazushi Watanabe"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q278190"}, "Title": {"type": "literal", "value": "A.R.O.G"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q732915"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q732915"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q469778|http://www.wikidata.org/entity/Q307906|http://www.wikidata.org/entity/Q307805|http://www.wikidata.org/entity/Q6097730|http://www.wikidata.org/entity/Q732915"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q622548|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Cem Y\u0131lmaz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q191921"}, "Title": {"type": "literal", "value": "Zero Effect"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1678831"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1678831"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20027888|http://www.wikidata.org/entity/Q447036|http://www.wikidata.org/entity/Q315763|http://www.wikidata.org/entity/Q272923|http://www.wikidata.org/entity/Q269894|http://www.wikidata.org/entity/Q47100"}, "Published": {"type": "literal", "value": "1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16950433|http://www.wikidata.org/entity/Q1200678|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "1998 film by Jake Kasdan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q622848"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q875965"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1654384"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q854737"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1138316|http://www.wikidata.org/entity/Q1136362|http://www.wikidata.org/entity/Q1092007|http://www.wikidata.org/entity/Q873277|http://www.wikidata.org/entity/Q1151171"}, "Published": {"type": "literal", "value": "2007|2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "2009 film by Yoshihiro Nakamura"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28961267"}, "Title": {"type": "literal", "value": "Die Notl\u00fcge"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19295809"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2091760"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q47007743|http://www.wikidata.org/entity/Q2091760|http://www.wikidata.org/entity/Q1591318|http://www.wikidata.org/entity/Q1320606|http://www.wikidata.org/entity/Q916344|http://www.wikidata.org/entity/Q825861|http://www.wikidata.org/entity/Q498767|http://www.wikidata.org/entity/Q167090|http://www.wikidata.org/entity/Q89907|http://www.wikidata.org/entity/Q89703"}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2017 television film directed by Marie Kreutzer"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1347462"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1129449"}, "Title": {"type": "literal", "value": "Conversations with Other Women"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5649872"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q529735"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1319539|http://www.wikidata.org/entity/Q270074|http://www.wikidata.org/entity/Q232171|http://www.wikidata.org/entity/Q200355|http://www.wikidata.org/entity/Q192643|http://www.wikidata.org/entity/Q170428"}, "Published": {"type": "literal", "value": "2009|2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2005 film by Hans Canosa"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28365455"}, "Title": {"type": "literal", "value": "\u041b\u0435\u0434\u044f\u043d\u043e\u0439 \u0443\u0440\u043e\u0436\u0430\u0439"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27990623"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27990623"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4440852|http://www.wikidata.org/entity/Q1350195|http://www.wikidata.org/entity/Q4506333"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q188473"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Klim Shipenko"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19608844"}, "Title": {"type": "literal", "value": "Ma vie de courgette"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26897082"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q461350"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "66"}, "Description": {"type": "literal", "value": "2016 film by Claude Barras"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55258972"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q489831"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Kevin Smith"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2700070"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16253955"}, "Title": {"type": "literal", "value": "An Oversimplification of Her Beauty"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21062958"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21062958"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21062958"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2012 film by Terence Nance"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18170249"}, "Title": {"type": "literal", "value": "Mot naturen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17063823"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17063823"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17063823"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Ole Gi\u00e6ver"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56248958"}, "Title": {"type": "literal", "value": "In fraganti"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50358500"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Juan Camilo Pinz\u00f3n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1755269"}, "Title": {"type": "literal", "value": "Dirty Love"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1057926"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q230993"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3439358|http://www.wikidata.org/entity/Q3075466|http://www.wikidata.org/entity/Q2308892|http://www.wikidata.org/entity/Q1327896|http://www.wikidata.org/entity/Q1140031|http://www.wikidata.org/entity/Q962058|http://www.wikidata.org/entity/Q910568|http://www.wikidata.org/entity/Q724281|http://www.wikidata.org/entity/Q483558|http://www.wikidata.org/entity/Q459220|http://www.wikidata.org/entity/Q432437|http://www.wikidata.org/entity/Q350811|http://www.wikidata.org/entity/Q350314|http://www.wikidata.org/entity/Q286512|http://www.wikidata.org/entity/Q230993|http://www.wikidata.org/entity/Q216913|http://www.wikidata.org/entity/Q185122"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2005 film by John Mallory Asher"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20942819"}, "Title": {"type": "literal", "value": "Anomalisa"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21030803|http://www.wikidata.org/entity/Q312751"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q312751"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2015 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4003885"}, "Title": {"type": "literal", "value": "Un inverno freddo freddo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1745655"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3893633|http://www.wikidata.org/entity/Q3762268|http://www.wikidata.org/entity/Q179982"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3893633|http://www.wikidata.org/entity/Q3664104|http://www.wikidata.org/entity/Q3660170|http://www.wikidata.org/entity/Q3290121|http://www.wikidata.org/entity/Q1052746|http://www.wikidata.org/entity/Q973621|http://www.wikidata.org/entity/Q469201|http://www.wikidata.org/entity/Q456148"}, "Published": {"type": "literal", "value": "1996"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "1996 film by Roberto Cimpanelli"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3888818"}, "Title": {"type": "literal", "value": "Padroni di casa"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q676233"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1052746|http://www.wikidata.org/entity/Q676233"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1231066|http://www.wikidata.org/entity/Q1052746|http://www.wikidata.org/entity/Q319537|http://www.wikidata.org/entity/Q232470"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2012 film by Edoardo Gabbriellini"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3929491"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1460394"}, "Title": {"type": "literal", "value": "Young Adult"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q314502"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q230795"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6688529|http://www.wikidata.org/entity/Q5748042|http://www.wikidata.org/entity/Q3723465|http://www.wikidata.org/entity/Q2604240|http://www.wikidata.org/entity/Q727288|http://www.wikidata.org/entity/Q460503|http://www.wikidata.org/entity/Q455054|http://www.wikidata.org/entity/Q442193|http://www.wikidata.org/entity/Q374065|http://www.wikidata.org/entity/Q351290|http://www.wikidata.org/entity/Q271460|http://www.wikidata.org/entity/Q150482|http://www.wikidata.org/entity/Q80046|http://www.wikidata.org/entity/Q60802"}, "Published": {"type": "literal", "value": "2012|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q192881|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2011 American comedy-drama film directed by Jason Reitman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q159846|http://www.wikidata.org/entity/Q922453|http://www.wikidata.org/entity/Q5368270"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27985819"}, "Title": {"type": "literal", "value": "Spider-Man: Far from Home"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18519749"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5107425"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2023710|http://www.wikidata.org/entity/Q200566|http://www.wikidata.org/entity/Q191828|http://www.wikidata.org/entity/Q189489|http://www.wikidata.org/entity/Q172678|http://www.wikidata.org/entity/Q138005|http://www.wikidata.org/entity/Q133313"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2973181|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 superhero film produced by Marvel Studios"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q367466"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28662891"}, "Title": {"type": "literal", "value": "Es por tu bien"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6404813"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q537931"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3484328"}, "Title": {"type": "literal", "value": "Simon Konianski"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3307964"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3307964"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3497879|http://www.wikidata.org/entity/Q3397928|http://www.wikidata.org/entity/Q3242516|http://www.wikidata.org/entity/Q3183504|http://www.wikidata.org/entity/Q3173186"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2009 film by Micha Wald"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5958081"}, "Title": {"type": "literal", "value": "Karate a muerte en Torremolinos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6070232"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q52161654"}, "Title": {"type": "literal", "value": "El man, el superh\u00e9roe nacional"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16302557"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Harold Trompetero"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29368310"}, "Title": {"type": "literal", "value": "Die g\u00f6ttliche Ordnung"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29368920"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29368920"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28758234|http://www.wikidata.org/entity/Q16887870|http://www.wikidata.org/entity/Q4017949|http://www.wikidata.org/entity/Q1984941|http://www.wikidata.org/entity/Q1913471|http://www.wikidata.org/entity/Q1897408|http://www.wikidata.org/entity/Q1800425|http://www.wikidata.org/entity/Q1791537|http://www.wikidata.org/entity/Q850066|http://www.wikidata.org/entity/Q272545"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2016 Swiss film by Petra Biondina Volpe"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q158398"}, "Title": {"type": "literal", "value": "Iron Sky"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2063309"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2746094"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7608364|http://www.wikidata.org/entity/Q7171604|http://www.wikidata.org/entity/Q3612868|http://www.wikidata.org/entity/Q1365741|http://www.wikidata.org/entity/Q100417|http://www.wikidata.org/entity/Q77035|http://www.wikidata.org/entity/Q70808|http://www.wikidata.org/entity/Q62676"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20656352|http://www.wikidata.org/entity/Q2678111|http://www.wikidata.org/entity/Q761469|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2012 science-fiction comedy film by Timo Vuorensola"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2031636"}, "Title": {"type": "literal", "value": "Aanrijding in Moscou"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4751035"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19971953|http://www.wikidata.org/entity/Q3054299"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19971953|http://www.wikidata.org/entity/Q14524582|http://www.wikidata.org/entity/Q3542772|http://www.wikidata.org/entity/Q3155241|http://www.wikidata.org/entity/Q2431878|http://www.wikidata.org/entity/Q2186759|http://www.wikidata.org/entity/Q2130507|http://www.wikidata.org/entity/Q2103868|http://www.wikidata.org/entity/Q1973557|http://www.wikidata.org/entity/Q545546"}, "Published": {"type": "literal", "value": "2009|2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2008 film directed by Christophe Van Rompaey"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4546023"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12179122"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q591801"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 Egyptian film directed by Ahmed Nader Galal"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1122149"}, "Title": {"type": "literal", "value": "Soul Men"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3843845"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3938399"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20631143|http://www.wikidata.org/entity/Q12200303|http://www.wikidata.org/entity/Q4688986|http://www.wikidata.org/entity/Q4679224|http://www.wikidata.org/entity/Q2882569|http://www.wikidata.org/entity/Q562827|http://www.wikidata.org/entity/Q462408|http://www.wikidata.org/entity/Q337521|http://www.wikidata.org/entity/Q311962|http://www.wikidata.org/entity/Q271263|http://www.wikidata.org/entity/Q230278|http://www.wikidata.org/entity/Q223033|http://www.wikidata.org/entity/Q206439|http://www.wikidata.org/entity/Q176323|http://www.wikidata.org/entity/Q172678|http://www.wikidata.org/entity/Q44857"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2008 American musical comedy film directed by Malcolm D. Lee"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q179200"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18639756"}, "Title": {"type": "literal", "value": "Iron Sky: The Coming Race"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2063309"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11222319|http://www.wikidata.org/entity/Q7608364|http://www.wikidata.org/entity/Q2631010|http://www.wikidata.org/entity/Q2529359|http://www.wikidata.org/entity/Q998064|http://www.wikidata.org/entity/Q183347|http://www.wikidata.org/entity/Q77035|http://www.wikidata.org/entity/Q70808"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20656352|http://www.wikidata.org/entity/Q622548|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 science fiction comedy film by Timo Vuorensola"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1987819"}, "Title": {"type": "literal", "value": "Terrorama!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q320567"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q320567"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q320567|http://www.wikidata.org/entity/Q226466|http://www.wikidata.org/entity/Q205456"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2001 film by Edwin Brienen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q836821"}, "Title": {"type": "literal", "value": "The Hitchhiker's Guide to the Galaxy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q598683"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q42|http://www.wikidata.org/entity/Q1626388"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q598683|http://www.wikidata.org/entity/Q522057|http://www.wikidata.org/entity/Q433089|http://www.wikidata.org/entity/Q349391|http://www.wikidata.org/entity/Q325070|http://www.wikidata.org/entity/Q316446|http://www.wikidata.org/entity/Q314831|http://www.wikidata.org/entity/Q313705|http://www.wikidata.org/entity/Q309486|http://www.wikidata.org/entity/Q230383|http://www.wikidata.org/entity/Q16734434|http://www.wikidata.org/entity/Q6738551|http://www.wikidata.org/entity/Q1655608|http://www.wikidata.org/entity/Q1319539|http://www.wikidata.org/entity/Q207179|http://www.wikidata.org/entity/Q192912|http://www.wikidata.org/entity/Q191719|http://www.wikidata.org/entity/Q172261|http://www.wikidata.org/entity/Q108270|http://www.wikidata.org/entity/Q106481|http://www.wikidata.org/entity/Q38875"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q52162262"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2005 British-American comic science fiction film directed by Garth Jennings"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q598683|http://www.wikidata.org/entity/Q497155|http://www.wikidata.org/entity/Q512858"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24046169"}, "Title": {"type": "literal", "value": "Fr\u00e4ulein - Una fiaba d'inverno"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3663491"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3663491"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2016 film by Caterina Carone"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25409286"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q80609"}, "Title": {"type": "literal", "value": "A Feast at Midnight"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18206338"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q180338"}, "Published": {"type": "literal", "value": "1995"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1995 film by Justin Hardy"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3291170"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q42263944"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6059137|http://www.wikidata.org/entity/Q5796159|http://www.wikidata.org/entity/Q4157257|http://www.wikidata.org/entity/Q3380605|http://www.wikidata.org/entity/Q966867|http://www.wikidata.org/entity/Q533363|http://www.wikidata.org/entity/Q182991"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2013 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11267611"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11633519|http://www.wikidata.org/entity/Q11479348|http://www.wikidata.org/entity/Q4209036|http://www.wikidata.org/entity/Q4023328|http://www.wikidata.org/entity/Q2144254|http://www.wikidata.org/entity/Q463565"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11309530|http://www.wikidata.org/entity/Q1645932"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 anthology film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3774333"}, "Title": {"type": "literal", "value": "25 Watts"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3302146|http://www.wikidata.org/entity/Q1423428"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1423428"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2272014"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 Uruguayan urban comedy drama film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25490363"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1260345"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1260345"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2015 Israeli-German-NZ film comedy by Dror Shaul"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27975936"}, "Title": {"type": "literal", "value": "\u054a\u0561\u0570\u0561\u0576\u057b\u057e\u0578\u0582\u0574 \u0567 \u0574\u056b\u056c\u056b\u0578\u0576\u0561\u057f\u0565\u0580"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21572795"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21572795|http://www.wikidata.org/entity/Q4159704"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23887684|http://www.wikidata.org/entity/Q22958411|http://www.wikidata.org/entity/Q22138703|http://www.wikidata.org/entity/Q20509727|http://www.wikidata.org/entity/Q6875613|http://www.wikidata.org/entity/Q2567681"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by David Babakhanyan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7390175"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26834191"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26834193|http://www.wikidata.org/entity/Q6288595"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2016 film by Josh Appignanesi, Devorah Baum"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19627596"}, "Title": {"type": "literal", "value": "Undrafted"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q447872"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q447872"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1770468|http://www.wikidata.org/entity/Q432739|http://www.wikidata.org/entity/Q321770|http://www.wikidata.org/entity/Q297064"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q645928"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2015 film by Joseph Mazzello"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20347724"}, "Title": {"type": "literal", "value": "Voley"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6002829"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5766607|http://www.wikidata.org/entity/Q271836|http://www.wikidata.org/entity/Q130313|http://www.wikidata.org/entity/Q6160487|http://www.wikidata.org/entity/Q6002829"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2015 film by Mart\u00edn Piroyansky"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q492504"}, "Title": {"type": "literal", "value": "\uc368\ub2c8"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6362184"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6362184"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q712786|http://www.wikidata.org/entity/Q484422"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 South Korean film directed by Kang Hyeong-cheol"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28668770"}, "Title": {"type": "literal", "value": "Vieni a vivere a Napoli!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18539826"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2016 film by Guido Lombardi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11363860"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860820"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Kankur\u014d Kud\u014d"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2896821"}, "Title": {"type": "literal", "value": "\u05d7\u05de\u05e9 \u05e9\u05e2\u05d5\u05ea \u05de\u05e4\u05e8\u05d9\u05d6|Hamesh Shaot me'Pariz"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2894488"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6745634"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12406670|http://www.wikidata.org/entity/Q12405898|http://www.wikidata.org/entity/Q6836616|http://www.wikidata.org/entity/Q6782103|http://www.wikidata.org/entity/Q6594505|http://www.wikidata.org/entity/Q4492743"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film directed by Leonid Prudovsky"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19766009"}, "Title": {"type": "literal", "value": "V\u00e9r \u00e9s t\u0171sarok|Blood and High Heels"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19618406"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19618406"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4272902|http://www.wikidata.org/entity/Q781617"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "23"}, "Description": {"type": "literal", "value": "2012 Hungarian\u00a0short film directed by D\u00e1vid G\u00e9czy"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12222401"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12179122"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12249717"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Ahmed Nader Galal"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11942384"}, "Title": {"type": "literal", "value": "Vr\u00e1sky z l\u00e1sky"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6203818"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12035281"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15652255|http://www.wikidata.org/entity/Q12049496|http://www.wikidata.org/entity/Q12048498|http://www.wikidata.org/entity/Q12043246|http://www.wikidata.org/entity/Q12035874|http://www.wikidata.org/entity/Q12035846|http://www.wikidata.org/entity/Q12023093|http://www.wikidata.org/entity/Q12008147|http://www.wikidata.org/entity/Q11833417|http://www.wikidata.org/entity/Q10857514|http://www.wikidata.org/entity/Q7929814|http://www.wikidata.org/entity/Q7690553|http://www.wikidata.org/entity/Q6873344|http://www.wikidata.org/entity/Q6203641|http://www.wikidata.org/entity/Q4765872|http://www.wikidata.org/entity/Q3506732|http://www.wikidata.org/entity/Q3229474|http://www.wikidata.org/entity/Q866999|http://www.wikidata.org/entity/Q741577|http://www.wikidata.org/entity/Q555650|http://www.wikidata.org/entity/Q544058|http://www.wikidata.org/entity/Q468412|http://www.wikidata.org/entity/Q448921|http://www.wikidata.org/entity/Q440954|http://www.wikidata.org/entity/Q430017|http://www.wikidata.org/entity/Q265560|http://www.wikidata.org/entity/Q220119"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Ji\u0159\u00ed Strach"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3523100"}, "Title": {"type": "literal", "value": "The Trotsky"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434244"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3052376|http://www.wikidata.org/entity/Q2850841|http://www.wikidata.org/entity/Q976176|http://www.wikidata.org/entity/Q492789|http://www.wikidata.org/entity/Q449679|http://www.wikidata.org/entity/Q316756|http://www.wikidata.org/entity/Q232845"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "2009 film by Jacob Tierney"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q51879928"}, "Title": {"type": "literal", "value": "Sun Dogs"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q199929"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20644935|http://www.wikidata.org/entity/Q18353456|http://www.wikidata.org/entity/Q11257731|http://www.wikidata.org/entity/Q962221|http://www.wikidata.org/entity/Q317024|http://www.wikidata.org/entity/Q229487|http://www.wikidata.org/entity/Q199929|http://www.wikidata.org/entity/Q46677|http://www.wikidata.org/entity/Q16758"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Jennifer Morrison"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10269870"}, "Title": {"type": "literal", "value": "E A\u00ed... Comeu?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16337452"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q466049"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2012 film by Felipe Joffily"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56272405"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15978193"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9058429"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Zhang Meng"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13497103"}, "Title": {"type": "literal", "value": "El mundo es suyo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5667204"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Alfonso S\u00e1nchez Fern\u00e1ndez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23698359"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4776837"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 Croatian film directed by Antonio Nui\u0107"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4158934"}, "Title": {"type": "literal", "value": "\u0414\u0435\u0440\u0437\u043a\u0438\u0435 \u0434\u043d\u0438"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4077105"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4077105"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4157391"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Ruslan Balttser"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1307075"}, "Title": {"type": "literal", "value": "Einer wie Bruno"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q107359"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2011 film by Anja Jacobs"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26260650"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4751035"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "121"}, "Description": {"type": "literal", "value": "2016 film by Christophe Van Rompaey"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20092714"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16689303"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12303872"}, "Title": {"type": "literal", "value": "Bl\u00e5 m\u00e6nd"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12332904"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12332904|http://www.wikidata.org/entity/Q12327036"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41236447|http://www.wikidata.org/entity/Q40523509|http://www.wikidata.org/entity/Q12339791|http://www.wikidata.org/entity/Q12339254|http://www.wikidata.org/entity/Q12327036|http://www.wikidata.org/entity/Q12326087|http://www.wikidata.org/entity/Q12325666|http://www.wikidata.org/entity/Q12322921|http://www.wikidata.org/entity/Q12319347|http://www.wikidata.org/entity/Q12308738|http://www.wikidata.org/entity/Q12303936|http://www.wikidata.org/entity/Q11995280|http://www.wikidata.org/entity/Q11958211|http://www.wikidata.org/entity/Q6409031|http://www.wikidata.org/entity/Q5586759|http://www.wikidata.org/entity/Q5565254|http://www.wikidata.org/entity/Q4976428|http://www.wikidata.org/entity/Q4947416|http://www.wikidata.org/entity/Q3427596|http://www.wikidata.org/entity/Q3427562|http://www.wikidata.org/entity/Q3374500|http://www.wikidata.org/entity/Q1957570|http://www.wikidata.org/entity/Q1797728|http://www.wikidata.org/entity/Q1776777|http://www.wikidata.org/entity/Q508739|http://www.wikidata.org/entity/Q438580|http://www.wikidata.org/entity/Q433444|http://www.wikidata.org/entity/Q84081"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Rasmus Heide"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4133530"}, "Title": {"type": "literal", "value": "O.K. Garage"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22958823"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22958823"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q521296|http://www.wikidata.org/entity/Q361400|http://www.wikidata.org/entity/Q244234"}, "Published": {"type": "literal", "value": "1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1998 film directed by Brandon Cole"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q179200"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19892507"}, "Title": {"type": "literal", "value": "\u06a9\u0631\u0627\u0686\u06cc \u0633\u06d2 \u0644\u0627\u06c1\u0648\u0631"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21066642"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21063773"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20685519"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Wajahat Rauf"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q35551275"}, "Title": {"type": "literal", "value": "Deli Dumrul"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6068775"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6580242|http://www.wikidata.org/entity/Q6100684|http://www.wikidata.org/entity/Q6086593|http://www.wikidata.org/entity/Q6086507"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Burak Aksak"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29014933"}, "Title": {"type": "literal", "value": "\u041c\u043b\u0435\u0447\u043d\u044b\u0439 \u043f\u0443\u0442\u044c"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7510890"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7510890"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28932244|http://www.wikidata.org/entity/Q2221972|http://www.wikidata.org/entity/Q1964037|http://www.wikidata.org/entity/Q726105|http://www.wikidata.org/entity/Q473580"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2016 film directed by Anna Matison"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16995009"}, "Title": {"type": "literal", "value": "He's Way More Famous Than You"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q356331"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Michael Urie"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24679456"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24679544"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "75"}, "Description": {"type": "literal", "value": "2016 film by Joshua Ligairi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18545025"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q516541"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "1999 film by Nina Di Majo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q39060488"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5006824"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7499231"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by C. S. Amudhan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8046161"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q792734"}, "Title": {"type": "literal", "value": "Futurama: Bender's Big Score"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q388404"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q455743"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q313266|http://www.wikidata.org/entity/Q296577|http://www.wikidata.org/entity/Q262910|http://www.wikidata.org/entity/Q237530|http://www.wikidata.org/entity/Q3019260|http://www.wikidata.org/entity/Q1174721|http://www.wikidata.org/entity/Q847124|http://www.wikidata.org/entity/Q577160|http://www.wikidata.org/entity/Q531624|http://www.wikidata.org/entity/Q356541|http://www.wikidata.org/entity/Q236569|http://www.wikidata.org/entity/Q229244|http://www.wikidata.org/entity/Q229013|http://www.wikidata.org/entity/Q210447"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q761469|http://www.wikidata.org/entity/Q471839"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2007 film by Dwayne Carey-Hill"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3325728|http://www.wikidata.org/entity/Q434841|http://www.wikidata.org/entity/Q634019"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55831740"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3770822"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2018 film directed by Giuseppe Loconsole"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3819090"}, "Title": {"type": "literal", "value": "L'estate del mio primo bacio"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3659956"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3984277|http://www.wikidata.org/entity/Q3659956|http://www.wikidata.org/entity/Q3080921|http://www.wikidata.org/entity/Q607190"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1523696|http://www.wikidata.org/entity/Q542061|http://www.wikidata.org/entity/Q3893633|http://www.wikidata.org/entity/Q3846446|http://www.wikidata.org/entity/Q3756510|http://www.wikidata.org/entity/Q3615988|http://www.wikidata.org/entity/Q3423484|http://www.wikidata.org/entity/Q3338344"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2006 film by Carlo Virz\u00ec"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3929491|http://www.wikidata.org/entity/Q3663776"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27887438"}, "Title": {"type": "literal", "value": "Ma famille t'adore d\u00e9j\u00e0!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3190858"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3190858"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3554319|http://www.wikidata.org/entity/Q3479429|http://www.wikidata.org/entity/Q3190858|http://www.wikidata.org/entity/Q3170114|http://www.wikidata.org/entity/Q2941829|http://www.wikidata.org/entity/Q2865083|http://www.wikidata.org/entity/Q1602203|http://www.wikidata.org/entity/Q1031692|http://www.wikidata.org/entity/Q548400|http://www.wikidata.org/entity/Q510056|http://www.wikidata.org/entity/Q459676|http://www.wikidata.org/entity/Q239498|http://www.wikidata.org/entity/Q106592"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2016 film by J\u00e9r\u00f4me Commandeur and Alan Corno"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1544011"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3223278"}, "Title": {"type": "literal", "value": "Le Grand M\u00e9chant Loup"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028738"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028738"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21648968|http://www.wikidata.org/entity/Q16645232|http://www.wikidata.org/entity/Q15242604|http://www.wikidata.org/entity/Q3570784|http://www.wikidata.org/entity/Q3106251|http://www.wikidata.org/entity/Q3086968|http://www.wikidata.org/entity/Q2960989|http://www.wikidata.org/entity/Q1187592|http://www.wikidata.org/entity/Q983159|http://www.wikidata.org/entity/Q714765|http://www.wikidata.org/entity/Q462318|http://www.wikidata.org/entity/Q441676|http://www.wikidata.org/entity/Q292756|http://www.wikidata.org/entity/Q239845|http://www.wikidata.org/entity/Q139052|http://www.wikidata.org/entity/Q130092"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Nicolas Charlet"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6170494"}, "Title": {"type": "literal", "value": "Yul"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1887437"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1998 film by Rodrigo Cort\u00e9s"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16158743"}, "Title": {"type": "literal", "value": "Kevin Hart: Let Me Explain"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2005037"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q618352"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3607591"}, "Title": {"type": "literal", "value": "Al momento giusto"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3765649"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3766915|http://www.wikidata.org/entity/Q3765649|http://www.wikidata.org/entity/Q3763670|http://www.wikidata.org/entity/Q3735305|http://www.wikidata.org/entity/Q3659736|http://www.wikidata.org/entity/Q973621|http://www.wikidata.org/entity/Q552843|http://www.wikidata.org/entity/Q532223|http://www.wikidata.org/entity/Q425826|http://www.wikidata.org/entity/Q269762"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2000 film by Giorgio Panariello"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5432921"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2562608"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2562608"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28070847|http://www.wikidata.org/entity/Q5591498|http://www.wikidata.org/entity/Q3493460"}, "Published": {"type": "literal", "value": "2006|2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2004 film by Pablo Trapero"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4535717"}, "Title": {"type": "literal", "value": "\u042f \u043e\u0441\u0442\u0430\u044e\u0441\u044c"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4330970"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4189312"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1967403"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q1200678|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "2007 film by Karen Oganesyan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q499512"}, "Title": {"type": "literal", "value": "Reprise"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q653571"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16905873|http://www.wikidata.org/entity/Q653571"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15766036|http://www.wikidata.org/entity/Q12006179|http://www.wikidata.org/entity/Q12000351|http://www.wikidata.org/entity/Q11996645|http://www.wikidata.org/entity/Q11975046|http://www.wikidata.org/entity/Q11958021|http://www.wikidata.org/entity/Q7820830|http://www.wikidata.org/entity/Q7077298|http://www.wikidata.org/entity/Q5628835|http://www.wikidata.org/entity/Q4976749|http://www.wikidata.org/entity/Q4753762|http://www.wikidata.org/entity/Q4590669|http://www.wikidata.org/entity/Q3655880|http://www.wikidata.org/entity/Q1781068|http://www.wikidata.org/entity/Q457032|http://www.wikidata.org/entity/Q22282930|http://www.wikidata.org/entity/Q22282902|http://www.wikidata.org/entity/Q22282836|http://www.wikidata.org/entity/Q17097086"}, "Published": {"type": "literal", "value": "2007|2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2006 Norwegian film dramedy directed by Joachim Trier"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11956464"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48671531"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2870425"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1928501"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Jun Lana"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7600659"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q489196"}, "Title": {"type": "literal", "value": "Le Premier Jour du reste de ta vie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2080043"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2080043"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q239498|http://www.wikidata.org/entity/Q139052|http://www.wikidata.org/entity/Q1352534|http://www.wikidata.org/entity/Q1232804|http://www.wikidata.org/entity/Q1139064|http://www.wikidata.org/entity/Q552639|http://www.wikidata.org/entity/Q533768|http://www.wikidata.org/entity/Q18179162|http://www.wikidata.org/entity/Q3484876|http://www.wikidata.org/entity/Q3473336|http://www.wikidata.org/entity/Q3380199|http://www.wikidata.org/entity/Q3349046|http://www.wikidata.org/entity/Q3166435|http://www.wikidata.org/entity/Q2935113|http://www.wikidata.org/entity/Q2728330|http://www.wikidata.org/entity/Q2161692|http://www.wikidata.org/entity/Q1529138|http://www.wikidata.org/entity/Q1450857"}, "Published": {"type": "literal", "value": "2008|2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "2008 film by R\u00e9mi Bezan\u00e7on"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16662670"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18703134"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21063505"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7421693|http://www.wikidata.org/entity/Q704859"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film by Sourabh Shrivastava"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18693430"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11221007"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11852159|http://www.wikidata.org/entity/Q5410475|http://www.wikidata.org/entity/Q523373|http://www.wikidata.org/entity/Q363388"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Lauri Nurkse"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q54389189"}, "Title": {"type": "literal", "value": "1991"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3430333"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3430333"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q786347"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 Canadian film by Ricardo Trogi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28843477"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4661239"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29835321"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7494205|http://www.wikidata.org/entity/Q6380219|http://www.wikidata.org/entity/Q2726196|http://www.wikidata.org/entity/Q487198"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Indrajit Nattoji"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4103780"}, "Title": {"type": "literal", "value": "\u0412\u0430\u0440\u0435\u043d\u044c\u0435 \u0438\u0437 \u0441\u0430\u043a\u0443\u0440\u044b"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4072355"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q247997"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2010 film by Yuliya Aug"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4504406"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4024793"}, "Title": {"type": "literal", "value": "Zora la vampira"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13600455|http://www.wikidata.org/entity/Q13600449|http://www.wikidata.org/entity/Q818736"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q818736|http://www.wikidata.org/entity/Q13600455|http://www.wikidata.org/entity/Q13600449"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3746372|http://www.wikidata.org/entity/Q3721195|http://www.wikidata.org/entity/Q3667007|http://www.wikidata.org/entity/Q3610432|http://www.wikidata.org/entity/Q2708170|http://www.wikidata.org/entity/Q1617703|http://www.wikidata.org/entity/Q1558748|http://www.wikidata.org/entity/Q1054843|http://www.wikidata.org/entity/Q3948230|http://www.wikidata.org/entity/Q3929190|http://www.wikidata.org/entity/Q3846144|http://www.wikidata.org/entity/Q3806721|http://www.wikidata.org/entity/Q4000600|http://www.wikidata.org/entity/Q3993851|http://www.wikidata.org/entity/Q1052746|http://www.wikidata.org/entity/Q818736|http://www.wikidata.org/entity/Q555642|http://www.wikidata.org/entity/Q53046"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q2137852"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2000 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3397906"}, "Title": {"type": "literal", "value": "Pop Redemption"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15069903"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17521763|http://www.wikidata.org/entity/Q3571253|http://www.wikidata.org/entity/Q3183342|http://www.wikidata.org/entity/Q3118557|http://www.wikidata.org/entity/Q3072706|http://www.wikidata.org/entity/Q2864476|http://www.wikidata.org/entity/Q2833411|http://www.wikidata.org/entity/Q568578|http://www.wikidata.org/entity/Q457089"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2013 film by Martin Le Gall"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15070803"}, "Title": {"type": "literal", "value": "Home Sweet Hell"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21468932"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23647219|http://www.wikidata.org/entity/Q1139709|http://www.wikidata.org/entity/Q471128|http://www.wikidata.org/entity/Q351290|http://www.wikidata.org/entity/Q312133|http://www.wikidata.org/entity/Q230827|http://www.wikidata.org/entity/Q189554|http://www.wikidata.org/entity/Q107933|http://www.wikidata.org/entity/Q105667|http://www.wikidata.org/entity/Q18219"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2015 film by Anthony Burns"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17335620"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5246884"}, "Title": {"type": "literal", "value": "Dear Lemon Lima"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7651091"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7651091"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q267119|http://www.wikidata.org/entity/Q230395|http://www.wikidata.org/entity/Q229410|http://www.wikidata.org/entity/Q146772|http://www.wikidata.org/entity/Q5372783|http://www.wikidata.org/entity/Q271635|http://www.wikidata.org/entity/Q271620"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2009 film by Suzi Yoonessi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3019337"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7137400"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q334242"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16051840|http://www.wikidata.org/entity/Q16045605|http://www.wikidata.org/entity/Q7396039|http://www.wikidata.org/entity/Q5957858|http://www.wikidata.org/entity/Q5956402|http://www.wikidata.org/entity/Q5950523|http://www.wikidata.org/entity/Q5941787|http://www.wikidata.org/entity/Q5941239|http://www.wikidata.org/entity/Q5938175|http://www.wikidata.org/entity/Q5938159|http://www.wikidata.org/entity/Q5922883|http://www.wikidata.org/entity/Q5915284|http://www.wikidata.org/entity/Q5891743|http://www.wikidata.org/entity/Q4842449|http://www.wikidata.org/entity/Q4701619|http://www.wikidata.org/entity/Q3318983|http://www.wikidata.org/entity/Q3182623|http://www.wikidata.org/entity/Q3126405|http://www.wikidata.org/entity/Q471373|http://www.wikidata.org/entity/Q272144"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Parisa Bakhtavar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q41657927"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3850996"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3850996"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4007789|http://www.wikidata.org/entity/Q3846163|http://www.wikidata.org/entity/Q1276918"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2017 film by Massimiliano Bruno"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14955426"}, "Title": {"type": "literal", "value": "Dockpojken"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16633322"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16633322"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Johannes Nyholm"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3220218"}, "Title": {"type": "literal", "value": "Le Bal des actrices"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q201985"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q201985"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23773993|http://www.wikidata.org/entity/Q17177187|http://www.wikidata.org/entity/Q16536192|http://www.wikidata.org/entity/Q3571798|http://www.wikidata.org/entity/Q3470839|http://www.wikidata.org/entity/Q3340143|http://www.wikidata.org/entity/Q3293096|http://www.wikidata.org/entity/Q3292625|http://www.wikidata.org/entity/Q3271707|http://www.wikidata.org/entity/Q3219022|http://www.wikidata.org/entity/Q3102524|http://www.wikidata.org/entity/Q3058909|http://www.wikidata.org/entity/Q2911040|http://www.wikidata.org/entity/Q2850375|http://www.wikidata.org/entity/Q2525146|http://www.wikidata.org/entity/Q1677882|http://www.wikidata.org/entity/Q762906|http://www.wikidata.org/entity/Q724208|http://www.wikidata.org/entity/Q573679|http://www.wikidata.org/entity/Q509988|http://www.wikidata.org/entity/Q466926|http://www.wikidata.org/entity/Q456360|http://www.wikidata.org/entity/Q451813|http://www.wikidata.org/entity/Q446842|http://www.wikidata.org/entity/Q432246|http://www.wikidata.org/entity/Q431146|http://www.wikidata.org/entity/Q323112|http://www.wikidata.org/entity/Q292756|http://www.wikidata.org/entity/Q271944|http://www.wikidata.org/entity/Q270005|http://www.wikidata.org/entity/Q240157|http://www.wikidata.org/entity/Q234679|http://www.wikidata.org/entity/Q201985"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Ma\u00efwenn"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20184763"}, "Title": {"type": "literal", "value": "Meine Familie bringt mich um!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1082614"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1245168"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011|2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2010 film by Christiane Balthasar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q58462068"}, "Title": {"type": "literal", "value": "Sei come sei"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3838177|http://www.wikidata.org/entity/Q3785147|http://www.wikidata.org/entity/Q23857049|http://www.wikidata.org/entity/Q16526434"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q555190|http://www.wikidata.org/entity/Q222894|http://www.wikidata.org/entity/Q3851127|http://www.wikidata.org/entity/Q3842287|http://www.wikidata.org/entity/Q3838474|http://www.wikidata.org/entity/Q3804842|http://www.wikidata.org/entity/Q3765371|http://www.wikidata.org/entity/Q1541570|http://www.wikidata.org/entity/Q1374312|http://www.wikidata.org/entity/Q959138|http://www.wikidata.org/entity/Q583977|http://www.wikidata.org/entity/Q3904256"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q336144|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2002 Italian film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18387925"}, "Title": {"type": "literal", "value": "\u0924\u0928\u0941 \u0935\u0947\u0921\u094d\u0938 \u092e\u0928\u0941: \u0930\u093f\u091f\u0930\u094d\u0928\u094d\u0938"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16213716"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16202240"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15650292|http://www.wikidata.org/entity/Q7653831|http://www.wikidata.org/entity/Q7286088|http://www.wikidata.org/entity/Q6893409|http://www.wikidata.org/entity/Q6752284|http://www.wikidata.org/entity/Q6323460|http://www.wikidata.org/entity/Q5349205|http://www.wikidata.org/entity/Q3633940|http://www.wikidata.org/entity/Q2737207|http://www.wikidata.org/entity/Q2003979|http://www.wikidata.org/entity/Q1373345|http://www.wikidata.org/entity/Q729982"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 Hindi film by Aanand L. Rai"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5395348"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18674918"}, "Title": {"type": "literal", "value": "Ei kiitos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23039316"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23039316"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11902260|http://www.wikidata.org/entity/Q11868907|http://www.wikidata.org/entity/Q4777696|http://www.wikidata.org/entity/Q513212"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2014 Finnish film directed by Samuli Valkama"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18688864"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1102121"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q996607"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8060276|http://www.wikidata.org/entity/Q702549|http://www.wikidata.org/entity/Q700315|http://www.wikidata.org/entity/Q277193"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Stephen Fung"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4354972"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3008868"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3017644"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22248524|http://www.wikidata.org/entity/Q274656"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3168059|http://www.wikidata.org/entity/Q3017644|http://www.wikidata.org/entity/Q2925445|http://www.wikidata.org/entity/Q2154406|http://www.wikidata.org/entity/Q441676|http://www.wikidata.org/entity/Q274656|http://www.wikidata.org/entity/Q106418|http://www.wikidata.org/entity/Q16645232|http://www.wikidata.org/entity/Q8322459|http://www.wikidata.org/entity/Q3559579|http://www.wikidata.org/entity/Q3501697|http://www.wikidata.org/entity/Q3479397|http://www.wikidata.org/entity/Q3349268|http://www.wikidata.org/entity/Q3325897|http://www.wikidata.org/entity/Q3219528|http://www.wikidata.org/entity/Q3189294"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by David Charhon"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7339191"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12028282"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12050215|http://www.wikidata.org/entity/Q12028282"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q63159716|http://www.wikidata.org/entity/Q25631056|http://www.wikidata.org/entity/Q12044233|http://www.wikidata.org/entity/Q12036616|http://www.wikidata.org/entity/Q12034156|http://www.wikidata.org/entity/Q12021140|http://www.wikidata.org/entity/Q11985846|http://www.wikidata.org/entity/Q11985792|http://www.wikidata.org/entity/Q11926027|http://www.wikidata.org/entity/Q10861574|http://www.wikidata.org/entity/Q6776420|http://www.wikidata.org/entity/Q6438505|http://www.wikidata.org/entity/Q5825305|http://www.wikidata.org/entity/Q4278011|http://www.wikidata.org/entity/Q3565126|http://www.wikidata.org/entity/Q3501289|http://www.wikidata.org/entity/Q2748381|http://www.wikidata.org/entity/Q546367|http://www.wikidata.org/entity/Q521891|http://www.wikidata.org/entity/Q504840"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Karel Jan\u00e1k"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7764899"}, "Title": {"type": "literal", "value": "The Smell of Success"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14087086"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q328790|http://www.wikidata.org/entity/Q207506|http://www.wikidata.org/entity/Q202735|http://www.wikidata.org/entity/Q202475"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Michael Polish"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27665444"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28589416"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28589416"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "2016 film by Anca Miruna L\u0103z\u0103rescu"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q127897"}, "Title": {"type": "literal", "value": "Jersey Girl"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q489831"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17123364|http://www.wikidata.org/entity/Q489831"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19300018|http://www.wikidata.org/entity/Q1373450|http://www.wikidata.org/entity/Q1198897|http://www.wikidata.org/entity/Q175535|http://www.wikidata.org/entity/Q168763|http://www.wikidata.org/entity/Q150651|http://www.wikidata.org/entity/Q40715|http://www.wikidata.org/entity/Q40096|http://www.wikidata.org/entity/Q4960|http://www.wikidata.org/entity/Q483118|http://www.wikidata.org/entity/Q464320|http://www.wikidata.org/entity/Q463692|http://www.wikidata.org/entity/Q314421|http://www.wikidata.org/entity/Q267386"}, "Published": {"type": "literal", "value": "2005|2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q860626"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2004 film by Kevin Smith"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2700070"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q54152512"}, "Title": {"type": "literal", "value": "Zwei im falschen Film"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23794228"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23794228"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q42303667|http://www.wikidata.org/entity/Q15428799|http://www.wikidata.org/entity/Q1892651|http://www.wikidata.org/entity/Q89672"}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Laura Lackmann"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21035716"}, "Title": {"type": "literal", "value": "Drei Stunden"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19275635"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19275635"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23788081|http://www.wikidata.org/entity/Q1097434"}, "Published": {"type": "literal", "value": "2013|2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2012 German film directed by Boris Kunz"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41635406"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15930087"}, "Title": {"type": "literal", "value": "\uae40\uad00\uc7a5 \ub300 \uae40\uad00\uc7a5 \ub300 \uae40\uad00\uc7a5"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4342295"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q594239"}, "Title": {"type": "literal", "value": "Bluff"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6755313|http://www.wikidata.org/entity/Q3484175"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3484175|http://www.wikidata.org/entity/Q3420693|http://www.wikidata.org/entity/Q3383044|http://www.wikidata.org/entity/Q3340169|http://www.wikidata.org/entity/Q3288258|http://www.wikidata.org/entity/Q3189253|http://www.wikidata.org/entity/Q3105869|http://www.wikidata.org/entity/Q3052583|http://www.wikidata.org/entity/Q3022947|http://www.wikidata.org/entity/Q2834584|http://www.wikidata.org/entity/Q2178753|http://www.wikidata.org/entity/Q2067444|http://www.wikidata.org/entity/Q746193"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Simon Olivier Fecteau, Marc-Andr\u00e9 Lavoie"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16958728"}, "Title": {"type": "literal", "value": "Clark: A Gonzomentary"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16728323"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16728323"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Daniel D.W."}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4984290"}, "Title": {"type": "literal", "value": "Colegas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10325104"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1791430"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2012 film by Marcelo Galv\u00e3o"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2120297"}, "Title": {"type": "literal", "value": "\u0422\u0430\u0440\u0438\u0444 \u041d\u043e\u0432\u043e\u0433\u043e\u0434\u043d\u0438\u0439"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4080580"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4069842|http://www.wikidata.org/entity/Q2375843|http://www.wikidata.org/entity/Q2115673|http://www.wikidata.org/entity/Q2086086|http://www.wikidata.org/entity/Q1968005|http://www.wikidata.org/entity/Q500404|http://www.wikidata.org/entity/Q4506194|http://www.wikidata.org/entity/Q4371549|http://www.wikidata.org/entity/Q4277765|http://www.wikidata.org/entity/Q4253994"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2973181|http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Yevgeny Bedarev"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q141336|http://www.wikidata.org/entity/Q4341103"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17515877"}, "Title": {"type": "literal", "value": "Desire Street"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17486474"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17524303|http://www.wikidata.org/entity/Q17486474"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Roberto F. Canuto & Xu Xiaoxi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17525024"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1665634"}, "Title": {"type": "literal", "value": "Jesus liebt mich"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q87432"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q87432"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014|2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2012 film by Florian David Fitz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3933658"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7487091"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7295837|http://www.wikidata.org/entity/Q3635459|http://www.wikidata.org/entity/Q834338|http://www.wikidata.org/entity/Q312781|http://www.wikidata.org/entity/Q184885"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "2012 film by Shakun Batra"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1207592"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60738270"}, "Title": {"type": "literal", "value": "Fisherman's Friends"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19345276"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7027565|http://www.wikidata.org/entity/Q62473152|http://www.wikidata.org/entity/Q38059723"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q579571|http://www.wikidata.org/entity/Q360528|http://www.wikidata.org/entity/Q62473166|http://www.wikidata.org/entity/Q20684254|http://www.wikidata.org/entity/Q2476952|http://www.wikidata.org/entity/Q2460289|http://www.wikidata.org/entity/Q665139"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q645928"}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "2019 film directed by Chris Foggin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21647443"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6090416"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5255185|http://www.wikidata.org/entity/Q6090416|http://www.wikidata.org/entity/Q6086012"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 Turkish film directed by Sermiyan Midyat"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21639859"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4525700"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4494681|http://www.wikidata.org/entity/Q4077949"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "76"}, "Description": {"type": "literal", "value": "2016 animated film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4403233|http://www.wikidata.org/entity/Q6813261"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7832801"}, "Title": {"type": "literal", "value": "Trailer Town"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1355409"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1355409"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3968110"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Giuseppe Andrews"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q640786"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22979596"}, "Title": {"type": "literal", "value": "Frei nach Plan"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1450153"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q45769929"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1497350|http://www.wikidata.org/entity/Q1083779|http://www.wikidata.org/entity/Q120418|http://www.wikidata.org/entity/Q65116"}, "Published": {"type": "literal", "value": "2008|2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Franziska Meletzky"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3887560"}, "Title": {"type": "literal", "value": "Outing - Fidanzati per sbaglio"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16268866"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16268866"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3934497|http://www.wikidata.org/entity/Q3679876|http://www.wikidata.org/entity/Q3615541|http://www.wikidata.org/entity/Q2677534|http://www.wikidata.org/entity/Q1237265|http://www.wikidata.org/entity/Q544401|http://www.wikidata.org/entity/Q377198"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2013 film by Matteo Vicino"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1707921"}, "Title": {"type": "literal", "value": "Las aventuras de Tadeo Jones"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5785736"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21043125|http://www.wikidata.org/entity/Q8559871|http://www.wikidata.org/entity/Q6988837|http://www.wikidata.org/entity/Q5913666|http://www.wikidata.org/entity/Q5785736"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2012 film by Enrique Gato"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2638120"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17325910"}, "Title": {"type": "literal", "value": "Rico, Oskar und die Tieferschatten"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1974092"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1080816"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20243262|http://www.wikidata.org/entity/Q19839425|http://www.wikidata.org/entity/Q1735906|http://www.wikidata.org/entity/Q1676772|http://www.wikidata.org/entity/Q1605003|http://www.wikidata.org/entity/Q1600639|http://www.wikidata.org/entity/Q1260674|http://www.wikidata.org/entity/Q1173856|http://www.wikidata.org/entity/Q500577|http://www.wikidata.org/entity/Q125596|http://www.wikidata.org/entity/Q104385|http://www.wikidata.org/entity/Q102450|http://www.wikidata.org/entity/Q77027|http://www.wikidata.org/entity/Q69640|http://www.wikidata.org/entity/Q61099|http://www.wikidata.org/entity/Q58065"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2014 film directed by Neele Vollmar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3059180"}, "Title": {"type": "literal", "value": "Et soudain, tout le monde me manque"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3177048"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16185230|http://www.wikidata.org/entity/Q3509994|http://www.wikidata.org/entity/Q3440698|http://www.wikidata.org/entity/Q3286702|http://www.wikidata.org/entity/Q3193265|http://www.wikidata.org/entity/Q3176042|http://www.wikidata.org/entity/Q3073999|http://www.wikidata.org/entity/Q2866947|http://www.wikidata.org/entity/Q2863158|http://www.wikidata.org/entity/Q2834044|http://www.wikidata.org/entity/Q2202755|http://www.wikidata.org/entity/Q1835077|http://www.wikidata.org/entity/Q1398256|http://www.wikidata.org/entity/Q553904|http://www.wikidata.org/entity/Q541690|http://www.wikidata.org/entity/Q460423|http://www.wikidata.org/entity/Q234581"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Jennifer Devold\u00e8re"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12251050"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12250381"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4166476"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Wael Ehsan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3073434"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2790028"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12301078"}, "Title": {"type": "literal", "value": "Alle for to"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12332904"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q37491261|http://www.wikidata.org/entity/Q37491242|http://www.wikidata.org/entity/Q35984275|http://www.wikidata.org/entity/Q20202411|http://www.wikidata.org/entity/Q12333583|http://www.wikidata.org/entity/Q12331410|http://www.wikidata.org/entity/Q12330060|http://www.wikidata.org/entity/Q12327036|http://www.wikidata.org/entity/Q12326235|http://www.wikidata.org/entity/Q12321300|http://www.wikidata.org/entity/Q12320299|http://www.wikidata.org/entity/Q12315378|http://www.wikidata.org/entity/Q12314126|http://www.wikidata.org/entity/Q12313931|http://www.wikidata.org/entity/Q12308861|http://www.wikidata.org/entity/Q12306240|http://www.wikidata.org/entity/Q11958211|http://www.wikidata.org/entity/Q7295091|http://www.wikidata.org/entity/Q1801272|http://www.wikidata.org/entity/Q707827|http://www.wikidata.org/entity/Q456176|http://www.wikidata.org/entity/Q454310|http://www.wikidata.org/entity/Q41730447|http://www.wikidata.org/entity/Q41236284|http://www.wikidata.org/entity/Q40523639|http://www.wikidata.org/entity/Q40012103|http://www.wikidata.org/entity/Q38052468"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Rasmus Heide"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1156830"}, "Title": {"type": "literal", "value": "Diary of a Wimpy Kid: Rodrick Rules"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18558"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3176515|http://www.wikidata.org/entity/Q3093508"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2834731|http://www.wikidata.org/entity/Q2240987|http://www.wikidata.org/entity/Q1800733|http://www.wikidata.org/entity/Q1321271|http://www.wikidata.org/entity/Q1139898|http://www.wikidata.org/entity/Q637063|http://www.wikidata.org/entity/Q552896|http://www.wikidata.org/entity/Q491775|http://www.wikidata.org/entity/Q311704|http://www.wikidata.org/entity/Q267400|http://www.wikidata.org/entity/Q234299|http://www.wikidata.org/entity/Q139611|http://www.wikidata.org/entity/Q74689|http://www.wikidata.org/entity/Q74671|http://www.wikidata.org/entity/Q28974275|http://www.wikidata.org/entity/Q26213699|http://www.wikidata.org/entity/Q15666053|http://www.wikidata.org/entity/Q15456399|http://www.wikidata.org/entity/Q7001736|http://www.wikidata.org/entity/Q2895467"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q52162262"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2011 film by David Bowers"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3041294|http://www.wikidata.org/entity/Q5148553"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q39970"}, "Title": {"type": "literal", "value": "Buffy the Vampire Slayer"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2526865"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q298025"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7425090|http://www.wikidata.org/entity/Q4066455|http://www.wikidata.org/entity/Q3935047|http://www.wikidata.org/entity/Q3418797|http://www.wikidata.org/entity/Q2846666|http://www.wikidata.org/entity/Q720581|http://www.wikidata.org/entity/Q483118|http://www.wikidata.org/entity/Q464320|http://www.wikidata.org/entity/Q318165|http://www.wikidata.org/entity/Q294185|http://www.wikidata.org/entity/Q240467|http://www.wikidata.org/entity/Q238394|http://www.wikidata.org/entity/Q213574|http://www.wikidata.org/entity/Q103784|http://www.wikidata.org/entity/Q93187|http://www.wikidata.org/entity/Q40128|http://www.wikidata.org/entity/Q40067|http://www.wikidata.org/entity/Q18938"}, "Published": {"type": "literal", "value": "1992"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2137852|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q2678111"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "1992 American horror comedy film directed by Fran Rubel Kuzui"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434841"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5427260"}, "Title": {"type": "literal", "value": "FUBAR 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3308160"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5236371"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Michael Dowse"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5967890"}, "Title": {"type": "literal", "value": "La primera vez"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8250879"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 film by Borja Cobeaga"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4328873"}, "Title": {"type": "literal", "value": "\u041e \u0447\u0451\u043c \u0435\u0449\u0451 \u0433\u043e\u0432\u043e\u0440\u044f\u0442 \u043c\u0443\u0436\u0447\u0438\u043d\u044b"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4171916"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4494681|http://www.wikidata.org/entity/Q4077949"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4494681|http://www.wikidata.org/entity/Q4254527|http://www.wikidata.org/entity/Q4157470|http://www.wikidata.org/entity/Q4077949"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192881"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2011 film by Dmitriy Dyachenko"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3515359"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16213716"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16202240"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2737207|http://www.wikidata.org/entity/Q1373345|http://www.wikidata.org/entity/Q729982"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "119"}, "Description": {"type": "literal", "value": "2011 film by Anand L. Rai"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q44797343"}, "Title": {"type": "literal", "value": "Stars 80, la suite"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q117147"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q117147"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2926866|http://www.wikidata.org/entity/Q1886630|http://www.wikidata.org/entity/Q466527"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "2017 film by Thomas Langmann"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2412906|http://www.wikidata.org/entity/Q3211552|http://www.wikidata.org/entity/Q3568109"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12118381"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11763135"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4319942"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Lubomyr Levytskyi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5101149"}, "Title": {"type": "literal", "value": "\u0b9a\u0bbf\u0ba9\u0bcd\u0ba9 \u0bae\u0bbe\u0baa\u0bcd\u0bb3\u0bc7"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7420144"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5183212"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7936508|http://www.wikidata.org/entity/Q7532422|http://www.wikidata.org/entity/Q7280194|http://www.wikidata.org/entity/Q4751231|http://www.wikidata.org/entity/Q3228884|http://www.wikidata.org/entity/Q277665"}, "Published": {"type": "literal", "value": "1993"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1993 film by Santhana Bharathi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17087419"}, "Title": {"type": "literal", "value": "WolfCop"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17151048"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17151048"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1189105|http://www.wikidata.org/entity/Q867364"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "76"}, "Description": {"type": "literal", "value": "2014 film directed by Lowell Dean"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15032092"}, "Title": {"type": "literal", "value": "\u0bb5\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0baa\u0bcd\u0baa\u0b9f\u0bbe\u0ba4 \u0bb5\u0bbe\u0bb2\u0bbf\u0baa\u0bb0\u0bcd \u0b9a\u0b99\u0bcd\u0b95\u0bae\u0bcd"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q48699392"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3531959"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film directed by Ponram"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16254646"}, "Title": {"type": "literal", "value": "\u0b9c\u0b95\u0b9c\u0bcd\u0b9c\u0bbe\u0bb2 \u0baa\u0bc1\u0b9c\u0baa\u0bb2 \u0ba4\u0bc6\u0ba9\u0bbe\u0bb2\u0bbf\u0bb0\u0bbe\u0bae\u0ba9\u0bcd"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8062165"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8062165"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q967495"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Yuvaraj Dhayalan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q382871"}, "Title": {"type": "literal", "value": "Russendisko"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2020663"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2020663"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1079558|http://www.wikidata.org/entity/Q97010|http://www.wikidata.org/entity/Q90820|http://www.wikidata.org/entity/Q89284|http://www.wikidata.org/entity/Q64645|http://www.wikidata.org/entity/Q18630023|http://www.wikidata.org/entity/Q17639926|http://www.wikidata.org/entity/Q11973726|http://www.wikidata.org/entity/Q1736478|http://www.wikidata.org/entity/Q1711632|http://www.wikidata.org/entity/Q1660211|http://www.wikidata.org/entity/Q1618848|http://www.wikidata.org/entity/Q1604088|http://www.wikidata.org/entity/Q1475959|http://www.wikidata.org/entity/Q1342322|http://www.wikidata.org/entity/Q1276507|http://www.wikidata.org/entity/Q1265330|http://www.wikidata.org/entity/Q1243529|http://www.wikidata.org/entity/Q1082288"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2012 film by Oliver Ziegenbalg"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3566895"}, "Title": {"type": "literal", "value": "We're the Millers"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2745616"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3934740|http://www.wikidata.org/entity/Q60341|http://www.wikidata.org/entity/Q21501583|http://www.wikidata.org/entity/Q7612508|http://www.wikidata.org/entity/Q4932430"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1319539|http://www.wikidata.org/entity/Q1108449|http://www.wikidata.org/entity/Q980143|http://www.wikidata.org/entity/Q347395|http://www.wikidata.org/entity/Q328790|http://www.wikidata.org/entity/Q271986|http://www.wikidata.org/entity/Q228598|http://www.wikidata.org/entity/Q36195|http://www.wikidata.org/entity/Q32522|http://www.wikidata.org/entity/Q1985488|http://www.wikidata.org/entity/Q1319882|http://www.wikidata.org/entity/Q14539|http://www.wikidata.org/entity/Q20684461|http://www.wikidata.org/entity/Q3952813|http://www.wikidata.org/entity/Q2745616"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "2013 film by Rawson Marshall Thurber"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q126399"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1518391"}, "Title": {"type": "literal", "value": "Recep \u0130vedik"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7813033"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q388027"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q388027"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2008 film by Togan G\u00f6kbakar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q496718"}, "Title": {"type": "literal", "value": "\uc6f0\ucef4 \ud22c \ub3d9\ub9c9\uace8"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3544725"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7137772"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q490635|http://www.wikidata.org/entity/Q485773|http://www.wikidata.org/entity/Q485387|http://www.wikidata.org/entity/Q482800"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "133"}, "Description": {"type": "literal", "value": "2005 film by Park Gwang-hyun"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1140281"}, "Title": {"type": "literal", "value": "Farsan"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1345960"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1345960|http://www.wikidata.org/entity/Q328503"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2850193|http://www.wikidata.org/entity/Q444215|http://www.wikidata.org/entity/Q328503"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2010 film directed by Josef Fares"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4853260"}, "Title": {"type": "literal", "value": "Bam Margera Presents: Where the \u266f$&% Is Santa?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q297173"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6209915"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6209915|http://www.wikidata.org/entity/Q3390959|http://www.wikidata.org/entity/Q2632345|http://www.wikidata.org/entity/Q2631010|http://www.wikidata.org/entity/Q2453596|http://www.wikidata.org/entity/Q606523|http://www.wikidata.org/entity/Q297173|http://www.wikidata.org/entity/Q25378"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Bam Margera"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5554133"}, "Title": {"type": "literal", "value": "Get Ready to Be Boyzvoiced"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5398817"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5398817"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11975046|http://www.wikidata.org/entity/Q7845435|http://www.wikidata.org/entity/Q6271813|http://www.wikidata.org/entity/Q5398817|http://www.wikidata.org/entity/Q4580829|http://www.wikidata.org/entity/Q3356840"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2000 film by Espen Eckbo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18920927"}, "Title": {"type": "literal", "value": "Toute premi\u00e8re fois"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19629665|http://www.wikidata.org/entity/Q19630141"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19630141|http://www.wikidata.org/entity/Q19629665"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1139064"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q20442589"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by No\u00e9mie Saglio, Maxime Govare"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50491222|http://www.wikidata.org/entity/Q50491647|http://www.wikidata.org/entity/Q913462"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7800629"}, "Title": {"type": "literal", "value": "Ticked-Off Trannies with Knives"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6404355"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6404355"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13218022|http://www.wikidata.org/entity/Q8003276|http://www.wikidata.org/entity/Q6439763"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q16950433|http://www.wikidata.org/entity/Q2254193|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Israel Luna"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1410288"}, "Title": {"type": "literal", "value": "The Chumscrubber"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4790340"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q229487|http://www.wikidata.org/entity/Q220335|http://www.wikidata.org/entity/Q214223|http://www.wikidata.org/entity/Q206890|http://www.wikidata.org/entity/Q201976|http://www.wikidata.org/entity/Q129978|http://www.wikidata.org/entity/Q28493|http://www.wikidata.org/entity/Q708512|http://www.wikidata.org/entity/Q462327|http://www.wikidata.org/entity/Q431038|http://www.wikidata.org/entity/Q387072|http://www.wikidata.org/entity/Q372311|http://www.wikidata.org/entity/Q297071|http://www.wikidata.org/entity/Q234144|http://www.wikidata.org/entity/Q229560"}, "Published": {"type": "literal", "value": "2005|2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2005 film by Arie Posin"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q514913|http://www.wikidata.org/entity/Q11882864"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29017122"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12327175"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12327175"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q40523755|http://www.wikidata.org/entity/Q12339791|http://www.wikidata.org/entity/Q12334659|http://www.wikidata.org/entity/Q12332888|http://www.wikidata.org/entity/Q12327678|http://www.wikidata.org/entity/Q12326235|http://www.wikidata.org/entity/Q12325345|http://www.wikidata.org/entity/Q12324627|http://www.wikidata.org/entity/Q12307120|http://www.wikidata.org/entity/Q6858699|http://www.wikidata.org/entity/Q4976428|http://www.wikidata.org/entity/Q4946759|http://www.wikidata.org/entity/Q443662|http://www.wikidata.org/entity/Q40523671|http://www.wikidata.org/entity/Q28836391|http://www.wikidata.org/entity/Q28759508|http://www.wikidata.org/entity/Q12340134"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Mikkel Munch-Fals"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7561089"}, "Title": {"type": "literal", "value": "Song for Marion"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5308381"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5308381"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q347879|http://www.wikidata.org/entity/Q312380|http://www.wikidata.org/entity/Q255323|http://www.wikidata.org/entity/Q77298|http://www.wikidata.org/entity/Q19957132|http://www.wikidata.org/entity/Q7405046|http://www.wikidata.org/entity/Q7288487|http://www.wikidata.org/entity/Q4911128|http://www.wikidata.org/entity/Q2830582|http://www.wikidata.org/entity/Q2290416"}, "Published": {"type": "literal", "value": "2012|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2012 film by Paul Andrew Williams"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2708940"}, "Title": {"type": "literal", "value": "The Hangover Part III"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q362824"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1138605|http://www.wikidata.org/entity/Q362824"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q110379|http://www.wikidata.org/entity/Q24852497|http://www.wikidata.org/entity/Q7106276|http://www.wikidata.org/entity/Q7087462|http://www.wikidata.org/entity/Q3964712|http://www.wikidata.org/entity/Q2395069|http://www.wikidata.org/entity/Q440910|http://www.wikidata.org/entity/Q328790|http://www.wikidata.org/entity/Q320204|http://www.wikidata.org/entity/Q311962|http://www.wikidata.org/entity/Q290370|http://www.wikidata.org/entity/Q232642|http://www.wikidata.org/entity/Q229048|http://www.wikidata.org/entity/Q224026|http://www.wikidata.org/entity/Q215072|http://www.wikidata.org/entity/Q205707|http://www.wikidata.org/entity/Q139325"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2013 American comedy film directed by Todd Phillips"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q621364"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19872548"}, "Title": {"type": "literal", "value": "War Dogs"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q362824"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6163503|http://www.wikidata.org/entity/Q362824"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26202699|http://www.wikidata.org/entity/Q24699885|http://www.wikidata.org/entity/Q16199296|http://www.wikidata.org/entity/Q5578715|http://www.wikidata.org/entity/Q2885767|http://www.wikidata.org/entity/Q698173|http://www.wikidata.org/entity/Q351812|http://www.wikidata.org/entity/Q313388|http://www.wikidata.org/entity/Q267330|http://www.wikidata.org/entity/Q205707|http://www.wikidata.org/entity/Q144643"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q645928|http://www.wikidata.org/entity/Q369747|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "2016 film by Todd Phillips"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q126399"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16484609"}, "Title": {"type": "literal", "value": "12 \u043c\u0435\u0441\u044f\u0446\u0435\u0432"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4078806"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4217961"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Aleksandr Barshak"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30879091"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15064148"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4234108"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4503115|http://www.wikidata.org/entity/Q4494015|http://www.wikidata.org/entity/Q4396438|http://www.wikidata.org/entity/Q4276601|http://www.wikidata.org/entity/Q4089110|http://www.wikidata.org/entity/Q3918727|http://www.wikidata.org/entity/Q26688"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "film directed by Oleg Assadulin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q41141185"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q107359"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Anja Jacobs"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55106060"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18141469"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by No Zin-soo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q303862"}, "Title": {"type": "literal", "value": "Waiting..."}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7340362"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7340362"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17385901|http://www.wikidata.org/entity/Q3853048|http://www.wikidata.org/entity/Q2830641|http://www.wikidata.org/entity/Q1721796|http://www.wikidata.org/entity/Q1109470|http://www.wikidata.org/entity/Q956021|http://www.wikidata.org/entity/Q471128|http://www.wikidata.org/entity/Q443672|http://www.wikidata.org/entity/Q359969|http://www.wikidata.org/entity/Q347395|http://www.wikidata.org/entity/Q342636|http://www.wikidata.org/entity/Q326440|http://www.wikidata.org/entity/Q298672|http://www.wikidata.org/entity/Q298173|http://www.wikidata.org/entity/Q241841|http://www.wikidata.org/entity/Q192682|http://www.wikidata.org/entity/Q164328|http://www.wikidata.org/entity/Q4491"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2005 film by Rob McKittrick"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q515869|http://www.wikidata.org/entity/Q6458647"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16184882"}, "Title": {"type": "literal", "value": "\uc88b\uc9c0 \uc544\ub2c8\ud55c\uac00"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6180299"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15630925|http://www.wikidata.org/entity/Q12614022|http://www.wikidata.org/entity/Q12595906|http://www.wikidata.org/entity/Q6652730|http://www.wikidata.org/entity/Q625534|http://www.wikidata.org/entity/Q490380|http://www.wikidata.org/entity/Q489930|http://www.wikidata.org/entity/Q486077|http://www.wikidata.org/entity/Q484338|http://www.wikidata.org/entity/Q196223"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Jeong Yun-cheol"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17165619"}, "Title": {"type": "literal", "value": "Klovn 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12327179"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q40523806|http://www.wikidata.org/entity/Q35985836|http://www.wikidata.org/entity/Q12333677|http://www.wikidata.org/entity/Q12328938|http://www.wikidata.org/entity/Q12319661|http://www.wikidata.org/entity/Q11989253|http://www.wikidata.org/entity/Q11213025|http://www.wikidata.org/entity/Q3427562|http://www.wikidata.org/entity/Q3424845|http://www.wikidata.org/entity/Q3362230|http://www.wikidata.org/entity/Q3362157|http://www.wikidata.org/entity/Q3073540|http://www.wikidata.org/entity/Q1344849|http://www.wikidata.org/entity/Q659009|http://www.wikidata.org/entity/Q445772|http://www.wikidata.org/entity/Q435097"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2015 film by Mikkel N\u00f8rgaard"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27703179"}, "Title": {"type": "literal", "value": "The Legacy of a Whitetail Deer Hunter"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1691304"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1691304|http://www.wikidata.org/entity/Q336400"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15634654|http://www.wikidata.org/entity/Q566037|http://www.wikidata.org/entity/Q336400|http://www.wikidata.org/entity/Q41396"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Jody Hill"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q54896121"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q66637"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1514394"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Florian Gallenberger"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27590075"}, "Title": {"type": "literal", "value": "Smetto quando voglio - Masterclass"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16611774"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16611774"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "118"}, "Description": {"type": "literal", "value": "2017 film by Sydney Sibilia"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3739211"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5856604"}, "Title": {"type": "literal", "value": "Cinco d\u00edas sin Nora"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4511791"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4511791"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6128570|http://www.wikidata.org/entity/Q3548945|http://www.wikidata.org/entity/Q3295491|http://www.wikidata.org/entity/Q1057307"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2008 film by Mariana Chenillo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27958320"}, "Title": {"type": "literal", "value": "Life of the Party"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2082056"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q229048|http://www.wikidata.org/entity/Q2082056"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q439800|http://www.wikidata.org/entity/Q331766|http://www.wikidata.org/entity/Q241897|http://www.wikidata.org/entity/Q236527|http://www.wikidata.org/entity/Q229048|http://www.wikidata.org/entity/Q204005|http://www.wikidata.org/entity/Q41594|http://www.wikidata.org/entity/Q40248|http://www.wikidata.org/entity/Q18684239|http://www.wikidata.org/entity/Q2278533|http://www.wikidata.org/entity/Q1077635|http://www.wikidata.org/entity/Q464320"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2018 film by Ben Falcone"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q79202|http://www.wikidata.org/entity/Q20002326"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4877838"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1015952"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Poj Arnon"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7523815"}, "Title": {"type": "literal", "value": "Single"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8001103"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8001103"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Wilder Shaw"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15270569"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16857528"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18008984"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16271982|http://www.wikidata.org/entity/Q14491922|http://www.wikidata.org/entity/Q4503115|http://www.wikidata.org/entity/Q4103145"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8812380|http://www.wikidata.org/entity/Q192881"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2013 film by Zhora Kryzhovnikov"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2892410"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q57316047"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27063353"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q44215055"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 Nigerian comedy-drama film directed by Tope Oshin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4860852"}, "Title": {"type": "literal", "value": "Bark!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3193925"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16209763"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16209763|http://www.wikidata.org/entity/Q1290421|http://www.wikidata.org/entity/Q718135|http://www.wikidata.org/entity/Q405542|http://www.wikidata.org/entity/Q320052|http://www.wikidata.org/entity/Q275658|http://www.wikidata.org/entity/Q202056|http://www.wikidata.org/entity/Q179041|http://www.wikidata.org/entity/Q60493"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Katarzyna Adamik"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3549764"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3156075"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3156075"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3293165|http://www.wikidata.org/entity/Q3085922|http://www.wikidata.org/entity/Q3026941|http://www.wikidata.org/entity/Q3015148|http://www.wikidata.org/entity/Q2899374|http://www.wikidata.org/entity/Q2851021|http://www.wikidata.org/entity/Q1551550|http://www.wikidata.org/entity/Q822345|http://www.wikidata.org/entity/Q686366|http://www.wikidata.org/entity/Q289040"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Ivan Calb\u00e9rac"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16662670"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20880595"}, "Title": {"type": "literal", "value": "Don't Think Twice"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5576465"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5576465"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7681209|http://www.wikidata.org/entity/Q6382703|http://www.wikidata.org/entity/Q5576465|http://www.wikidata.org/entity/Q5106645|http://www.wikidata.org/entity/Q522856|http://www.wikidata.org/entity/Q439800"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2016 American comedy-drama film directed by Mike Birbiglia"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q58935346"}, "Title": {"type": "literal", "value": "Mauvaises herbes"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3196131"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3196131"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3196131|http://www.wikidata.org/entity/Q3150969|http://www.wikidata.org/entity/Q2830767|http://www.wikidata.org/entity/Q518457|http://www.wikidata.org/entity/Q106418"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Kheiron"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3156647"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3190825"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3190825"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3336549|http://www.wikidata.org/entity/Q3287898|http://www.wikidata.org/entity/Q3179863|http://www.wikidata.org/entity/Q3073999|http://www.wikidata.org/entity/Q615469|http://www.wikidata.org/entity/Q436888|http://www.wikidata.org/entity/Q288009|http://www.wikidata.org/entity/Q241043|http://www.wikidata.org/entity/Q3571739"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by J\u00e9r\u00f4me Bonnell"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q491105"}, "Title": {"type": "literal", "value": "\uacfc\uc18d\uc2a4\uce94\ub4e4"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6362184"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6362184"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q490918|http://www.wikidata.org/entity/Q483704"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 South Korean film by Kang Hyeong-cheol"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10340941"}, "Title": {"type": "literal", "value": "Onda Nova"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16242195"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1983"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "1983 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3845233"}, "Title": {"type": "literal", "value": "Mar nero"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30350212"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2474015"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3694631|http://www.wikidata.org/entity/Q450442|http://www.wikidata.org/entity/Q178077"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2008 film by Federico Bondi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3929491"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15070741"}, "Title": {"type": "literal", "value": "Dysfunctional Friends"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5170363"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5170363"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q454328"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Corey Grant"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2486237"}, "Title": {"type": "literal", "value": "\u0939\u093e\u0909\u0938\u092b\u0941\u0932"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3469329"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3470753"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3595158|http://www.wikidata.org/entity/Q834338|http://www.wikidata.org/entity/Q738291|http://www.wikidata.org/entity/Q442668|http://www.wikidata.org/entity/Q290438|http://www.wikidata.org/entity/Q290322|http://www.wikidata.org/entity/Q233748|http://www.wikidata.org/entity/Q159178"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "144"}, "Description": {"type": "literal", "value": "2010 Indian comedy film directed by Sajid Khan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3334902"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14192643"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4925502"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Chookiat Sakveerakul"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16941557"}, "Title": {"type": "literal", "value": "Bluff"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q44573328"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 Colombian film written and directed by Felipe Mart\u00ednez Amador"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1234728"}, "Title": {"type": "literal", "value": "Doghouse"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1318058"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5218705"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3052362|http://www.wikidata.org/entity/Q1811844|http://www.wikidata.org/entity/Q1189407|http://www.wikidata.org/entity/Q712803|http://www.wikidata.org/entity/Q665139|http://www.wikidata.org/entity/Q442547"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3072049|http://www.wikidata.org/entity/Q1747837|http://www.wikidata.org/entity/Q909586|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2009 film by Jake West"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4105689"}, "Title": {"type": "literal", "value": "\u0412\u0434\u0440\u0435\u0431\u0435\u0437\u0433\u0438"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4215049"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4215049"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4458928|http://www.wikidata.org/entity/Q4365965|http://www.wikidata.org/entity/Q4333656|http://www.wikidata.org/entity/Q4248489"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2011 film by Roman Karimov"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4344840"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1193945"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1806660"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1806660"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2137852|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "46"}, "Description": {"type": "literal", "value": "2007 film by Lasse Nolte"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11969642"}, "Title": {"type": "literal", "value": "Kreuzberger Liebesn\u00e4chte"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18620104"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1980"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1980 film by Claus Tinney"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61926969"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1587524"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1991"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Hartmut Ostrowsky"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21527480"}, "Title": {"type": "literal", "value": "Father Figures"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6504587"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13560481|http://www.wikidata.org/entity/Q6377395|http://www.wikidata.org/entity/Q3453757|http://www.wikidata.org/entity/Q633263|http://www.wikidata.org/entity/Q603317|http://www.wikidata.org/entity/Q557948|http://www.wikidata.org/entity/Q372311|http://www.wikidata.org/entity/Q345325|http://www.wikidata.org/entity/Q328790|http://www.wikidata.org/entity/Q310315|http://www.wikidata.org/entity/Q185051|http://www.wikidata.org/entity/Q161916|http://www.wikidata.org/entity/Q150482"}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "113"}, "Description": {"type": "literal", "value": "2017 film by Lawrence Sher"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4713342|http://www.wikidata.org/entity/Q7752106"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27044422"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27044424"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1339864|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "12"}, "Description": {"type": "literal", "value": "2016 documentary film directed by Andrew J. Muscato"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q50932962"}, "Title": {"type": "literal", "value": "Nunca asistas a este tipo de fiestas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3359991"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q909586|http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "70"}, "Description": {"type": "literal", "value": "2000 film directed by Pablo Par\u00e9s"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13370925"}, "Title": {"type": "literal", "value": "El Verano de los Peces Voladores"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13534431"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13534431"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6003960|http://www.wikidata.org/entity/Q4306829"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Marcela Said"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27043810"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26912642|http://www.wikidata.org/entity/Q26912640"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "10"}, "Description": {"type": "literal", "value": "2016 documentary film directed by Maximilien van Aertryck and Axel Danielson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15040715"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15429353"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Manoj Sharma"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18409089"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4412743"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1958260"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192881"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2014 film directed by Mikhail Segal"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1357820"}, "Title": {"type": "literal", "value": "Robot & Frank"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6124973"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26268901"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21996467|http://www.wikidata.org/entity/Q15854232|http://www.wikidata.org/entity/Q15222780|http://www.wikidata.org/entity/Q2844979|http://www.wikidata.org/entity/Q485901|http://www.wikidata.org/entity/Q449863|http://www.wikidata.org/entity/Q315099|http://www.wikidata.org/entity/Q310944|http://www.wikidata.org/entity/Q168763|http://www.wikidata.org/entity/Q133050"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q761469|http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q496523|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2012 film directed by Jake Schreier"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20899522"}, "Title": {"type": "literal", "value": "Peur de rien"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3014956"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3014956"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26837226|http://www.wikidata.org/entity/Q15069815|http://www.wikidata.org/entity/Q3559693|http://www.wikidata.org/entity/Q2975505|http://www.wikidata.org/entity/Q2887704"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Danielle Arbid"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12331964"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q952621"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30126920"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q38052468|http://www.wikidata.org/entity/Q30154050|http://www.wikidata.org/entity/Q12327247|http://www.wikidata.org/entity/Q12324627|http://www.wikidata.org/entity/Q12319347|http://www.wikidata.org/entity/Q12308732|http://www.wikidata.org/entity/Q7295091|http://www.wikidata.org/entity/Q3362157|http://www.wikidata.org/entity/Q728020|http://www.wikidata.org/entity/Q443361"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Tomas Villum Jensen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12257676"}, "Title": {"type": "literal", "value": "Eutsi!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12253080"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11953964|http://www.wikidata.org/entity/Q12253080"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26739962|http://www.wikidata.org/entity/Q12265029|http://www.wikidata.org/entity/Q12264678|http://www.wikidata.org/entity/Q12254277|http://www.wikidata.org/entity/Q12253580|http://www.wikidata.org/entity/Q41224"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film directed by Alberto J. Gorritiberea"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12259795|http://www.wikidata.org/entity/Q19947837|http://www.wikidata.org/entity/Q21043142"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27703437"}, "Title": {"type": "literal", "value": "Fala S\u00e9rio, M\u00e3e!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7159986"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20647699"}, "Title": {"type": "literal", "value": "Marguerite"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2364234"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2364234|http://www.wikidata.org/entity/Q3289982"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21294771|http://www.wikidata.org/entity/Q20961829|http://www.wikidata.org/entity/Q12960949|http://www.wikidata.org/entity/Q11230425|http://www.wikidata.org/entity/Q3309608|http://www.wikidata.org/entity/Q2965533|http://www.wikidata.org/entity/Q2868544|http://www.wikidata.org/entity/Q30729287|http://www.wikidata.org/entity/Q27535445|http://www.wikidata.org/entity/Q23767040|http://www.wikidata.org/entity/Q21427970|http://www.wikidata.org/entity/Q2848242|http://www.wikidata.org/entity/Q451776|http://www.wikidata.org/entity/Q440348"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "127"}, "Description": {"type": "literal", "value": "2015 film by Xavier Giannoli"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3071502"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13022831"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13020286"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q907091"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1322095|http://www.wikidata.org/entity/Q1165918"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Martin Csaba and P\u00e9ter Tokay"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20077957"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4500356"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film directed by Ilya Khotinenko and Elizaveta Lizhnina"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7775747"}, "Title": {"type": "literal", "value": "The Woods"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6790861"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6790861"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Matthew Lessner"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q34755|http://www.wikidata.org/entity/Q6790861"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21843410"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22045638"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3210335"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4088503"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2015 film by Arman Gevorgyan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20900720"}, "Title": {"type": "literal", "value": "A Man Will Rise"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q298551"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Tony Jaa"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1040910"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55223237"}, "Title": {"type": "literal", "value": "\u30ab\u30e1\u30e9\u3092\u6b62\u3081\u308b\u306a!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55447315"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55447315"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56610978|http://www.wikidata.org/entity/Q56150446|http://www.wikidata.org/entity/Q55790091|http://www.wikidata.org/entity/Q55409667|http://www.wikidata.org/entity/Q28692212|http://www.wikidata.org/entity/Q18700403|http://www.wikidata.org/entity/Q11539259|http://www.wikidata.org/entity/Q11474248|http://www.wikidata.org/entity/Q11437646|http://www.wikidata.org/entity/Q62487265|http://www.wikidata.org/entity/Q61052058|http://www.wikidata.org/entity/Q60990495|http://www.wikidata.org/entity/Q60990467|http://www.wikidata.org/entity/Q60988243|http://www.wikidata.org/entity/Q58939251|http://www.wikidata.org/entity/Q58051265|http://www.wikidata.org/entity/Q57242819|http://www.wikidata.org/entity/Q57234625"}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1747837|http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2017 Japanese film directed by Shinichiro Ueda"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q282167"}, "Title": {"type": "literal", "value": "\u05e1\u05d9\u05e4\u05d5\u05e8 \u05d2\u05d3\u05d5\u05dc|Sippur Gadol"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7000493|http://www.wikidata.org/entity/Q7066522"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7000493|http://www.wikidata.org/entity/Q6901804|http://www.wikidata.org/entity/Q3127621"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6556083|http://www.wikidata.org/entity/Q1897677|http://www.wikidata.org/entity/Q1268310|http://www.wikidata.org/entity/Q671640|http://www.wikidata.org/entity/Q12403885|http://www.wikidata.org/entity/Q7031983|http://www.wikidata.org/entity/Q7030495|http://www.wikidata.org/entity/Q6962157|http://www.wikidata.org/entity/Q19652467|http://www.wikidata.org/entity/Q12410323|http://www.wikidata.org/entity/Q12406576"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film directed by Sharon Maymon and Erez Tadmor"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5564723"}, "Title": {"type": "literal", "value": "Girltrash: All Night Long"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21091540"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q459542"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6741561|http://www.wikidata.org/entity/Q3313479|http://www.wikidata.org/entity/Q3311437|http://www.wikidata.org/entity/Q2629672|http://www.wikidata.org/entity/Q2532879|http://www.wikidata.org/entity/Q1827782|http://www.wikidata.org/entity/Q1638889|http://www.wikidata.org/entity/Q1189487|http://www.wikidata.org/entity/Q1057878|http://www.wikidata.org/entity/Q1057379|http://www.wikidata.org/entity/Q458863"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Alexandra Kondracke"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2188914"}, "Title": {"type": "literal", "value": "Un heureux \u00e9v\u00e9nement"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2080043"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q274667|http://www.wikidata.org/entity/Q2080043"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3217601|http://www.wikidata.org/entity/Q3094131|http://www.wikidata.org/entity/Q269873|http://www.wikidata.org/entity/Q3015878|http://www.wikidata.org/entity/Q2845704|http://www.wikidata.org/entity/Q1871396|http://www.wikidata.org/entity/Q1139064|http://www.wikidata.org/entity/Q447709|http://www.wikidata.org/entity/Q437254|http://www.wikidata.org/entity/Q11309060|http://www.wikidata.org/entity/Q3524261"}, "Published": {"type": "literal", "value": "2011|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "2011 comedy-drama film by R\u00e9mi Bezan\u00e7on"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q525894|http://www.wikidata.org/entity/Q913462|http://www.wikidata.org/entity/Q1190356"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2514256"}, "Title": {"type": "literal", "value": "Grilled"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6162450"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4020169"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15438400|http://www.wikidata.org/entity/Q3242408|http://www.wikidata.org/entity/Q3157229|http://www.wikidata.org/entity/Q1363700|http://www.wikidata.org/entity/Q1258012|http://www.wikidata.org/entity/Q922264|http://www.wikidata.org/entity/Q705352|http://www.wikidata.org/entity/Q508404|http://www.wikidata.org/entity/Q342252|http://www.wikidata.org/entity/Q231911|http://www.wikidata.org/entity/Q230523|http://www.wikidata.org/entity/Q230510|http://www.wikidata.org/entity/Q229197|http://www.wikidata.org/entity/Q220836|http://www.wikidata.org/entity/Q203205|http://www.wikidata.org/entity/Q202148|http://www.wikidata.org/entity/Q80925|http://www.wikidata.org/entity/Q44561|http://www.wikidata.org/entity/Q26378"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2006 comedy film directed by Jason Ensler"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16124830"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11018819"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11018819"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q591801"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Amr Salama"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5411142"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11896917"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film directed by Teppo Airaksinen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4166758"}, "Title": {"type": "literal", "value": "\u0414\u043e\u0440\u043e\u0433\u0430 \u043d\u0430"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4197782"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19907441"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "32"}, "Description": {"type": "literal", "value": "2011 film by Taisia Igumentseva"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4396820"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27701601"}, "Title": {"type": "literal", "value": "Rough Night"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27988184"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19370785|http://www.wikidata.org/entity/Q16730037|http://www.wikidata.org/entity/Q16198576|http://www.wikidata.org/entity/Q5386029|http://www.wikidata.org/entity/Q932975|http://www.wikidata.org/entity/Q723057|http://www.wikidata.org/entity/Q515415|http://www.wikidata.org/entity/Q248179|http://www.wikidata.org/entity/Q227129|http://www.wikidata.org/entity/Q43044|http://www.wikidata.org/entity/Q34436"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2017 film by Lucia Aniello"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q186941"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22000309"}, "Title": {"type": "literal", "value": "Les fameux gars"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2824695"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Adolf El Assal"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q57262933"}, "Title": {"type": "literal", "value": "Corti circuiti erotici"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29939277|http://www.wikidata.org/entity/Q18223523|http://www.wikidata.org/entity/Q17598463|http://www.wikidata.org/entity/Q16552052"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q312472"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q599558|http://www.wikidata.org/entity/Q336144|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "365"}, "Description": {"type": "literal", "value": "2000 Italian film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18703028"}, "Title": {"type": "literal", "value": "Now You See Me: The Second Act"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1702754"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q513402"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41422|http://www.wikidata.org/entity/Q38119|http://www.wikidata.org/entity/Q2156496|http://www.wikidata.org/entity/Q434790|http://www.wikidata.org/entity/Q383930|http://www.wikidata.org/entity/Q241783|http://www.wikidata.org/entity/Q238819|http://www.wikidata.org/entity/Q236578|http://www.wikidata.org/entity/Q219512|http://www.wikidata.org/entity/Q201279|http://www.wikidata.org/entity/Q123351|http://www.wikidata.org/entity/Q48337"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q496523|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q1200678|http://www.wikidata.org/entity/Q959790"}, "Duration": {"type": "literal", "value": "129"}, "Description": {"type": "literal", "value": "2016 film directed by Jon M. Chu"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q515869|http://www.wikidata.org/entity/Q632323"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7388676"}, "Title": {"type": "literal", "value": "Klassefesten"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22086041"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q38051206|http://www.wikidata.org/entity/Q41743493"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41236286|http://www.wikidata.org/entity/Q41236228|http://www.wikidata.org/entity/Q40523664|http://www.wikidata.org/entity/Q38052542|http://www.wikidata.org/entity/Q37491481|http://www.wikidata.org/entity/Q37491427|http://www.wikidata.org/entity/Q35985836|http://www.wikidata.org/entity/Q28498467|http://www.wikidata.org/entity/Q17482558|http://www.wikidata.org/entity/Q12339791|http://www.wikidata.org/entity/Q12339172|http://www.wikidata.org/entity/Q12338732|http://www.wikidata.org/entity/Q12338493|http://www.wikidata.org/entity/Q12335242|http://www.wikidata.org/entity/Q12334652|http://www.wikidata.org/entity/Q12326873|http://www.wikidata.org/entity/Q12326842|http://www.wikidata.org/entity/Q12324266|http://www.wikidata.org/entity/Q12306240|http://www.wikidata.org/entity/Q12304359|http://www.wikidata.org/entity/Q12301414|http://www.wikidata.org/entity/Q4994572|http://www.wikidata.org/entity/Q4981886|http://www.wikidata.org/entity/Q3066309|http://www.wikidata.org/entity/Q1957570|http://www.wikidata.org/entity/Q1797728|http://www.wikidata.org/entity/Q491315|http://www.wikidata.org/entity/Q287329|http://www.wikidata.org/entity/Q41236497"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 Danish comedy film directed by Niels N\u00f8rl\u00f8v"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2144022"}, "Title": {"type": "literal", "value": "Renn, wenn du kannst"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1223694"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1223694|http://www.wikidata.org/entity/Q96937"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20829652|http://www.wikidata.org/entity/Q18641889|http://www.wikidata.org/entity/Q2371376|http://www.wikidata.org/entity/Q2157388|http://www.wikidata.org/entity/Q1929355|http://www.wikidata.org/entity/Q1820801|http://www.wikidata.org/entity/Q1223694|http://www.wikidata.org/entity/Q692437|http://www.wikidata.org/entity/Q461724|http://www.wikidata.org/entity/Q96937|http://www.wikidata.org/entity/Q91504|http://www.wikidata.org/entity/Q86496"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "2010 film directed by Dietrich Br\u00fcggemann"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1235358"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3112935"}, "Title": {"type": "literal", "value": "Grabbers"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6271790"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6396767"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2926038|http://www.wikidata.org/entity/Q716998|http://www.wikidata.org/entity/Q634365|http://www.wikidata.org/entity/Q519799"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q1342372"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2012 film by Jon Wright"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6070740|http://www.wikidata.org/entity/Q922857|http://www.wikidata.org/entity/Q5473190"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11716267"}, "Title": {"type": "literal", "value": "Jak to si\u0119 robi z dziewczynami"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11828879"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11828879"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3504342"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Przemys\u0142aw Angerman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3773178"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18325889"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18325889"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2008 film by David Zellner"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6656112"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16139472"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16139472"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16139488|http://www.wikidata.org/entity/Q16138602|http://www.wikidata.org/entity/Q15099359|http://www.wikidata.org/entity/Q13024385|http://www.wikidata.org/entity/Q13016955|http://www.wikidata.org/entity/Q13015776|http://www.wikidata.org/entity/Q13013801|http://www.wikidata.org/entity/Q6214293"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7751308"}, "Title": {"type": "literal", "value": "The Midnight Drives"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6768242"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6780985|http://www.wikidata.org/entity/Q525541|http://www.wikidata.org/entity/Q437038"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Mark Jenkin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4724803"}, "Title": {"type": "literal", "value": "Ali G, Innit"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5925685"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29055"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1999 film by James Bobin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q590352"}, "Title": {"type": "literal", "value": "Wild Child"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3876026"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6698263"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q460434|http://www.wikidata.org/entity/Q459800|http://www.wikidata.org/entity/Q403902|http://www.wikidata.org/entity/Q363400|http://www.wikidata.org/entity/Q295592|http://www.wikidata.org/entity/Q291710|http://www.wikidata.org/entity/Q2302888|http://www.wikidata.org/entity/Q2274977|http://www.wikidata.org/entity/Q1189560|http://www.wikidata.org/entity/Q1060908|http://www.wikidata.org/entity/Q291361|http://www.wikidata.org/entity/Q234434|http://www.wikidata.org/entity/Q232889|http://www.wikidata.org/entity/Q228598|http://www.wikidata.org/entity/Q212545|http://www.wikidata.org/entity/Q195452|http://www.wikidata.org/entity/Q28254"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2008 film by Nick Moore"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383|http://www.wikidata.org/entity/Q2060840|http://www.wikidata.org/entity/Q2450848|http://www.wikidata.org/entity/Q2702789"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24579560"}, "Title": {"type": "literal", "value": "El regreso"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27832751"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 Costa Rican film directed by Hern\u00e1n Jim\u00e9nez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5903838"}, "Title": {"type": "literal", "value": "Huacho"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26809691"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film directed by Alejandro Fern\u00e1ndez Almendras"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17105388"}, "Title": {"type": "literal", "value": "Fat Kid Rules the World"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29086"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19832737"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2012 film by Matthew Lillard"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22000291"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23094957"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q346540"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Hubert Viel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2824412"}, "Title": {"type": "literal", "value": "Adieu Gary"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3336252"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3336252"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3307810|http://www.wikidata.org/entity/Q2897553|http://www.wikidata.org/entity/Q2821029|http://www.wikidata.org/entity/Q2585508|http://www.wikidata.org/entity/Q1238309|http://www.wikidata.org/entity/Q981203|http://www.wikidata.org/entity/Q436888"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "75"}, "Description": {"type": "literal", "value": "2009 film by Nassim Amaouche"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q50650012"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19872804"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Dean Murphy"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2518019"}, "Title": {"type": "literal", "value": "Verschwende deine Jugend"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q817657"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q58903320|http://www.wikidata.org/entity/Q2129236"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2003 film by Benjamin Quabeck"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19832323"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28108868"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q62554555"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q40012114|http://www.wikidata.org/entity/Q37490631|http://www.wikidata.org/entity/Q35985836|http://www.wikidata.org/entity/Q15985263|http://www.wikidata.org/entity/Q12327247|http://www.wikidata.org/entity/Q12326106|http://www.wikidata.org/entity/Q12306343|http://www.wikidata.org/entity/Q12301809|http://www.wikidata.org/entity/Q4567936|http://www.wikidata.org/entity/Q1967835|http://www.wikidata.org/entity/Q1341671|http://www.wikidata.org/entity/Q521623|http://www.wikidata.org/entity/Q469983|http://www.wikidata.org/entity/Q435082"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by May el-Toukhy"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18289126"}, "Title": {"type": "literal", "value": "Short Skin"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18170234"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2014 film by Duccio Chiarini"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1338368"}, "Title": {"type": "literal", "value": "Somewhere"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q193628"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q193628"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q229112|http://www.wikidata.org/entity/Q228943|http://www.wikidata.org/entity/Q193668|http://www.wikidata.org/entity/Q3808518|http://www.wikidata.org/entity/Q3765221|http://www.wikidata.org/entity/Q1789378|http://www.wikidata.org/entity/Q1608028|http://www.wikidata.org/entity/Q691361|http://www.wikidata.org/entity/Q559570|http://www.wikidata.org/entity/Q459977|http://www.wikidata.org/entity/Q445440|http://www.wikidata.org/entity/Q440033|http://www.wikidata.org/entity/Q334195"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2010 film by Sofia Coppola"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q467348"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18786692"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21932133"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6167686"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Aneesh Upasana"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56274437"}, "Title": {"type": "literal", "value": "Good Boys"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6513524|http://www.wikidata.org/entity/Q5531483"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6513524|http://www.wikidata.org/entity/Q5531483"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60489296|http://www.wikidata.org/entity/Q20965633"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2019 film directed by Gene Stupnitsky"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17092493|http://www.wikidata.org/entity/Q27150184"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23899144"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23774041"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23774041"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by George Varsimashvili"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4086678"}, "Title": {"type": "literal", "value": "\u0411\u0438\u043b\u0435\u0442 \u043d\u0430 Vegas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27960476"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16514503|http://www.wikidata.org/entity/Q6451749|http://www.wikidata.org/entity/Q4494610|http://www.wikidata.org/entity/Q4441456|http://www.wikidata.org/entity/Q4333656|http://www.wikidata.org/entity/Q4101536|http://www.wikidata.org/entity/Q3561880|http://www.wikidata.org/entity/Q1258506|http://www.wikidata.org/entity/Q1140031|http://www.wikidata.org/entity/Q1074254|http://www.wikidata.org/entity/Q714669|http://www.wikidata.org/entity/Q223830"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Gor Kirakosyan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17582632"}, "Title": {"type": "literal", "value": "\u041a\u0443\u0445\u043d\u044f \u0432 \u041f\u0430\u0440\u0438\u0436\u0435"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4171916"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4525520"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4367628|http://www.wikidata.org/entity/Q4312163|http://www.wikidata.org/entity/Q4089110|http://www.wikidata.org/entity/Q3033167|http://www.wikidata.org/entity/Q576085|http://www.wikidata.org/entity/Q466139|http://www.wikidata.org/entity/Q123476"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2014 film by Dmitriy Dyachenko"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1754271|http://www.wikidata.org/entity/Q4504080|http://www.wikidata.org/entity/Q28179983"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q33138463"}, "Title": {"type": "literal", "value": "Die Einsamkeit des Killers vor dem Schuss"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1258439"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1258439"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27973503|http://www.wikidata.org/entity/Q18641889|http://www.wikidata.org/entity/Q1675617|http://www.wikidata.org/entity/Q1067118|http://www.wikidata.org/entity/Q89793|http://www.wikidata.org/entity/Q76447|http://www.wikidata.org/entity/Q60687"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2014 film by Florian Mischa B\u00f6der"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4201290"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4199248"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Niki Iliev"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61642191"}, "Title": {"type": "literal", "value": "De Frivillige"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3087215"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2019 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11644073"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16264634"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Mipo O"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48672452"}, "Title": {"type": "literal", "value": "Night School"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3843845"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2624066|http://www.wikidata.org/entity/Q618352|http://www.wikidata.org/entity/Q167683"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11835264|http://www.wikidata.org/entity/Q2706805|http://www.wikidata.org/entity/Q1616538|http://www.wikidata.org/entity/Q924104|http://www.wikidata.org/entity/Q618352|http://www.wikidata.org/entity/Q370918"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "2018 comedy film directed by Malcolm D. Lee"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22079554"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18168128"}, "Title": {"type": "literal", "value": "Tu dors Nicole"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3501883"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3501883"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3189127"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2014 film by St\u00e9phane Lafleur"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21027542"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q511347"}, "Title": {"type": "literal", "value": "This Must Be the Place"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q374678"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4003361|http://www.wikidata.org/entity/Q374678"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q204299|http://www.wikidata.org/entity/Q44221|http://www.wikidata.org/entity/Q3959303|http://www.wikidata.org/entity/Q3735288|http://www.wikidata.org/entity/Q711941|http://www.wikidata.org/entity/Q458441|http://www.wikidata.org/entity/Q365023|http://www.wikidata.org/entity/Q336640|http://www.wikidata.org/entity/Q314290|http://www.wikidata.org/entity/Q257625"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q628165|http://www.wikidata.org/entity/Q192881"}, "Duration": {"type": "literal", "value": "118"}, "Description": {"type": "literal", "value": "2011 film directed by Paolo Sorrentino"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3304113|http://www.wikidata.org/entity/Q3838997"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15849464"}, "Title": {"type": "literal", "value": "Stromberg \u2013 Der Film"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q692308"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q111498"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17485783|http://www.wikidata.org/entity/Q15907175|http://www.wikidata.org/entity/Q15793662|http://www.wikidata.org/entity/Q2336892|http://www.wikidata.org/entity/Q2154964|http://www.wikidata.org/entity/Q2077973|http://www.wikidata.org/entity/Q1929867|http://www.wikidata.org/entity/Q1914028|http://www.wikidata.org/entity/Q1892860|http://www.wikidata.org/entity/Q1808049|http://www.wikidata.org/entity/Q1773250|http://www.wikidata.org/entity/Q1758879|http://www.wikidata.org/entity/Q1686470|http://www.wikidata.org/entity/Q1646934|http://www.wikidata.org/entity/Q1562291|http://www.wikidata.org/entity/Q1533711|http://www.wikidata.org/entity/Q1443798|http://www.wikidata.org/entity/Q1409320|http://www.wikidata.org/entity/Q1349074|http://www.wikidata.org/entity/Q1208893|http://www.wikidata.org/entity/Q879361|http://www.wikidata.org/entity/Q497974|http://www.wikidata.org/entity/Q119413|http://www.wikidata.org/entity/Q104670|http://www.wikidata.org/entity/Q98255|http://www.wikidata.org/entity/Q76658"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "123"}, "Description": {"type": "literal", "value": "2014 film by Arne Feldhusen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17112644"}, "Title": {"type": "literal", "value": "Nick Offerman: American Ham"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17091099"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1985488"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1985488"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film directed by Jordan Vogt-Roberts"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q38463153"}, "Title": {"type": "literal", "value": "Support the Girls"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q503951"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q503951"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Andrew Bujalski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2044687"}, "Title": {"type": "literal", "value": "Sex & Drugs & Rock & Roll"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3298143"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q206922|http://www.wikidata.org/entity/Q156586|http://www.wikidata.org/entity/Q125942|http://www.wikidata.org/entity/Q20668065|http://www.wikidata.org/entity/Q7229574|http://www.wikidata.org/entity/Q1272489|http://www.wikidata.org/entity/Q902800|http://www.wikidata.org/entity/Q861490|http://www.wikidata.org/entity/Q722001|http://www.wikidata.org/entity/Q665139|http://www.wikidata.org/entity/Q644911|http://www.wikidata.org/entity/Q447614|http://www.wikidata.org/entity/Q363978|http://www.wikidata.org/entity/Q342419|http://www.wikidata.org/entity/Q310932|http://www.wikidata.org/entity/Q231163"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q645928"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 biopic of English New Wave musician Ian Dury directed by Mat Whitecross"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2300440"}, "Title": {"type": "literal", "value": "Raising Victor Vargas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3376892"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28129939|http://www.wikidata.org/entity/Q7516933|http://www.wikidata.org/entity/Q6304528|http://www.wikidata.org/entity/Q977023|http://www.wikidata.org/entity/Q449626"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2002 film by Peter Sollett"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3233426"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2896285"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2896285"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3573897|http://www.wikidata.org/entity/Q3181973|http://www.wikidata.org/entity/Q3164941|http://www.wikidata.org/entity/Q2829653|http://www.wikidata.org/entity/Q667260|http://www.wikidata.org/entity/Q177993|http://www.wikidata.org/entity/Q177840"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Benjamin de Lajarte"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18703137"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18390367"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18390367"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20649361|http://www.wikidata.org/entity/Q12977914|http://www.wikidata.org/entity/Q6986773|http://www.wikidata.org/entity/Q1662266"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Yogesh Dattatraya Gosavi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27679727"}, "Title": {"type": "literal", "value": "Maman a tort"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3246668"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3246668"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q259968"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Marc Fitoussi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28495518"}, "Title": {"type": "literal", "value": "\u00c9pouse-moi mon pote"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17175096"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17175096"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17175096|http://www.wikidata.org/entity/Q3380121|http://www.wikidata.org/entity/Q3379789|http://www.wikidata.org/entity/Q3334874|http://www.wikidata.org/entity/Q3037894|http://www.wikidata.org/entity/Q3018364"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2017 French film by Tarek Boudali"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2450848"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42778614"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q456182"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Moon So-ri"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3986596"}, "Title": {"type": "literal", "value": "The Details"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3157514"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3157514"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q350208|http://www.wikidata.org/entity/Q232104|http://www.wikidata.org/entity/Q223281|http://www.wikidata.org/entity/Q219373|http://www.wikidata.org/entity/Q211280|http://www.wikidata.org/entity/Q165524|http://www.wikidata.org/entity/Q40124"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2011 film by Jacob Aaron Estes"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6457551"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7701699"}, "Title": {"type": "literal", "value": "\u0924\u0947\u0930\u0947 \u092c\u093f\u0928 \u0932\u093e\u0926\u0947\u0928"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41794758"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3633203|http://www.wikidata.org/entity/Q3534654"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Abhishek Sharma"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q387958"}, "Title": {"type": "literal", "value": "What a Man"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q64645"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1246111"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22280962|http://www.wikidata.org/entity/Q1824918|http://www.wikidata.org/entity/Q1684854|http://www.wikidata.org/entity/Q1527740|http://www.wikidata.org/entity/Q1409622|http://www.wikidata.org/entity/Q1342322|http://www.wikidata.org/entity/Q1298649|http://www.wikidata.org/entity/Q1260674|http://www.wikidata.org/entity/Q1246111|http://www.wikidata.org/entity/Q995430|http://www.wikidata.org/entity/Q108590|http://www.wikidata.org/entity/Q103544|http://www.wikidata.org/entity/Q78766|http://www.wikidata.org/entity/Q76447|http://www.wikidata.org/entity/Q64645|http://www.wikidata.org/entity/Q63682|http://www.wikidata.org/entity/Q63228|http://www.wikidata.org/entity/Q57614"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2011 film by Matthias Schweigh\u00f6fer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60789319"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28804044"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28804044"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60789764|http://www.wikidata.org/entity/Q60789659|http://www.wikidata.org/entity/Q60788293|http://www.wikidata.org/entity/Q23054724|http://www.wikidata.org/entity/Q20976962|http://www.wikidata.org/entity/Q12045139|http://www.wikidata.org/entity/Q12035539|http://www.wikidata.org/entity/Q12033020|http://www.wikidata.org/entity/Q12025330|http://www.wikidata.org/entity/Q12023662|http://www.wikidata.org/entity/Q12022294|http://www.wikidata.org/entity/Q12021457|http://www.wikidata.org/entity/Q11925857|http://www.wikidata.org/entity/Q265560|http://www.wikidata.org/entity/Q168916"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1339864|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film project directed by Petr Kolecko"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12103758"}, "Title": {"type": "literal", "value": "The Boxtrolls"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5592627|http://www.wikidata.org/entity/Q4773504"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2014 film by Graham Annable, Anthony Stacchi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1314323"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1758468"}, "Title": {"type": "literal", "value": "Kick-Ass 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3176610"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2543|http://www.wikidata.org/entity/Q3176610|http://www.wikidata.org/entity/Q2570"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q510970|http://www.wikidata.org/entity/Q472053|http://www.wikidata.org/entity/Q440956|http://www.wikidata.org/entity/Q380050|http://www.wikidata.org/entity/Q371430|http://www.wikidata.org/entity/Q314819|http://www.wikidata.org/entity/Q295233|http://www.wikidata.org/entity/Q260490|http://www.wikidata.org/entity/Q229914|http://www.wikidata.org/entity/Q45923|http://www.wikidata.org/entity/Q1339924|http://www.wikidata.org/entity/Q1331706|http://www.wikidata.org/entity/Q541428|http://www.wikidata.org/entity/Q526886|http://www.wikidata.org/entity/Q512818|http://www.wikidata.org/entity/Q40504|http://www.wikidata.org/entity/Q4509|http://www.wikidata.org/entity/Q2570|http://www.wikidata.org/entity/Q2543|http://www.wikidata.org/entity/Q16233699|http://www.wikidata.org/entity/Q16213687|http://www.wikidata.org/entity/Q3726488|http://www.wikidata.org/entity/Q3530246|http://www.wikidata.org/entity/Q3329808|http://www.wikidata.org/entity/Q3320714|http://www.wikidata.org/entity/Q2659353"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1535153|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q622548|http://www.wikidata.org/entity/Q5778924|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2013 British-American superhero parody action comedy film directed by Jeff Wadlow"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1906017|http://www.wikidata.org/entity/Q2593|http://www.wikidata.org/entity/Q28252|http://www.wikidata.org/entity/Q168383"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19644634"}, "Title": {"type": "literal", "value": "Ein Geschenk der G\u00f6tter"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19899646"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19899646"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25291398|http://www.wikidata.org/entity/Q90374|http://www.wikidata.org/entity/Q72883|http://www.wikidata.org/entity/Q24054378|http://www.wikidata.org/entity/Q23062057|http://www.wikidata.org/entity/Q23015770|http://www.wikidata.org/entity/Q19899655|http://www.wikidata.org/entity/Q15431507|http://www.wikidata.org/entity/Q1452625|http://www.wikidata.org/entity/Q1335125|http://www.wikidata.org/entity/Q1266977|http://www.wikidata.org/entity/Q108299|http://www.wikidata.org/entity/Q98976"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2014 film directed by Oliver Haffner"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18343093"}, "Title": {"type": "literal", "value": "Young and Wild"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28035446"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2014 film directed by Felix Maxim Eller"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7753878"}, "Title": {"type": "literal", "value": "The Newest Pledge"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6163110"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6163110"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q316627|http://www.wikidata.org/entity/Q280793|http://www.wikidata.org/entity/Q271627"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Jason Michael Brescia"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q36092"}, "Title": {"type": "literal", "value": "Lilo & Stitch"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1181049|http://www.wikidata.org/entity/Q201641"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1181049|http://www.wikidata.org/entity/Q201641"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28968511|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2002 American animated science fiction comedy-drama film produced by Walt Disney Feature Animation"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191224"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19299876"}, "Title": {"type": "literal", "value": "Noi e la Giulia"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3719608"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3845969"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28874538|http://www.wikidata.org/entity/Q3732277|http://www.wikidata.org/entity/Q3719608|http://www.wikidata.org/entity/Q3617706|http://www.wikidata.org/entity/Q1223109|http://www.wikidata.org/entity/Q1085895|http://www.wikidata.org/entity/Q1038705|http://www.wikidata.org/entity/Q472414"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "2015 film by Edoardo Leo"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3804257"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21869292"}, "Title": {"type": "literal", "value": "\u6076\u68cd\u5929\u4f7f"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1140540"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2547121|http://www.wikidata.org/entity/Q1140540"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "124"}, "Description": {"type": "literal", "value": "2015 Chinese film directed by Deng Chao"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10890670"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17222872"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11457164"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11457164"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Katsuya Tomita"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q50825261"}, "Title": {"type": "literal", "value": "Die Nacht der N\u00e4chte"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q120534|http://www.wikidata.org/entity/Q90892"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q120534|http://www.wikidata.org/entity/Q90892"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 documentary film directed by Yasemin \u015eamdereli and Nesrin \u015eamdereli"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q449041"}, "Title": {"type": "literal", "value": "Impy's Island"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13704719|http://www.wikidata.org/entity/Q8670824"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2006 film by Holger Tappe, Reinhard Klooss"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3156874"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3183504"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3183504"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3591418|http://www.wikidata.org/entity/Q3588004|http://www.wikidata.org/entity/Q3559693|http://www.wikidata.org/entity/Q3515175|http://www.wikidata.org/entity/Q3336772|http://www.wikidata.org/entity/Q3183504|http://www.wikidata.org/entity/Q3164195|http://www.wikidata.org/entity/Q2959207|http://www.wikidata.org/entity/Q2825177|http://www.wikidata.org/entity/Q983159|http://www.wikidata.org/entity/Q658220|http://www.wikidata.org/entity/Q552639|http://www.wikidata.org/entity/Q460201|http://www.wikidata.org/entity/Q452106|http://www.wikidata.org/entity/Q291521"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Jonathan Zacca\u00ef"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29110284"}, "Title": {"type": "literal", "value": "Carnage"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q978769"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q978769"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Simon Amstell"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4446124"}, "Title": {"type": "literal", "value": "\u0421\u0443\u043d\u0434\u0443\u043a \u043f\u0440\u0435\u0434\u043a\u043e\u0432"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20629895"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q446883"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2006 film by Nurbek Egen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3838029"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1582781"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1395456|http://www.wikidata.org/entity/Q265091"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Naoko Ogigami"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3517386"}, "Title": {"type": "literal", "value": "Tellement proches"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2778106|http://www.wikidata.org/entity/Q74428"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q74428|http://www.wikidata.org/entity/Q2778106"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3008989|http://www.wikidata.org/entity/Q2941947|http://www.wikidata.org/entity/Q2866088|http://www.wikidata.org/entity/Q2864476|http://www.wikidata.org/entity/Q2829888|http://www.wikidata.org/entity/Q1685364|http://www.wikidata.org/entity/Q1450857|http://www.wikidata.org/entity/Q1341507|http://www.wikidata.org/entity/Q721337|http://www.wikidata.org/entity/Q693534|http://www.wikidata.org/entity/Q642952|http://www.wikidata.org/entity/Q541690|http://www.wikidata.org/entity/Q511485|http://www.wikidata.org/entity/Q510056|http://www.wikidata.org/entity/Q357387|http://www.wikidata.org/entity/Q289032|http://www.wikidata.org/entity/Q204394|http://www.wikidata.org/entity/Q177840|http://www.wikidata.org/entity/Q18009985|http://www.wikidata.org/entity/Q17497104|http://www.wikidata.org/entity/Q16832022|http://www.wikidata.org/entity/Q15676192|http://www.wikidata.org/entity/Q3591288|http://www.wikidata.org/entity/Q3514504|http://www.wikidata.org/entity/Q3499140|http://www.wikidata.org/entity/Q3479884|http://www.wikidata.org/entity/Q3427154|http://www.wikidata.org/entity/Q3358299|http://www.wikidata.org/entity/Q3299879|http://www.wikidata.org/entity/Q3242498|http://www.wikidata.org/entity/Q3218893|http://www.wikidata.org/entity/Q3217601|http://www.wikidata.org/entity/Q3187449|http://www.wikidata.org/entity/Q3169135|http://www.wikidata.org/entity/Q3085922"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2009 film by Olivier Nakache, \u00c9ric Toledano"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5905027"}, "Title": {"type": "literal", "value": "Horrid Henry: The Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3876026"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7781490|http://www.wikidata.org/entity/Q5273581|http://www.wikidata.org/entity/Q380856|http://www.wikidata.org/entity/Q268017|http://www.wikidata.org/entity/Q190998"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Nick Moore"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1907179"}, "Title": {"type": "literal", "value": "Maskeli Be\u015fler: Irak"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3328043"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3328043"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8082387|http://www.wikidata.org/entity/Q6812382|http://www.wikidata.org/entity/Q5058838|http://www.wikidata.org/entity/Q382106"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2007 film by Murat Aslan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q718996"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4187176"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4201152"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11036795"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4199390"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Nia Dinata"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25489777"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7079736"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7079736"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Ofir Lobel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1524217"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2735655"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3242422"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3339792|http://www.wikidata.org/entity/Q1338401|http://www.wikidata.org/entity/Q951634|http://www.wikidata.org/entity/Q621490|http://www.wikidata.org/entity/Q447892|http://www.wikidata.org/entity/Q329700|http://www.wikidata.org/entity/Q234207|http://www.wikidata.org/entity/Q102642"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2001 film by Greg Yaitanes"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18340955"}, "Title": {"type": "literal", "value": "Soap opera"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3610041"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3610041"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3737674|http://www.wikidata.org/entity/Q2963238|http://www.wikidata.org/entity/Q1052875|http://www.wikidata.org/entity/Q1050695|http://www.wikidata.org/entity/Q440335|http://www.wikidata.org/entity/Q291413|http://www.wikidata.org/entity/Q34922"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2014 film by Alessandro Genovesi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3304113"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17539414"}, "Title": {"type": "literal", "value": "Die Mamba"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1679707"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1679707"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2399957|http://www.wikidata.org/entity/Q1972418|http://www.wikidata.org/entity/Q1912675|http://www.wikidata.org/entity/Q112743|http://www.wikidata.org/entity/Q106390|http://www.wikidata.org/entity/Q104670|http://www.wikidata.org/entity/Q90506|http://www.wikidata.org/entity/Q90118|http://www.wikidata.org/entity/Q88796|http://www.wikidata.org/entity/Q87930"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2014 film by Ali Samadi Ahadi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17067918"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6893585"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6893585"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7289374"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Mohan Shankar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q959335"}, "Title": {"type": "literal", "value": "Cats & Dogs: The Revenge of Kitty Galore"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1114465"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7611920|http://www.wikidata.org/entity/Q7363966"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q106706|http://www.wikidata.org/entity/Q14535|http://www.wikidata.org/entity/Q356541|http://www.wikidata.org/entity/Q326939|http://www.wikidata.org/entity/Q311103|http://www.wikidata.org/entity/Q311068|http://www.wikidata.org/entity/Q296883|http://www.wikidata.org/entity/Q258255|http://www.wikidata.org/entity/Q234144|http://www.wikidata.org/entity/Q223033|http://www.wikidata.org/entity/Q190631|http://www.wikidata.org/entity/Q188280|http://www.wikidata.org/entity/Q188018|http://www.wikidata.org/entity/Q150482|http://www.wikidata.org/entity/Q134333|http://www.wikidata.org/entity/Q123174|http://www.wikidata.org/entity/Q107069|http://www.wikidata.org/entity/Q2848685|http://www.wikidata.org/entity/Q2791343|http://www.wikidata.org/entity/Q1075796|http://www.wikidata.org/entity/Q560896|http://www.wikidata.org/entity/Q557948|http://www.wikidata.org/entity/Q485901|http://www.wikidata.org/entity/Q485310|http://www.wikidata.org/entity/Q483148|http://www.wikidata.org/entity/Q439939"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "2010 film by Brad Peyton"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q622668|http://www.wikidata.org/entity/Q126399"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q576373"}, "Title": {"type": "literal", "value": "FUBAR"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3308160"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3308160"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "76"}, "Description": {"type": "literal", "value": "2002 film by Michael Dowse"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q442353"}, "Title": {"type": "literal", "value": "The Future"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q256671"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q256671"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2156496|http://www.wikidata.org/entity/Q1508944|http://www.wikidata.org/entity/Q558301|http://www.wikidata.org/entity/Q533461|http://www.wikidata.org/entity/Q515717|http://www.wikidata.org/entity/Q256671"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2011 film by Miranda July"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1916337"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4638652"}, "Title": {"type": "literal", "value": "48 Shades"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q369113"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q369113"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7927077|http://www.wikidata.org/entity/Q7330024|http://www.wikidata.org/entity/Q5372897|http://www.wikidata.org/entity/Q4275835"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Daniel Lapaine"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2715076"}, "Title": {"type": "literal", "value": "The Sapphires"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1506091"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23879990|http://www.wikidata.org/entity/Q16607908|http://www.wikidata.org/entity/Q7489628|http://www.wikidata.org/entity/Q6451591|http://www.wikidata.org/entity/Q5548256|http://www.wikidata.org/entity/Q3532579|http://www.wikidata.org/entity/Q1152289|http://www.wikidata.org/entity/Q933129|http://www.wikidata.org/entity/Q568179|http://www.wikidata.org/entity/Q443892"}, "Published": {"type": "literal", "value": "2013|2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q645928|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2012 film by Wayne Blair"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5575218"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2026031"}, "Title": {"type": "literal", "value": "Operation Dance Sensation"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1456645"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q99064|http://www.wikidata.org/entity/Q1456645"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q99064|http://www.wikidata.org/entity/Q77462|http://www.wikidata.org/entity/Q77027|http://www.wikidata.org/entity/Q61244|http://www.wikidata.org/entity/Q1904271|http://www.wikidata.org/entity/Q1456645"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q188473"}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "2003 German film by Thilo Gosejohann"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15320806"}, "Title": {"type": "literal", "value": "Les \u00c2mes de papier"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3559700"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3085951"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3501805|http://www.wikidata.org/entity/Q3183504|http://www.wikidata.org/entity/Q435925|http://www.wikidata.org/entity/Q315243"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Vincent Lannoo"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2866005|http://www.wikidata.org/entity/Q15321663|http://www.wikidata.org/entity/Q16466235"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q886857"}, "Title": {"type": "literal", "value": "Blutzbr\u00fcdaz"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q98997"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q98997"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1745408|http://www.wikidata.org/entity/Q1624623|http://www.wikidata.org/entity/Q1486110|http://www.wikidata.org/entity/Q1463417|http://www.wikidata.org/entity/Q1454554|http://www.wikidata.org/entity/Q1243836|http://www.wikidata.org/entity/Q1158532|http://www.wikidata.org/entity/Q1154066|http://www.wikidata.org/entity/Q1097434|http://www.wikidata.org/entity/Q449665|http://www.wikidata.org/entity/Q213670|http://www.wikidata.org/entity/Q109358|http://www.wikidata.org/entity/Q90636|http://www.wikidata.org/entity/Q88400|http://www.wikidata.org/entity/Q73092|http://www.wikidata.org/entity/Q71588|http://www.wikidata.org/entity/Q13270011|http://www.wikidata.org/entity/Q2584733|http://www.wikidata.org/entity/Q2434366|http://www.wikidata.org/entity/Q2263101|http://www.wikidata.org/entity/Q1935942|http://www.wikidata.org/entity/Q1905543"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2011 film by \u00d6zg\u00fcr Y\u0131ld\u0131r\u0131m"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3319980"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3473148"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3473148"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16185718|http://www.wikidata.org/entity/Q3335761|http://www.wikidata.org/entity/Q3333007|http://www.wikidata.org/entity/Q3190704|http://www.wikidata.org/entity/Q2884015|http://www.wikidata.org/entity/Q2851178|http://www.wikidata.org/entity/Q2583177|http://www.wikidata.org/entity/Q600051"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Saphia Azzeddine"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42947885"}, "Title": {"type": "literal", "value": "S&M Sally"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6837009"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Michelle Ehlen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q876851"}, "Title": {"type": "literal", "value": "Diamonds"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1057926"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7372690|http://www.wikidata.org/entity/Q6761758|http://www.wikidata.org/entity/Q6297411|http://www.wikidata.org/entity/Q1305333|http://www.wikidata.org/entity/Q978857|http://www.wikidata.org/entity/Q712647|http://www.wikidata.org/entity/Q455646|http://www.wikidata.org/entity/Q326984|http://www.wikidata.org/entity/Q230993|http://www.wikidata.org/entity/Q105221|http://www.wikidata.org/entity/Q104027|http://www.wikidata.org/entity/Q104000|http://www.wikidata.org/entity/Q60493|http://www.wikidata.org/entity/Q51564"}, "Published": {"type": "literal", "value": "2001|1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "1999 American comedy film directed by John Mallory Asher"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42165807"}, "Title": {"type": "literal", "value": "Toc toc"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6161380"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2017 spanish comedy movie directed by Vicente Villanueva"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12250170"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12218751"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4120252"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Sherif Mandour"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3414725"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15070019"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15070019"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6531360|http://www.wikidata.org/entity/Q3382884"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Alexandre Coffre"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18157191"}, "Title": {"type": "literal", "value": "Zombeavers"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23819589"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23819589"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13412374|http://www.wikidata.org/entity/Q3545522|http://www.wikidata.org/entity/Q1135627|http://www.wikidata.org/entity/Q909704|http://www.wikidata.org/entity/Q463285|http://www.wikidata.org/entity/Q369872"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3072049|http://www.wikidata.org/entity/Q1342372|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2014 film by Jordan Rubin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18810305"}, "Title": {"type": "literal", "value": "K\u00fcck\u00fcckskind"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1085794"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23824545"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2013 film by Christoph Schnee"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3089073"}, "Title": {"type": "literal", "value": "Sykt lykkelig"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17107235"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22482805"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17194694|http://www.wikidata.org/entity/Q11978658|http://www.wikidata.org/entity/Q5699667|http://www.wikidata.org/entity/Q4976428|http://www.wikidata.org/entity/Q394570"}, "Published": {"type": "literal", "value": "2012|2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2010 Norwegian comedy film directed by Anne Sewitsky"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6736868"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q471596"}, "Title": {"type": "literal", "value": "The Lucky Ones"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q706300"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q706300"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q947748|http://www.wikidata.org/entity/Q566923|http://www.wikidata.org/entity/Q462327|http://www.wikidata.org/entity/Q370817|http://www.wikidata.org/entity/Q359488|http://www.wikidata.org/entity/Q336824|http://www.wikidata.org/entity/Q190386|http://www.wikidata.org/entity/Q95048|http://www.wikidata.org/entity/Q41340"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "113"}, "Description": {"type": "literal", "value": "2008 film by Neil Burger"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17068202"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5388719"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Erik Matti"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29832055"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17060898"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17060898"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16233843"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by K. P. Jagannath"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17221018"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5365238"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5365238"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1041739|http://www.wikidata.org/entity/Q253690"}, "Published": {"type": "literal", "value": "2014|2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Sh\u014dgo Kawashima"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2155483"}, "Title": {"type": "literal", "value": "Diary of a Wimpy Kid: Dog Days"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18558"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1400238"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28974275|http://www.wikidata.org/entity/Q26213699|http://www.wikidata.org/entity/Q7001736|http://www.wikidata.org/entity/Q2834731|http://www.wikidata.org/entity/Q1800733|http://www.wikidata.org/entity/Q1321271|http://www.wikidata.org/entity/Q637063|http://www.wikidata.org/entity/Q552896|http://www.wikidata.org/entity/Q491775|http://www.wikidata.org/entity/Q267400|http://www.wikidata.org/entity/Q234299|http://www.wikidata.org/entity/Q139611|http://www.wikidata.org/entity/Q74689|http://www.wikidata.org/entity/Q74671"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2012 film by David Bowers"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434841|http://www.wikidata.org/entity/Q5148553"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28142555"}, "Title": {"type": "literal", "value": "Selbstkritik eines buergerlichen Hundes"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28142536"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28142536"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28792318|http://www.wikidata.org/entity/Q28142536"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2017 film directed by Julian Radlmaier"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19720688"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4901341"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q901649"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film directed by Bhaskar"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24906550"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12126903"}, "Title": {"type": "literal", "value": "Phil the Alien"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2156090"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2156090"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2156090|http://www.wikidata.org/entity/Q311169|http://www.wikidata.org/entity/Q238168"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Rob Stefaniuk"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55380520"}, "Title": {"type": "literal", "value": "Little Girl Blue"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q561754"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1650253|http://www.wikidata.org/entity/Q561754"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1900185|http://www.wikidata.org/entity/Q1817337"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Anna Luif"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1262133"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q41527984"}, "Title": {"type": "literal", "value": "Fikkefuchs"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q108302"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q108302|http://www.wikidata.org/entity/Q76284"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23794603|http://www.wikidata.org/entity/Q17537095|http://www.wikidata.org/entity/Q16064485|http://www.wikidata.org/entity/Q2369147|http://www.wikidata.org/entity/Q108302"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Jan Henrik Stahlberg"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18603050"}, "Title": {"type": "literal", "value": "\u0935\u0948\u0932\u094d\u0915\u092e \u091f\u0942 \u0915\u0930\u093e\u091a\u0940"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4805156"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7942575"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q704859"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Ashish R Mohan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3561465"}, "Title": {"type": "literal", "value": "Vive la France"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q737676"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q737676"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q778451"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2013 French comedy film directed by Micha\u00ebl Youn"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q50822485"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q43439860"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q43439860"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6148788|http://www.wikidata.org/entity/Q3163137|http://www.wikidata.org/entity/Q2687792"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 Spanish comedy film by Carlo Padial"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19007230"}, "Title": {"type": "literal", "value": "From A to B"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4725069"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4725069"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5429493"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2015 film by Ali Mustafa"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3831472"}, "Title": {"type": "literal", "value": "Lezioni di cioccolato 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20971246"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13427396"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4013506|http://www.wikidata.org/entity/Q3972384|http://www.wikidata.org/entity/Q3869776|http://www.wikidata.org/entity/Q3802324|http://www.wikidata.org/entity/Q3783619|http://www.wikidata.org/entity/Q3765221|http://www.wikidata.org/entity/Q3679830|http://www.wikidata.org/entity/Q3634624|http://www.wikidata.org/entity/Q1237584|http://www.wikidata.org/entity/Q1223109"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2011 film by Alessio Maria Federici"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3663776"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q51867653"}, "Title": {"type": "literal", "value": "Goosebumps: Haunted Halloween"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q653911"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q39739164|http://www.wikidata.org/entity/Q27922207|http://www.wikidata.org/entity/Q25999313|http://www.wikidata.org/entity/Q16980120|http://www.wikidata.org/entity/Q1077635|http://www.wikidata.org/entity/Q483907|http://www.wikidata.org/entity/Q440910|http://www.wikidata.org/entity/Q165296"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 American film by Ari Sandel"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q186941|http://www.wikidata.org/entity/Q557387|http://www.wikidata.org/entity/Q1155729|http://www.wikidata.org/entity/Q1416835"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6676053"}, "Title": {"type": "literal", "value": "\u0932\u0942\u091f"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16198160"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16198160"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16731881"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 Nepali film by Nischal Basnet"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21014186"}, "Title": {"type": "literal", "value": "Pecore in erba"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21207514"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2015 film by Alberto Caviglia"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q54860504"}, "Title": {"type": "literal", "value": "Like Father"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3218835"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3218835"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q220308|http://www.wikidata.org/entity/Q196560|http://www.wikidata.org/entity/Q178882"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2018 film project directed by Lauren Miller"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1632425"}, "Title": {"type": "literal", "value": "Can't Hardly Wait"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3127820|http://www.wikidata.org/entity/Q3020873"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3020873|http://www.wikidata.org/entity/Q3127820"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q530790|http://www.wikidata.org/entity/Q518128|http://www.wikidata.org/entity/Q461082|http://www.wikidata.org/entity/Q456862|http://www.wikidata.org/entity/Q3480189|http://www.wikidata.org/entity/Q3180255|http://www.wikidata.org/entity/Q3163247|http://www.wikidata.org/entity/Q3127820|http://www.wikidata.org/entity/Q5405327|http://www.wikidata.org/entity/Q3557605|http://www.wikidata.org/entity/Q454035|http://www.wikidata.org/entity/Q451894|http://www.wikidata.org/entity/Q438841|http://www.wikidata.org/entity/Q429777|http://www.wikidata.org/entity/Q383064|http://www.wikidata.org/entity/Q378672|http://www.wikidata.org/entity/Q1820773|http://www.wikidata.org/entity/Q1631627|http://www.wikidata.org/entity/Q1422655|http://www.wikidata.org/entity/Q1066934|http://www.wikidata.org/entity/Q1062316|http://www.wikidata.org/entity/Q959052|http://www.wikidata.org/entity/Q726165|http://www.wikidata.org/entity/Q3020873|http://www.wikidata.org/entity/Q2923718|http://www.wikidata.org/entity/Q2669372|http://www.wikidata.org/entity/Q362697|http://www.wikidata.org/entity/Q362236|http://www.wikidata.org/entity/Q360674|http://www.wikidata.org/entity/Q314819|http://www.wikidata.org/entity/Q293042|http://www.wikidata.org/entity/Q264748|http://www.wikidata.org/entity/Q258854|http://www.wikidata.org/entity/Q240199|http://www.wikidata.org/entity/Q233347|http://www.wikidata.org/entity/Q232098|http://www.wikidata.org/entity/Q231197|http://www.wikidata.org/entity/Q229249|http://www.wikidata.org/entity/Q202304|http://www.wikidata.org/entity/Q192052|http://www.wikidata.org/entity/Q186757|http://www.wikidata.org/entity/Q175104|http://www.wikidata.org/entity/Q168763"}, "Published": {"type": "literal", "value": "1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q1146335"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "1998 film by Deborah Kaplan, Harry Elfont"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q186941"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55080334"}, "Title": {"type": "literal", "value": "Les Go\u00fbts et les Couleurs"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3331501"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2018 film direct by Myriam Aziza"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q907311"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48862213"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q58799185"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50999396"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50999396|http://www.wikidata.org/entity/Q48845347|http://www.wikidata.org/entity/Q17544549|http://www.wikidata.org/entity/Q11772277|http://www.wikidata.org/entity/Q11766088|http://www.wikidata.org/entity/Q9281760|http://www.wikidata.org/entity/Q9152498|http://www.wikidata.org/entity/Q5298221|http://www.wikidata.org/entity/Q1797671|http://www.wikidata.org/entity/Q459661"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9143596"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20408360"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22245610"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12249943"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14948579"}, "Title": {"type": "literal", "value": "Let's Be Cops"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q322842"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q322842"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17488223|http://www.wikidata.org/entity/Q13560502|http://www.wikidata.org/entity/Q7925457|http://www.wikidata.org/entity/Q6382703|http://www.wikidata.org/entity/Q4910422|http://www.wikidata.org/entity/Q3530789|http://www.wikidata.org/entity/Q1966357|http://www.wikidata.org/entity/Q1616538|http://www.wikidata.org/entity/Q1158726|http://www.wikidata.org/entity/Q744002|http://www.wikidata.org/entity/Q717194|http://www.wikidata.org/entity/Q674255|http://www.wikidata.org/entity/Q322842|http://www.wikidata.org/entity/Q189415|http://www.wikidata.org/entity/Q183439|http://www.wikidata.org/entity/Q171525|http://www.wikidata.org/entity/Q164869"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4984974|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q663106"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2014 film by Luke Greenfield"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27590232"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3972430"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3972430"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "74"}, "Description": {"type": "literal", "value": "2004 film by Stefano Chiantini"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21008412"}, "Title": {"type": "literal", "value": "Halbe Br\u00fcder"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q78383"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1246111"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19593891|http://www.wikidata.org/entity/Q15855347|http://www.wikidata.org/entity/Q2399957|http://www.wikidata.org/entity/Q1732788|http://www.wikidata.org/entity/Q1577922|http://www.wikidata.org/entity/Q1545055|http://www.wikidata.org/entity/Q1348711|http://www.wikidata.org/entity/Q1265330|http://www.wikidata.org/entity/Q1251322|http://www.wikidata.org/entity/Q1246296|http://www.wikidata.org/entity/Q1161422|http://www.wikidata.org/entity/Q1145137|http://www.wikidata.org/entity/Q1067500|http://www.wikidata.org/entity/Q560312|http://www.wikidata.org/entity/Q213670|http://www.wikidata.org/entity/Q124985|http://www.wikidata.org/entity/Q114624|http://www.wikidata.org/entity/Q106781|http://www.wikidata.org/entity/Q106649|http://www.wikidata.org/entity/Q104879|http://www.wikidata.org/entity/Q90041|http://www.wikidata.org/entity/Q89032|http://www.wikidata.org/entity/Q78121|http://www.wikidata.org/entity/Q76447|http://www.wikidata.org/entity/Q71487|http://www.wikidata.org/entity/Q70808|http://www.wikidata.org/entity/Q69092|http://www.wikidata.org/entity/Q64577|http://www.wikidata.org/entity/Q45387"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "2015 film by Christian Alvart"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q58701890"}, "Title": {"type": "literal", "value": "Cats"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q295912"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1811812|http://www.wikidata.org/entity/Q295912"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q243639|http://www.wikidata.org/entity/Q192410|http://www.wikidata.org/entity/Q170510|http://www.wikidata.org/entity/Q28054|http://www.wikidata.org/entity/Q26876|http://www.wikidata.org/entity/Q26704283|http://www.wikidata.org/entity/Q16968300|http://www.wikidata.org/entity/Q767499|http://www.wikidata.org/entity/Q442897|http://www.wikidata.org/entity/Q342604|http://www.wikidata.org/entity/Q32999647"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q2743"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film by Tom Hooper"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q457893|http://www.wikidata.org/entity/Q2060840|http://www.wikidata.org/entity/Q4044503|http://www.wikidata.org/entity/Q7301319"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3976245"}, "Title": {"type": "literal", "value": "Stuck on You!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q944978|http://www.wikidata.org/entity/Q183347"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q944978|http://www.wikidata.org/entity/Q183347"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21403123|http://www.wikidata.org/entity/Q6075016"}, "Published": {"type": "literal", "value": "1982"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1982 film by Michael Herz, Lloyd Kaufman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q640786"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26869645"}, "Title": {"type": "literal", "value": "Tschick"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q77061"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q77061|http://www.wikidata.org/entity/Q28152"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26880638|http://www.wikidata.org/entity/Q19839425|http://www.wikidata.org/entity/Q17521534|http://www.wikidata.org/entity/Q1892651|http://www.wikidata.org/entity/Q1721304|http://www.wikidata.org/entity/Q1555527|http://www.wikidata.org/entity/Q1097463|http://www.wikidata.org/entity/Q123015|http://www.wikidata.org/entity/Q111879|http://www.wikidata.org/entity/Q107805|http://www.wikidata.org/entity/Q71497"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q628165|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2016 film by Fatih Ak\u0131n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1140607"}, "Title": {"type": "literal", "value": "\u0935\u0940 \u0906\u0930 \u092b\u0948\u092e\u093f\u0932\u0940"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3483111"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7039895|http://www.wikidata.org/entity/Q3483111|http://www.wikidata.org/entity/Q3103782"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12415781|http://www.wikidata.org/entity/Q4661551|http://www.wikidata.org/entity/Q442668|http://www.wikidata.org/entity/Q184885|http://www.wikidata.org/entity/Q147395"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q93196"}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "2010 film by Sidharth Malhotran"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q186941|http://www.wikidata.org/entity/Q1207592"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28000925"}, "Title": {"type": "literal", "value": "Mister Felicit\u00e0"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q769800"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q769800"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q769800"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2017 Italian film directed by Alessandro Siani"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20856802"}, "Title": {"type": "literal", "value": "La La Land"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18350026"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18350026"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q150482|http://www.wikidata.org/entity/Q147077|http://www.wikidata.org/entity/Q44857|http://www.wikidata.org/entity/Q24444473|http://www.wikidata.org/entity/Q19665276|http://www.wikidata.org/entity/Q15790902|http://www.wikidata.org/entity/Q5450687|http://www.wikidata.org/entity/Q3303794|http://www.wikidata.org/entity/Q1683907|http://www.wikidata.org/entity/Q967833|http://www.wikidata.org/entity/Q494393|http://www.wikidata.org/entity/Q351171|http://www.wikidata.org/entity/Q236956|http://www.wikidata.org/entity/Q193815"}, "Published": {"type": "literal", "value": "2017|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "128"}, "Description": {"type": "literal", "value": "2016 musical film by Damien Chazelle"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q632323|http://www.wikidata.org/entity/Q515869"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18633954"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28494066"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28494066"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16683524|http://www.wikidata.org/entity/Q3573897|http://www.wikidata.org/entity/Q3559331|http://www.wikidata.org/entity/Q3471989|http://www.wikidata.org/entity/Q3063751|http://www.wikidata.org/entity/Q2966123|http://www.wikidata.org/entity/Q2863068|http://www.wikidata.org/entity/Q2489060|http://www.wikidata.org/entity/Q1827804|http://www.wikidata.org/entity/Q983020|http://www.wikidata.org/entity/Q287427|http://www.wikidata.org/entity/Q232470"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by St\u00e9phane Demoustier"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1781285"}, "Title": {"type": "literal", "value": "Spring Breakers"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q528949"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q528949"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3787526|http://www.wikidata.org/entity/Q352873|http://www.wikidata.org/entity/Q123174|http://www.wikidata.org/entity/Q83287|http://www.wikidata.org/entity/Q306403|http://www.wikidata.org/entity/Q230609|http://www.wikidata.org/entity/Q229349|http://www.wikidata.org/entity/Q206032"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2421031|http://www.wikidata.org/entity/Q599558|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q1776156|http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q851213"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2013 film by Harmony Korine"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q530719|http://www.wikidata.org/entity/Q5284436"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6353264"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2280863"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7425153"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7914889|http://www.wikidata.org/entity/Q6750439|http://www.wikidata.org/entity/Q6122089|http://www.wikidata.org/entity/Q3522919"}, "Published": {"type": "literal", "value": "1996"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1996 film by Sibi Malayil"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q840872"}, "Title": {"type": "literal", "value": "Thank You for Smoking"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q314502"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1086549|http://www.wikidata.org/entity/Q314502"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15630234|http://www.wikidata.org/entity/Q2942050|http://www.wikidata.org/entity/Q2820073|http://www.wikidata.org/entity/Q2778807|http://www.wikidata.org/entity/Q2438469|http://www.wikidata.org/entity/Q1365036|http://www.wikidata.org/entity/Q731628|http://www.wikidata.org/entity/Q529411|http://www.wikidata.org/entity/Q467496|http://www.wikidata.org/entity/Q460355|http://www.wikidata.org/entity/Q452019|http://www.wikidata.org/entity/Q311314|http://www.wikidata.org/entity/Q296505|http://www.wikidata.org/entity/Q294372|http://www.wikidata.org/entity/Q269901|http://www.wikidata.org/entity/Q269894|http://www.wikidata.org/entity/Q229220|http://www.wikidata.org/entity/Q224159|http://www.wikidata.org/entity/Q192643|http://www.wikidata.org/entity/Q174346|http://www.wikidata.org/entity/Q171736|http://www.wikidata.org/entity/Q164328|http://www.wikidata.org/entity/Q150482"}, "Published": {"type": "literal", "value": "2006|2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2005 film by Jason Reitman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q953040"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18693376"}, "Title": {"type": "literal", "value": "Napapiirin sankarit 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11896917"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5411720"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16989439|http://www.wikidata.org/entity/Q11892451|http://www.wikidata.org/entity/Q11222319|http://www.wikidata.org/entity/Q6303995|http://www.wikidata.org/entity/Q3742950|http://www.wikidata.org/entity/Q3742931|http://www.wikidata.org/entity/Q468517"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2015 Finnish film directed by Teppo Airaksinen"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11902589"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4328871"}, "Title": {"type": "literal", "value": "\u041e \u0447\u0451\u043c \u0433\u043e\u0432\u043e\u0440\u044f\u0442 \u043c\u0443\u0436\u0447\u0438\u043d\u044b"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4171916"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4494681|http://www.wikidata.org/entity/Q4077949"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4494681|http://www.wikidata.org/entity/Q4254527|http://www.wikidata.org/entity/Q4157470|http://www.wikidata.org/entity/Q4077949"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q628165|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2010 film by Dmitriy Dyachenko"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3599039"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3938128|http://www.wikidata.org/entity/Q3680001"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2884676|http://www.wikidata.org/entity/Q1523696|http://www.wikidata.org/entity/Q1052746|http://www.wikidata.org/entity/Q1044154|http://www.wikidata.org/entity/Q1042623|http://www.wikidata.org/entity/Q1042185|http://www.wikidata.org/entity/Q433601|http://www.wikidata.org/entity/Q3944358|http://www.wikidata.org/entity/Q3940278|http://www.wikidata.org/entity/Q3856584|http://www.wikidata.org/entity/Q3851426|http://www.wikidata.org/entity/Q3749413|http://www.wikidata.org/entity/Q3617706"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "2006 film by Claudio Cupellini, Roan Johnson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1077221"}, "Title": {"type": "literal", "value": "Ice Age: A Mammoth Christmas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2701677"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7407579|http://www.wikidata.org/entity/Q2446929"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "25"}, "Description": {"type": "literal", "value": "2011 animation film directed by Karen Disher"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q885885|http://www.wikidata.org/entity/Q7306853"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5914661"}, "Title": {"type": "literal", "value": "Imp\u00e1vido"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6404813"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q53094"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Carlos Ther\u00f3n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q50682520"}, "Title": {"type": "literal", "value": "Once Machos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5664461"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Aldo Miyashiro"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19336182"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11529724"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4244195"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "2014 film by Daigo Matsui"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1091012"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q549513"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5364986"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1058963|http://www.wikidata.org/entity/Q1041739|http://www.wikidata.org/entity/Q934330|http://www.wikidata.org/entity/Q3234563|http://www.wikidata.org/entity/Q2271234|http://www.wikidata.org/entity/Q1188862|http://www.wikidata.org/entity/Q1154232"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q1339864|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Makoto Tanaka"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q875920"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q949718"}, "Title": {"type": "literal", "value": "The Battle of Shaker Heights"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6451383|http://www.wikidata.org/entity/Q5347580"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3640043|http://www.wikidata.org/entity/Q1384407|http://www.wikidata.org/entity/Q951113|http://www.wikidata.org/entity/Q570006|http://www.wikidata.org/entity/Q236696|http://www.wikidata.org/entity/Q235272|http://www.wikidata.org/entity/Q230686|http://www.wikidata.org/entity/Q180942|http://www.wikidata.org/entity/Q152542"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2003 film by Efram Potelle, Kyle Rankin"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6654572"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16354845"}, "Title": {"type": "literal", "value": "American Ultra"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2319466"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3302192"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20858955|http://www.wikidata.org/entity/Q18655744|http://www.wikidata.org/entity/Q15901095|http://www.wikidata.org/entity/Q7626601|http://www.wikidata.org/entity/Q6900353|http://www.wikidata.org/entity/Q6502479|http://www.wikidata.org/entity/Q6267426|http://www.wikidata.org/entity/Q6113318|http://www.wikidata.org/entity/Q1027551|http://www.wikidata.org/entity/Q948751|http://www.wikidata.org/entity/Q601032|http://www.wikidata.org/entity/Q516690|http://www.wikidata.org/entity/Q315763|http://www.wikidata.org/entity/Q295233|http://www.wikidata.org/entity/Q277978|http://www.wikidata.org/entity/Q235519|http://www.wikidata.org/entity/Q219512|http://www.wikidata.org/entity/Q126599"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16950433|http://www.wikidata.org/entity/Q2297927|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q224700"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2015 film by Nima Nourizadeh"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15869103"}, "Title": {"type": "literal", "value": "The Voorman Problem"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16866317"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16866317|http://www.wikidata.org/entity/Q16843495|http://www.wikidata.org/entity/Q40479"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q309486"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "13"}, "Description": {"type": "literal", "value": "2013 film by Mark Gill"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15091512"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2020499"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1562353"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16937488"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2013 film by Oliver Rihs"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28549113"}, "Title": {"type": "literal", "value": "Birthday Wish"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q31210486"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q31210486"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q31270372|http://www.wikidata.org/entity/Q28548642|http://www.wikidata.org/entity/Q28369701|http://www.wikidata.org/entity/Q28367228|http://www.wikidata.org/entity/Q27656034"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "13"}, "Description": {"type": "literal", "value": "2014 short by Ryan Casselman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1518840"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4778056"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13113668"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7499333|http://www.wikidata.org/entity/Q6150807|http://www.wikidata.org/entity/Q3534464|http://www.wikidata.org/entity/Q3520472|http://www.wikidata.org/entity/Q2721855"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Anwar Rasheed"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17586640"}, "Title": {"type": "literal", "value": "She's Dating the Gangster"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5053417"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "150"}, "Description": {"type": "literal", "value": "2014 film directed by Cathy Garcia-Molina"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3387234"}, "Title": {"type": "literal", "value": "Chillerama"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6211034|http://www.wikidata.org/entity/Q808769|http://www.wikidata.org/entity/Q466552|http://www.wikidata.org/entity/Q350710"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3072049|http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "2011 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1587974"}, "Title": {"type": "literal", "value": "Harvie Krumpet"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q349248"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q349248"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "23"}, "Description": {"type": "literal", "value": "2003 Australian animated short film directed by Adam Elliot"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4824145|http://www.wikidata.org/entity/Q5448979|http://www.wikidata.org/entity/Q7389008"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18890297"}, "Title": {"type": "literal", "value": "Dope"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7331376"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7331376"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16237562|http://www.wikidata.org/entity/Q16236922"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5897543|http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2015 film directed by Rick Famuyiwa"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1458649"}, "Title": {"type": "literal", "value": "Muppets from Space"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2037657"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1349850"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2761980|http://www.wikidata.org/entity/Q2284236|http://www.wikidata.org/entity/Q2272355|http://www.wikidata.org/entity/Q1029467|http://www.wikidata.org/entity/Q472282|http://www.wikidata.org/entity/Q468028|http://www.wikidata.org/entity/Q432437|http://www.wikidata.org/entity/Q320204|http://www.wikidata.org/entity/Q311319|http://www.wikidata.org/entity/Q294185|http://www.wikidata.org/entity/Q219653|http://www.wikidata.org/entity/Q211280|http://www.wikidata.org/entity/Q208558|http://www.wikidata.org/entity/Q192217|http://www.wikidata.org/entity/Q181936|http://www.wikidata.org/entity/Q174346|http://www.wikidata.org/entity/Q165283|http://www.wikidata.org/entity/Q44176|http://www.wikidata.org/entity/Q34939"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q761469|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "1999 film by Tim Hill"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3808345"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2812793"}, "Title": {"type": "literal", "value": "1981"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3430333"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3430333"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q786347|http://www.wikidata.org/entity/Q3430333|http://www.wikidata.org/entity/Q3386076|http://www.wikidata.org/entity/Q3169942|http://www.wikidata.org/entity/Q3471976|http://www.wikidata.org/entity/Q3442355"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Ricardo Trogi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28843477"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q726544"}, "Title": {"type": "literal", "value": "A Room for Romeo Brass"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1372134"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1372134"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1711840|http://www.wikidata.org/entity/Q1372134|http://www.wikidata.org/entity/Q590830|http://www.wikidata.org/entity/Q498389|http://www.wikidata.org/entity/Q434201|http://www.wikidata.org/entity/Q211283"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "1999 film by Shane Meadows"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9531|http://www.wikidata.org/entity/Q3880776"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7763853"}, "Title": {"type": "literal", "value": "The Shipment"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q68719"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2342292|http://www.wikidata.org/entity/Q318249|http://www.wikidata.org/entity/Q129831"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 film by Alex Wright"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18642028"}, "Title": {"type": "literal", "value": "Italiano medio"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q921998"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q921998"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13100765|http://www.wikidata.org/entity/Q3634692|http://www.wikidata.org/entity/Q2704786|http://www.wikidata.org/entity/Q921998|http://www.wikidata.org/entity/Q559570"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2015 film by Marcello Macchia"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6545547"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7156103"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5275557"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Pawan Kumar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15043359"}, "Title": {"type": "literal", "value": "\u09b2\u09c7 \u099b\u0995\u09cd\u0995\u09be"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3194810"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16199968|http://www.wikidata.org/entity/Q15963899|http://www.wikidata.org/entity/Q7336885|http://www.wikidata.org/entity/Q6467144|http://www.wikidata.org/entity/Q6400549|http://www.wikidata.org/entity/Q5266378|http://www.wikidata.org/entity/Q5250554|http://www.wikidata.org/entity/Q5248113|http://www.wikidata.org/entity/Q4918622|http://www.wikidata.org/entity/Q793987"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Raj Chakraborty"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19891438"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56641291"}, "Title": {"type": "literal", "value": "El coco"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50358500"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Juan Camilo Pinz\u00f3n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5580874"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6716074"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17414763"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4765768|http://www.wikidata.org/entity/Q2726352|http://www.wikidata.org/entity/Q2726196|http://www.wikidata.org/entity/Q704859|http://www.wikidata.org/entity/Q292967|http://www.wikidata.org/entity/Q292958|http://www.wikidata.org/entity/Q184885|http://www.wikidata.org/entity/Q146929"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 Bollywood film directed by Rohit Shetty"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22000396"}, "Title": {"type": "literal", "value": "Lila Lili"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3292840"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "1999 film by Marie Vermillard"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18693415"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18632044"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26838742|http://www.wikidata.org/entity/Q3210605"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Juho Kuosmanen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4053737"}, "Title": {"type": "literal", "value": "\u0401\u043b\u043a\u0438 3"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28498172|http://www.wikidata.org/entity/Q15072191|http://www.wikidata.org/entity/Q4222061|http://www.wikidata.org/entity/Q4130936|http://www.wikidata.org/entity/Q2833792"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7510890|http://www.wikidata.org/entity/Q344854"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4516120|http://www.wikidata.org/entity/Q4494015|http://www.wikidata.org/entity/Q4267991|http://www.wikidata.org/entity/Q3479732|http://www.wikidata.org/entity/Q1964037|http://www.wikidata.org/entity/Q1385036|http://www.wikidata.org/entity/Q442830|http://www.wikidata.org/entity/Q247846|http://www.wikidata.org/entity/Q15064549|http://www.wikidata.org/entity/Q4527472"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2013 film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2892410"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16255287"}, "Title": {"type": "literal", "value": "\u0935\u0947\u0932\u0915\u092e \u092c\u0948\u0915"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q652149"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q652149"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q313956"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Anees Bazmee"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16606856"}, "Title": {"type": "literal", "value": "Smetto quando voglio"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16611774"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16611774"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16538351|http://www.wikidata.org/entity/Q16167620|http://www.wikidata.org/entity/Q3972506|http://www.wikidata.org/entity/Q3956291|http://www.wikidata.org/entity/Q3904256|http://www.wikidata.org/entity/Q3893835|http://www.wikidata.org/entity/Q3836986|http://www.wikidata.org/entity/Q3719608|http://www.wikidata.org/entity/Q3338344|http://www.wikidata.org/entity/Q1681812|http://www.wikidata.org/entity/Q1006624|http://www.wikidata.org/entity/Q511290"}, "Published": {"type": "literal", "value": "2018|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2014 film by Sydney Sibilia"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3739211"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q62815124"}, "Title": {"type": "literal", "value": "Die Hochzeitsverplaner"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28154593"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23565248|http://www.wikidata.org/entity/Q17537021|http://www.wikidata.org/entity/Q2077097|http://www.wikidata.org/entity/Q111025|http://www.wikidata.org/entity/Q103623|http://www.wikidata.org/entity/Q98927"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Christina Schiewe"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5916969"}, "Title": {"type": "literal", "value": "Inspiraci\u00f3n"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9098328"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2859568|http://www.wikidata.org/entity/Q2825065|http://www.wikidata.org/entity/Q237426"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 film by \u00c1ngel Mario Huerta Cant\u00fa"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10469850"}, "Title": {"type": "literal", "value": "Dessa Lund"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27517259"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Filip Orrling"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q51886007"}, "Title": {"type": "literal", "value": "El \u00c1ngel"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2843557"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2843557|http://www.wikidata.org/entity/Q2273158"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56070143|http://www.wikidata.org/entity/Q5983571|http://www.wikidata.org/entity/Q5798330|http://www.wikidata.org/entity/Q5766607|http://www.wikidata.org/entity/Q3306307|http://www.wikidata.org/entity/Q2203927|http://www.wikidata.org/entity/Q234788"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q645928|http://www.wikidata.org/entity/Q53094"}, "Duration": {"type": "literal", "value": "118"}, "Description": {"type": "literal", "value": "2018 Argentine film directed by Luis Ortega"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1143518|http://www.wikidata.org/entity/Q1324070|http://www.wikidata.org/entity/Q6973624|http://www.wikidata.org/entity/Q7883673|http://www.wikidata.org/entity/Q29863492"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16249670"}, "Title": {"type": "literal", "value": "The D Train"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3162786"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3162786"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20676426|http://www.wikidata.org/entity/Q15679593|http://www.wikidata.org/entity/Q15632518|http://www.wikidata.org/entity/Q3847681|http://www.wikidata.org/entity/Q2115130|http://www.wikidata.org/entity/Q1378351|http://www.wikidata.org/entity/Q485901|http://www.wikidata.org/entity/Q483907|http://www.wikidata.org/entity/Q363386|http://www.wikidata.org/entity/Q320204|http://www.wikidata.org/entity/Q271986"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2015 film by Jarrad Paul and Andrew Mogel"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q72081"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q212792"}, "Title": {"type": "literal", "value": "Bolt"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1077862|http://www.wikidata.org/entity/Q1018606"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5213495|http://www.wikidata.org/entity/Q1077862|http://www.wikidata.org/entity/Q201641"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q439358"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28968258|http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2008 animated Disney film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191224|http://www.wikidata.org/entity/Q1047410"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12124774"}, "Title": {"type": "literal", "value": "High School"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6258785"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7610620"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19948176|http://www.wikidata.org/entity/Q15542608|http://www.wikidata.org/entity/Q5536595|http://www.wikidata.org/entity/Q5356821|http://www.wikidata.org/entity/Q4356272|http://www.wikidata.org/entity/Q3296147|http://www.wikidata.org/entity/Q1772138|http://www.wikidata.org/entity/Q1145528|http://www.wikidata.org/entity/Q741555|http://www.wikidata.org/entity/Q685861|http://www.wikidata.org/entity/Q553359|http://www.wikidata.org/entity/Q356637|http://www.wikidata.org/entity/Q318134|http://www.wikidata.org/entity/Q313653|http://www.wikidata.org/entity/Q270660|http://www.wikidata.org/entity/Q228891|http://www.wikidata.org/entity/Q104514"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by John Stalberg, Jr."}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7628112|http://www.wikidata.org/entity/Q2450848"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15117319"}, "Title": {"type": "literal", "value": "The Starving Games"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q936338|http://www.wikidata.org/entity/Q302690"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q936338|http://www.wikidata.org/entity/Q302690"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3827891|http://www.wikidata.org/entity/Q3339752|http://www.wikidata.org/entity/Q1992569|http://www.wikidata.org/entity/Q745092|http://www.wikidata.org/entity/Q449947|http://www.wikidata.org/entity/Q237612"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q622548|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2013 film by Jason Friedberg and Aaron Seltzer"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17295785"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60854393"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3745115"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Filippo Bologna"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7820223"}, "Title": {"type": "literal", "value": "Tomorrow's Yesterday"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16208185"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16208185"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Elan Gale"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55655374"}, "Title": {"type": "literal", "value": "\u05d4\u05d1\u05dc\u05ea\u05d9 \u05e8\u05e9\u05de\u05d9\u05d9\u05dd"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56217883"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56217883"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12404882|http://www.wikidata.org/entity/Q6967241|http://www.wikidata.org/entity/Q2911752"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Eliran Malka"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60526319"}, "Title": {"type": "literal", "value": "Schnitzel de Luxe"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1650253"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1663125"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25229879|http://www.wikidata.org/entity/Q21032015|http://www.wikidata.org/entity/Q2435555|http://www.wikidata.org/entity/Q2419577|http://www.wikidata.org/entity/Q2130280|http://www.wikidata.org/entity/Q1663125|http://www.wikidata.org/entity/Q500577|http://www.wikidata.org/entity/Q126496|http://www.wikidata.org/entity/Q100417|http://www.wikidata.org/entity/Q95316|http://www.wikidata.org/entity/Q76178"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film by Micha Lewinsky"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28057942"}, "Title": {"type": "literal", "value": "Dou\u0103 lozuri"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28589237"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28589237"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15515779|http://www.wikidata.org/entity/Q3622994"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2016 film by Paul Negoescu"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23722461"}, "Title": {"type": "literal", "value": "M\u00e9decin de campagne"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2364139"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q47409431|http://www.wikidata.org/entity/Q2892185|http://www.wikidata.org/entity/Q2364139"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3155029|http://www.wikidata.org/entity/Q3092547|http://www.wikidata.org/entity/Q2966416|http://www.wikidata.org/entity/Q2405609|http://www.wikidata.org/entity/Q600051|http://www.wikidata.org/entity/Q273342"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2016 film by Thomas Lilti"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7367370"}, "Title": {"type": "literal", "value": "Rosarigasinos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7357346"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7357346"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28466103|http://www.wikidata.org/entity/Q20894981|http://www.wikidata.org/entity/Q6122288|http://www.wikidata.org/entity/Q6004043|http://www.wikidata.org/entity/Q5831006|http://www.wikidata.org/entity/Q5796159|http://www.wikidata.org/entity/Q5772103|http://www.wikidata.org/entity/Q5710826|http://www.wikidata.org/entity/Q4888833|http://www.wikidata.org/entity/Q1393963"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2001 film by Rodrigo Grande"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2079962"}, "Title": {"type": "literal", "value": "L'Art d'aimer"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q532505"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q532505"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3380282|http://www.wikidata.org/entity/Q3219528|http://www.wikidata.org/entity/Q1930523|http://www.wikidata.org/entity/Q1871396|http://www.wikidata.org/entity/Q1394368|http://www.wikidata.org/entity/Q1389781|http://www.wikidata.org/entity/Q600051|http://www.wikidata.org/entity/Q532505|http://www.wikidata.org/entity/Q497770|http://www.wikidata.org/entity/Q465157|http://www.wikidata.org/entity/Q274759|http://www.wikidata.org/entity/Q268690|http://www.wikidata.org/entity/Q267542|http://www.wikidata.org/entity/Q240157|http://www.wikidata.org/entity/Q239033"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2012 film by Emmanuel Mouret"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27480769"}, "Title": {"type": "literal", "value": "Lady Bird"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q271967"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q271967"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q165625|http://www.wikidata.org/entity/Q3647258|http://www.wikidata.org/entity/Q2267853|http://www.wikidata.org/entity/Q984572|http://www.wikidata.org/entity/Q549948|http://www.wikidata.org/entity/Q504175|http://www.wikidata.org/entity/Q258246|http://www.wikidata.org/entity/Q256127|http://www.wikidata.org/entity/Q242792|http://www.wikidata.org/entity/Q236711|http://www.wikidata.org/entity/Q228603|http://www.wikidata.org/entity/Q20973709|http://www.wikidata.org/entity/Q20737382|http://www.wikidata.org/entity/Q20732067|http://www.wikidata.org/entity/Q19877770|http://www.wikidata.org/entity/Q17488953"}, "Published": {"type": "literal", "value": "2017|2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q192881"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2017 film by Greta Gerwig"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16248298"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19824669"}, "Title": {"type": "literal", "value": "Addicted to Fresno"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q441722"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23761740"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21401329|http://www.wikidata.org/entity/Q16821316|http://www.wikidata.org/entity/Q15634765|http://www.wikidata.org/entity/Q6443390|http://www.wikidata.org/entity/Q6187500|http://www.wikidata.org/entity/Q3703066|http://www.wikidata.org/entity/Q3330735|http://www.wikidata.org/entity/Q919870|http://www.wikidata.org/entity/Q528126|http://www.wikidata.org/entity/Q239145|http://www.wikidata.org/entity/Q236189|http://www.wikidata.org/entity/Q234207|http://www.wikidata.org/entity/Q233347|http://www.wikidata.org/entity/Q210547|http://www.wikidata.org/entity/Q14535"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Jamie Babbit"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42311467"}, "Title": {"type": "literal", "value": "Lucky Loser \u2013 Ein Sommer in der Bredouille"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18026371"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Nico Sommer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7242285"}, "Title": {"type": "literal", "value": "Pretty Smart"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q144354"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7183001|http://www.wikidata.org/entity/Q5160586|http://www.wikidata.org/entity/Q4984217|http://www.wikidata.org/entity/Q957711|http://www.wikidata.org/entity/Q533883|http://www.wikidata.org/entity/Q254789|http://www.wikidata.org/entity/Q215976"}, "Published": {"type": "literal", "value": "1987"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1987 film by Dimitri Logothetis"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3842369"}, "Title": {"type": "literal", "value": "Madly Madagascar"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5239955"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5239955"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q47100"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "64"}, "Description": {"type": "literal", "value": "2013 film by David Soren"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q500088|http://www.wikidata.org/entity/Q533547"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26884345"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3118587"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17013749|http://www.wikidata.org/entity/Q645928|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "61"}, "Description": {"type": "literal", "value": "2016 film by Gregory Monro"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4327809"}, "Title": {"type": "literal", "value": "The Night We Called It a Day"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2059818"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7173307"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14902479|http://www.wikidata.org/entity/Q7821843|http://www.wikidata.org/entity/Q5525013|http://www.wikidata.org/entity/Q4666385|http://www.wikidata.org/entity/Q381768|http://www.wikidata.org/entity/Q310217|http://www.wikidata.org/entity/Q228717|http://www.wikidata.org/entity/Q215366|http://www.wikidata.org/entity/Q176455|http://www.wikidata.org/entity/Q102711"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film directed by Paul Goldman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q860734"}, "Title": {"type": "literal", "value": "Life as We Know It"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q978649"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q504390|http://www.wikidata.org/entity/Q310322|http://www.wikidata.org/entity/Q262659|http://www.wikidata.org/entity/Q239069|http://www.wikidata.org/entity/Q229048|http://www.wikidata.org/entity/Q210462|http://www.wikidata.org/entity/Q192955|http://www.wikidata.org/entity/Q189554|http://www.wikidata.org/entity/Q155449|http://www.wikidata.org/entity/Q53651|http://www.wikidata.org/entity/Q19794|http://www.wikidata.org/entity/Q23542812|http://www.wikidata.org/entity/Q23301771|http://www.wikidata.org/entity/Q13560498|http://www.wikidata.org/entity/Q2040329|http://www.wikidata.org/entity/Q1341761|http://www.wikidata.org/entity/Q972469|http://www.wikidata.org/entity/Q612512"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "2010 film by Greg Berlanti"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q622668|http://www.wikidata.org/entity/Q3109988"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13423400"}, "Title": {"type": "literal", "value": "The Kings of Summer"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17091099"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16201711"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q230510|http://www.wikidata.org/entity/Q16239393|http://www.wikidata.org/entity/Q16236368|http://www.wikidata.org/entity/Q6755544|http://www.wikidata.org/entity/Q6443390|http://www.wikidata.org/entity/Q4025857|http://www.wikidata.org/entity/Q2985242|http://www.wikidata.org/entity/Q1985488|http://www.wikidata.org/entity/Q601032|http://www.wikidata.org/entity/Q310429|http://www.wikidata.org/entity/Q235328|http://www.wikidata.org/entity/Q234137"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2013 film by Jordan Vogt-Roberts"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2902139"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55597889"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2966222"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q315243"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Christophe Duthuron"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14650496"}, "Title": {"type": "literal", "value": "Fast and Furious 7 (Furious 7)"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q374286"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5107501"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q184219|http://www.wikidata.org/entity/Q178166|http://www.wikidata.org/entity/Q169963|http://www.wikidata.org/entity/Q103157|http://www.wikidata.org/entity/Q10738|http://www.wikidata.org/entity/Q3342658|http://www.wikidata.org/entity/Q3179817|http://www.wikidata.org/entity/Q2748803|http://www.wikidata.org/entity/Q722001|http://www.wikidata.org/entity/Q552997|http://www.wikidata.org/entity/Q359491|http://www.wikidata.org/entity/Q317563|http://www.wikidata.org/entity/Q312173|http://www.wikidata.org/entity/Q311232|http://www.wikidata.org/entity/Q298682|http://www.wikidata.org/entity/Q298551|http://www.wikidata.org/entity/Q242201|http://www.wikidata.org/entity/Q236269|http://www.wikidata.org/entity/Q230827|http://www.wikidata.org/entity/Q230123|http://www.wikidata.org/entity/Q221155|http://www.wikidata.org/entity/Q213864|http://www.wikidata.org/entity/Q193676|http://www.wikidata.org/entity/Q185654|http://www.wikidata.org/entity/Q24699898|http://www.wikidata.org/entity/Q20658844|http://www.wikidata.org/entity/Q16739195|http://www.wikidata.org/entity/Q16298556|http://www.wikidata.org/entity/Q7685100|http://www.wikidata.org/entity/Q6968794|http://www.wikidata.org/entity/Q6278450|http://www.wikidata.org/entity/Q6223403|http://www.wikidata.org/entity/Q4971671|http://www.wikidata.org/entity/Q4724794|http://www.wikidata.org/entity/Q3938395"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q496523|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "137"}, "Description": {"type": "literal", "value": "2015 film by James Wan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q31271052"}, "Title": {"type": "literal", "value": "68 Kill"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3998297"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q313501"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Trent Haaga"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7752426"}, "Title": {"type": "literal", "value": "The Mother of Invention"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6285163"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1334725|http://www.wikidata.org/entity/Q1189470|http://www.wikidata.org/entity/Q1141737|http://www.wikidata.org/entity/Q718382|http://www.wikidata.org/entity/Q258064"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Joseph M. Petrick"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25583402"}, "Title": {"type": "literal", "value": "Die Erfindung der Liebe"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q97919"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2087104|http://www.wikidata.org/entity/Q97919"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17325031|http://www.wikidata.org/entity/Q1896047|http://www.wikidata.org/entity/Q1251791|http://www.wikidata.org/entity/Q111267|http://www.wikidata.org/entity/Q110710|http://www.wikidata.org/entity/Q106781|http://www.wikidata.org/entity/Q78441|http://www.wikidata.org/entity/Q61322"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Lola Randl"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q806440"}, "Title": {"type": "literal", "value": "Bang Boom Bang \u2013 Ein todsicheres Ding"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2078661"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2336552|http://www.wikidata.org/entity/Q2078661"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q90869|http://www.wikidata.org/entity/Q90041|http://www.wikidata.org/entity/Q77758|http://www.wikidata.org/entity/Q74258|http://www.wikidata.org/entity/Q57391|http://www.wikidata.org/entity/Q1901626|http://www.wikidata.org/entity/Q1900519|http://www.wikidata.org/entity/Q1747632|http://www.wikidata.org/entity/Q1745759|http://www.wikidata.org/entity/Q1663651|http://www.wikidata.org/entity/Q1597348|http://www.wikidata.org/entity/Q1416429|http://www.wikidata.org/entity/Q1201218|http://www.wikidata.org/entity/Q978425|http://www.wikidata.org/entity/Q977720|http://www.wikidata.org/entity/Q546535|http://www.wikidata.org/entity/Q243132|http://www.wikidata.org/entity/Q111262|http://www.wikidata.org/entity/Q103918|http://www.wikidata.org/entity/Q100721|http://www.wikidata.org/entity/Q97604|http://www.wikidata.org/entity/Q95580|http://www.wikidata.org/entity/Q92005|http://www.wikidata.org/entity/Q23059927|http://www.wikidata.org/entity/Q2577560|http://www.wikidata.org/entity/Q2078661|http://www.wikidata.org/entity/Q2020358|http://www.wikidata.org/entity/Q1927038"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "1999 film by Peter Thorwarth"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15819219"}, "Title": {"type": "literal", "value": "Hannas Reise"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15450497"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2013 film by Julia Heinz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29032887"}, "Title": {"type": "literal", "value": "\u0422\u0440\u044f\u043f\u0438\u0447\u043d\u044b\u0439 \u0441\u043e\u044e\u0437"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28099355"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28099355"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28760362|http://www.wikidata.org/entity/Q21183528|http://www.wikidata.org/entity/Q4516046"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q775344"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2015 film directed by Mikha\u00efl Mestetski"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16711321"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17450797"}, "Title": {"type": "literal", "value": "D\u00fc\u011f\u00fcn Dernek"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6052251"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6052251"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6083959"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film directed by Sel\u00e7uk Aydemir"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10668100"}, "Title": {"type": "literal", "value": "Simon & Malou"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q33436947|http://www.wikidata.org/entity/Q1387115"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q38051206"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q42302646|http://www.wikidata.org/entity/Q40523600|http://www.wikidata.org/entity/Q12306243|http://www.wikidata.org/entity/Q6858699|http://www.wikidata.org/entity/Q4955475|http://www.wikidata.org/entity/Q1760754|http://www.wikidata.org/entity/Q533028|http://www.wikidata.org/entity/Q468499|http://www.wikidata.org/entity/Q448968|http://www.wikidata.org/entity/Q347848|http://www.wikidata.org/entity/Q273929|http://www.wikidata.org/entity/Q28262|http://www.wikidata.org/entity/Q40523594|http://www.wikidata.org/entity/Q39141266|http://www.wikidata.org/entity/Q37490969|http://www.wikidata.org/entity/Q12333598|http://www.wikidata.org/entity/Q12331543|http://www.wikidata.org/entity/Q12327197|http://www.wikidata.org/entity/Q12326885|http://www.wikidata.org/entity/Q12326259"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Theis M\u00f8lstr\u00f8m Christensen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11268003"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7402640"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7334360|http://www.wikidata.org/entity/Q7238865|http://www.wikidata.org/entity/Q6480008|http://www.wikidata.org/entity/Q6167686|http://www.wikidata.org/entity/Q4900935|http://www.wikidata.org/entity/Q4806897|http://www.wikidata.org/entity/Q1749451|http://www.wikidata.org/entity/Q277725"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Saji Surendran"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3547550"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q492153"}, "Title": {"type": "literal", "value": "\ub9c8\ud30c\ub3c4 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q483028"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1526592|http://www.wikidata.org/entity/Q489041"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Lee Sang-hoon"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29034242"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28857109"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2017 film by Max Nardari"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3824600"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2639375"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2639375|http://www.wikidata.org/entity/Q740614"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3972434|http://www.wikidata.org/entity/Q3901020|http://www.wikidata.org/entity/Q3852905|http://www.wikidata.org/entity/Q3847827|http://www.wikidata.org/entity/Q3749409|http://www.wikidata.org/entity/Q3707221|http://www.wikidata.org/entity/Q3680240|http://www.wikidata.org/entity/Q3614130|http://www.wikidata.org/entity/Q740614|http://www.wikidata.org/entity/Q735283|http://www.wikidata.org/entity/Q638282"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2005 film by Alberto Ferrari"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3939871"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13537994"}, "Title": {"type": "literal", "value": "Lovely Rita"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q79003"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q79003"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2002|2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 film directed by Jessica Hausner"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12243582"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12250381"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7063876|http://www.wikidata.org/entity/Q2827647|http://www.wikidata.org/entity/Q1386100|http://www.wikidata.org/entity/Q591801"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Wael Ehsan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21554908"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028738"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028738"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028738"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Nicolas Charlet"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7156741"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16734141"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16734141"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7917177|http://www.wikidata.org/entity/Q4662722|http://www.wikidata.org/entity/Q3494299|http://www.wikidata.org/entity/Q2726196|http://www.wikidata.org/entity/Q748926|http://www.wikidata.org/entity/Q330315|http://www.wikidata.org/entity/Q292967"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 Bollywood film directed by Prahasith Painter"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6933585"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q218496"}, "Title": {"type": "literal", "value": "De ofrivilliga"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q211228"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q211228|http://www.wikidata.org/entity/Q16633043"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4963080|http://www.wikidata.org/entity/Q4956982|http://www.wikidata.org/entity/Q4947347|http://www.wikidata.org/entity/Q440826|http://www.wikidata.org/entity/Q16983758|http://www.wikidata.org/entity/Q6201299|http://www.wikidata.org/entity/Q5983838|http://www.wikidata.org/entity/Q4984760|http://www.wikidata.org/entity/Q4967419"}, "Published": {"type": "literal", "value": "2009|2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2008 Swedish film directed by Ruben \u00d6stlund"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43531696"}, "Title": {"type": "literal", "value": "Wilkommen bei Habib"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q43533609"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q43533609"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15431507|http://www.wikidata.org/entity/Q2511663|http://www.wikidata.org/entity/Q1745418|http://www.wikidata.org/entity/Q1598954|http://www.wikidata.org/entity/Q1533711|http://www.wikidata.org/entity/Q1292000|http://www.wikidata.org/entity/Q1010197|http://www.wikidata.org/entity/Q106466"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "2014 film by Michael Baumann"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60998816"}, "Title": {"type": "literal", "value": "Voll Rita!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23947040"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50129212|http://www.wikidata.org/entity/Q48283663|http://www.wikidata.org/entity/Q42765736|http://www.wikidata.org/entity/Q2475762|http://www.wikidata.org/entity/Q104364"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film by Malte Wirtz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22774118"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q708456"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Chapman To"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20111159"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17994032"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q483577"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q59931"}, "Title": {"type": "literal", "value": "Garden State"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q139330"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q139330"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q315099|http://www.wikidata.org/entity/Q298694|http://www.wikidata.org/entity/Q239069|http://www.wikidata.org/entity/Q223091|http://www.wikidata.org/entity/Q190972|http://www.wikidata.org/entity/Q139330|http://www.wikidata.org/entity/Q83677|http://www.wikidata.org/entity/Q37876|http://www.wikidata.org/entity/Q3195|http://www.wikidata.org/entity/Q5537604|http://www.wikidata.org/entity/Q4817144|http://www.wikidata.org/entity/Q4716763|http://www.wikidata.org/entity/Q3539595|http://www.wikidata.org/entity/Q2558129|http://www.wikidata.org/entity/Q2255729|http://www.wikidata.org/entity/Q976310|http://www.wikidata.org/entity/Q629696|http://www.wikidata.org/entity/Q461762|http://www.wikidata.org/entity/Q439804"}, "Published": {"type": "literal", "value": "2004|2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2004 comedy-drama film directed by Zach Braff"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q953040"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q277157"}, "Title": {"type": "literal", "value": "Cloudy with a Chance of Meatballs 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q320232|http://www.wikidata.org/entity/Q16864574"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q342636|http://www.wikidata.org/entity/Q6273224"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2013 film by Cody Cameron and Kris Pearn"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1783801|http://www.wikidata.org/entity/Q186941|http://www.wikidata.org/entity/Q1416835"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25218759"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q527526"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q527526"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Michael Seater"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2827475"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2829867"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3470839"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Alain Gomis"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3025926"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4023328"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7173725|http://www.wikidata.org/entity/Q6437800|http://www.wikidata.org/entity/Q5596223|http://www.wikidata.org/entity/Q5413181|http://www.wikidata.org/entity/Q5229264|http://www.wikidata.org/entity/Q5213896|http://www.wikidata.org/entity/Q4931969|http://www.wikidata.org/entity/Q4355640|http://www.wikidata.org/entity/Q4355628|http://www.wikidata.org/entity/Q3549518|http://www.wikidata.org/entity/Q3547262|http://www.wikidata.org/entity/Q3545128|http://www.wikidata.org/entity/Q3543561|http://www.wikidata.org/entity/Q3275802|http://www.wikidata.org/entity/Q3155993|http://www.wikidata.org/entity/Q3143055|http://www.wikidata.org/entity/Q3097943|http://www.wikidata.org/entity/Q2534772|http://www.wikidata.org/entity/Q2490599|http://www.wikidata.org/entity/Q1645932|http://www.wikidata.org/entity/Q1193042|http://www.wikidata.org/entity/Q1067530|http://www.wikidata.org/entity/Q901546|http://www.wikidata.org/entity/Q579804|http://www.wikidata.org/entity/Q561449"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Y\u016bdai Yamaguchi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4530766"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q971159"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q971159"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13860870"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Tom Six"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1286551"}, "Title": {"type": "literal", "value": "Jack Frost"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3541033"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1320761"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19663780|http://www.wikidata.org/entity/Q7976224|http://www.wikidata.org/entity/Q3476191|http://www.wikidata.org/entity/Q2846658|http://www.wikidata.org/entity/Q2059493|http://www.wikidata.org/entity/Q1726175|http://www.wikidata.org/entity/Q1706810|http://www.wikidata.org/entity/Q1328845|http://www.wikidata.org/entity/Q1320573|http://www.wikidata.org/entity/Q505900|http://www.wikidata.org/entity/Q433138|http://www.wikidata.org/entity/Q401963|http://www.wikidata.org/entity/Q364881|http://www.wikidata.org/entity/Q342430|http://www.wikidata.org/entity/Q318509|http://www.wikidata.org/entity/Q291024|http://www.wikidata.org/entity/Q272130|http://www.wikidata.org/entity/Q236842|http://www.wikidata.org/entity/Q138005|http://www.wikidata.org/entity/Q127548"}, "Published": {"type": "literal", "value": "1999|1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "1998 Christmas comedy fantasy drama directed by Troy Miller"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q219392"}, "Title": {"type": "literal", "value": "\u0939\u093e\u0909\u0938\u092b\u0941\u0932 \u0968"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3469329"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3469329"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3046959|http://www.wikidata.org/entity/Q2700318|http://www.wikidata.org/entity/Q2312801|http://www.wikidata.org/entity/Q983571|http://www.wikidata.org/entity/Q834338|http://www.wikidata.org/entity/Q738291|http://www.wikidata.org/entity/Q470226|http://www.wikidata.org/entity/Q313025|http://www.wikidata.org/entity/Q258820|http://www.wikidata.org/entity/Q233748"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Sajid Khan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3334902"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13648340"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3136157"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12498974"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Rudy Soedjarwo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30740090"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30728789"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30728789|http://www.wikidata.org/entity/Q28872647|http://www.wikidata.org/entity/Q3591071|http://www.wikidata.org/entity/Q3028817|http://www.wikidata.org/entity/Q2980638|http://www.wikidata.org/entity/Q1569147|http://www.wikidata.org/entity/Q1450857|http://www.wikidata.org/entity/Q289032"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Maxime Motte"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4271818"}, "Title": {"type": "literal", "value": "\u041b\u044e\u0431\u043e\u0432\u044c \u0432 \u0431\u043e\u043b\u044c\u0448\u043e\u043c \u0433\u043e\u0440\u043e\u0434\u0435 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4102539"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4536851|http://www.wikidata.org/entity/Q3874799"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3874799|http://www.wikidata.org/entity/Q2832626|http://www.wikidata.org/entity/Q397682"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2010 film by Marius Vaisbergas"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1297912"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5444055"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film directed by Ferenc T\u00f6r\u00f6k"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4546830"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4790701"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4790701"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6360976|http://www.wikidata.org/entity/Q4779120|http://www.wikidata.org/entity/Q1968297|http://www.wikidata.org/entity/Q75862"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 Bengali-language film directed by Arin Paul"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q9054221"}, "Title": {"type": "literal", "value": "Pagafantas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8250879"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8250879"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12267020|http://www.wikidata.org/entity/Q6457544|http://www.wikidata.org/entity/Q6174843|http://www.wikidata.org/entity/Q3320887|http://www.wikidata.org/entity/Q2888100|http://www.wikidata.org/entity/Q2447289|http://www.wikidata.org/entity/Q1267731|http://www.wikidata.org/entity/Q449584|http://www.wikidata.org/entity/Q449004|http://www.wikidata.org/entity/Q16344761"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Borja Cobeaga"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6190232"}, "Title": {"type": "literal", "value": "Jewtopia"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4980101"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q956021|http://www.wikidata.org/entity/Q575879|http://www.wikidata.org/entity/Q449822|http://www.wikidata.org/entity/Q371786|http://www.wikidata.org/entity/Q353755|http://www.wikidata.org/entity/Q296524|http://www.wikidata.org/entity/Q295148|http://www.wikidata.org/entity/Q271144|http://www.wikidata.org/entity/Q258470|http://www.wikidata.org/entity/Q234715|http://www.wikidata.org/entity/Q234514|http://www.wikidata.org/entity/Q234144|http://www.wikidata.org/entity/Q229440|http://www.wikidata.org/entity/Q175104"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 comedy film directed by Bryan Fogel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10546935"}, "Title": {"type": "literal", "value": "Koffein"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6255580"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6255580"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q512721"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Henrik JP \u00c5kesson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18394204"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7396737"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7396737"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5871909|http://www.wikidata.org/entity/Q3496304"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Sachin Gupta"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19824756"}, "Title": {"type": "literal", "value": "La Vie en grand"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3298888"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Mathieu Vadepied"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20970745"}, "Title": {"type": "literal", "value": "Tutte le vogliono"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20971246"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2015 italian film directed by Alessio Maria Federici"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30110004"}, "Title": {"type": "literal", "value": "\u0411\u043b\u043e\u043a\u0431\u0430\u0441\u0442\u0435\u0440"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4123613"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4123613"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4519628|http://www.wikidata.org/entity/Q4516120|http://www.wikidata.org/entity/Q4506333|http://www.wikidata.org/entity/Q4478248|http://www.wikidata.org/entity/Q4301044|http://www.wikidata.org/entity/Q4199518|http://www.wikidata.org/entity/Q4176090|http://www.wikidata.org/entity/Q2642325|http://www.wikidata.org/entity/Q2373179|http://www.wikidata.org/entity/Q536524|http://www.wikidata.org/entity/Q262576"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q83267"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2017 film by Roman Volobuev"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6070309"}, "Title": {"type": "literal", "value": "Dedemin \u0130nsanlar\u0131"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q272718"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q272718"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25476953|http://www.wikidata.org/entity/Q12812387|http://www.wikidata.org/entity/Q6098980|http://www.wikidata.org/entity/Q6097730|http://www.wikidata.org/entity/Q6096796|http://www.wikidata.org/entity/Q6095847|http://www.wikidata.org/entity/Q6082009|http://www.wikidata.org/entity/Q6070687|http://www.wikidata.org/entity/Q6011572|http://www.wikidata.org/entity/Q5423258|http://www.wikidata.org/entity/Q3446906|http://www.wikidata.org/entity/Q1264350|http://www.wikidata.org/entity/Q962106|http://www.wikidata.org/entity/Q913571|http://www.wikidata.org/entity/Q334921"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by \u00c7a\u011fan Irmak"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5575012"}, "Title": {"type": "literal", "value": "Go for a Take"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5667433"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1972"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1972 film by Harry Booth"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25167044"}, "Title": {"type": "literal", "value": "Ralph Breaks the Internet"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21411187|http://www.wikidata.org/entity/Q2499079"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21411187"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019|2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1436734|http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "2018 animated film produced by Walt Disney Animation Studios"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1047410|http://www.wikidata.org/entity/Q191224"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q342637"}, "Title": {"type": "literal", "value": "Kunsten at gr\u00e6de i kor"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12331721"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12303928"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11292872|http://www.wikidata.org/entity/Q4990736|http://www.wikidata.org/entity/Q4982822|http://www.wikidata.org/entity/Q4961227|http://www.wikidata.org/entity/Q1797681|http://www.wikidata.org/entity/Q879360|http://www.wikidata.org/entity/Q12343120|http://www.wikidata.org/entity/Q12339791|http://www.wikidata.org/entity/Q12333700|http://www.wikidata.org/entity/Q12333583|http://www.wikidata.org/entity/Q12320467|http://www.wikidata.org/entity/Q12319113|http://www.wikidata.org/entity/Q12315378|http://www.wikidata.org/entity/Q12313931|http://www.wikidata.org/entity/Q12305070"}, "Published": {"type": "literal", "value": "2007|2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Peter Sch\u00f8nau Fog"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17903453"}, "Title": {"type": "literal", "value": "Ride Along 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2005037"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3116203|http://www.wikidata.org/entity/Q16225521|http://www.wikidata.org/entity/Q6789004"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q214227|http://www.wikidata.org/entity/Q173637|http://www.wikidata.org/entity/Q73362|http://www.wikidata.org/entity/Q5567967|http://www.wikidata.org/entity/Q3938395|http://www.wikidata.org/entity/Q748404|http://www.wikidata.org/entity/Q618352|http://www.wikidata.org/entity/Q447960|http://www.wikidata.org/entity/Q440910|http://www.wikidata.org/entity/Q311232|http://www.wikidata.org/entity/Q268549|http://www.wikidata.org/entity/Q240472|http://www.wikidata.org/entity/Q236475"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q4984974|http://www.wikidata.org/entity/Q188473"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2016 film by Tim Story"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6206606"}, "Title": {"type": "literal", "value": "Job, czyli ostatnia szara kom\u00f3rka"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4315835"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4315835"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6440146|http://www.wikidata.org/entity/Q2911384|http://www.wikidata.org/entity/Q1411767|http://www.wikidata.org/entity/Q394923"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Konrad Niewolski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1751661"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q320567"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2049648"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1379165"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Edwin Brienen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16323870"}, "Title": {"type": "literal", "value": "Kolb\u00f8ttefabrikken"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29014822"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q40012331|http://www.wikidata.org/entity/Q40012069|http://www.wikidata.org/entity/Q12335353|http://www.wikidata.org/entity/Q12330060|http://www.wikidata.org/entity/Q12327036|http://www.wikidata.org/entity/Q12325626|http://www.wikidata.org/entity/Q12323795|http://www.wikidata.org/entity/Q12319212|http://www.wikidata.org/entity/Q11952430|http://www.wikidata.org/entity/Q3427562|http://www.wikidata.org/entity/Q1797681|http://www.wikidata.org/entity/Q730592|http://www.wikidata.org/entity/Q256395|http://www.wikidata.org/entity/Q207149"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Morten Boesdal Halvorsen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13426372"}, "Title": {"type": "literal", "value": "\u0418\u043d\u0442\u0438\u043c\u043d\u044b\u0435 \u043c\u0435\u0441\u0442\u0430"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15270257"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4228271"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film directed by Natalya Merkulova"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5246479"}, "Title": {"type": "literal", "value": "Dean Spanley"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7811331"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4707749"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2473636|http://www.wikidata.org/entity/Q529132|http://www.wikidata.org/entity/Q443961|http://www.wikidata.org/entity/Q363659|http://www.wikidata.org/entity/Q214309|http://www.wikidata.org/entity/Q103876"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2008 film by Toa Fraser"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4724802"}, "Title": {"type": "literal", "value": "Ali G, Aiii"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5925685"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29055"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29055"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2000 film by James Bobin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q35585241"}, "Title": {"type": "literal", "value": "\u062a\u0635\u0628\u062d \u0639\u0644\u0649 \u062e\u064a\u0631"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20422996"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20422996"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25455098|http://www.wikidata.org/entity/Q12241163|http://www.wikidata.org/entity/Q1391164"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Mohamed Samy"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1365512"}, "Title": {"type": "literal", "value": "Held Up"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2632767"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q171905"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "1999 film by Steve Rash"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q557387"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4956299"}, "Title": {"type": "literal", "value": "Bran Nue Dae"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7279354"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7307753"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7815122|http://www.wikidata.org/entity/Q7355844|http://www.wikidata.org/entity/Q3057304|http://www.wikidata.org/entity/Q2482522|http://www.wikidata.org/entity/Q2380064|http://www.wikidata.org/entity/Q568179|http://www.wikidata.org/entity/Q443892|http://www.wikidata.org/entity/Q240222|http://www.wikidata.org/entity/Q166272"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q842256"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 Australian musical film directed by Rachel Perkins"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15277321"}, "Title": {"type": "literal", "value": "Die Frau, die sich traut"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1641094"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2013 film by Marc Rensing"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3927042"}, "Title": {"type": "literal", "value": "Quant'\u00e8 bella la Bernarda, tutta nera, tutta calda"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1873491"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3845497|http://www.wikidata.org/entity/Q3839271|http://www.wikidata.org/entity/Q3726621|http://www.wikidata.org/entity/Q3634653|http://www.wikidata.org/entity/Q1156919|http://www.wikidata.org/entity/Q1040908|http://www.wikidata.org/entity/Q599728|http://www.wikidata.org/entity/Q515997"}, "Published": {"type": "literal", "value": "1973"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "1973 film by Lucio Giachin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q120367"}, "Title": {"type": "literal", "value": "Shark Tale"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4011210|http://www.wikidata.org/entity/Q3590985|http://www.wikidata.org/entity/Q428815"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q428815"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2004 animated film by Vicky Jenson, Bibo Bergeron, and Rob Letterman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q500088"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1713741"}, "Title": {"type": "literal", "value": "Short Cut to Hollywood"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q108302"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q108302"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2009 film by Jan Henrik Stahlberg"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1895516"}, "Title": {"type": "literal", "value": "Maria, ihm schmeckt\u2019s nicht!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1974092"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q125379|http://www.wikidata.org/entity/Q1162747"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3991986|http://www.wikidata.org/entity/Q3893979|http://www.wikidata.org/entity/Q3876295|http://www.wikidata.org/entity/Q3702372|http://www.wikidata.org/entity/Q1710872|http://www.wikidata.org/entity/Q697816|http://www.wikidata.org/entity/Q434479|http://www.wikidata.org/entity/Q100506|http://www.wikidata.org/entity/Q92511|http://www.wikidata.org/entity/Q77991"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2009 film by Neele Vollmar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16410419"}, "Title": {"type": "literal", "value": "Kinnunen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16407213"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Andri Luup"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q330332"}, "Title": {"type": "literal", "value": "Mr. Bean's Holiday"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2346846"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q355300|http://www.wikidata.org/entity/Q23760|http://www.wikidata.org/entity/Q1761327|http://www.wikidata.org/entity/Q705602|http://www.wikidata.org/entity/Q5645381"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7613581|http://www.wikidata.org/entity/Q3591288|http://www.wikidata.org/entity/Q3501708|http://www.wikidata.org/entity/Q3379508|http://www.wikidata.org/entity/Q3334837|http://www.wikidata.org/entity/Q3264884|http://www.wikidata.org/entity/Q3189440|http://www.wikidata.org/entity/Q3106251|http://www.wikidata.org/entity/Q3081359|http://www.wikidata.org/entity/Q2941947|http://www.wikidata.org/entity/Q15973995|http://www.wikidata.org/entity/Q188772|http://www.wikidata.org/entity/Q106555|http://www.wikidata.org/entity/Q60304|http://www.wikidata.org/entity/Q23760|http://www.wikidata.org/entity/Q2864476|http://www.wikidata.org/entity/Q2347009|http://www.wikidata.org/entity/Q1500831|http://www.wikidata.org/entity/Q966378|http://www.wikidata.org/entity/Q648036|http://www.wikidata.org/entity/Q609514|http://www.wikidata.org/entity/Q463683|http://www.wikidata.org/entity/Q342384"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2007 British comedy film directed by Steve Bendelack"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2450848|http://www.wikidata.org/entity/Q3282004|http://www.wikidata.org/entity/Q2060840"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13423391"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4197782"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Taisia Igumentseva"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q759896"}, "Title": {"type": "literal", "value": "On the Buses"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5667433"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1240154"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2471996|http://www.wikidata.org/entity/Q2171085|http://www.wikidata.org/entity/Q2052248|http://www.wikidata.org/entity/Q1914884|http://www.wikidata.org/entity/Q679983|http://www.wikidata.org/entity/Q518175"}, "Published": {"type": "literal", "value": "1971"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "1971 film by Harry Booth"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1433745"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q517934"}, "Title": {"type": "literal", "value": "Time Freak"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4756399"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4756399"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "11"}, "Description": {"type": "literal", "value": "2011 short film directed by Andrew Bowler"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q754742"}, "Title": {"type": "literal", "value": "Bandidas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1782299|http://www.wikidata.org/entity/Q3368851"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1893631|http://www.wikidata.org/entity/Q484779"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2176223|http://www.wikidata.org/entity/Q713099|http://www.wikidata.org/entity/Q491775|http://www.wikidata.org/entity/Q294583|http://www.wikidata.org/entity/Q125106|http://www.wikidata.org/entity/Q39666|http://www.wikidata.org/entity/Q3112903|http://www.wikidata.org/entity/Q3022516"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5442753|http://www.wikidata.org/entity/Q496523|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q172980|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2006 film by Joachim R\u00f8nning, Espen Sandberg"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434841"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12216901"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12243777"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12179049"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 Egyptian film directed by Moataz El Touni"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25389633"}, "Title": {"type": "literal", "value": "Women Who Kill"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24266090"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24266090"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24266090|http://www.wikidata.org/entity/Q16224020|http://www.wikidata.org/entity/Q2915471|http://www.wikidata.org/entity/Q2328935|http://www.wikidata.org/entity/Q231135"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Ingrid Jungermann"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24451650"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4259298"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4259298"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2302686"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Vladimir Lert"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55163823"}, "Title": {"type": "literal", "value": "\u75af\u72c2\u7684\u5916\u661f\u4eba"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q354554"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q607588"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21018157|http://www.wikidata.org/entity/Q3992514|http://www.wikidata.org/entity/Q704130|http://www.wikidata.org/entity/Q294812"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "2019 a Chinese film directed by Ning Hao"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7617165"}, "Title": {"type": "literal", "value": "Still Waiting..."}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6173265"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7340362"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17385901|http://www.wikidata.org/entity/Q7340362|http://www.wikidata.org/entity/Q6415432|http://www.wikidata.org/entity/Q5389146|http://www.wikidata.org/entity/Q3853048|http://www.wikidata.org/entity/Q2830641|http://www.wikidata.org/entity/Q2620648|http://www.wikidata.org/entity/Q1285062|http://www.wikidata.org/entity/Q1109470|http://www.wikidata.org/entity/Q1077862|http://www.wikidata.org/entity/Q967130|http://www.wikidata.org/entity/Q471128|http://www.wikidata.org/entity/Q460513|http://www.wikidata.org/entity/Q443672|http://www.wikidata.org/entity/Q347395|http://www.wikidata.org/entity/Q298672|http://www.wikidata.org/entity/Q285409|http://www.wikidata.org/entity/Q233786|http://www.wikidata.org/entity/Q232481|http://www.wikidata.org/entity/Q230176|http://www.wikidata.org/entity/Q164328|http://www.wikidata.org/entity/Q4119"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Jeff Balis"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6593070"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12757208"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q385312"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16088526|http://www.wikidata.org/entity/Q16084153|http://www.wikidata.org/entity/Q12752008|http://www.wikidata.org/entity/Q12750302|http://www.wikidata.org/entity/Q11141512|http://www.wikidata.org/entity/Q8074337|http://www.wikidata.org/entity/Q7035619|http://www.wikidata.org/entity/Q2897602|http://www.wikidata.org/entity/Q1711470|http://www.wikidata.org/entity/Q1563211|http://www.wikidata.org/entity/Q1560952|http://www.wikidata.org/entity/Q284488"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Petar Pa\u0161i\u0107"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15904094"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9334957"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6131875"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Tien-Lun Yeh"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16248542"}, "Title": {"type": "literal", "value": "Back in the Day"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q311613"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1275214|http://www.wikidata.org/entity/Q984077|http://www.wikidata.org/entity/Q726708|http://www.wikidata.org/entity/Q714380|http://www.wikidata.org/entity/Q579100|http://www.wikidata.org/entity/Q311613|http://www.wikidata.org/entity/Q231100|http://www.wikidata.org/entity/Q231091|http://www.wikidata.org/entity/Q40470"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Michael Rosenbaum"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16612088"}, "Title": {"type": "literal", "value": "No s\u00e9 si cortarme las venas o dej\u00e1rmelas largas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q59974187"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21010275|http://www.wikidata.org/entity/Q6700515|http://www.wikidata.org/entity/Q6101331|http://www.wikidata.org/entity/Q5983543|http://www.wikidata.org/entity/Q5943686|http://www.wikidata.org/entity/Q3545808|http://www.wikidata.org/entity/Q1414640|http://www.wikidata.org/entity/Q1165261|http://www.wikidata.org/entity/Q1057307|http://www.wikidata.org/entity/Q827369|http://www.wikidata.org/entity/Q660476|http://www.wikidata.org/entity/Q647275|http://www.wikidata.org/entity/Q615653|http://www.wikidata.org/entity/Q266626|http://www.wikidata.org/entity/Q256152"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q58875268"}, "Title": {"type": "literal", "value": "Superl\u00f3pez"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5928180"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8559871|http://www.wikidata.org/entity/Q8250879"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41899519|http://www.wikidata.org/entity/Q26838760|http://www.wikidata.org/entity/Q20876386|http://www.wikidata.org/entity/Q12255669|http://www.wikidata.org/entity/Q8964703|http://www.wikidata.org/entity/Q8353578|http://www.wikidata.org/entity/Q6457544|http://www.wikidata.org/entity/Q6068440|http://www.wikidata.org/entity/Q5883909|http://www.wikidata.org/entity/Q2833293|http://www.wikidata.org/entity/Q235391"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1535153|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2018 film by Javier Ruiz Caldera"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5641909|http://www.wikidata.org/entity/Q16928132|http://www.wikidata.org/entity/Q2638120"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21463782"}, "Title": {"type": "literal", "value": "War Machine"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3018459"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3018459"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30015344|http://www.wikidata.org/entity/Q23767051|http://www.wikidata.org/entity/Q20676357|http://www.wikidata.org/entity/Q16762370|http://www.wikidata.org/entity/Q13563393|http://www.wikidata.org/entity/Q9033587|http://www.wikidata.org/entity/Q6246377|http://www.wikidata.org/entity/Q4772688|http://www.wikidata.org/entity/Q2287888|http://www.wikidata.org/entity/Q1319882|http://www.wikidata.org/entity/Q566037|http://www.wikidata.org/entity/Q498263|http://www.wikidata.org/entity/Q470260|http://www.wikidata.org/entity/Q361215|http://www.wikidata.org/entity/Q277978|http://www.wikidata.org/entity/Q236705|http://www.wikidata.org/entity/Q200534|http://www.wikidata.org/entity/Q173158|http://www.wikidata.org/entity/Q129817|http://www.wikidata.org/entity/Q117415|http://www.wikidata.org/entity/Q35332"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "122"}, "Description": {"type": "literal", "value": "2017 American satirical war film directed by David Mich\u00f4d"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q907311"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55164107"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12083915"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12083915|http://www.wikidata.org/entity/Q12075874"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q47489819"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2018 Ukrainian film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4292433"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4252102"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4077105"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4458928"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Yevgeny Lavrentyev"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23709819"}, "Title": {"type": "literal", "value": "Na Quebrada"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3249020"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2014 film by Fernando Grostein Andrade"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7804539"}, "Title": {"type": "literal", "value": "Tim and Eric's Billion Dollar Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7803640|http://www.wikidata.org/entity/Q5387705"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7803640|http://www.wikidata.org/entity/Q5387705"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q218503|http://www.wikidata.org/entity/Q139325|http://www.wikidata.org/entity/Q106706|http://www.wikidata.org/entity/Q81489|http://www.wikidata.org/entity/Q16185578|http://www.wikidata.org/entity/Q7803640|http://www.wikidata.org/entity/Q5387705|http://www.wikidata.org/entity/Q1319744|http://www.wikidata.org/entity/Q495487|http://www.wikidata.org/entity/Q361238|http://www.wikidata.org/entity/Q229747|http://www.wikidata.org/entity/Q223110"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Tim Heidecker, Eric Wareheim"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q727561|http://www.wikidata.org/entity/Q3098606|http://www.wikidata.org/entity/Q4632862"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4729965"}, "Title": {"type": "literal", "value": "Alle for \u00e9n"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12332904"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41236307|http://www.wikidata.org/entity/Q40523565|http://www.wikidata.org/entity/Q12342860|http://www.wikidata.org/entity/Q12335232|http://www.wikidata.org/entity/Q12327036|http://www.wikidata.org/entity/Q12321303|http://www.wikidata.org/entity/Q12321300|http://www.wikidata.org/entity/Q12320299|http://www.wikidata.org/entity/Q12314126|http://www.wikidata.org/entity/Q7295091|http://www.wikidata.org/entity/Q6858699|http://www.wikidata.org/entity/Q5934629|http://www.wikidata.org/entity/Q2651539|http://www.wikidata.org/entity/Q1797902|http://www.wikidata.org/entity/Q456176|http://www.wikidata.org/entity/Q323563|http://www.wikidata.org/entity/Q213574|http://www.wikidata.org/entity/Q84081"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Rasmus Heide"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11849530"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11896737"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Teemu Nikki"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q9291938"}, "Title": {"type": "literal", "value": "Hi way"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11715216"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11715216"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Jacek Borusi\u0144ski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15732456"}, "Title": {"type": "literal", "value": "The FP"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15732460|http://www.wikidata.org/entity/Q15732459"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 American independent action comedy film directed by Brandon Trost and Jason Trost"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2159172"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2066995"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2066995"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19629034|http://www.wikidata.org/entity/Q13817318|http://www.wikidata.org/entity/Q2839854|http://www.wikidata.org/entity/Q2136816|http://www.wikidata.org/entity/Q2117480|http://www.wikidata.org/entity/Q1933451|http://www.wikidata.org/entity/Q1738544|http://www.wikidata.org/entity/Q388679|http://www.wikidata.org/entity/Q311016|http://www.wikidata.org/entity/Q82246"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Arne Toonen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17478195"}, "Title": {"type": "literal", "value": "Pancho, el perro millonario"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23695803"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2014 film by Tom Fern\u00e1ndez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18647981"}, "Title": {"type": "literal", "value": "Moana"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1077862|http://www.wikidata.org/entity/Q930209|http://www.wikidata.org/entity/Q735440|http://www.wikidata.org/entity/Q18921842"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q735440|http://www.wikidata.org/entity/Q1077862|http://www.wikidata.org/entity/Q930209|http://www.wikidata.org/entity/Q20995253|http://www.wikidata.org/entity/Q18921842|http://www.wikidata.org/entity/Q7129243|http://www.wikidata.org/entity/Q2388576|http://www.wikidata.org/entity/Q27915692|http://www.wikidata.org/entity/Q27915686"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q28968258|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "107|113"}, "Description": {"type": "literal", "value": "2016 computer animated film produced by Walt Disney Animation Studios"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191224|http://www.wikidata.org/entity/Q1047410"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q579895"}, "Title": {"type": "literal", "value": "Balls of Fury"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q548479"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1319539"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18738765|http://www.wikidata.org/entity/Q3293708|http://www.wikidata.org/entity/Q2852954|http://www.wikidata.org/entity/Q1319539|http://www.wikidata.org/entity/Q614774|http://www.wikidata.org/entity/Q449947|http://www.wikidata.org/entity/Q381799|http://www.wikidata.org/entity/Q374263|http://www.wikidata.org/entity/Q358990|http://www.wikidata.org/entity/Q335226|http://www.wikidata.org/entity/Q309503|http://www.wikidata.org/entity/Q272977|http://www.wikidata.org/entity/Q271464|http://www.wikidata.org/entity/Q241800|http://www.wikidata.org/entity/Q185051|http://www.wikidata.org/entity/Q73035"}, "Published": {"type": "literal", "value": "2008|2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1033891|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2007 American sports comedy film directed by Ben Garant"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q512858"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6529968"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12238850"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11042198|http://www.wikidata.org/entity/Q4120152|http://www.wikidata.org/entity/Q591801"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 film by Magdy Al Hawary"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4328801"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21154379"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3651828"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4343990|http://www.wikidata.org/entity/Q4241301|http://www.wikidata.org/entity/Q4230993|http://www.wikidata.org/entity/Q1967150|http://www.wikidata.org/entity/Q726105|http://www.wikidata.org/entity/Q502070|http://www.wikidata.org/entity/Q471740"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2009 film by Eduard Parri"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q47005865"}, "Title": {"type": "literal", "value": "Mazie laup\u012bt\u0101ji"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50301569"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50301582"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3741119|http://www.wikidata.org/entity/Q684168"}, "Published": {"type": "literal", "value": "2010|2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Armands Zvirbulis"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12228681"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12250381"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4166476"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Wael Ehsan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55188039"}, "Title": {"type": "literal", "value": "Bier Royal"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1082614"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23979077"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11953755|http://www.wikidata.org/entity/Q1736707|http://www.wikidata.org/entity/Q1676742|http://www.wikidata.org/entity/Q1287530|http://www.wikidata.org/entity/Q497443|http://www.wikidata.org/entity/Q97153|http://www.wikidata.org/entity/Q76450|http://www.wikidata.org/entity/Q43766|http://www.wikidata.org/entity/Q29113528|http://www.wikidata.org/entity/Q28837877|http://www.wikidata.org/entity/Q23059937|http://www.wikidata.org/entity/Q22973053|http://www.wikidata.org/entity/Q21014941|http://www.wikidata.org/entity/Q20638662|http://www.wikidata.org/entity/Q19960215|http://www.wikidata.org/entity/Q18020332|http://www.wikidata.org/entity/Q16787776|http://www.wikidata.org/entity/Q15623585"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 television film directed by Christiane Balthasar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1526817"}, "Title": {"type": "literal", "value": "Bring It On: Fight to the Finish"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1058003"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16208587|http://www.wikidata.org/entity/Q5516062|http://www.wikidata.org/entity/Q2740278|http://www.wikidata.org/entity/Q1189370|http://www.wikidata.org/entity/Q553359|http://www.wikidata.org/entity/Q441451|http://www.wikidata.org/entity/Q434741|http://www.wikidata.org/entity/Q230501"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2009 film by Bille Woodruff"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21681007"}, "Title": {"type": "literal", "value": "Gut zu V\u00f6geln"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23197738"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1912577|http://www.wikidata.org/entity/Q1901626|http://www.wikidata.org/entity/Q1639649|http://www.wikidata.org/entity/Q865881|http://www.wikidata.org/entity/Q115010|http://www.wikidata.org/entity/Q102480|http://www.wikidata.org/entity/Q97619|http://www.wikidata.org/entity/Q97241|http://www.wikidata.org/entity/Q94096|http://www.wikidata.org/entity/Q91004|http://www.wikidata.org/entity/Q76149|http://www.wikidata.org/entity/Q75707|http://www.wikidata.org/entity/Q63228"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Mira Thiel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q50376367"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1892483"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q45769929|http://www.wikidata.org/entity/Q1892483"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 german television movie"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23925073"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q31188826"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q31188826"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Mehmet Can Merto\u011flu"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1653410"}, "Title": {"type": "literal", "value": "\u0421\u0443\u043f\u0435\u0440\u043c\u0435\u043d\u0435\u0434\u0436\u0435\u0440, \u0438\u043b\u0438 \u041c\u043e\u0442\u044b\u0433\u0430 \u0441\u0443\u0434\u044c\u0431\u044b"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4168320"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q140738"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "78"}, "Description": {"type": "literal", "value": "2011 film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4403233"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18209382"}, "Title": {"type": "literal", "value": "Our Brand Is Crisis"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2296698"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7177144"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188432|http://www.wikidata.org/entity/Q40791|http://www.wikidata.org/entity/Q24008487|http://www.wikidata.org/entity/Q18977890|http://www.wikidata.org/entity/Q2558129|http://www.wikidata.org/entity/Q566037|http://www.wikidata.org/entity/Q511554|http://www.wikidata.org/entity/Q218210|http://www.wikidata.org/entity/Q202735"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q645928"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2015 film by David Gordon Green"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10706553"}, "Title": {"type": "literal", "value": "Snow Therapy|Turist|Force Majeure"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q211228"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q211228"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18816549|http://www.wikidata.org/entity/Q17100163|http://www.wikidata.org/entity/Q6438398|http://www.wikidata.org/entity/Q5564082|http://www.wikidata.org/entity/Q897115"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "118"}, "Description": {"type": "literal", "value": "2014 Swedish film by Ruben \u00d6stlund"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2748604"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19867340"}, "Title": {"type": "literal", "value": "Saugatuck Cures"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20684442"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1372431"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Matthew Ladensack"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18914954"}, "Title": {"type": "literal", "value": "Elvis & Nixon"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1866610"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25144"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q645928"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2016 film by Liza Johnson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28542228"}, "Title": {"type": "literal", "value": "Fack ju G\u00f6hte 3"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q112352"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q112352"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23788081|http://www.wikidata.org/entity/Q23067905|http://www.wikidata.org/entity/Q23062405|http://www.wikidata.org/entity/Q19839425|http://www.wikidata.org/entity/Q17479630|http://www.wikidata.org/entity/Q17353105|http://www.wikidata.org/entity/Q16504473|http://www.wikidata.org/entity/Q16218089|http://www.wikidata.org/entity/Q15890988|http://www.wikidata.org/entity/Q2048644|http://www.wikidata.org/entity/Q1974089|http://www.wikidata.org/entity/Q1913731|http://www.wikidata.org/entity/Q1686699|http://www.wikidata.org/entity/Q1367636|http://www.wikidata.org/entity/Q824272|http://www.wikidata.org/entity/Q215565|http://www.wikidata.org/entity/Q100841|http://www.wikidata.org/entity/Q89832|http://www.wikidata.org/entity/Q87397|http://www.wikidata.org/entity/Q78766|http://www.wikidata.org/entity/Q78441|http://www.wikidata.org/entity/Q70808|http://www.wikidata.org/entity/Q70003|http://www.wikidata.org/entity/Q69669|http://www.wikidata.org/entity/Q65116|http://www.wikidata.org/entity/Q62346"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Bora Da\u011ftekin"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q564960"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11785073"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5520821"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16217187"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7296641|http://www.wikidata.org/entity/Q3494290|http://www.wikidata.org/entity/Q2362968|http://www.wikidata.org/entity/Q2086574|http://www.wikidata.org/entity/Q1992008|http://www.wikidata.org/entity/Q292967|http://www.wikidata.org/entity/Q158533"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Ganesh Acharya"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18170566"}, "Title": {"type": "literal", "value": "Two 4 One"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21070479"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21070479"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Maureen Bradley"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6901845"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6993709"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6993709"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1527527"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2005 film by Etsion Nimrod"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27910183"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6836963"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6836963"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6836963|http://www.wikidata.org/entity/Q5090910|http://www.wikidata.org/entity/Q702549"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Michelle Chong"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21646580"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19561112"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19561112"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20649862|http://www.wikidata.org/entity/Q7929207"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Nalan Kumarasamy"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20962234"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21006664"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Jhonny Obando"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30646818"}, "Title": {"type": "literal", "value": "Changeland"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q186757"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q186757"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24068363|http://www.wikidata.org/entity/Q15823293|http://www.wikidata.org/entity/Q439198|http://www.wikidata.org/entity/Q360674|http://www.wikidata.org/entity/Q186757|http://www.wikidata.org/entity/Q180011|http://www.wikidata.org/entity/Q103578|http://www.wikidata.org/entity/Q44449"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Seth Green"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3499746"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27981586"}, "Title": {"type": "literal", "value": "Holmes and Watson"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q925413"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q925413"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15712264|http://www.wikidata.org/entity/Q2322261|http://www.wikidata.org/entity/Q230534|http://www.wikidata.org/entity/Q230383|http://www.wikidata.org/entity/Q223110|http://www.wikidata.org/entity/Q218503|http://www.wikidata.org/entity/Q49017|http://www.wikidata.org/entity/Q28493|http://www.wikidata.org/entity/Q24891605"}, "Published": {"type": "literal", "value": "2019|2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1200678|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2018 film by Etan Cohen"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q186941"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q63246632"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15069938"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Justine Triet"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23564692"}, "Title": {"type": "literal", "value": "Liebe ist die beste Medizin"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1576616"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15445027"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2004 film by Hannu Salonen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28222787"}, "Title": {"type": "literal", "value": "Unicorn Store"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29328"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q63041998"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q40550981|http://www.wikidata.org/entity/Q28957276|http://www.wikidata.org/entity/Q22815258|http://www.wikidata.org/entity/Q558301|http://www.wikidata.org/entity/Q352180|http://www.wikidata.org/entity/Q272946|http://www.wikidata.org/entity/Q172678|http://www.wikidata.org/entity/Q29328"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2017 film directed by Brie Larson"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18154751"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12343734"}, "Title": {"type": "literal", "value": "Ved Verdens Ende"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q952621"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q491314"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1776674|http://www.wikidata.org/entity/Q1676688|http://www.wikidata.org/entity/Q862784|http://www.wikidata.org/entity/Q529849|http://www.wikidata.org/entity/Q445772|http://www.wikidata.org/entity/Q443662|http://www.wikidata.org/entity/Q383754|http://www.wikidata.org/entity/Q115988|http://www.wikidata.org/entity/Q95220|http://www.wikidata.org/entity/Q77653|http://www.wikidata.org/entity/Q61763927|http://www.wikidata.org/entity/Q12323166|http://www.wikidata.org/entity/Q2033737|http://www.wikidata.org/entity/Q2017909|http://www.wikidata.org/entity/Q1797671"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q188473"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2009 film by Tomas Villum Jensen"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1891982"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56063689"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23418649"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Ksshitij Chaudhary"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28753403"}, "Title": {"type": "literal", "value": "Win It All"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6212564"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Joe Swanberg"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1687046"}, "Title": {"type": "literal", "value": "Pommes essen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2435592"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2435592"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2012 film by Tina Traben"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q667799"}, "Title": {"type": "literal", "value": "Tenacious D in The Pick of Destiny"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1372139"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q483907|http://www.wikidata.org/entity/Q371403"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3116296|http://www.wikidata.org/entity/Q3017116|http://www.wikidata.org/entity/Q2059493|http://www.wikidata.org/entity/Q1139190|http://www.wikidata.org/entity/Q483907|http://www.wikidata.org/entity/Q481832|http://www.wikidata.org/entity/Q371403|http://www.wikidata.org/entity/Q356086|http://www.wikidata.org/entity/Q318134|http://www.wikidata.org/entity/Q230203|http://www.wikidata.org/entity/Q223110|http://www.wikidata.org/entity/Q185151|http://www.wikidata.org/entity/Q164328|http://www.wikidata.org/entity/Q152929|http://www.wikidata.org/entity/Q130709|http://www.wikidata.org/entity/Q95048|http://www.wikidata.org/entity/Q47100|http://www.wikidata.org/entity/Q14535|http://www.wikidata.org/entity/Q12006"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2006 film by Liam Lynch"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7304367"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7768258"}, "Title": {"type": "literal", "value": "The Teenage Textbook Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7185734"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5104591"}, "Published": {"type": "literal", "value": "1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q40831"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1998 film by Phillip Lim"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1518752"}, "Title": {"type": "literal", "value": "La Fonte des neiges"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3166572"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3574974|http://www.wikidata.org/entity/Q3219493|http://www.wikidata.org/entity/Q3123687"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "26"}, "Description": {"type": "literal", "value": "2008 short film directed by Jean-Julien Chervier"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5829816"}, "Title": {"type": "literal", "value": "Ellos robaron la picha de Hitler"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6070232"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Pedro Temboury"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21646405"}, "Title": {"type": "literal", "value": "Bach in Brazil"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23062422"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23062422"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9600706|http://www.wikidata.org/entity/Q109492|http://www.wikidata.org/entity/Q104741|http://www.wikidata.org/entity/Q100781"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Ansgar Ahlers"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3209913"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3299877"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2834188"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3588129|http://www.wikidata.org/entity/Q3574132|http://www.wikidata.org/entity/Q3490875|http://www.wikidata.org/entity/Q3441839|http://www.wikidata.org/entity/Q3369703|http://www.wikidata.org/entity/Q3350714|http://www.wikidata.org/entity/Q3299930|http://www.wikidata.org/entity/Q3217814|http://www.wikidata.org/entity/Q3185296|http://www.wikidata.org/entity/Q3121553|http://www.wikidata.org/entity/Q2850927|http://www.wikidata.org/entity/Q2821029|http://www.wikidata.org/entity/Q440995|http://www.wikidata.org/entity/Q388744|http://www.wikidata.org/entity/Q158286"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Matthieu Delaporte"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q40329256"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1663184"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1904783"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Ingo Rasper"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1238429"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18229523"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18229523"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q875366|http://www.wikidata.org/entity/Q839289"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by D\u00e9nes Orosz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15526075"}, "Title": {"type": "literal", "value": "Was machen Frauen morgens um halb vier?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1684824"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22115473"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2012 film by Matthias Kiefersauer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27986110"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7814245"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Tolga \u00d6rnek"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26878321"}, "Title": {"type": "literal", "value": "Piuma"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3938128"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3938128"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2016 film by Roan Johnson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5247799"}, "Title": {"type": "literal", "value": "Deb and Sisi"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6768358"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6768358"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Mark Kenneth Woods"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q47089813"}, "Title": {"type": "literal", "value": "Tito e gli alieni"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q59187965"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2017 film by Paola Randi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6008400"}, "Title": {"type": "literal", "value": "\u0b87\u0bae\u0bcd\u0b9a\u0bc8 \u0b85\u0bb0\u0b9a\u0ba9\u0bcd 23\u0bae\u0bcd \u0baa\u0bc1\u0bb2\u0bbf\u0b95\u0bc7\u0b9a\u0bbf"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5099316"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5099316"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7695202|http://www.wikidata.org/entity/Q3521977|http://www.wikidata.org/entity/Q967495"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Chimbu Deven"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3560878"}, "Title": {"type": "literal", "value": "The Way, Way Back"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q591785|http://www.wikidata.org/entity/Q2514422"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2514422|http://www.wikidata.org/entity/Q591785"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q554506|http://www.wikidata.org/entity/Q316446|http://www.wikidata.org/entity/Q7337064|http://www.wikidata.org/entity/Q2514422|http://www.wikidata.org/entity/Q1378118|http://www.wikidata.org/entity/Q591785|http://www.wikidata.org/entity/Q236527|http://www.wikidata.org/entity/Q229487|http://www.wikidata.org/entity/Q229291|http://www.wikidata.org/entity/Q216221|http://www.wikidata.org/entity/Q131332|http://www.wikidata.org/entity/Q105695"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2013 American comedy-drama film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q32186"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20202962"}, "Title": {"type": "literal", "value": "No Way Jose"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q281964"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Adam Goldberg"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43180354"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q43180083"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "68"}, "Description": {"type": "literal", "value": "2014 film by Davide Minnella"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4878938"}, "Title": {"type": "literal", "value": "Bed & Breakfast"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4133927"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6307615|http://www.wikidata.org/entity/Q4908906|http://www.wikidata.org/entity/Q3138874|http://www.wikidata.org/entity/Q3137809|http://www.wikidata.org/entity/Q466954|http://www.wikidata.org/entity/Q461105|http://www.wikidata.org/entity/Q313788|http://www.wikidata.org/entity/Q249865|http://www.wikidata.org/entity/Q207969"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2010 film by M\u00e1rcio Garcia"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1435966"}, "Title": {"type": "literal", "value": "\u092b\u0942\u0932 \u090f\u0928 \u092b\u093e\u0907\u0928\u0932"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4695886"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16885662"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2723457|http://www.wikidata.org/entity/Q944546|http://www.wikidata.org/entity/Q731854|http://www.wikidata.org/entity/Q319491|http://www.wikidata.org/entity/Q158450"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "143"}, "Description": {"type": "literal", "value": "2007 film by Ahmed Khan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q643972"}, "Title": {"type": "literal", "value": "Jeff, Who Lives at Home"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6166571|http://www.wikidata.org/entity/Q3273787"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3273787|http://www.wikidata.org/entity/Q6166571"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q261547|http://www.wikidata.org/entity/Q236189|http://www.wikidata.org/entity/Q202304|http://www.wikidata.org/entity/Q133050|http://www.wikidata.org/entity/Q23883683|http://www.wikidata.org/entity/Q19958261|http://www.wikidata.org/entity/Q17385901|http://www.wikidata.org/entity/Q6377395|http://www.wikidata.org/entity/Q1057939|http://www.wikidata.org/entity/Q677553|http://www.wikidata.org/entity/Q328790"}, "Published": {"type": "literal", "value": "2012|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2011 film by Jay Duplass, Mark Duplass"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17415951|http://www.wikidata.org/entity/Q922453"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1758576"}, "Title": {"type": "literal", "value": "Klovn - The Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12327179"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12327179|http://www.wikidata.org/entity/Q3362230|http://www.wikidata.org/entity/Q3362157"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12332902|http://www.wikidata.org/entity/Q12330120|http://www.wikidata.org/entity/Q12328938|http://www.wikidata.org/entity/Q12327107|http://www.wikidata.org/entity/Q12326969|http://www.wikidata.org/entity/Q12325632|http://www.wikidata.org/entity/Q12321425|http://www.wikidata.org/entity/Q12317325|http://www.wikidata.org/entity/Q12315997|http://www.wikidata.org/entity/Q11989253|http://www.wikidata.org/entity/Q11213025|http://www.wikidata.org/entity/Q7177030|http://www.wikidata.org/entity/Q4994583|http://www.wikidata.org/entity/Q4859424|http://www.wikidata.org/entity/Q3470768|http://www.wikidata.org/entity/Q3427562|http://www.wikidata.org/entity/Q3424845|http://www.wikidata.org/entity/Q3372515|http://www.wikidata.org/entity/Q3362230|http://www.wikidata.org/entity/Q3362157|http://www.wikidata.org/entity/Q2211149|http://www.wikidata.org/entity/Q1747857|http://www.wikidata.org/entity/Q1406018|http://www.wikidata.org/entity/Q1344849|http://www.wikidata.org/entity/Q712364|http://www.wikidata.org/entity/Q562108|http://www.wikidata.org/entity/Q517584|http://www.wikidata.org/entity/Q481341|http://www.wikidata.org/entity/Q435097|http://www.wikidata.org/entity/Q425708|http://www.wikidata.org/entity/Q371066|http://www.wikidata.org/entity/Q327125|http://www.wikidata.org/entity/Q41236675|http://www.wikidata.org/entity/Q40523806|http://www.wikidata.org/entity/Q40523719|http://www.wikidata.org/entity/Q40523713|http://www.wikidata.org/entity/Q40523707|http://www.wikidata.org/entity/Q40011970|http://www.wikidata.org/entity/Q38471193|http://www.wikidata.org/entity/Q38052739|http://www.wikidata.org/entity/Q38052488|http://www.wikidata.org/entity/Q37491261|http://www.wikidata.org/entity/Q37491252|http://www.wikidata.org/entity/Q37491242|http://www.wikidata.org/entity/Q37491133|http://www.wikidata.org/entity/Q35985836|http://www.wikidata.org/entity/Q16324112|http://www.wikidata.org/entity/Q12339410|http://www.wikidata.org/entity/Q12337732|http://www.wikidata.org/entity/Q232517|http://www.wikidata.org/entity/Q12333679|http://www.wikidata.org/entity/Q12333677"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Mikkel N\u00f8rgaard"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191158"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q813464"}, "Title": {"type": "literal", "value": "Beauty Shop"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1058003"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16204246"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1706191|http://www.wikidata.org/entity/Q1381384|http://www.wikidata.org/entity/Q1322677|http://www.wikidata.org/entity/Q1112005|http://www.wikidata.org/entity/Q556868|http://www.wikidata.org/entity/Q536030|http://www.wikidata.org/entity/Q526620|http://www.wikidata.org/entity/Q459125|http://www.wikidata.org/entity/Q454412|http://www.wikidata.org/entity/Q298682|http://www.wikidata.org/entity/Q274187|http://www.wikidata.org/entity/Q268549|http://www.wikidata.org/entity/Q238361|http://www.wikidata.org/entity/Q229254|http://www.wikidata.org/entity/Q223303|http://www.wikidata.org/entity/Q208558|http://www.wikidata.org/entity/Q199945|http://www.wikidata.org/entity/Q4757751|http://www.wikidata.org/entity/Q4681882|http://www.wikidata.org/entity/Q3454165|http://www.wikidata.org/entity/Q3020038"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2005 film by Bille Woodruff"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q179200"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42533880"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10858622"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Mehran Ahmadi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q9131931"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11790089"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Nathan Bexton"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27996400"}, "Title": {"type": "literal", "value": "Entrando Numa Roubada"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9614493"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "77"}, "Description": {"type": "literal", "value": "2015 film by Andr\u00e9 Moraes"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27958047"}, "Title": {"type": "literal", "value": "Landline"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18153579"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18153579"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6166571|http://www.wikidata.org/entity/Q5450687|http://www.wikidata.org/entity/Q744166|http://www.wikidata.org/entity/Q450322|http://www.wikidata.org/entity/Q244234|http://www.wikidata.org/entity/Q229034"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Gillian Robespierre"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22194440"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4078806"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Aleksandr Barshak"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4659855"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6389380"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6389380"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11660867"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 Japanese film directed by Kenji Uchida"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6164695"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17385584"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5276830"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Anurag Singh"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q46996014"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29014729"}, "Title": {"type": "literal", "value": "Der Hund begraben"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29014731"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29014731"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15669923|http://www.wikidata.org/entity/Q1905235|http://www.wikidata.org/entity/Q1696908|http://www.wikidata.org/entity/Q1504267|http://www.wikidata.org/entity/Q1395238|http://www.wikidata.org/entity/Q1272182|http://www.wikidata.org/entity/Q1200871|http://www.wikidata.org/entity/Q1080329|http://www.wikidata.org/entity/Q67917|http://www.wikidata.org/entity/Q63450"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Sebastian Stern"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6932119"}, "Title": {"type": "literal", "value": "Muggers"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19872804"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7028977|http://www.wikidata.org/entity/Q6006384|http://www.wikidata.org/entity/Q1683873"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2000 film by Dean Murphy"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1182609"}, "Title": {"type": "literal", "value": "Defendor"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q552726"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q552726"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7688099|http://www.wikidata.org/entity/Q7364531|http://www.wikidata.org/entity/Q3441473|http://www.wikidata.org/entity/Q1095721|http://www.wikidata.org/entity/Q719556|http://www.wikidata.org/entity/Q552726|http://www.wikidata.org/entity/Q447165|http://www.wikidata.org/entity/Q440368|http://www.wikidata.org/entity/Q379808|http://www.wikidata.org/entity/Q292949|http://www.wikidata.org/entity/Q241497|http://www.wikidata.org/entity/Q231751|http://www.wikidata.org/entity/Q201279|http://www.wikidata.org/entity/Q40337"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q1535153"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2009 film by Peter Stebbings"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1607312|http://www.wikidata.org/entity/Q5222926"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21427763"}, "Title": {"type": "literal", "value": "Pattaya"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3082139"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3501866|http://www.wikidata.org/entity/Q3082139"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23008546|http://www.wikidata.org/entity/Q3418669|http://www.wikidata.org/entity/Q3086968|http://www.wikidata.org/entity/Q3082139|http://www.wikidata.org/entity/Q436888|http://www.wikidata.org/entity/Q318991"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Franck Gastambide"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18611372"}, "Title": {"type": "literal", "value": "Fat Pizza vs. Housos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7150609"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7150609"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7150609"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Paul Fenech"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6959854"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4648383"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4648383"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3165960|http://www.wikidata.org/entity/Q331050"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by A. Sarkunam"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26769588"}, "Title": {"type": "literal", "value": "SMS f\u00fcr Dich"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61099"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61099"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18411528|http://www.wikidata.org/entity/Q17418173|http://www.wikidata.org/entity/Q1342322|http://www.wikidata.org/entity/Q111879|http://www.wikidata.org/entity/Q106781|http://www.wikidata.org/entity/Q101768|http://www.wikidata.org/entity/Q77781|http://www.wikidata.org/entity/Q70775|http://www.wikidata.org/entity/Q63228|http://www.wikidata.org/entity/Q62929|http://www.wikidata.org/entity/Q62346|http://www.wikidata.org/entity/Q61099"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "2016 film by Karoline Herfurth"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q46909375"}, "Title": {"type": "literal", "value": "Finnischer Tango"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q104744"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1681609"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1937880|http://www.wikidata.org/entity/Q1163254|http://www.wikidata.org/entity/Q1084549|http://www.wikidata.org/entity/Q104094"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Buket Alaku\u015f"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26723800"}, "Title": {"type": "literal", "value": "Luokkakokous 2 \u2013 Polttarit"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23040730"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Taneli Mustonen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12148714"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q47069159"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q47069159"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q62392156|http://www.wikidata.org/entity/Q17521982|http://www.wikidata.org/entity/Q710650|http://www.wikidata.org/entity/Q510002"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film directed by Am\u00e9lie Van Elmbt"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1346335"}, "Title": {"type": "literal", "value": "Salami Aleikum"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1679707"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15842683|http://www.wikidata.org/entity/Q2343282|http://www.wikidata.org/entity/Q1972418|http://www.wikidata.org/entity/Q1379349|http://www.wikidata.org/entity/Q559888|http://www.wikidata.org/entity/Q98976|http://www.wikidata.org/entity/Q90118|http://www.wikidata.org/entity/Q88891|http://www.wikidata.org/entity/Q88796|http://www.wikidata.org/entity/Q2518"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2009 film by Ali Samadi Ahadi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13619743"}, "Title": {"type": "literal", "value": "Minions"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3384479|http://www.wikidata.org/entity/Q20666333"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4964545"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2748093|http://www.wikidata.org/entity/Q2639476|http://www.wikidata.org/entity/Q1582689|http://www.wikidata.org/entity/Q1408782|http://www.wikidata.org/entity/Q1364909|http://www.wikidata.org/entity/Q1075796|http://www.wikidata.org/entity/Q773512|http://www.wikidata.org/entity/Q705522|http://www.wikidata.org/entity/Q526886|http://www.wikidata.org/entity/Q465571|http://www.wikidata.org/entity/Q446290|http://www.wikidata.org/entity/Q351884|http://www.wikidata.org/entity/Q316709|http://www.wikidata.org/entity/Q313107|http://www.wikidata.org/entity/Q310292|http://www.wikidata.org/entity/Q271627|http://www.wikidata.org/entity/Q261865|http://www.wikidata.org/entity/Q258503|http://www.wikidata.org/entity/Q235415|http://www.wikidata.org/entity/Q229487|http://www.wikidata.org/entity/Q216221|http://www.wikidata.org/entity/Q166272|http://www.wikidata.org/entity/Q138005|http://www.wikidata.org/entity/Q40791|http://www.wikidata.org/entity/Q4029|http://www.wikidata.org/entity/Q21032345|http://www.wikidata.org/entity/Q20666333|http://www.wikidata.org/entity/Q18637051|http://www.wikidata.org/entity/Q15427207|http://www.wikidata.org/entity/Q8019684|http://www.wikidata.org/entity/Q7495420|http://www.wikidata.org/entity/Q6536830|http://www.wikidata.org/entity/Q6132327|http://www.wikidata.org/entity/Q6060442|http://www.wikidata.org/entity/Q5525531|http://www.wikidata.org/entity/Q5416177|http://www.wikidata.org/entity/Q5410056|http://www.wikidata.org/entity/Q4719865|http://www.wikidata.org/entity/Q4280417|http://www.wikidata.org/entity/Q3384479|http://www.wikidata.org/entity/Q3015280"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q496523|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2015 animated film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1189512"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4185448"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7146964|http://www.wikidata.org/entity/Q445608"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8971735"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16781"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Eric Tsang, Patrick Kong"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q947354"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10496806"}, "Title": {"type": "literal", "value": "Flimmer"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5630110"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5630110"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15989117|http://www.wikidata.org/entity/Q6198216|http://www.wikidata.org/entity/Q6094705|http://www.wikidata.org/entity/Q6082889|http://www.wikidata.org/entity/Q6014820|http://www.wikidata.org/entity/Q5808244|http://www.wikidata.org/entity/Q4983800|http://www.wikidata.org/entity/Q4972763|http://www.wikidata.org/entity/Q4961027|http://www.wikidata.org/entity/Q4951728|http://www.wikidata.org/entity/Q4569429|http://www.wikidata.org/entity/Q4410921|http://www.wikidata.org/entity/Q2035589|http://www.wikidata.org/entity/Q718280|http://www.wikidata.org/entity/Q462513"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Patrik Eklund"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28173417"}, "Title": {"type": "literal", "value": "Band Aid"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q218211"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q218211"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Zoe Lister-Jones"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1523217"}, "Title": {"type": "literal", "value": "Turbo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5239955"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2013 American 3D computer-animated comedy sports film directed by David Soren"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q500088"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24806853"}, "Title": {"type": "literal", "value": "The Little Hours"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26897001"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26897001"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19661595|http://www.wikidata.org/entity/Q2084523|http://www.wikidata.org/entity/Q1985488|http://www.wikidata.org/entity/Q1968839|http://www.wikidata.org/entity/Q522856|http://www.wikidata.org/entity/Q430922|http://www.wikidata.org/entity/Q383930|http://www.wikidata.org/entity/Q350589|http://www.wikidata.org/entity/Q239145|http://www.wikidata.org/entity/Q235328|http://www.wikidata.org/entity/Q223110|http://www.wikidata.org/entity/Q210547|http://www.wikidata.org/entity/Q14535"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2017 film by Jeff Baena"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30555900"}, "Title": {"type": "literal", "value": "Opening Night"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16222005"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Isaac Rentz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q39049013"}, "Title": {"type": "literal", "value": "Armomurhaaja"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11896737"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11896737"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16991279|http://www.wikidata.org/entity/Q16989565"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q53094"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2017 film by Teemu Nikki"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18759861"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18155444"}, "Title": {"type": "literal", "value": "The Night Before"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1320930"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3061320|http://www.wikidata.org/entity/Q1320930"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q313486|http://www.wikidata.org/entity/Q21511825|http://www.wikidata.org/entity/Q16730037|http://www.wikidata.org/entity/Q16207915|http://www.wikidata.org/entity/Q16198576|http://www.wikidata.org/entity/Q11309114|http://www.wikidata.org/entity/Q7291588|http://www.wikidata.org/entity/Q6163031|http://www.wikidata.org/entity/Q3061320|http://www.wikidata.org/entity/Q1255263|http://www.wikidata.org/entity/Q667979|http://www.wikidata.org/entity/Q539917|http://www.wikidata.org/entity/Q511554|http://www.wikidata.org/entity/Q460786|http://www.wikidata.org/entity/Q220308|http://www.wikidata.org/entity/Q177311|http://www.wikidata.org/entity/Q41449|http://www.wikidata.org/entity/Q14542|http://www.wikidata.org/entity/Q4235|http://www.wikidata.org/entity/Q306403|http://www.wikidata.org/entity/Q236578"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2015 American Christmas comedy film directed by Jonathan Levine"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q186941"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11695671"}, "Title": {"type": "literal", "value": "Dziewczyna z szafy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9174981"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9174981"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9376690|http://www.wikidata.org/entity/Q723664"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Bodo Kox"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17382556"}, "Title": {"type": "literal", "value": "Mielens\u00e4pahoittaja"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2665374"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2665374|http://www.wikidata.org/entity/Q1711311"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16989760|http://www.wikidata.org/entity/Q16298229|http://www.wikidata.org/entity/Q5489641|http://www.wikidata.org/entity/Q4777419"}, "Published": {"type": "literal", "value": "2017|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2014 film by Dome Karukoski"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2740839"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11499336"}, "Title": {"type": "literal", "value": "\u6559\u7956\u8a95\u751f"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2445272"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1993"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "1993 film by Toshihiro Tenma"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18411201"}, "Title": {"type": "literal", "value": "Coming In"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q68855"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q68855|http://www.wikidata.org/entity/Q16891732|http://www.wikidata.org/entity/Q1085574"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q108329|http://www.wikidata.org/entity/Q100417|http://www.wikidata.org/entity/Q90795|http://www.wikidata.org/entity/Q86498|http://www.wikidata.org/entity/Q76447|http://www.wikidata.org/entity/Q75187|http://www.wikidata.org/entity/Q22312572|http://www.wikidata.org/entity/Q19888324|http://www.wikidata.org/entity/Q6572984|http://www.wikidata.org/entity/Q2504667|http://www.wikidata.org/entity/Q1963332|http://www.wikidata.org/entity/Q1878058|http://www.wikidata.org/entity/Q1748529|http://www.wikidata.org/entity/Q1618369|http://www.wikidata.org/entity/Q520052|http://www.wikidata.org/entity/Q125750|http://www.wikidata.org/entity/Q120407|http://www.wikidata.org/entity/Q109360|http://www.wikidata.org/entity/Q72046|http://www.wikidata.org/entity/Q71077|http://www.wikidata.org/entity/Q70775|http://www.wikidata.org/entity/Q68084|http://www.wikidata.org/entity/Q62346"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2014 film by Marco Kreuzpaintner"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30110172"}, "Title": {"type": "literal", "value": "\u0421\u043a\u0430\u0437 \u043e \u041f\u0435\u0442\u0440\u0435 \u0438 \u0424\u0435\u0432\u0440\u043e\u043d\u0438\u0438"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4402592|http://www.wikidata.org/entity/Q4245991"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 animated feature film directed by Yuriy Kulakov"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6781058"}, "Title": {"type": "literal", "value": "\u0c2e\u0c30\u0c4d\u0c2f\u0c3e\u0c26 \u0c30\u0c3e\u0c2e\u0c28\u0c4d"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3521531"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3521531"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25350277|http://www.wikidata.org/entity/Q13010095|http://www.wikidata.org/entity/Q7405699|http://www.wikidata.org/entity/Q5413313|http://www.wikidata.org/entity/Q3536811"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 Telugu film directed by S. S. Rajamouli"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16825423"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42859626"}, "Title": {"type": "literal", "value": "Jalouse"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3501757|http://www.wikidata.org/entity/Q325133"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3501757|http://www.wikidata.org/entity/Q325133"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23774012|http://www.wikidata.org/entity/Q3591137|http://www.wikidata.org/entity/Q3524049|http://www.wikidata.org/entity/Q3501757|http://www.wikidata.org/entity/Q3292012|http://www.wikidata.org/entity/Q2851072|http://www.wikidata.org/entity/Q271944|http://www.wikidata.org/entity/Q116189|http://www.wikidata.org/entity/Q434051"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2017 film by David Foenkinos & St\u00e9phane Foenkinos"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10498467|http://www.wikidata.org/entity/Q16662670|http://www.wikidata.org/entity/Q2450848"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20992288"}, "Title": {"type": "literal", "value": "Anderswo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22944045"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22944169|http://www.wikidata.org/entity/Q22944045"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q287420|http://www.wikidata.org/entity/Q76946|http://www.wikidata.org/entity/Q18912935|http://www.wikidata.org/entity/Q12411265|http://www.wikidata.org/entity/Q7058152|http://www.wikidata.org/entity/Q4096293|http://www.wikidata.org/entity/Q1739698|http://www.wikidata.org/entity/Q1536641"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192881|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2014 film directed by Ester Amrami"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27947209"}, "Title": {"type": "literal", "value": "O \u00daltimo Virgem"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q59230839"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Felipe  Bretas"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16551754"}, "Title": {"type": "literal", "value": "Eltern"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q99871"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q99871"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19888324|http://www.wikidata.org/entity/Q5126010|http://www.wikidata.org/entity/Q1682918|http://www.wikidata.org/entity/Q106816|http://www.wikidata.org/entity/Q85600|http://www.wikidata.org/entity/Q69108"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2013 film by Robert Thalheim"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15070715"}, "Title": {"type": "literal", "value": "Beside Still Waters"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q703929"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q703929"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19538831|http://www.wikidata.org/entity/Q16198459|http://www.wikidata.org/entity/Q15144287|http://www.wikidata.org/entity/Q514020"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Chris Lowell"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q46201471"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q58640866"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18008984"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22687764|http://www.wikidata.org/entity/Q18907601|http://www.wikidata.org/entity/Q4249008|http://www.wikidata.org/entity/Q4103145|http://www.wikidata.org/entity/Q921496"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2018 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1651008"}, "Title": {"type": "literal", "value": "Valgaften"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q491314"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q491314"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12327197|http://www.wikidata.org/entity/Q12319347|http://www.wikidata.org/entity/Q12311098|http://www.wikidata.org/entity/Q3026010|http://www.wikidata.org/entity/Q2735848|http://www.wikidata.org/entity/Q1797671|http://www.wikidata.org/entity/Q382210|http://www.wikidata.org/entity/Q323563"}, "Published": {"type": "literal", "value": "1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "11"}, "Description": {"type": "literal", "value": "1998 film by Anders Thomas Jensen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3067157"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q737676"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q737676"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3559579|http://www.wikidata.org/entity/Q3481005|http://www.wikidata.org/entity/Q3423028|http://www.wikidata.org/entity/Q3375576|http://www.wikidata.org/entity/Q3242527|http://www.wikidata.org/entity/Q3063963|http://www.wikidata.org/entity/Q2900809|http://www.wikidata.org/entity/Q2866088|http://www.wikidata.org/entity/Q1685364|http://www.wikidata.org/entity/Q737676|http://www.wikidata.org/entity/Q726232|http://www.wikidata.org/entity/Q681451|http://www.wikidata.org/entity/Q360899|http://www.wikidata.org/entity/Q274113"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Micha\u00ebl Youn"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13655917"}, "Title": {"type": "literal", "value": "One Day in Europe"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q101288"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21032019|http://www.wikidata.org/entity/Q4696189|http://www.wikidata.org/entity/Q1639649|http://www.wikidata.org/entity/Q1497350|http://www.wikidata.org/entity/Q913571|http://www.wikidata.org/entity/Q275346|http://www.wikidata.org/entity/Q64823"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Hannes St\u00f6hr"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1169506"}, "Title": {"type": "literal", "value": "Das Leben des C. Brunner"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1084628"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 film by Christoph Brunner"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q9378052"}, "Title": {"type": "literal", "value": "Wo\u017conko"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9138174"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9138174"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Abelard Giza"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19866454"}, "Title": {"type": "literal", "value": "Preppies"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14327504"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1984"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1984 film by Chuck Vincent"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12839361"}, "Title": {"type": "literal", "value": "Evl\u0259ri g\u00f6yd\u0259l\u0259n yar"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16375795|http://www.wikidata.org/entity/Q4134063"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q633750"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4071343|http://www.wikidata.org/entity/Q1195686"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "117"}, "Description": {"type": "literal", "value": "2010 film by Ramiz Hasanoglu"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q616799"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17183934"}, "Title": {"type": "literal", "value": "Sisters"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q724795"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10346344"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19538831|http://www.wikidata.org/entity/Q19517962|http://www.wikidata.org/entity/Q15695313|http://www.wikidata.org/entity/Q7420433|http://www.wikidata.org/entity/Q4273978|http://www.wikidata.org/entity/Q3805729|http://www.wikidata.org/entity/Q2907990|http://www.wikidata.org/entity/Q2816311|http://www.wikidata.org/entity/Q1955147|http://www.wikidata.org/entity/Q1077635|http://www.wikidata.org/entity/Q739062|http://www.wikidata.org/entity/Q723057|http://www.wikidata.org/entity/Q528866|http://www.wikidata.org/entity/Q443891|http://www.wikidata.org/entity/Q315051|http://www.wikidata.org/entity/Q295233|http://www.wikidata.org/entity/Q261977|http://www.wikidata.org/entity/Q236755|http://www.wikidata.org/entity/Q236527|http://www.wikidata.org/entity/Q230203|http://www.wikidata.org/entity/Q217573|http://www.wikidata.org/entity/Q44437|http://www.wikidata.org/entity/Q14540"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "118"}, "Description": {"type": "literal", "value": "2015 comedy film directed by Jason Moore"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21009248"}, "Title": {"type": "literal", "value": "Nous trois ou rien"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3196131"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3196131"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3183342|http://www.wikidata.org/entity/Q2864476|http://www.wikidata.org/entity/Q2833411|http://www.wikidata.org/entity/Q2671216|http://www.wikidata.org/entity/Q1930952|http://www.wikidata.org/entity/Q1340950|http://www.wikidata.org/entity/Q1044296|http://www.wikidata.org/entity/Q958831|http://www.wikidata.org/entity/Q139052|http://www.wikidata.org/entity/Q23767057|http://www.wikidata.org/entity/Q3200883|http://www.wikidata.org/entity/Q3196131"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2015 film directed by Kheiron"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4402946"}, "Title": {"type": "literal", "value": "\u0421 \u043d\u043e\u0432\u044b\u043c \u0433\u043e\u0434\u043e\u043c, \u043c\u0430\u043c\u044b!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4065391"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28368075|http://www.wikidata.org/entity/Q4065391"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4495971|http://www.wikidata.org/entity/Q4402599|http://www.wikidata.org/entity/Q4399190|http://www.wikidata.org/entity/Q4396438|http://www.wikidata.org/entity/Q4243126|http://www.wikidata.org/entity/Q4196443|http://www.wikidata.org/entity/Q4112450|http://www.wikidata.org/entity/Q4077498|http://www.wikidata.org/entity/Q2398970|http://www.wikidata.org/entity/Q2213598|http://www.wikidata.org/entity/Q2064926|http://www.wikidata.org/entity/Q1975283|http://www.wikidata.org/entity/Q631058|http://www.wikidata.org/entity/Q500404|http://www.wikidata.org/entity/Q167548|http://www.wikidata.org/entity/Q106529"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Sarik Andreasyan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4038074"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11135305"}, "Title": {"type": "literal", "value": "Profe por accidente"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12201342"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3213595"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q242526"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3293174|http://www.wikidata.org/entity/Q3015148|http://www.wikidata.org/entity/Q2724026|http://www.wikidata.org/entity/Q576085|http://www.wikidata.org/entity/Q491766|http://www.wikidata.org/entity/Q291521|http://www.wikidata.org/entity/Q205868|http://www.wikidata.org/entity/Q106275"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Sylvie Testud"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q8051184"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5250647"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5250647"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q190071"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Deepshika"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23925083"}, "Title": {"type": "literal", "value": "Tour de France"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3416159"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3416159"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20745261|http://www.wikidata.org/entity/Q17496932|http://www.wikidata.org/entity/Q106508"}, "Published": {"type": "literal", "value": "2017|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2016 film by Rachid Dja\u00efdani"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q385380"}, "Title": {"type": "literal", "value": "I Want Candy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3498661"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q713032"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7493792|http://www.wikidata.org/entity/Q7295103|http://www.wikidata.org/entity/Q6776529|http://www.wikidata.org/entity/Q6148197|http://www.wikidata.org/entity/Q2439560|http://www.wikidata.org/entity/Q2217295|http://www.wikidata.org/entity/Q1333202|http://www.wikidata.org/entity/Q1273669|http://www.wikidata.org/entity/Q964454|http://www.wikidata.org/entity/Q850596|http://www.wikidata.org/entity/Q447614|http://www.wikidata.org/entity/Q447218|http://www.wikidata.org/entity/Q233707|http://www.wikidata.org/entity/Q185122|http://www.wikidata.org/entity/Q99036|http://www.wikidata.org/entity/Q45647|http://www.wikidata.org/entity/Q7816870"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q1146335"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2007 film by Stephen Surjik"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q72081"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3615192"}, "Title": {"type": "literal", "value": "Anche se \u00e8 amore non si vede"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3946049|http://www.wikidata.org/entity/Q4007762"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3080921|http://www.wikidata.org/entity/Q4007762|http://www.wikidata.org/entity/Q3946049"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3738111|http://www.wikidata.org/entity/Q3694286|http://www.wikidata.org/entity/Q2717287|http://www.wikidata.org/entity/Q441915|http://www.wikidata.org/entity/Q437455|http://www.wikidata.org/entity/Q178307|http://www.wikidata.org/entity/Q4007762|http://www.wikidata.org/entity/Q3946049|http://www.wikidata.org/entity/Q3847239|http://www.wikidata.org/entity/Q3767179"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2011 film by Salvatore Ficarra, Valentino Picone"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7148826"}, "Title": {"type": "literal", "value": "Pau et son fr\u00e8re"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q943885"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q352306"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5239637|http://www.wikidata.org/entity/Q3336549"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "2001 film by Marc Recha"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13424245"}, "Title": {"type": "literal", "value": "Viaggio sola"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3847526"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3847526|http://www.wikidata.org/entity/Q3804677|http://www.wikidata.org/entity/Q1440868"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13427362|http://www.wikidata.org/entity/Q3992834|http://www.wikidata.org/entity/Q3763355|http://www.wikidata.org/entity/Q3610432|http://www.wikidata.org/entity/Q3063990|http://www.wikidata.org/entity/Q2927023|http://www.wikidata.org/entity/Q444410|http://www.wikidata.org/entity/Q433565|http://www.wikidata.org/entity/Q201617"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2013 film by Maria Sole Tognazzi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3841837"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3749525"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3749525|http://www.wikidata.org/entity/Q3615460"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3749666|http://www.wikidata.org/entity/Q3701933|http://www.wikidata.org/entity/Q3667498|http://www.wikidata.org/entity/Q3611814|http://www.wikidata.org/entity/Q3362666|http://www.wikidata.org/entity/Q518369"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2006 film by Francesco Amato"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1305773"}, "Title": {"type": "literal", "value": "Quick Change"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3141551|http://www.wikidata.org/entity/Q29250"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3141551"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1388111|http://www.wikidata.org/entity/Q1292127|http://www.wikidata.org/entity/Q973065|http://www.wikidata.org/entity/Q487094|http://www.wikidata.org/entity/Q366834|http://www.wikidata.org/entity/Q317228|http://www.wikidata.org/entity/Q316647|http://www.wikidata.org/entity/Q296630|http://www.wikidata.org/entity/Q280098|http://www.wikidata.org/entity/Q223117|http://www.wikidata.org/entity/Q107249|http://www.wikidata.org/entity/Q29250"}, "Published": {"type": "literal", "value": "1990"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q496523|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "1990 film by Bill Murray, Howard Franklin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q47544971"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5068430"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20195451"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5276830"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Chakri Toleti"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17081430"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41794758"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7801672"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q233748"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Abhishek Sharma"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7752961"}, "Title": {"type": "literal", "value": "The Myth of the American Sleepover"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19815594"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19815594"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28215302|http://www.wikidata.org/entity/Q7035096|http://www.wikidata.org/entity/Q4749378|http://www.wikidata.org/entity/Q439554|http://www.wikidata.org/entity/Q435647"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by David Robert Mitchell"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11243539"}, "Title": {"type": "literal", "value": "BrainStorm"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6203818"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12035281"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20057955|http://www.wikidata.org/entity/Q12024009|http://www.wikidata.org/entity/Q12018955|http://www.wikidata.org/entity/Q12008147|http://www.wikidata.org/entity/Q5825305|http://www.wikidata.org/entity/Q5179830|http://www.wikidata.org/entity/Q3506639|http://www.wikidata.org/entity/Q2064616|http://www.wikidata.org/entity/Q1675647|http://www.wikidata.org/entity/Q1418808|http://www.wikidata.org/entity/Q866999|http://www.wikidata.org/entity/Q741577|http://www.wikidata.org/entity/Q430017|http://www.wikidata.org/entity/Q265560|http://www.wikidata.org/entity/Q220119|http://www.wikidata.org/entity/Q159693"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Ji\u0159\u00ed Strach"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4317271"}, "Title": {"type": "literal", "value": "\u041d\u0435\u043f\u0430\u043b \u0444\u043e\u0440\u0435\u0432\u0430"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4370993"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4370993"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2013 documentary film directed by Alyona Polunina"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56243656"}, "Title": {"type": "literal", "value": "Empeliculados"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5274593"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Diego Bustamante"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18674502"}, "Title": {"type": "literal", "value": "El Ciudadano Ilustre"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21191121|http://www.wikidata.org/entity/Q21191123"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6756539|http://www.wikidata.org/entity/Q5994539|http://www.wikidata.org/entity/Q5797435|http://www.wikidata.org/entity/Q5621412|http://www.wikidata.org/entity/Q4755088|http://www.wikidata.org/entity/Q3357012|http://www.wikidata.org/entity/Q610174|http://www.wikidata.org/entity/Q28465997|http://www.wikidata.org/entity/Q28065415|http://www.wikidata.org/entity/Q28065414|http://www.wikidata.org/entity/Q28065408|http://www.wikidata.org/entity/Q28065309|http://www.wikidata.org/entity/Q16298341"}, "Published": {"type": "literal", "value": "2015|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "118|120"}, "Description": {"type": "literal", "value": "2016 film by Gast\u00f3n Duprat & Mariano Cohn"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27703695"}, "Title": {"type": "literal", "value": "Casi leyendas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30917151"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5707135|http://www.wikidata.org/entity/Q5274770|http://www.wikidata.org/entity/Q4820006|http://www.wikidata.org/entity/Q704160|http://www.wikidata.org/entity/Q605380|http://www.wikidata.org/entity/Q526112|http://www.wikidata.org/entity/Q509900|http://www.wikidata.org/entity/Q326187"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Gabriel Nesci"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12336764"}, "Title": {"type": "literal", "value": "Spr\u00e6ngfarlig bombe"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q952621"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q491314"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21246616|http://www.wikidata.org/entity/Q12343520|http://www.wikidata.org/entity/Q12342694|http://www.wikidata.org/entity/Q12338513|http://www.wikidata.org/entity/Q12337161|http://www.wikidata.org/entity/Q12328868|http://www.wikidata.org/entity/Q12327197|http://www.wikidata.org/entity/Q12326885|http://www.wikidata.org/entity/Q12326830|http://www.wikidata.org/entity/Q12326087|http://www.wikidata.org/entity/Q12325206|http://www.wikidata.org/entity/Q12319764|http://www.wikidata.org/entity/Q12316041|http://www.wikidata.org/entity/Q12307115|http://www.wikidata.org/entity/Q12303096|http://www.wikidata.org/entity/Q12301854|http://www.wikidata.org/entity/Q11993648|http://www.wikidata.org/entity/Q11989253|http://www.wikidata.org/entity/Q7239361|http://www.wikidata.org/entity/Q7176561|http://www.wikidata.org/entity/Q6858699|http://www.wikidata.org/entity/Q6491701|http://www.wikidata.org/entity/Q5650628|http://www.wikidata.org/entity/Q4568029|http://www.wikidata.org/entity/Q3365380|http://www.wikidata.org/entity/Q3066309|http://www.wikidata.org/entity/Q2648022|http://www.wikidata.org/entity/Q1789215|http://www.wikidata.org/entity/Q1744038|http://www.wikidata.org/entity/Q1080249|http://www.wikidata.org/entity/Q1044460|http://www.wikidata.org/entity/Q952621|http://www.wikidata.org/entity/Q728020|http://www.wikidata.org/entity/Q533028|http://www.wikidata.org/entity/Q443361|http://www.wikidata.org/entity/Q383754|http://www.wikidata.org/entity/Q382210|http://www.wikidata.org/entity/Q84084"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Tomas Villum Jensen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10611490"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q33436919|http://www.wikidata.org/entity/Q17089131"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q33436919|http://www.wikidata.org/entity/Q17089131"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12339172|http://www.wikidata.org/entity/Q5386449|http://www.wikidata.org/entity/Q4947416|http://www.wikidata.org/entity/Q3358372|http://www.wikidata.org/entity/Q1797902|http://www.wikidata.org/entity/Q768899|http://www.wikidata.org/entity/Q740244|http://www.wikidata.org/entity/Q530997|http://www.wikidata.org/entity/Q468499|http://www.wikidata.org/entity/Q448968|http://www.wikidata.org/entity/Q289924|http://www.wikidata.org/entity/Q138232"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Antonio Tubl\u00e9n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18633256"}, "Title": {"type": "literal", "value": "Zu mir oder zu dir?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1663184"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16320787"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2014 film by Ingo Rasper"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q859131"}, "Title": {"type": "literal", "value": "Big Nothing"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3163830"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3163830"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3950325|http://www.wikidata.org/entity/Q501750|http://www.wikidata.org/entity/Q499644|http://www.wikidata.org/entity/Q238464|http://www.wikidata.org/entity/Q233054|http://www.wikidata.org/entity/Q232786|http://www.wikidata.org/entity/Q229237|http://www.wikidata.org/entity/Q203205|http://www.wikidata.org/entity/Q188792"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2006 film by Jean-Baptiste Andrea"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1544011"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q52151500"}, "Title": {"type": "literal", "value": "Papi Chulo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30123055"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q315340|http://www.wikidata.org/entity/Q165296"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by John Butler"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25112056"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20647184"}, "Title": {"type": "literal", "value": "Drunk Wedding"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19578231"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20644935|http://www.wikidata.org/entity/Q1139996"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Nick Weiss"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q38887345"}, "Title": {"type": "literal", "value": "Die Pfefferk\u00f6rner und der Fluch des Schwarzen K\u00f6nigs"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1082076"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1227739"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Christian Theede"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12593876"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21825013"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1997"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1997 film directed by Lee Sangwoo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30740341"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3021834"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3021834"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2865970"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Delphine Gleize"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60852007"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q233347"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Clea DuVall"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3095001"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3588126"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3293783|http://www.wikidata.org/entity/Q3287782|http://www.wikidata.org/entity/Q1775644|http://www.wikidata.org/entity/Q462256|http://www.wikidata.org/entity/Q451107|http://www.wikidata.org/entity/Q271553|http://www.wikidata.org/entity/Q242526"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film directed by \u00c9l\u00e9onore Faucher"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56358983"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5929474"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Bahman Goudarzi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q33730613"}, "Title": {"type": "literal", "value": "Public Schooled"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22280032"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Kyle Rideout"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48757642"}, "Title": {"type": "literal", "value": "Ast\u00e9rix : Le Secret de la potion magique"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61875074|http://www.wikidata.org/entity/Q2833411"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2833411"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019|2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Alexandre Astier"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3117481"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56284115"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7441419"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2000 film directed by Sean S. Baker"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3824068"}, "Title": {"type": "literal", "value": "La scoperta dell'alba"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3978256"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3978256"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3978256|http://www.wikidata.org/entity/Q3833073|http://www.wikidata.org/entity/Q1041904|http://www.wikidata.org/entity/Q698000|http://www.wikidata.org/entity/Q697816|http://www.wikidata.org/entity/Q201617"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2013 film by Susanna Nicchiarelli"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3739211|http://www.wikidata.org/entity/Q3929491"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3666098"}, "Title": {"type": "literal", "value": "Chance"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q456862"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q456862"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2452126|http://www.wikidata.org/entity/Q526106|http://www.wikidata.org/entity/Q456862|http://www.wikidata.org/entity/Q391445|http://www.wikidata.org/entity/Q312885"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "75"}, "Description": {"type": "literal", "value": "2002 film film by Amber Benson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27959196"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q652149"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2475741"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Anees Bazmee"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13522749"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4648046"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6428713"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q642827|http://www.wikidata.org/entity/Q158533|http://www.wikidata.org/entity/Q63730"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by A. Karunakaran"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5529977"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26260226"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26258249"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26258249"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "2017 film directed by Arne K\u00f6rner"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18611400"}, "Title": {"type": "literal", "value": "\u0416\u0438\u0432\u0438 \u043b\u0435\u0433\u0435\u043d\u0434\u0438"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4199248"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18637197|http://www.wikidata.org/entity/Q12289328|http://www.wikidata.org/entity/Q4199248"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Niki Iliev"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q830452"}, "Title": {"type": "literal", "value": "Beste Gegend"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q96164"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1429616|http://www.wikidata.org/entity/Q1405763|http://www.wikidata.org/entity/Q562212|http://www.wikidata.org/entity/Q98469"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2008 film by Marcus H. Rosenm\u00fcller"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22078020"}, "Title": {"type": "literal", "value": "Girlfriend's Day"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6834610"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7184604|http://www.wikidata.org/entity/Q888178"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q58443690|http://www.wikidata.org/entity/Q5902748|http://www.wikidata.org/entity/Q888178|http://www.wikidata.org/entity/Q231128"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Michael Stephenson"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17128241"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1509644"}, "Title": {"type": "literal", "value": "Itty Bitty Titty Committee"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q441722"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q469579|http://www.wikidata.org/entity/Q461082|http://www.wikidata.org/entity/Q449626|http://www.wikidata.org/entity/Q447584|http://www.wikidata.org/entity/Q447289|http://www.wikidata.org/entity/Q432710|http://www.wikidata.org/entity/Q267243|http://www.wikidata.org/entity/Q260241|http://www.wikidata.org/entity/Q235905|http://www.wikidata.org/entity/Q5245814|http://www.wikidata.org/entity/Q3180255|http://www.wikidata.org/entity/Q1189470"}, "Published": {"type": "literal", "value": "2008|2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2007 feminist comedy film directed by Jamie Babbit"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29535057"}, "Title": {"type": "literal", "value": "\u00d4tez-moi d'un doute"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2938811"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29537187|http://www.wikidata.org/entity/Q3310148|http://www.wikidata.org/entity/Q2938811"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q236157|http://www.wikidata.org/entity/Q164976|http://www.wikidata.org/entity/Q3375576|http://www.wikidata.org/entity/Q1270509|http://www.wikidata.org/entity/Q523442|http://www.wikidata.org/entity/Q510002"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Carine Tardieu"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q525894|http://www.wikidata.org/entity/Q3193645|http://www.wikidata.org/entity/Q3488561|http://www.wikidata.org/entity/Q3547244"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61125332"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6781975"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6781975"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q841515"}, "Title": {"type": "literal", "value": "Road Trip"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q362824"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q362824"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7812258|http://www.wikidata.org/entity/Q3809587|http://www.wikidata.org/entity/Q3805760|http://www.wikidata.org/entity/Q2978917|http://www.wikidata.org/entity/Q2278533|http://www.wikidata.org/entity/Q1778472|http://www.wikidata.org/entity/Q235272|http://www.wikidata.org/entity/Q230510|http://www.wikidata.org/entity/Q193212|http://www.wikidata.org/entity/Q39983|http://www.wikidata.org/entity/Q1181609|http://www.wikidata.org/entity/Q921470|http://www.wikidata.org/entity/Q458512|http://www.wikidata.org/entity/Q445878|http://www.wikidata.org/entity/Q445638|http://www.wikidata.org/entity/Q367094|http://www.wikidata.org/entity/Q362824|http://www.wikidata.org/entity/Q360674|http://www.wikidata.org/entity/Q350714|http://www.wikidata.org/entity/Q315826|http://www.wikidata.org/entity/Q314610|http://www.wikidata.org/entity/Q269673|http://www.wikidata.org/entity/Q18933|http://www.wikidata.org/entity/Q14450|http://www.wikidata.org/entity/Q4914"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2000 film by Todd Phillips"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7752106"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20538757"}, "Title": {"type": "literal", "value": "Staten Island Summer"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30122028"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5145253"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16215980|http://www.wikidata.org/entity/Q15220926|http://www.wikidata.org/entity/Q14954903|http://www.wikidata.org/entity/Q7114391|http://www.wikidata.org/entity/Q5679698|http://www.wikidata.org/entity/Q5145253|http://www.wikidata.org/entity/Q5056524|http://www.wikidata.org/entity/Q3296147|http://www.wikidata.org/entity/Q2935069|http://www.wikidata.org/entity/Q2907990|http://www.wikidata.org/entity/Q2093638|http://www.wikidata.org/entity/Q1823463|http://www.wikidata.org/entity/Q1319744|http://www.wikidata.org/entity/Q1150276|http://www.wikidata.org/entity/Q512986|http://www.wikidata.org/entity/Q298694|http://www.wikidata.org/entity/Q229979|http://www.wikidata.org/entity/Q229325|http://www.wikidata.org/entity/Q189992|http://www.wikidata.org/entity/Q14535|http://www.wikidata.org/entity/Q22771087"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2015 American comedy film directed by Rhys Thomas"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6683799"}, "Title": {"type": "literal", "value": "Lost & Found in Armenia"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27960476"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20508470"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23664206|http://www.wikidata.org/entity/Q4147975|http://www.wikidata.org/entity/Q2090275|http://www.wikidata.org/entity/Q553895"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Gor Kirakosyan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19562413"}, "Title": {"type": "literal", "value": "M\u00e6nd og H\u00f8ns"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q491314"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q491314"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q768899|http://www.wikidata.org/entity/Q443662|http://www.wikidata.org/entity/Q383754|http://www.wikidata.org/entity/Q323563|http://www.wikidata.org/entity/Q294647|http://www.wikidata.org/entity/Q84081|http://www.wikidata.org/entity/Q40012158|http://www.wikidata.org/entity/Q40012103|http://www.wikidata.org/entity/Q12337210|http://www.wikidata.org/entity/Q12333484|http://www.wikidata.org/entity/Q12324614|http://www.wikidata.org/entity/Q11980775|http://www.wikidata.org/entity/Q5968094|http://www.wikidata.org/entity/Q2559831|http://www.wikidata.org/entity/Q1797671|http://www.wikidata.org/entity/Q1744038"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2015 film by Anders Thomas Jensen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22000239"}, "Title": {"type": "literal", "value": "Meu Passado Me Condena 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16940454"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16940866"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10286900"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2015 film by J\u00falia Rezende"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29514884"}, "Title": {"type": "literal", "value": "Happy Death Day"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3675834"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3675834|http://www.wikidata.org/entity/Q2542057"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q31833598|http://www.wikidata.org/entity/Q28374210|http://www.wikidata.org/entity/Q14807038"}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q53094"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2017 horror, black comedy film directed by Christopher B. Landon"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16984664"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10729092"}, "Title": {"type": "literal", "value": "Kalde f\u00f8tter"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11957305"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9358514"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11967927|http://www.wikidata.org/entity/Q11957305|http://www.wikidata.org/entity/Q11175618|http://www.wikidata.org/entity/Q7825276|http://www.wikidata.org/entity/Q7710693|http://www.wikidata.org/entity/Q6765710|http://www.wikidata.org/entity/Q5110728|http://www.wikidata.org/entity/Q4951828|http://www.wikidata.org/entity/Q818046|http://www.wikidata.org/entity/Q22282567|http://www.wikidata.org/entity/Q22282512|http://www.wikidata.org/entity/Q22282321|http://www.wikidata.org/entity/Q22282279|http://www.wikidata.org/entity/Q22281622|http://www.wikidata.org/entity/Q17113457|http://www.wikidata.org/entity/Q17096616|http://www.wikidata.org/entity/Q15678591|http://www.wikidata.org/entity/Q14193606|http://www.wikidata.org/entity/Q11978210"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q193979"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2006 Norwegian film directed by Alexander Eik"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3221419"}, "Title": {"type": "literal", "value": "Le Ciel, les Oiseaux et... ta m\u00e8re !"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3032767"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3032767|http://www.wikidata.org/entity/Q3106333"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2625575|http://www.wikidata.org/entity/Q1713457|http://www.wikidata.org/entity/Q312661|http://www.wikidata.org/entity/Q266881|http://www.wikidata.org/entity/Q23926410|http://www.wikidata.org/entity/Q18179234|http://www.wikidata.org/entity/Q3591196|http://www.wikidata.org/entity/Q3502082|http://www.wikidata.org/entity/Q3470502|http://www.wikidata.org/entity/Q3418669|http://www.wikidata.org/entity/Q3189442|http://www.wikidata.org/entity/Q3189067|http://www.wikidata.org/entity/Q3166862"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "1999 film by Djamel Bensalah"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q525894|http://www.wikidata.org/entity/Q1032540|http://www.wikidata.org/entity/Q3488610|http://www.wikidata.org/entity/Q29577770"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27703651"}, "Title": {"type": "literal", "value": "\u00c7alg\u0131 \u00c7engi \u0130kimiz"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6052251"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6052251"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6097675"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Sel\u00e7uk Aydemir"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42955507"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q47492960"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Prabhakar Sharan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20762674"}, "Title": {"type": "literal", "value": "Going in Style"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q139330"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19517847"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q109324|http://www.wikidata.org/entity/Q108283|http://www.wikidata.org/entity/Q48337|http://www.wikidata.org/entity/Q6761145|http://www.wikidata.org/entity/Q3854103|http://www.wikidata.org/entity/Q2050378|http://www.wikidata.org/entity/Q723256|http://www.wikidata.org/entity/Q457991|http://www.wikidata.org/entity/Q232059|http://www.wikidata.org/entity/Q210094|http://www.wikidata.org/entity/Q193070|http://www.wikidata.org/entity/Q123351|http://www.wikidata.org/entity/Q112536"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q496523|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q663106"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2017 film by Zach Braff"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q179200"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q52946182"}, "Title": {"type": "literal", "value": "De Rolling 2: por el sue\u00f1o mundialista"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16302557"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Harold Trompetero"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29913451"}, "Title": {"type": "literal", "value": "Hampstead"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q595112"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15990205|http://www.wikidata.org/entity/Q8003106|http://www.wikidata.org/entity/Q6163711|http://www.wikidata.org/entity/Q4727316|http://www.wikidata.org/entity/Q2924983|http://www.wikidata.org/entity/Q915916|http://www.wikidata.org/entity/Q731187|http://www.wikidata.org/entity/Q444410|http://www.wikidata.org/entity/Q276165|http://www.wikidata.org/entity/Q206659|http://www.wikidata.org/entity/Q102642"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2017 film by Joel Hopkins"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22078002"}, "Title": {"type": "literal", "value": "The Disaster Artist"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q306403"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5965293|http://www.wikidata.org/entity/Q16886480"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23547|http://www.wikidata.org/entity/Q62975|http://www.wikidata.org/entity/Q45229|http://www.wikidata.org/entity/Q6382703|http://www.wikidata.org/entity/Q5649155|http://www.wikidata.org/entity/Q3776439|http://www.wikidata.org/entity/Q2301339|http://www.wikidata.org/entity/Q1713263|http://www.wikidata.org/entity/Q888178|http://www.wikidata.org/entity/Q860114|http://www.wikidata.org/entity/Q489831|http://www.wikidata.org/entity/Q454494|http://www.wikidata.org/entity/Q383930|http://www.wikidata.org/entity/Q336400|http://www.wikidata.org/entity/Q325396|http://www.wikidata.org/entity/Q306403|http://www.wikidata.org/entity/Q241897|http://www.wikidata.org/entity/Q236578|http://www.wikidata.org/entity/Q235328|http://www.wikidata.org/entity/Q231536|http://www.wikidata.org/entity/Q220308|http://www.wikidata.org/entity/Q217004|http://www.wikidata.org/entity/Q201842|http://www.wikidata.org/entity/Q188137|http://www.wikidata.org/entity/Q178882|http://www.wikidata.org/entity/Q139330|http://www.wikidata.org/entity/Q7153461"}, "Published": {"type": "literal", "value": "2017|2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2017 film directed by James Franco about The Room"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3041294|http://www.wikidata.org/entity/Q17092493|http://www.wikidata.org/entity/Q79202|http://www.wikidata.org/entity/Q21178818|http://www.wikidata.org/entity/Q27150184"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q57314399"}, "Title": {"type": "literal", "value": "Playmobil: The Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23409740"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28977435|http://www.wikidata.org/entity/Q25796519"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20882479|http://www.wikidata.org/entity/Q20740875"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28968258|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "2019 film directed by Lino DiSalvo"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3352864"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16661269"}, "Title": {"type": "literal", "value": "Lou ! Journal infime"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3189602"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3189602"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19843756|http://www.wikidata.org/entity/Q18414684|http://www.wikidata.org/entity/Q15170433|http://www.wikidata.org/entity/Q3200883|http://www.wikidata.org/entity/Q3167077|http://www.wikidata.org/entity/Q3085730|http://www.wikidata.org/entity/Q966378|http://www.wikidata.org/entity/Q233742|http://www.wikidata.org/entity/Q106573"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film directed by Julien Neel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3236871"}, "Title": {"type": "literal", "value": "Let My People Go!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3313145"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q551772|http://www.wikidata.org/entity/Q3313145"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3340587|http://www.wikidata.org/entity/Q1210548|http://www.wikidata.org/entity/Q693534|http://www.wikidata.org/entity/Q514190|http://www.wikidata.org/entity/Q271553|http://www.wikidata.org/entity/Q234807|http://www.wikidata.org/entity/Q136221|http://www.wikidata.org/entity/Q116314|http://www.wikidata.org/entity/Q3308651|http://www.wikidata.org/entity/Q2980691|http://www.wikidata.org/entity/Q2964946|http://www.wikidata.org/entity/Q2493753|http://www.wikidata.org/entity/Q2018222|http://www.wikidata.org/entity/Q1684856|http://www.wikidata.org/entity/Q15726975|http://www.wikidata.org/entity/Q6227752|http://www.wikidata.org/entity/Q3350916"}, "Published": {"type": "literal", "value": "2012|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q20442589"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Mikael Buch"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q482944"}, "Title": {"type": "literal", "value": "\uc9c0\uad6c\ub97c \uc9c0\ucf1c\ub77c!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6153892"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6153892"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16092768|http://www.wikidata.org/entity/Q490635|http://www.wikidata.org/entity/Q483517"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q761469|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 South Korean film directed by Jang Jun-hwan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30235606"}, "Title": {"type": "literal", "value": "Orecchie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q59311592"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2016 film by Alessandro Aronadio"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4305836"}, "Title": {"type": "literal", "value": "\u041c\u0443\u0436\u0441\u043a\u0430\u044f \u0436\u0435\u043d\u0441\u043a\u0430\u044f \u0438\u0433\u0440\u0430"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13218078"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3553677"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film directed by Marija Makhanko"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1918046"}, "Title": {"type": "literal", "value": "Meine sch\u00f6ne Bescherung"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q104726"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q445550|http://www.wikidata.org/entity/Q117700|http://www.wikidata.org/entity/Q114012|http://www.wikidata.org/entity/Q77758|http://www.wikidata.org/entity/Q66771|http://www.wikidata.org/entity/Q65511|http://www.wikidata.org/entity/Q65111|http://www.wikidata.org/entity/Q64008"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2007 film by Vanessa Jopp"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q312538"}, "Title": {"type": "literal", "value": "Soul Kitchen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q77061"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q77061|http://www.wikidata.org/entity/Q72883"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1745408|http://www.wikidata.org/entity/Q1727545|http://www.wikidata.org/entity/Q1605129|http://www.wikidata.org/entity/Q1556252|http://www.wikidata.org/entity/Q1531684|http://www.wikidata.org/entity/Q1248009|http://www.wikidata.org/entity/Q1053243|http://www.wikidata.org/entity/Q1051271|http://www.wikidata.org/entity/Q1020694|http://www.wikidata.org/entity/Q720344|http://www.wikidata.org/entity/Q527047|http://www.wikidata.org/entity/Q197977|http://www.wikidata.org/entity/Q122925|http://www.wikidata.org/entity/Q112062|http://www.wikidata.org/entity/Q104741|http://www.wikidata.org/entity/Q98286|http://www.wikidata.org/entity/Q97620|http://www.wikidata.org/entity/Q90820|http://www.wikidata.org/entity/Q22280962|http://www.wikidata.org/entity/Q18626259|http://www.wikidata.org/entity/Q2803698|http://www.wikidata.org/entity/Q2433429|http://www.wikidata.org/entity/Q2287499|http://www.wikidata.org/entity/Q2076077|http://www.wikidata.org/entity/Q1896020|http://www.wikidata.org/entity/Q1892651|http://www.wikidata.org/entity/Q1806325|http://www.wikidata.org/entity/Q1778862|http://www.wikidata.org/entity/Q77035|http://www.wikidata.org/entity/Q74258|http://www.wikidata.org/entity/Q72883|http://www.wikidata.org/entity/Q58603|http://www.wikidata.org/entity/Q25839"}, "Published": {"type": "literal", "value": "2010|2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2009 film by Fatih Ak\u0131n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2001579"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q329409"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014|2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "2012 film by Aleksey Igudesman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18633959"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028908"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028908"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Thomas Salvador"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18920944"}, "Title": {"type": "literal", "value": "Discount"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19630268"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19630268"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3350797"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Louis-Julien Petit"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1678196"}, "Title": {"type": "literal", "value": "Wholly Moses!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2078767"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16216793"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7153429|http://www.wikidata.org/entity/Q3018248|http://www.wikidata.org/entity/Q2149007|http://www.wikidata.org/entity/Q769205|http://www.wikidata.org/entity/Q555182|http://www.wikidata.org/entity/Q446290|http://www.wikidata.org/entity/Q348209|http://www.wikidata.org/entity/Q315734|http://www.wikidata.org/entity/Q314812|http://www.wikidata.org/entity/Q310343|http://www.wikidata.org/entity/Q294912|http://www.wikidata.org/entity/Q234068"}, "Published": {"type": "literal", "value": "1980"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "1980 film by Gary Weis"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4185458"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q354554"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5619623|http://www.wikidata.org/entity/Q704130"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 Chinese film directed by Ning Hao"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24648157"}, "Title": {"type": "literal", "value": "La Loi de la jungle"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14833406"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3559719|http://www.wikidata.org/entity/Q3559331|http://www.wikidata.org/entity/Q746932"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Antonin Peretjatko"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15673305"}, "Title": {"type": "literal", "value": "Brasserie Romantiek"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2486371"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3054299"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15873529|http://www.wikidata.org/entity/Q4791802|http://www.wikidata.org/entity/Q4771719|http://www.wikidata.org/entity/Q3429052|http://www.wikidata.org/entity/Q3155241|http://www.wikidata.org/entity/Q2919623|http://www.wikidata.org/entity/Q2649944|http://www.wikidata.org/entity/Q2103750|http://www.wikidata.org/entity/Q2094858|http://www.wikidata.org/entity/Q1880662|http://www.wikidata.org/entity/Q607613|http://www.wikidata.org/entity/Q545546"}, "Published": {"type": "literal", "value": "2015|2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Jo\u00ebl Vanhoebrouck"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48313910"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q231237"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q231237"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Karen Gillan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q59725888"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19610277"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Odunlade Adekola"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4658072"}, "Title": {"type": "literal", "value": "Ma\u00f0ur eins og \u00e9g"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7386482"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q445921"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by R\u00f3bert Ingi Douglas"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5648513"}, "Title": {"type": "literal", "value": "Hank and Mike"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6791656"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Matthiew Klinck"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60737704"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5346042"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Edward af Sill\u00e9n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27051174"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27051175"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "9"}, "Description": {"type": "literal", "value": "2016 documentary film directed by Waqar Ahmed"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6506901"}, "Title": {"type": "literal", "value": "Le Fear"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16203491"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16203491"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Jason Croot"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q58332779"}, "Title": {"type": "literal", "value": "Outside the Box"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2086284"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q58332929|http://www.wikidata.org/entity/Q2086284"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16856585|http://www.wikidata.org/entity/Q3765217|http://www.wikidata.org/entity/Q3497953|http://www.wikidata.org/entity/Q2530909|http://www.wikidata.org/entity/Q2522116|http://www.wikidata.org/entity/Q1808962|http://www.wikidata.org/entity/Q1292000|http://www.wikidata.org/entity/Q1279210|http://www.wikidata.org/entity/Q546106|http://www.wikidata.org/entity/Q106781|http://www.wikidata.org/entity/Q86336|http://www.wikidata.org/entity/Q70775|http://www.wikidata.org/entity/Q67881"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "2015 film by Philip Koch"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3662018"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2029648"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q684569"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3932639|http://www.wikidata.org/entity/Q3779018|http://www.wikidata.org/entity/Q3609087|http://www.wikidata.org/entity/Q2481109|http://www.wikidata.org/entity/Q1523677|http://www.wikidata.org/entity/Q599728|http://www.wikidata.org/entity/Q463732|http://www.wikidata.org/entity/Q156769"}, "Published": {"type": "literal", "value": "1976"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "1976 film by Oreste Coltellacci"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q57000010"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1908650"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q457268"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Mathieu Sapin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14514268"}, "Title": {"type": "literal", "value": "Paradise"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q230795"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q230795"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q232646"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Diablo Cody"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18347017"}, "Title": {"type": "literal", "value": "Fino a qui tutto bene"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3938128"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3938128"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2014 film by Roan Johnson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5269646"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12498974"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12499385"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5261649"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Monty Tiwa"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7317381"}, "Title": {"type": "literal", "value": "Returning Mickey Stern"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6833634"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6833634"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1706646"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Michael Prywes"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1769215"}, "Title": {"type": "literal", "value": "Vatertage \u2013 Opa \u00fcber Nacht"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1663184"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q63352080|http://www.wikidata.org/entity/Q2129236"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2012 film by Ingo Rasper"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16619313"}, "Title": {"type": "literal", "value": "Un fidanzato per mia moglie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3703572"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2014 film directed by Davide Marengo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23796643"}, "Title": {"type": "literal", "value": "The Lego Movie 2: The Second Part"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2507259"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3378803|http://www.wikidata.org/entity/Q283700"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2019 film by Mike Mitchell"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1063455|http://www.wikidata.org/entity/Q3556262|http://www.wikidata.org/entity/Q47517081"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3546637"}, "Title": {"type": "literal", "value": "\u05d0\u05d9\u05e9 \u05dc\u05dc\u05d0 \u05e1\u05dc\u05d5\u05dc\u05e8\u05d9|Ish lelo selolari"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3470752"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3470752"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17556244|http://www.wikidata.org/entity/Q3515717|http://www.wikidata.org/entity/Q3421370|http://www.wikidata.org/entity/Q3257588|http://www.wikidata.org/entity/Q2874905|http://www.wikidata.org/entity/Q2842786"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2011 film by Sameh Zoabi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48527656"}, "Title": {"type": "literal", "value": "\u0c24\u0c4a\u0c32\u0c3f\u0c2a\u0c4d\u0c30\u0c47\u0c2e"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60690885"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27657032|http://www.wikidata.org/entity/Q19664637|http://www.wikidata.org/entity/Q17386171|http://www.wikidata.org/entity/Q17088940|http://www.wikidata.org/entity/Q16233459|http://www.wikidata.org/entity/Q15240676|http://www.wikidata.org/entity/Q467973"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 Telugu film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7586316"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3764194"}, "Title": {"type": "literal", "value": "\u0c0a\u0c38\u0c30\u0c35\u0c46\u0c32\u0c4d\u0c32\u0c3f"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7645646"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7909020"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7459917|http://www.wikidata.org/entity/Q3498996|http://www.wikidata.org/entity/Q278006|http://www.wikidata.org/entity/Q151798"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q40831"}, "Duration": {"type": "literal", "value": "162"}, "Description": {"type": "literal", "value": "2011 film by Surender Reddy"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7586316"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q783014"}, "Title": {"type": "literal", "value": "Tan de repente"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2086388"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2086388"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28100332|http://www.wikidata.org/entity/Q27949867|http://www.wikidata.org/entity/Q5724214|http://www.wikidata.org/entity/Q5413865|http://www.wikidata.org/entity/Q4750432|http://www.wikidata.org/entity/Q2883273"}, "Published": {"type": "literal", "value": "2003|2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2002 film by Diego Lerman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q902631"}, "Title": {"type": "literal", "value": "Starbuck"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1410263"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3295592"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3369573|http://www.wikidata.org/entity/Q3287863|http://www.wikidata.org/entity/Q3034866|http://www.wikidata.org/entity/Q2853678|http://www.wikidata.org/entity/Q534045|http://www.wikidata.org/entity/Q533225|http://www.wikidata.org/entity/Q445319|http://www.wikidata.org/entity/Q386593"}, "Published": {"type": "literal", "value": "2012|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2011 Canadian comedy film directed by Ken Scott"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21638226"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22045638"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3210335"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18008969|http://www.wikidata.org/entity/Q4516120|http://www.wikidata.org/entity/Q4494610|http://www.wikidata.org/entity/Q4425048|http://www.wikidata.org/entity/Q4079472|http://www.wikidata.org/entity/Q3033167|http://www.wikidata.org/entity/Q1385036|http://www.wikidata.org/entity/Q536524"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2015 film by Arman Gevorgyan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4504080"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55087336"}, "Title": {"type": "literal", "value": "\u090f \u092e\u0947\u0930\u094b \u0939\u091c\u0941\u0930 \u0969|Oh My Dear 3"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6190977"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6190977"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55104345|http://www.wikidata.org/entity/Q54957869|http://www.wikidata.org/entity/Q42199740|http://www.wikidata.org/entity/Q21932018|http://www.wikidata.org/entity/Q18638565"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "125"}, "Description": {"type": "literal", "value": "2019 film by Jharana Thapa"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q57334772"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21032710"}, "Title": {"type": "literal", "value": "The Meddler"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3259437"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3259437"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20973967|http://www.wikidata.org/entity/Q7422078|http://www.wikidata.org/entity/Q7301721|http://www.wikidata.org/entity/Q7291588|http://www.wikidata.org/entity/Q5056524|http://www.wikidata.org/entity/Q2844564|http://www.wikidata.org/entity/Q1384181|http://www.wikidata.org/entity/Q1132666|http://www.wikidata.org/entity/Q794599|http://www.wikidata.org/entity/Q673007|http://www.wikidata.org/entity/Q591238|http://www.wikidata.org/entity/Q567830|http://www.wikidata.org/entity/Q466016|http://www.wikidata.org/entity/Q438065|http://www.wikidata.org/entity/Q431362|http://www.wikidata.org/entity/Q313789|http://www.wikidata.org/entity/Q261579|http://www.wikidata.org/entity/Q234220|http://www.wikidata.org/entity/Q230686|http://www.wikidata.org/entity/Q228717|http://www.wikidata.org/entity/Q150482|http://www.wikidata.org/entity/Q133050"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 American comedy-drama film directed by Lorene Scafaria"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3306795"}, "Title": {"type": "literal", "value": "Mes stars et moi"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3216065"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3216065"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q462376|http://www.wikidata.org/entity/Q346102|http://www.wikidata.org/entity/Q235115|http://www.wikidata.org/entity/Q106709|http://www.wikidata.org/entity/Q106458|http://www.wikidata.org/entity/Q106418|http://www.wikidata.org/entity/Q23767045|http://www.wikidata.org/entity/Q3474928|http://www.wikidata.org/entity/Q3369492|http://www.wikidata.org/entity/Q3340143|http://www.wikidata.org/entity/Q3216065|http://www.wikidata.org/entity/Q3189767|http://www.wikidata.org/entity/Q3164788|http://www.wikidata.org/entity/Q2966467|http://www.wikidata.org/entity/Q2959173|http://www.wikidata.org/entity/Q2896630|http://www.wikidata.org/entity/Q2863316|http://www.wikidata.org/entity/Q2830755|http://www.wikidata.org/entity/Q1775644|http://www.wikidata.org/entity/Q1387804|http://www.wikidata.org/entity/Q983159|http://www.wikidata.org/entity/Q715111|http://www.wikidata.org/entity/Q586054|http://www.wikidata.org/entity/Q465157"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film directed by L\u00e6titia Colombani"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q50778392"}, "Title": {"type": "literal", "value": "Frau2 sucht HappyEnd"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1291686"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1291686"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q120509|http://www.wikidata.org/entity/Q109299|http://www.wikidata.org/entity/Q104747|http://www.wikidata.org/entity/Q98696|http://www.wikidata.org/entity/Q77968|http://www.wikidata.org/entity/Q70727|http://www.wikidata.org/entity/Q1251791|http://www.wikidata.org/entity/Q1051271|http://www.wikidata.org/entity/Q993135|http://www.wikidata.org/entity/Q2277239|http://www.wikidata.org/entity/Q1975375|http://www.wikidata.org/entity/Q1673612|http://www.wikidata.org/entity/Q1529478|http://www.wikidata.org/entity/Q1514890|http://www.wikidata.org/entity/Q1374262"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 film by Edward Berger"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q33396925"}, "Title": {"type": "literal", "value": "V\u0161echno bude fajn"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60372117"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60372117"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q62050907|http://www.wikidata.org/entity/Q60167749|http://www.wikidata.org/entity/Q33107577"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Robin Kvapil"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15745145"}, "Title": {"type": "literal", "value": "Zoran, il mio nipote scemo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16577144"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1042623|http://www.wikidata.org/entity/Q82660"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2013 film by Matteo Oleotto"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q33588255"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28529218"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28529218"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q33283704|http://www.wikidata.org/entity/Q28548642"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 short film directed by Jodi Cilley"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61754809"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20873158"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15275292|http://www.wikidata.org/entity/Q2529116|http://www.wikidata.org/entity/Q1115481|http://www.wikidata.org/entity/Q271923"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Erwin van den Eshof"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4280097"}, "Title": {"type": "literal", "value": "\u041c\u0430\u043c\u044b"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4074981|http://www.wikidata.org/entity/Q4065391|http://www.wikidata.org/entity/Q2375843|http://www.wikidata.org/entity/Q4330970|http://www.wikidata.org/entity/Q4219916"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4330970|http://www.wikidata.org/entity/Q4065391"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2375843|http://www.wikidata.org/entity/Q1975389|http://www.wikidata.org/entity/Q1968005|http://www.wikidata.org/entity/Q1710233|http://www.wikidata.org/entity/Q473580|http://www.wikidata.org/entity/Q4123391|http://www.wikidata.org/entity/Q3740637|http://www.wikidata.org/entity/Q3313664|http://www.wikidata.org/entity/Q2782350|http://www.wikidata.org/entity/Q2626768|http://www.wikidata.org/entity/Q2473251|http://www.wikidata.org/entity/Q291942|http://www.wikidata.org/entity/Q203653|http://www.wikidata.org/entity/Q4494015|http://www.wikidata.org/entity/Q4163746"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2012 film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4038074"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61642164"}, "Title": {"type": "literal", "value": "La Flor: Segunda Parte"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5997811"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "327"}, "Description": {"type": "literal", "value": "2018 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7136506"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1718178"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6505245|http://www.wikidata.org/entity/Q6414811|http://www.wikidata.org/entity/Q6317475|http://www.wikidata.org/entity/Q3676086|http://www.wikidata.org/entity/Q3276006|http://www.wikidata.org/entity/Q2341578"}, "Published": {"type": "literal", "value": "1992"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1992 film by Kovelamudi Bapayya"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3935194"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3605038"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3605038"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3894259|http://www.wikidata.org/entity/Q3879056|http://www.wikidata.org/entity/Q3876852|http://www.wikidata.org/entity/Q3808037|http://www.wikidata.org/entity/Q3776045|http://www.wikidata.org/entity/Q3763524|http://www.wikidata.org/entity/Q3697467|http://www.wikidata.org/entity/Q3659638|http://www.wikidata.org/entity/Q1121806"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2012 film by Adamo Antonacci"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10342058"}, "Title": {"type": "literal", "value": "Os Penetras"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4759560"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2012 film by Andrucha Waddington"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20926268"}, "Title": {"type": "literal", "value": "Kevin Hart: What Now?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2005037"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q618352"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15137380|http://www.wikidata.org/entity/Q1033016|http://www.wikidata.org/entity/Q618352|http://www.wikidata.org/entity/Q469145|http://www.wikidata.org/entity/Q328790|http://www.wikidata.org/entity/Q272019"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 documentary film directed by Leslie Small"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16488007"}, "Title": {"type": "literal", "value": "Amori elementari"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18640187"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2014 film by Sergio Basso"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q680971"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3506295"}, "Title": {"type": "literal", "value": "\u0926\u0947\u0935-\u0921\u0940"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2839609"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2839609"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3192216|http://www.wikidata.org/entity/Q511589|http://www.wikidata.org/entity/Q487198"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q599558|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "144"}, "Description": {"type": "literal", "value": "2009 film by Anurag Kashyap"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3547550"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56279554"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23418649"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Ksshitij Chaudhary"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21009499"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19545053"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q514769"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Emma Luchini"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q958097"}, "Title": {"type": "literal", "value": "Da bing xiao jiang"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16239524"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q36970"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1087550|http://www.wikidata.org/entity/Q970882|http://www.wikidata.org/entity/Q251068|http://www.wikidata.org/entity/Q36970"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2011 film by Ding Sheng"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1955514"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2663764"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3054299"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3916779|http://www.wikidata.org/entity/Q3309950|http://www.wikidata.org/entity/Q2778822|http://www.wikidata.org/entity/Q2606423|http://www.wikidata.org/entity/Q2352394|http://www.wikidata.org/entity/Q2306338|http://www.wikidata.org/entity/Q2299306|http://www.wikidata.org/entity/Q2216334|http://www.wikidata.org/entity/Q2139517|http://www.wikidata.org/entity/Q2130507|http://www.wikidata.org/entity/Q2103868|http://www.wikidata.org/entity/Q1819814|http://www.wikidata.org/entity/Q545546|http://www.wikidata.org/entity/Q514769"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192881"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Geoffrey Enthoven"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q129874"}, "Title": {"type": "literal", "value": "Wrong"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q453691"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q453691"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22002466|http://www.wikidata.org/entity/Q7307946|http://www.wikidata.org/entity/Q5084321|http://www.wikidata.org/entity/Q3591196|http://www.wikidata.org/entity/Q2438427|http://www.wikidata.org/entity/Q1364933|http://www.wikidata.org/entity/Q953735|http://www.wikidata.org/entity/Q336824|http://www.wikidata.org/entity/Q241867|http://www.wikidata.org/entity/Q220335"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2012 French-American independent comedy film directed by Mr. Oizo"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1032540"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q495850"}, "Title": {"type": "literal", "value": "The Croods"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6415415|http://www.wikidata.org/entity/Q201641"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6415415|http://www.wikidata.org/entity/Q201641"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2013 American animated film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q500088"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2646683"}, "Title": {"type": "literal", "value": "Bling Bling"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5925685"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29055"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29055"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001\u00a0Da Ali G Show home video directed by James Bobin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60537548"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4016123"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13427396|http://www.wikidata.org/entity/Q4016123"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19403273|http://www.wikidata.org/entity/Q3894444|http://www.wikidata.org/entity/Q2704786|http://www.wikidata.org/entity/Q1237265|http://www.wikidata.org/entity/Q1041563|http://www.wikidata.org/entity/Q334170|http://www.wikidata.org/entity/Q254500"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Volfango De Biasi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3304113"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7637241"}, "Title": {"type": "literal", "value": "Verano"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25748680"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6112356"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 Chilean drama film written and directed by Jos\u00e9 Luis Torres Leiva"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15714197"}, "Title": {"type": "literal", "value": "Esercizi di stile"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4016123|http://www.wikidata.org/entity/Q3905288|http://www.wikidata.org/entity/Q2641366|http://www.wikidata.org/entity/Q976428|http://www.wikidata.org/entity/Q554468|http://www.wikidata.org/entity/Q531797|http://www.wikidata.org/entity/Q53034|http://www.wikidata.org/entity/Q53026"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1396080|http://www.wikidata.org/entity/Q697471|http://www.wikidata.org/entity/Q530176"}, "Published": {"type": "literal", "value": "1996"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "1996 film by Volfango De Biasi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q74535"}, "Title": {"type": "literal", "value": "The ABCs of Death"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3428903|http://www.wikidata.org/entity/Q2895597|http://www.wikidata.org/entity/Q2846120|http://www.wikidata.org/entity/Q5658534|http://www.wikidata.org/entity/Q4679987|http://www.wikidata.org/entity/Q4023328|http://www.wikidata.org/entity/Q4022902|http://www.wikidata.org/entity/Q3961130|http://www.wikidata.org/entity/Q3527989|http://www.wikidata.org/entity/Q2638166|http://www.wikidata.org/entity/Q1318058|http://www.wikidata.org/entity/Q935646|http://www.wikidata.org/entity/Q636817|http://www.wikidata.org/entity/Q382387|http://www.wikidata.org/entity/Q265991|http://www.wikidata.org/entity/Q60633865|http://www.wikidata.org/entity/Q18002672|http://www.wikidata.org/entity/Q18002669|http://www.wikidata.org/entity/Q18002667|http://www.wikidata.org/entity/Q18002645|http://www.wikidata.org/entity/Q17289127|http://www.wikidata.org/entity/Q17289068|http://www.wikidata.org/entity/Q16582250|http://www.wikidata.org/entity/Q16198328|http://www.wikidata.org/entity/Q15511907|http://www.wikidata.org/entity/Q6756212|http://www.wikidata.org/entity/Q6271517|http://www.wikidata.org/entity/Q5836844"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6271517|http://www.wikidata.org/entity/Q16086745|http://www.wikidata.org/entity/Q15511907|http://www.wikidata.org/entity/Q18002667|http://www.wikidata.org/entity/Q17289068|http://www.wikidata.org/entity/Q18002672|http://www.wikidata.org/entity/Q18002669|http://www.wikidata.org/entity/Q6756212|http://www.wikidata.org/entity/Q382387|http://www.wikidata.org/entity/Q2638166|http://www.wikidata.org/entity/Q3144727|http://www.wikidata.org/entity/Q3527989|http://www.wikidata.org/entity/Q3961130|http://www.wikidata.org/entity/Q4022902|http://www.wikidata.org/entity/Q4023328|http://www.wikidata.org/entity/Q5658534|http://www.wikidata.org/entity/Q5836844"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22250184|http://www.wikidata.org/entity/Q11376461|http://www.wikidata.org/entity/Q16832568|http://www.wikidata.org/entity/Q2419067"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q336144|http://www.wikidata.org/entity/Q224700"}, "Duration": {"type": "literal", "value": "124"}, "Description": {"type": "literal", "value": "2012 anthology film with 26 segments"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q665342"}, "Title": {"type": "literal", "value": "Superstar"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2364234"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3289982|http://www.wikidata.org/entity/Q2364234|http://www.wikidata.org/entity/Q3479362"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1871396|http://www.wikidata.org/entity/Q983159|http://www.wikidata.org/entity/Q274722|http://www.wikidata.org/entity/Q236157|http://www.wikidata.org/entity/Q3308651|http://www.wikidata.org/entity/Q3180346|http://www.wikidata.org/entity/Q3169536|http://www.wikidata.org/entity/Q3169474|http://www.wikidata.org/entity/Q3134621|http://www.wikidata.org/entity/Q3084132|http://www.wikidata.org/entity/Q2895292|http://www.wikidata.org/entity/Q2861185|http://www.wikidata.org/entity/Q2831829|http://www.wikidata.org/entity/Q17521763|http://www.wikidata.org/entity/Q17353975|http://www.wikidata.org/entity/Q16534621|http://www.wikidata.org/entity/Q13634875|http://www.wikidata.org/entity/Q3501539|http://www.wikidata.org/entity/Q3384770"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "2012 film by Xavier Giannoli"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4777955"}, "Title": {"type": "literal", "value": "Anuvahood"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11849729"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11849729|http://www.wikidata.org/entity/Q8000017|http://www.wikidata.org/entity/Q6168451|http://www.wikidata.org/entity/Q5442801|http://www.wikidata.org/entity/Q1336963|http://www.wikidata.org/entity/Q726074"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5897543|http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 British urban comedy film directed by Adam Deacon"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14907655"}, "Title": {"type": "literal", "value": "Rock the Casbah"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q452016"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q452016"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3326116|http://www.wikidata.org/entity/Q3269248|http://www.wikidata.org/entity/Q2824177|http://www.wikidata.org/entity/Q1751820|http://www.wikidata.org/entity/Q462256|http://www.wikidata.org/entity/Q444193|http://www.wikidata.org/entity/Q266539|http://www.wikidata.org/entity/Q177993|http://www.wikidata.org/entity/Q170515"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by La\u00efla Marrakchi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q59335918"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29368920"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film directed by Petra Volpe"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29032471"}, "Title": {"type": "literal", "value": "Small Crimes"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18921688"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by E. L. Katz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22251894"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16944494"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16944494"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15110806|http://www.wikidata.org/entity/Q42760915"}, "Published": {"type": "literal", "value": "2016|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2016 Saudi Arabian drama-comedy film directed by Mahmoud Sabbagh"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1413358"}, "Title": {"type": "literal", "value": "\u0420\u043e\u0441\u0441\u0438\u044f 88"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4078134"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4494015"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q459435|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2009 film by Pavel Bardin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q690651"}, "Title": {"type": "literal", "value": "De gr\u00f8nne slagtere"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q491314"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q491314"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12331627|http://www.wikidata.org/entity/Q12327197|http://www.wikidata.org/entity/Q11213025|http://www.wikidata.org/entity/Q5714417|http://www.wikidata.org/entity/Q4938062|http://www.wikidata.org/entity/Q2559831|http://www.wikidata.org/entity/Q1797671|http://www.wikidata.org/entity/Q1687501|http://www.wikidata.org/entity/Q952621|http://www.wikidata.org/entity/Q533028|http://www.wikidata.org/entity/Q441562|http://www.wikidata.org/entity/Q383754|http://www.wikidata.org/entity/Q323563|http://www.wikidata.org/entity/Q294647"}, "Published": {"type": "literal", "value": "2004|2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2003 film by Anders Thomas Jensen"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1375196"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2171533"}, "Title": {"type": "literal", "value": "Rubber"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q453691"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q453691"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3098765|http://www.wikidata.org/entity/Q2385752|http://www.wikidata.org/entity/Q2057091|http://www.wikidata.org/entity/Q1371096|http://www.wikidata.org/entity/Q1312328|http://www.wikidata.org/entity/Q1264331|http://www.wikidata.org/entity/Q967797|http://www.wikidata.org/entity/Q953735|http://www.wikidata.org/entity/Q546511|http://www.wikidata.org/entity/Q449082|http://www.wikidata.org/entity/Q376182|http://www.wikidata.org/entity/Q290063"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q53094"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "2010 film by Mr. Oizo"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8073|http://www.wikidata.org/entity/Q1032540"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15162647"}, "Title": {"type": "literal", "value": "Being Homer Simpson"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2863092"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2863092"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3380527|http://www.wikidata.org/entity/Q3369780|http://www.wikidata.org/entity/Q3369242|http://www.wikidata.org/entity/Q3169506|http://www.wikidata.org/entity/Q2966353|http://www.wikidata.org/entity/Q2939873|http://www.wikidata.org/entity/Q2929989|http://www.wikidata.org/entity/Q2863227|http://www.wikidata.org/entity/Q2863092|http://www.wikidata.org/entity/Q366272|http://www.wikidata.org/entity/Q15163991|http://www.wikidata.org/entity/Q15069937|http://www.wikidata.org/entity/Q3564267"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 French short film directed by Arnaud Demanche"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3791142"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3659956"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3659956|http://www.wikidata.org/entity/Q3615460"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3846018|http://www.wikidata.org/entity/Q3694222|http://www.wikidata.org/entity/Q3679866|http://www.wikidata.org/entity/Q3610255|http://www.wikidata.org/entity/Q772282|http://www.wikidata.org/entity/Q437927"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2011 film by Carlo Virz\u00ec"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3209729"}, "Title": {"type": "literal", "value": "A Cara que Mereces"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1890376"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5042824"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Miguel Gomes"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20737040"}, "Title": {"type": "literal", "value": "\u00c4kkil\u00e4ht\u00f6"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1261910"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23040635|http://www.wikidata.org/entity/Q16298620|http://www.wikidata.org/entity/Q1261910"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30585073|http://www.wikidata.org/entity/Q17381341|http://www.wikidata.org/entity/Q16990877|http://www.wikidata.org/entity/Q16989612|http://www.wikidata.org/entity/Q11852080|http://www.wikidata.org/entity/Q6303995"}, "Published": {"type": "literal", "value": "2016|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q628165|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2016 Finnish film directed by Tiina Lymi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2740839"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25397557"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3418669"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3418669"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3418669"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Ramzy Bedia"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19060256"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11243629"}, "Title": {"type": "literal", "value": "Brak"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12028530"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12028530"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60410374|http://www.wikidata.org/entity/Q19362142|http://www.wikidata.org/entity/Q17399685|http://www.wikidata.org/entity/Q12018961|http://www.wikidata.org/entity/Q11911163|http://www.wikidata.org/entity/Q2354248|http://www.wikidata.org/entity/Q807866|http://www.wikidata.org/entity/Q349116"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Karel Sp\u011bv\u00e1\u010dek"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5410747"}, "Title": {"type": "literal", "value": "S\u00faper ni\u00f1o bully"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3876520"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Nicol\u00e1s L\u00f3pez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20439586"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1470086"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1470086"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1120300|http://www.wikidata.org/entity/Q760856|http://www.wikidata.org/entity/Q540574|http://www.wikidata.org/entity/Q11977314|http://www.wikidata.org/entity/Q1501266|http://www.wikidata.org/entity/Q1470086"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Attila \u00c1rpa"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56683249"}, "Title": {"type": "literal", "value": "Sing Song"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3316225"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2017 film directed by Mischa Kamp"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60737609"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2514422"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3048171"}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Nat Faxon"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23017119"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19867575"}, "Title": {"type": "literal", "value": "Central Intelligence"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2745616"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2745616|http://www.wikidata.org/entity/Q739062"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q229048|http://www.wikidata.org/entity/Q57614|http://www.wikidata.org/entity/Q10738|http://www.wikidata.org/entity/Q2502878|http://www.wikidata.org/entity/Q720754|http://www.wikidata.org/entity/Q618352|http://www.wikidata.org/entity/Q526654|http://www.wikidata.org/entity/Q302491|http://www.wikidata.org/entity/Q292214|http://www.wikidata.org/entity/Q284636|http://www.wikidata.org/entity/Q231203"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4984974|http://www.wikidata.org/entity/Q2297927|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "2016 film by Rawson Marshall Thurber"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3986092"}, "Title": {"type": "literal", "value": "The Brass Teapot"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16217494"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192887|http://www.wikidata.org/entity/Q16239393|http://www.wikidata.org/entity/Q5186320|http://www.wikidata.org/entity/Q2907990|http://www.wikidata.org/entity/Q2278533|http://www.wikidata.org/entity/Q2009145|http://www.wikidata.org/entity/Q794599|http://www.wikidata.org/entity/Q560896|http://www.wikidata.org/entity/Q466051|http://www.wikidata.org/entity/Q317024|http://www.wikidata.org/entity/Q288404|http://www.wikidata.org/entity/Q234434"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2012 film by Ramaa Mosley"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48045800"}, "Title": {"type": "literal", "value": "\u0639\u0642\u062f\u0629 \u0627\u0644\u062e\u0648\u0627\u062c\u0629"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28529605"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20425820|http://www.wikidata.org/entity/Q12238122|http://www.wikidata.org/entity/Q12207885"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Peter Mimi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15522237"}, "Title": {"type": "literal", "value": "Els imprevistos de l'amor|Love, Rosie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q104373"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21809765"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16235151|http://www.wikidata.org/entity/Q15069989|http://www.wikidata.org/entity/Q1139996|http://www.wikidata.org/entity/Q900719|http://www.wikidata.org/entity/Q366833|http://www.wikidata.org/entity/Q256042|http://www.wikidata.org/entity/Q229184"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2014 English-German romantic comedy-drama film by Christian Ditter"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q564960|http://www.wikidata.org/entity/Q17076072"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4913767"}, "Title": {"type": "literal", "value": "Bin Bulaye Baraati"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5071373"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7403863"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3031096|http://www.wikidata.org/entity/Q2362968|http://www.wikidata.org/entity/Q80309|http://www.wikidata.org/entity/Q7418358|http://www.wikidata.org/entity/Q6113138|http://www.wikidata.org/entity/Q3496304"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Chandrakant Singh"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q39047231"}, "Title": {"type": "literal", "value": "Murder On The Blackpool Express"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7518602"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6162254"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1702422"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Simon Delaney"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21450480"}, "Title": {"type": "literal", "value": "Storks"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3037956|http://www.wikidata.org/entity/Q2624066"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2624066"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25890|http://www.wikidata.org/entity/Q6382703|http://www.wikidata.org/entity/Q3371986|http://www.wikidata.org/entity/Q314640|http://www.wikidata.org/entity/Q248179|http://www.wikidata.org/entity/Q223830|http://www.wikidata.org/entity/Q196560|http://www.wikidata.org/entity/Q32522"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q20442589"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2016 American animated film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1123917"}, "Title": {"type": "literal", "value": "Prime"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1983058"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1983058"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q316602|http://www.wikidata.org/entity/Q127273|http://www.wikidata.org/entity/Q2919454|http://www.wikidata.org/entity/Q1687792|http://www.wikidata.org/entity/Q454272|http://www.wikidata.org/entity/Q4817144|http://www.wikidata.org/entity/Q125017|http://www.wikidata.org/entity/Q4293|http://www.wikidata.org/entity/Q873"}, "Published": {"type": "literal", "value": "2005|2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2005 romantic comedy movie directed by Ben Younger"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2702789"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q994137"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4707732"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6503922|http://www.wikidata.org/entity/Q6130710|http://www.wikidata.org/entity/Q1321598"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Pang Ho-cheung"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q94048"}, "Title": {"type": "literal", "value": "Soccer Dog: The Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1310139"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5000854|http://www.wikidata.org/entity/Q1433672|http://www.wikidata.org/entity/Q711898|http://www.wikidata.org/entity/Q372296|http://www.wikidata.org/entity/Q266361"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1999 film by Tony Giglio"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12199935"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12179146"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4120152|http://www.wikidata.org/entity/Q2827647"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Ahmed Yousry"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q893014"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q893129"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7967359|http://www.wikidata.org/entity/Q893129|http://www.wikidata.org/entity/Q704130|http://www.wikidata.org/entity/Q381074"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 Chinese film directed by Xu Zheng"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7417065"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q652149"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q652149"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2568389|http://www.wikidata.org/entity/Q2001803|http://www.wikidata.org/entity/Q1992008"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "125"}, "Description": {"type": "literal", "value": "2006 Bollywood comedy film directed by Anees Bazmee"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1643915"}, "Title": {"type": "literal", "value": "Schule"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1893857"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1893857"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17537133|http://www.wikidata.org/entity/Q1985803|http://www.wikidata.org/entity/Q1966176|http://www.wikidata.org/entity/Q1927678|http://www.wikidata.org/entity/Q1901626|http://www.wikidata.org/entity/Q1808962|http://www.wikidata.org/entity/Q1633322|http://www.wikidata.org/entity/Q1260298|http://www.wikidata.org/entity/Q1252195|http://www.wikidata.org/entity/Q1081259|http://www.wikidata.org/entity/Q697729|http://www.wikidata.org/entity/Q302094|http://www.wikidata.org/entity/Q124985|http://www.wikidata.org/entity/Q121582|http://www.wikidata.org/entity/Q108942|http://www.wikidata.org/entity/Q100506|http://www.wikidata.org/entity/Q95943|http://www.wikidata.org/entity/Q75187|http://www.wikidata.org/entity/Q72555|http://www.wikidata.org/entity/Q58592"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2000 film by Marco Petry"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q51158552"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50364741"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q44738929"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Ne\u00efl Beloufa"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16864688"}, "Title": {"type": "literal", "value": "Les Combattants"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19544017"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18179055|http://www.wikidata.org/entity/Q16832022|http://www.wikidata.org/entity/Q16637371|http://www.wikidata.org/entity/Q3568783|http://www.wikidata.org/entity/Q2925481|http://www.wikidata.org/entity/Q31353"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2014 film by Thomas Cailley"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7801837"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3041947"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3041947"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Dylan Verrechia"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q35868033"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4065391"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4065391"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4410803|http://www.wikidata.org/entity/Q4399708"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2017 film directed by Sarik Andreasyan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61450772"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2037657"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2020"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Tim Hill"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q388234|http://www.wikidata.org/entity/Q1785329|http://www.wikidata.org/entity/Q3313794|http://www.wikidata.org/entity/Q7135302"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20000957"}, "Title": {"type": "literal", "value": "7 Chinese Brothers"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4931990"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4931990"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q313705"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Bob Byington"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25338550"}, "Title": {"type": "literal", "value": "We Love You, Sally Carmichael!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q347408"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3016681"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Christopher Gorham"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20649227"}, "Title": {"type": "literal", "value": "Free Fire"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2895597"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24532629|http://www.wikidata.org/entity/Q2895597"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3726488|http://www.wikidata.org/entity/Q2791895|http://www.wikidata.org/entity/Q705780|http://www.wikidata.org/entity/Q563177|http://www.wikidata.org/entity/Q520001|http://www.wikidata.org/entity/Q28039572|http://www.wikidata.org/entity/Q512353|http://www.wikidata.org/entity/Q374273|http://www.wikidata.org/entity/Q202589|http://www.wikidata.org/entity/Q29328|http://www.wikidata.org/entity/Q6834458"}, "Published": {"type": "literal", "value": "2017|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q2678111"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2016 film by Ben Wheatley"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1108255"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q44727126"}, "Title": {"type": "literal", "value": "Gloria"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4250213"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q62002870|http://www.wikidata.org/entity/Q4250213"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q189351|http://www.wikidata.org/entity/Q120366|http://www.wikidata.org/entity/Q80405|http://www.wikidata.org/entity/Q16542977|http://www.wikidata.org/entity/Q331720|http://www.wikidata.org/entity/Q309555|http://www.wikidata.org/entity/Q244234|http://www.wikidata.org/entity/Q235198|http://www.wikidata.org/entity/Q234144"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2018 Chilean-American film written and directed by Sebasti\u00e1n Lelio"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19366218|http://www.wikidata.org/entity/Q5448895"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15629706"}, "Title": {"type": "literal", "value": "Pit\u00e4\u00e4k\u00f6 mun kaikki hoitaa?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15629649"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15878269"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11892451|http://www.wikidata.org/entity/Q11866494"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "7"}, "Description": {"type": "literal", "value": "2012 Finnish short film directed by Selma Vilhunen"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18689250"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1475778"}, "Title": {"type": "literal", "value": "Oh Boy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q126730"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q126730"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q53954433|http://www.wikidata.org/entity/Q21032067|http://www.wikidata.org/entity/Q2124501|http://www.wikidata.org/entity/Q1892651|http://www.wikidata.org/entity/Q1735906|http://www.wikidata.org/entity/Q1700270|http://www.wikidata.org/entity/Q1401649|http://www.wikidata.org/entity/Q567109|http://www.wikidata.org/entity/Q500577|http://www.wikidata.org/entity/Q111879|http://www.wikidata.org/entity/Q111070|http://www.wikidata.org/entity/Q106177|http://www.wikidata.org/entity/Q103544|http://www.wikidata.org/entity/Q102606|http://www.wikidata.org/entity/Q95673|http://www.wikidata.org/entity/Q70775|http://www.wikidata.org/entity/Q70727|http://www.wikidata.org/entity/Q67917|http://www.wikidata.org/entity/Q26763"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13209138|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2012 German tragicomedy film directed by Jan-Ole Gerster"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7729669"}, "Title": {"type": "literal", "value": "Delivery Man"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1410263"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3295592|http://www.wikidata.org/entity/Q1410263"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15965642|http://www.wikidata.org/entity/Q20993795|http://www.wikidata.org/entity/Q20027497|http://www.wikidata.org/entity/Q18043858|http://www.wikidata.org/entity/Q235333|http://www.wikidata.org/entity/Q218718|http://www.wikidata.org/entity/Q200566|http://www.wikidata.org/entity/Q107730|http://www.wikidata.org/entity/Q489|http://www.wikidata.org/entity/Q11685825|http://www.wikidata.org/entity/Q2907990|http://www.wikidata.org/entity/Q2791895|http://www.wikidata.org/entity/Q1898813|http://www.wikidata.org/entity/Q503706"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2013 film by Ken Scott"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192557|http://www.wikidata.org/entity/Q497155|http://www.wikidata.org/entity/Q3634702"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6152971"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4707732"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Pang Ho-cheung"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19622545"}, "Title": {"type": "literal", "value": "Saltwater"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q734207"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2655230"}, "Published": {"type": "literal", "value": "2001|2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2000 film by Conor McPherson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21445453"}, "Title": {"type": "literal", "value": "You\u2019re Ugly Too"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21693736"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21693736"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17350908|http://www.wikidata.org/entity/Q1508070|http://www.wikidata.org/entity/Q358032"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "81"}, "Description": {"type": "literal", "value": "2015 film directed by Mark Noonan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10468734"}, "Title": {"type": "literal", "value": "Den ryska d\u00f6rren"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5630110"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19478091"}, "Title": {"type": "literal", "value": "Relaks, It's Just Pag-Ibig"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18719493"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18719493"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28674882"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Antoinette Jadaone"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17088846"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14638068"}, "Title": {"type": "literal", "value": "Eyjafjallaj\u00f6kull"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15070019"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15070019|http://www.wikidata.org/entity/Q3219585"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16185219|http://www.wikidata.org/entity/Q16111082|http://www.wikidata.org/entity/Q12626553|http://www.wikidata.org/entity/Q11166063|http://www.wikidata.org/entity/Q3282056|http://www.wikidata.org/entity/Q2994803|http://www.wikidata.org/entity/Q2863129|http://www.wikidata.org/entity/Q1569147|http://www.wikidata.org/entity/Q967764|http://www.wikidata.org/entity/Q916193|http://www.wikidata.org/entity/Q735832|http://www.wikidata.org/entity/Q468190|http://www.wikidata.org/entity/Q440995|http://www.wikidata.org/entity/Q121263"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2013 film by Alexandre Coffre"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18150174"}, "Title": {"type": "literal", "value": "Gabi on the Roof in July"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18720098"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18154767"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Lawrence Michael Levine"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30203450"}, "Title": {"type": "literal", "value": "I Do...Until I Don't"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q241686"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q241686"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Lake Bell"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30890069"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4289477|http://www.wikidata.org/entity/Q4137998|http://www.wikidata.org/entity/Q15270257|http://www.wikidata.org/entity/Q4400034"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q435437|http://www.wikidata.org/entity/Q172261|http://www.wikidata.org/entity/Q4297949|http://www.wikidata.org/entity/Q4248489|http://www.wikidata.org/entity/Q4228271|http://www.wikidata.org/entity/Q4203655|http://www.wikidata.org/entity/Q2299195|http://www.wikidata.org/entity/Q1385036|http://www.wikidata.org/entity/Q21183528"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2017 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48759406"}, "Title": {"type": "literal", "value": "Comme des gar\u00e7ons"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q58302673"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61749168|http://www.wikidata.org/entity/Q3302043"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 French film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4000788"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3837102"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3840387|http://www.wikidata.org/entity/Q3802259|http://www.wikidata.org/entity/Q3766915|http://www.wikidata.org/entity/Q3700772|http://www.wikidata.org/entity/Q3679934|http://www.wikidata.org/entity/Q3629717|http://www.wikidata.org/entity/Q3610186|http://www.wikidata.org/entity/Q2963238|http://www.wikidata.org/entity/Q1907667|http://www.wikidata.org/entity/Q1035295|http://www.wikidata.org/entity/Q979302"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2005 film by Lorenzo Vignolo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19858160"}, "Title": {"type": "literal", "value": "Dobr\u00e1ci"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3489129"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3489129"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2064616|http://www.wikidata.org/entity/Q676173"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Alice Nellis"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q909546"}, "Title": {"type": "literal", "value": "Kunsten \u00e5 tenke negativt"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1019323"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1019323"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22282681|http://www.wikidata.org/entity/Q15766036|http://www.wikidata.org/entity/Q11995276|http://www.wikidata.org/entity/Q4983138|http://www.wikidata.org/entity/Q4971498|http://www.wikidata.org/entity/Q4430142|http://www.wikidata.org/entity/Q4356238|http://www.wikidata.org/entity/Q1777302"}, "Published": {"type": "literal", "value": "2008|2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "79"}, "Description": {"type": "literal", "value": "2006 Norwegian comedy movie by B\u00e5rd Breien"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6736868"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20393479"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11018819"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q591801"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Amr Salama"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1128756"}, "Title": {"type": "literal", "value": "Mary and Max"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q349248"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q349248"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010|2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2009 clay animation film directed by Adam Elliot"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1504287"}, "Title": {"type": "literal", "value": "Sommer in Orange"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q96164"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23067905|http://www.wikidata.org/entity/Q15440454|http://www.wikidata.org/entity/Q15434360|http://www.wikidata.org/entity/Q2020358|http://www.wikidata.org/entity/Q1599909|http://www.wikidata.org/entity/Q1510407|http://www.wikidata.org/entity/Q1504267|http://www.wikidata.org/entity/Q1429745|http://www.wikidata.org/entity/Q1348583|http://www.wikidata.org/entity/Q1163254|http://www.wikidata.org/entity/Q1072426|http://www.wikidata.org/entity/Q1018220|http://www.wikidata.org/entity/Q916344|http://www.wikidata.org/entity/Q850015|http://www.wikidata.org/entity/Q456829|http://www.wikidata.org/entity/Q220466|http://www.wikidata.org/entity/Q106438|http://www.wikidata.org/entity/Q105925|http://www.wikidata.org/entity/Q96084"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "2011 film by Marcus H. Rosenm\u00fcller"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27639323"}, "Title": {"type": "literal", "value": "The Space Between"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q242577"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q242577"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19817061|http://www.wikidata.org/entity/Q17322908|http://www.wikidata.org/entity/Q6829522|http://www.wikidata.org/entity/Q3163302|http://www.wikidata.org/entity/Q3051881|http://www.wikidata.org/entity/Q1319495|http://www.wikidata.org/entity/Q716169|http://www.wikidata.org/entity/Q344973|http://www.wikidata.org/entity/Q242577"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2017 film by Amy Jo Johnson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30641878"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17385584"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17385584"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5276830"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Anurag Singh"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q54219624"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3473148"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q40675861|http://www.wikidata.org/entity/Q34631151|http://www.wikidata.org/entity/Q15973995|http://www.wikidata.org/entity/Q6292322|http://www.wikidata.org/entity/Q3470502|http://www.wikidata.org/entity/Q3440688|http://www.wikidata.org/entity/Q2960978|http://www.wikidata.org/entity/Q2884015|http://www.wikidata.org/entity/Q2854016|http://www.wikidata.org/entity/Q2851178|http://www.wikidata.org/entity/Q2836561|http://www.wikidata.org/entity/Q436888"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2018 film directed by Saphia Azzeddine"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18920916"}, "Title": {"type": "literal", "value": "Papa ou maman"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22928337"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3299877|http://www.wikidata.org/entity/Q2834188"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3554532|http://www.wikidata.org/entity/Q3308651|http://www.wikidata.org/entity/Q3240915|http://www.wikidata.org/entity/Q3219319|http://www.wikidata.org/entity/Q3187992|http://www.wikidata.org/entity/Q2851174|http://www.wikidata.org/entity/Q1930952|http://www.wikidata.org/entity/Q456360|http://www.wikidata.org/entity/Q24045726|http://www.wikidata.org/entity/Q18684443|http://www.wikidata.org/entity/Q3591288|http://www.wikidata.org/entity/Q3573998|http://www.wikidata.org/entity/Q3571739"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2015 film by Martin Bourboulon"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1544011"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42946208"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q46236938|http://www.wikidata.org/entity/Q12059201|http://www.wikidata.org/entity/Q12035298|http://www.wikidata.org/entity/Q3638268"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q46236938|http://www.wikidata.org/entity/Q12059201|http://www.wikidata.org/entity/Q12035298"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q46236938|http://www.wikidata.org/entity/Q28034922|http://www.wikidata.org/entity/Q19363321|http://www.wikidata.org/entity/Q18572009|http://www.wikidata.org/entity/Q12059201|http://www.wikidata.org/entity/Q1385173|http://www.wikidata.org/entity/Q1292951|http://www.wikidata.org/entity/Q544020|http://www.wikidata.org/entity/Q12042545|http://www.wikidata.org/entity/Q12035276|http://www.wikidata.org/entity/Q12019433|http://www.wikidata.org/entity/Q11911163|http://www.wikidata.org/entity/Q10819807|http://www.wikidata.org/entity/Q10773819|http://www.wikidata.org/entity/Q8042567|http://www.wikidata.org/entity/Q1682145|http://www.wikidata.org/entity/Q1681872|http://www.wikidata.org/entity/Q12032647|http://www.wikidata.org/entity/Q12025103|http://www.wikidata.org/entity/Q12022326|http://www.wikidata.org/entity/Q155880|http://www.wikidata.org/entity/Q57434|http://www.wikidata.org/entity/Q29032"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2018 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15930185"}, "Title": {"type": "literal", "value": "The Hungover Games"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6289410"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q355133"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18618690|http://www.wikidata.org/entity/Q16735250|http://www.wikidata.org/entity/Q7407997|http://www.wikidata.org/entity/Q4956689|http://www.wikidata.org/entity/Q3181946|http://www.wikidata.org/entity/Q2275851|http://www.wikidata.org/entity/Q1853959|http://www.wikidata.org/entity/Q1433425|http://www.wikidata.org/entity/Q729828|http://www.wikidata.org/entity/Q378678|http://www.wikidata.org/entity/Q365144|http://www.wikidata.org/entity/Q355133|http://www.wikidata.org/entity/Q310493|http://www.wikidata.org/entity/Q235394|http://www.wikidata.org/entity/Q211082|http://www.wikidata.org/entity/Q151168"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q622548|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2014 film by Josh Stolberg"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6084899"}, "Title": {"type": "literal", "value": "A\u015fk Geliyorum Demez"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6064908"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4844437|http://www.wikidata.org/entity/Q4736145|http://www.wikidata.org/entity/Q1271784"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "A 2009 romantic comedy Turkish film by Murat \u015eeker."}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20473205"}, "Title": {"type": "literal", "value": "Kolpa\u00e7ino 3. Devre"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8082387"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8082387"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8082387"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by \u015eafak Sezer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q58097247"}, "Title": {"type": "literal", "value": "Ternet Ninja"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q37494099|http://www.wikidata.org/entity/Q4753869"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4753869"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "81"}, "Description": {"type": "literal", "value": "danish 2018 film by Thorbj\u00f8rn Christoffersen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43909814"}, "Title": {"type": "literal", "value": "Love of My Life"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q43079418"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Joan Carr-Wiggin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15070730"}, "Title": {"type": "literal", "value": "Comet"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20685410"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20685410"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1371472|http://www.wikidata.org/entity/Q298672|http://www.wikidata.org/entity/Q35912"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Sam Esmail"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17100945"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11824085"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11779095"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11779095"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4865817"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Micha\u0142 Paszczyk"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24934510"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4171916"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28099355|http://www.wikidata.org/entity/Q4525520"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q593332|http://www.wikidata.org/entity/Q235008"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1535153|http://www.wikidata.org/entity/Q1200678|http://www.wikidata.org/entity/Q496523|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2016 Russian superhero comedy film by Dmitry Dyachenko"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20001097"}, "Title": {"type": "literal", "value": "Disco polo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11765778"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11765778"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9202817"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Maciek Bochniak"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9149255"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1179378"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q606360|http://www.wikidata.org/entity/Q5444055"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q606360|http://www.wikidata.org/entity/Q5444055"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q874650|http://www.wikidata.org/entity/Q45811925|http://www.wikidata.org/entity/Q23749311|http://www.wikidata.org/entity/Q9255590|http://www.wikidata.org/entity/Q1412995|http://www.wikidata.org/entity/Q1242366|http://www.wikidata.org/entity/Q1120453|http://www.wikidata.org/entity/Q1104464"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 Hungarian film by Ferenc T\u00f6r\u00f6k"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1920724"}, "Title": {"type": "literal", "value": "Mensch Kotschie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q62021621"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q62021621"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21970628|http://www.wikidata.org/entity/Q15440794|http://www.wikidata.org/entity/Q2477368|http://www.wikidata.org/entity/Q2157388|http://www.wikidata.org/entity/Q1975382|http://www.wikidata.org/entity/Q1914028|http://www.wikidata.org/entity/Q1910132|http://www.wikidata.org/entity/Q1623561|http://www.wikidata.org/entity/Q1605539|http://www.wikidata.org/entity/Q1342820|http://www.wikidata.org/entity/Q1097640|http://www.wikidata.org/entity/Q823912|http://www.wikidata.org/entity/Q792408|http://www.wikidata.org/entity/Q120509|http://www.wikidata.org/entity/Q106835|http://www.wikidata.org/entity/Q62021621|http://www.wikidata.org/entity/Q22344392"}, "Published": {"type": "literal", "value": "2010|2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Norbert Baumgarten"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12217949"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12178530"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4164801"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Ahmed El Guindi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3521078"}, "Title": {"type": "literal", "value": "The Good Heart"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1157396"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1157396"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23038557|http://www.wikidata.org/entity/Q22918914|http://www.wikidata.org/entity/Q22680384|http://www.wikidata.org/entity/Q22673360|http://www.wikidata.org/entity/Q5339652|http://www.wikidata.org/entity/Q5127328|http://www.wikidata.org/entity/Q4759878|http://www.wikidata.org/entity/Q3978224|http://www.wikidata.org/entity/Q3218090|http://www.wikidata.org/entity/Q2267853|http://www.wikidata.org/entity/Q1898813|http://www.wikidata.org/entity/Q1797671|http://www.wikidata.org/entity/Q1050946|http://www.wikidata.org/entity/Q450775|http://www.wikidata.org/entity/Q343616|http://www.wikidata.org/entity/Q45827|http://www.wikidata.org/entity/Q34975"}, "Published": {"type": "literal", "value": "2010|2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2009 film by Dagur K\u00e1ri"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21146478"}, "Title": {"type": "literal", "value": "Bruder vor Luder"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16913737|http://www.wikidata.org/entity/Q15438712|http://www.wikidata.org/entity/Q2440371"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19958947|http://www.wikidata.org/entity/Q17326503|http://www.wikidata.org/entity/Q16913737|http://www.wikidata.org/entity/Q16508914|http://www.wikidata.org/entity/Q15851238|http://www.wikidata.org/entity/Q15438712|http://www.wikidata.org/entity/Q1934601|http://www.wikidata.org/entity/Q1298649|http://www.wikidata.org/entity/Q108942|http://www.wikidata.org/entity/Q95316|http://www.wikidata.org/entity/Q88747|http://www.wikidata.org/entity/Q70912"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2015 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1774421"}, "Title": {"type": "literal", "value": "La Nana"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3818280"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7159865|http://www.wikidata.org/entity/Q3818280"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5997442|http://www.wikidata.org/entity/Q5771734|http://www.wikidata.org/entity/Q5665059|http://www.wikidata.org/entity/Q5657866|http://www.wikidata.org/entity/Q5253680|http://www.wikidata.org/entity/Q4750480|http://www.wikidata.org/entity/Q441977"}, "Published": {"type": "literal", "value": "2010|2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2009 Chilean-Mexican film directed by Sebasti\u00e1n Silva"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3874920"}, "Title": {"type": "literal", "value": "Nessuno mi pu\u00f2 giudicare"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3850996"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1879810|http://www.wikidata.org/entity/Q3850996"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3783619|http://www.wikidata.org/entity/Q3702573|http://www.wikidata.org/entity/Q3631286|http://www.wikidata.org/entity/Q3617706|http://www.wikidata.org/entity/Q13460338|http://www.wikidata.org/entity/Q13460329|http://www.wikidata.org/entity/Q3903830|http://www.wikidata.org/entity/Q3851083|http://www.wikidata.org/entity/Q3850996|http://www.wikidata.org/entity/Q3838468|http://www.wikidata.org/entity/Q1052746|http://www.wikidata.org/entity/Q1050695|http://www.wikidata.org/entity/Q1042721|http://www.wikidata.org/entity/Q1008634|http://www.wikidata.org/entity/Q381110|http://www.wikidata.org/entity/Q323127"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2011 film by Massimiliano Bruno"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19007163"}, "Title": {"type": "literal", "value": "American Sharia"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7089804"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7089804"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q663106"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Omar Regan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q54748404"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15415483"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Yann Le Quellec"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7515884"}, "Title": {"type": "literal", "value": "Silver Case"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5109598"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5109598"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q713925|http://www.wikidata.org/entity/Q708153|http://www.wikidata.org/entity/Q579804|http://www.wikidata.org/entity/Q207969|http://www.wikidata.org/entity/Q19956031|http://www.wikidata.org/entity/Q7931752|http://www.wikidata.org/entity/Q6386675|http://www.wikidata.org/entity/Q4796879|http://www.wikidata.org/entity/Q1406562"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Christian Filippella"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27964337"}, "Title": {"type": "literal", "value": "Peter Rabbit"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2576503"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24809083|http://www.wikidata.org/entity/Q2576503"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q456047|http://www.wikidata.org/entity/Q228717|http://www.wikidata.org/entity/Q214309"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28968258|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q25110269|http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q319221"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2018 film by Will Gluck"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q547341|http://www.wikidata.org/entity/Q1416835|http://www.wikidata.org/entity/Q1445805|http://www.wikidata.org/entity/Q186941"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15913338"}, "Title": {"type": "literal", "value": "Juliette"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25395422"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3525072|http://www.wikidata.org/entity/Q3341936|http://www.wikidata.org/entity/Q3286702|http://www.wikidata.org/entity/Q2821516|http://www.wikidata.org/entity/Q966237|http://www.wikidata.org/entity/Q236138|http://www.wikidata.org/entity/Q234015"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Pierre Godeau"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3405395"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3397037"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3397037"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7938956|http://www.wikidata.org/entity/Q3605451|http://www.wikidata.org/entity/Q1565004|http://www.wikidata.org/entity/Q1268195|http://www.wikidata.org/entity/Q1260865|http://www.wikidata.org/entity/Q1253391"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Darko Mitrevski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13393950"}, "Title": {"type": "literal", "value": "My Little Pony: Equestria Girls"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15720731"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15710480"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4029"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "73"}, "Description": {"type": "literal", "value": "2013 animated movie directed by Jayson Thiessen"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3783594"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21695733"}, "Title": {"type": "literal", "value": "Anhedonia \u2013 Narzissmus als Narkose"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21248388|http://www.wikidata.org/entity/Q679794"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21248388"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1910274|http://www.wikidata.org/entity/Q1228158|http://www.wikidata.org/entity/Q679794|http://www.wikidata.org/entity/Q316528|http://www.wikidata.org/entity/Q106496"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q471839"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2015 film directed by Patrick Siegfried Zimmer and Robert Stadlober"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29016634"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4215049"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4215049"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15134589|http://www.wikidata.org/entity/Q4456747|http://www.wikidata.org/entity/Q4361638|http://www.wikidata.org/entity/Q4249008"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2017 film by Roman Karimov"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1754271|http://www.wikidata.org/entity/Q28179983"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19857967"}, "Title": {"type": "literal", "value": "Les Deux Amis"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q382393"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q382393"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q464712"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q663106"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2015 film by Louis Garrel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30889570"}, "Title": {"type": "literal", "value": "Il crimine non va in pensione"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3737714"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2017 film by Fabio Fulco"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1165259"}, "Title": {"type": "literal", "value": "Harold & Kumar Escape from Guantanamo Bay"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3112667|http://www.wikidata.org/entity/Q950283"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q950283|http://www.wikidata.org/entity/Q3112667"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7291478|http://www.wikidata.org/entity/Q3157150|http://www.wikidata.org/entity/Q2873228|http://www.wikidata.org/entity/Q1378118|http://www.wikidata.org/entity/Q1371472|http://www.wikidata.org/entity/Q1077763|http://www.wikidata.org/entity/Q661591|http://www.wikidata.org/entity/Q634684|http://www.wikidata.org/entity/Q544593|http://www.wikidata.org/entity/Q485310|http://www.wikidata.org/entity/Q434261|http://www.wikidata.org/entity/Q433149|http://www.wikidata.org/entity/Q380095|http://www.wikidata.org/entity/Q356086|http://www.wikidata.org/entity/Q350811|http://www.wikidata.org/entity/Q328790|http://www.wikidata.org/entity/Q312705|http://www.wikidata.org/entity/Q234551|http://www.wikidata.org/entity/Q233786|http://www.wikidata.org/entity/Q230176|http://www.wikidata.org/entity/Q220536|http://www.wikidata.org/entity/Q15513405"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q663106"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2008 American stoner comedy film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5368270"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1074295"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1856626"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1856626"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7038621|http://www.wikidata.org/entity/Q5646675|http://www.wikidata.org/entity/Q716069"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q53094"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Lu Chuan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1882655"}, "Title": {"type": "literal", "value": "Machen wir\u2019s auf Finnisch"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1893857"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q95943"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2008 television film directed by Marco Petry"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168717"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18168157"}, "Title": {"type": "literal", "value": "Yoga Hosers"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q489831"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q489831"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20670730|http://www.wikidata.org/entity/Q19300018|http://www.wikidata.org/entity/Q15613720|http://www.wikidata.org/entity/Q1187274|http://www.wikidata.org/entity/Q601032|http://www.wikidata.org/entity/Q525318|http://www.wikidata.org/entity/Q489856|http://www.wikidata.org/entity/Q489831|http://www.wikidata.org/entity/Q469954|http://www.wikidata.org/entity/Q324753|http://www.wikidata.org/entity/Q316627|http://www.wikidata.org/entity/Q298672|http://www.wikidata.org/entity/Q294372|http://www.wikidata.org/entity/Q240355|http://www.wikidata.org/entity/Q234207|http://www.wikidata.org/entity/Q51023|http://www.wikidata.org/entity/Q37175"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2016 film by Kevin Smith"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17182419"}, "Title": {"type": "literal", "value": "Grimsby"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q525332"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21411187|http://www.wikidata.org/entity/Q7172726|http://www.wikidata.org/entity/Q29055"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7172726|http://www.wikidata.org/entity/Q6851436|http://www.wikidata.org/entity/Q3808718|http://www.wikidata.org/entity/Q3018042|http://www.wikidata.org/entity/Q2736441|http://www.wikidata.org/entity/Q15381644|http://www.wikidata.org/entity/Q7407585|http://www.wikidata.org/entity/Q1944303|http://www.wikidata.org/entity/Q1702422|http://www.wikidata.org/entity/Q1701933|http://www.wikidata.org/entity/Q442897|http://www.wikidata.org/entity/Q312712|http://www.wikidata.org/entity/Q258220|http://www.wikidata.org/entity/Q256042|http://www.wikidata.org/entity/Q234141|http://www.wikidata.org/entity/Q230113|http://www.wikidata.org/entity/Q228638|http://www.wikidata.org/entity/Q39666|http://www.wikidata.org/entity/Q29055|http://www.wikidata.org/entity/Q28310"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2297927|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2016 film by Louis Leterrier"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q622668"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5908850"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11560220"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by K\u014dji Fukada"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2664635"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5667433"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2521963"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1973"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1973 film by Harry Booth"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4839265"}, "Title": {"type": "literal", "value": "Back in Business"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5107534"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3295485|http://www.wikidata.org/entity/Q2740822|http://www.wikidata.org/entity/Q1897677|http://www.wikidata.org/entity/Q449118"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Chris Munro"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24806824"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6713058"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6713058"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5512526"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by M. Rajesh"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23038264"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7044825"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q652149"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5996234"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3123705|http://www.wikidata.org/entity/Q2737207|http://www.wikidata.org/entity/Q983043|http://www.wikidata.org/entity/Q421581|http://www.wikidata.org/entity/Q313956|http://www.wikidata.org/entity/Q310867|http://www.wikidata.org/entity/Q255076"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Anees Bazmee"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20004554"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18590061"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2015 film by Francesco Albanese"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48879263"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1670730"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Lu\u00eds Ismael"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3795303"}, "Title": {"type": "literal", "value": "Il principe abusivo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q769800"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q769800"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3955847|http://www.wikidata.org/entity/Q3946143|http://www.wikidata.org/entity/Q3830096|http://www.wikidata.org/entity/Q3734279|http://www.wikidata.org/entity/Q3639283|http://www.wikidata.org/entity/Q3617471|http://www.wikidata.org/entity/Q3607687|http://www.wikidata.org/entity/Q769800|http://www.wikidata.org/entity/Q554787"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2013 film by Alessandro Siani"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q605734|http://www.wikidata.org/entity/Q3663776|http://www.wikidata.org/entity/Q3929491"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q51967930"}, "Title": {"type": "literal", "value": "Carta al Ni\u00f1o Dios"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50358500"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Juan Camilo Pinz\u00f3n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1519997"}, "Title": {"type": "literal", "value": "Ride or Die"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5181397"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1139269"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1502946|http://www.wikidata.org/entity/Q1139269|http://www.wikidata.org/entity/Q704742|http://www.wikidata.org/entity/Q454328|http://www.wikidata.org/entity/Q451958|http://www.wikidata.org/entity/Q299700|http://www.wikidata.org/entity/Q257286|http://www.wikidata.org/entity/Q231648|http://www.wikidata.org/entity/Q220396|http://www.wikidata.org/entity/Q155449"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2003 film by Craig Ross, Jr."}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q859448"}, "Title": {"type": "literal", "value": "50/50"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1320930"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8003038"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q545172|http://www.wikidata.org/entity/Q522146|http://www.wikidata.org/entity/Q447669|http://www.wikidata.org/entity/Q290076|http://www.wikidata.org/entity/Q271638|http://www.wikidata.org/entity/Q229775|http://www.wikidata.org/entity/Q220308|http://www.wikidata.org/entity/Q190998|http://www.wikidata.org/entity/Q177311|http://www.wikidata.org/entity/Q67701|http://www.wikidata.org/entity/Q8003038|http://www.wikidata.org/entity/Q7422786|http://www.wikidata.org/entity/Q4756190|http://www.wikidata.org/entity/Q3900877|http://www.wikidata.org/entity/Q3498453|http://www.wikidata.org/entity/Q3218835|http://www.wikidata.org/entity/Q2599969|http://www.wikidata.org/entity/Q2272452|http://www.wikidata.org/entity/Q1754735"}, "Published": {"type": "literal", "value": "2012|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2011 American drama film directed by Jonathan Levine"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2702789|http://www.wikidata.org/entity/Q5368270"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q907207"}, "Title": {"type": "literal", "value": "\u30d5\u30e9\u30ac\u30fc\u30eb"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q614697"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11610055|http://www.wikidata.org/entity/Q614697"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11468247|http://www.wikidata.org/entity/Q3544664|http://www.wikidata.org/entity/Q1139734|http://www.wikidata.org/entity/Q1041266|http://www.wikidata.org/entity/Q873876|http://www.wikidata.org/entity/Q262878"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Lee Sang-il"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2806825"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3340153"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3340153"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3591162|http://www.wikidata.org/entity/Q3516056|http://www.wikidata.org/entity/Q3350916|http://www.wikidata.org/entity/Q3292625|http://www.wikidata.org/entity/Q3292012|http://www.wikidata.org/entity/Q3118485|http://www.wikidata.org/entity/Q3018751|http://www.wikidata.org/entity/Q2979362|http://www.wikidata.org/entity/Q2646765|http://www.wikidata.org/entity/Q1097113|http://www.wikidata.org/entity/Q963158|http://www.wikidata.org/entity/Q715111"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Nicolas Brossette"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1983756"}, "Title": {"type": "literal", "value": "The Onion Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7816510"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7812417"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15665021|http://www.wikidata.org/entity/Q4695717|http://www.wikidata.org/entity/Q3474471|http://www.wikidata.org/entity/Q3217940|http://www.wikidata.org/entity/Q2700668|http://www.wikidata.org/entity/Q1720470|http://www.wikidata.org/entity/Q552889|http://www.wikidata.org/entity/Q82110"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2008 film by Tom Kuntz"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q466459"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5826056"}, "Title": {"type": "literal", "value": "El paseo 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16302557"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q295233"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Harold Trompetero"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16132832"}, "Title": {"type": "literal", "value": "\u05d0\u05e0\u05d9 \u05dc\u05d0 \u05de\u05d0\u05de\u05d9\u05df, \u05d0\u05e0\u05d9 \u05e8\u05d5\u05d1\u05d5\u05d8!|Ani Lo Maamin, Ani Robot"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16128762"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16128762"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1513557|http://www.wikidata.org/entity/Q12410872|http://www.wikidata.org/entity/Q12405898|http://www.wikidata.org/entity/Q12403604|http://www.wikidata.org/entity/Q6829702|http://www.wikidata.org/entity/Q6827317|http://www.wikidata.org/entity/Q6772809"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film directed by Tal Goldberg and Gal Zelezniak"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3818488"}, "Title": {"type": "literal", "value": "L'amore non esiste"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3850997"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3934422|http://www.wikidata.org/entity/Q3904256|http://www.wikidata.org/entity/Q3897825|http://www.wikidata.org/entity/Q3850182|http://www.wikidata.org/entity/Q3848077|http://www.wikidata.org/entity/Q3719651"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "15"}, "Description": {"type": "literal", "value": "2008 film by Massimiliano Camaiti"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2060015"}, "Title": {"type": "literal", "value": "The Wackness"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1320930"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1320930"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q190794|http://www.wikidata.org/entity/Q173158|http://www.wikidata.org/entity/Q1690817|http://www.wikidata.org/entity/Q1151944|http://www.wikidata.org/entity/Q436360|http://www.wikidata.org/entity/Q311779|http://www.wikidata.org/entity/Q302930|http://www.wikidata.org/entity/Q298694|http://www.wikidata.org/entity/Q271616|http://www.wikidata.org/entity/Q242550|http://www.wikidata.org/entity/Q208415"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2008 film by Jonathan Levine"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29475056"}, "Title": {"type": "literal", "value": "Mira\u00e7"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1341593"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15989287"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Nurten Erdemir and Enes Hakan Tokyay"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1573810"}, "Title": {"type": "literal", "value": "Recep \u0130vedik 3"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7813033"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q388027"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q388027"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2010 film by Togan G\u00f6kbakar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48755843"}, "Title": {"type": "literal", "value": "Guy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2832982"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17475769|http://www.wikidata.org/entity/Q2832982"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q46483761|http://www.wikidata.org/entity/Q22968159|http://www.wikidata.org/entity/Q15918282|http://www.wikidata.org/entity/Q3501539|http://www.wikidata.org/entity/Q3341044|http://www.wikidata.org/entity/Q3292384|http://www.wikidata.org/entity/Q3224474|http://www.wikidata.org/entity/Q3189147|http://www.wikidata.org/entity/Q3018751|http://www.wikidata.org/entity/Q3009779|http://www.wikidata.org/entity/Q2941947|http://www.wikidata.org/entity/Q2925481|http://www.wikidata.org/entity/Q2832982|http://www.wikidata.org/entity/Q2832730|http://www.wikidata.org/entity/Q1356701|http://www.wikidata.org/entity/Q933434|http://www.wikidata.org/entity/Q548211|http://www.wikidata.org/entity/Q526918|http://www.wikidata.org/entity/Q466991|http://www.wikidata.org/entity/Q292760|http://www.wikidata.org/entity/Q239033|http://www.wikidata.org/entity/Q236138"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8812380|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2018 film directed by Alex Lutz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43303332"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q48836940"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q48836940"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film directed by Chris Moore"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48671851"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7635089"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Sugeeth"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q948886"}, "Title": {"type": "literal", "value": "Welcome to Collinwood"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18018415|http://www.wikidata.org/entity/Q2853003|http://www.wikidata.org/entity/Q20675767"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2853003"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q347395|http://www.wikidata.org/entity/Q329716|http://www.wikidata.org/entity/Q316446|http://www.wikidata.org/entity/Q233922|http://www.wikidata.org/entity/Q231648|http://www.wikidata.org/entity/Q229268|http://www.wikidata.org/entity/Q16252442|http://www.wikidata.org/entity/Q2156496|http://www.wikidata.org/entity/Q224159|http://www.wikidata.org/entity/Q40048|http://www.wikidata.org/entity/Q23844"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q496523"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2002 film by Anthony Russo, Joe Russo"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1152369"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q702374"}, "Title": {"type": "literal", "value": "Sommersturm"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q68855"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q63352080|http://www.wikidata.org/entity/Q68855"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q679794|http://www.wikidata.org/entity/Q445583|http://www.wikidata.org/entity/Q109720|http://www.wikidata.org/entity/Q106495|http://www.wikidata.org/entity/Q106493|http://www.wikidata.org/entity/Q105785|http://www.wikidata.org/entity/Q98899|http://www.wikidata.org/entity/Q90795|http://www.wikidata.org/entity/Q72046"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2004 German coming-of-age film directed by Marco Kreuzpaintner"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11710023"}, "Title": {"type": "literal", "value": "Homo Father"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11817800"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Piotr Matwiejczyk"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11753079"}, "Title": {"type": "literal", "value": "Last minute"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11813603"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11813603"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9376690"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Patryk Vega"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4860312"}, "Title": {"type": "literal", "value": "Bare p\u00e5 jobb"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17094230"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17094230"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Kjell Hammer\u00f8"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1737991"}, "Title": {"type": "literal", "value": "A Little Bit of Heaven"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3341067"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19592407"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2994084|http://www.wikidata.org/entity/Q927102|http://www.wikidata.org/entity/Q924104|http://www.wikidata.org/entity/Q724796|http://www.wikidata.org/entity/Q544465|http://www.wikidata.org/entity/Q352730|http://www.wikidata.org/entity/Q350194|http://www.wikidata.org/entity/Q310937|http://www.wikidata.org/entity/Q261579|http://www.wikidata.org/entity/Q236956|http://www.wikidata.org/entity/Q179576|http://www.wikidata.org/entity/Q169946|http://www.wikidata.org/entity/Q49001"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2011 film by Nicole Kassell"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2579492|http://www.wikidata.org/entity/Q7733857|http://www.wikidata.org/entity/Q1138789"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3015574"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q59694166"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2977696"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3579172|http://www.wikidata.org/entity/Q3507371|http://www.wikidata.org/entity/Q3501698|http://www.wikidata.org/entity/Q3454390|http://www.wikidata.org/entity/Q3384182|http://www.wikidata.org/entity/Q3383044|http://www.wikidata.org/entity/Q3369483|http://www.wikidata.org/entity/Q3332886|http://www.wikidata.org/entity/Q3260784|http://www.wikidata.org/entity/Q3161171|http://www.wikidata.org/entity/Q3121879|http://www.wikidata.org/entity/Q3027092|http://www.wikidata.org/entity/Q2977696|http://www.wikidata.org/entity/Q2848058|http://www.wikidata.org/entity/Q2834584"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Philippe Gagnon"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3512526"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7065872"}, "Title": {"type": "literal", "value": "Now You Know"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1140895"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1140895"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3837599|http://www.wikidata.org/entity/Q2335359|http://www.wikidata.org/entity/Q1726175|http://www.wikidata.org/entity/Q1140895|http://www.wikidata.org/entity/Q598158|http://www.wikidata.org/entity/Q554218|http://www.wikidata.org/entity/Q540608|http://www.wikidata.org/entity/Q489831|http://www.wikidata.org/entity/Q463692|http://www.wikidata.org/entity/Q452763|http://www.wikidata.org/entity/Q449863|http://www.wikidata.org/entity/Q332937|http://www.wikidata.org/entity/Q263428|http://www.wikidata.org/entity/Q236946"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Jeff Anderson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12771867"}, "Title": {"type": "literal", "value": "Modr\u00e9 z neba"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13537259"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13537259"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12022667|http://www.wikidata.org/entity/Q11729468|http://www.wikidata.org/entity/Q540574|http://www.wikidata.org/entity/Q468271|http://www.wikidata.org/entity/Q375191|http://www.wikidata.org/entity/Q206146"}, "Published": {"type": "literal", "value": "1997"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1997 film by Eva Boru\u0161ovi\u010dov\u00e1"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20513926"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27960476"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16846043"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28597204|http://www.wikidata.org/entity/Q27778936|http://www.wikidata.org/entity/Q23887684|http://www.wikidata.org/entity/Q23664206|http://www.wikidata.org/entity/Q23038181|http://www.wikidata.org/entity/Q20510786|http://www.wikidata.org/entity/Q20510404|http://www.wikidata.org/entity/Q15270270|http://www.wikidata.org/entity/Q15093673"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2013 film by Gor Kirakosyan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1333199"}, "Title": {"type": "literal", "value": "Hardcover"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1082448"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1082448"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q74258"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2008 film by Christian Z\u00fcbert"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1223129"}, "Title": {"type": "literal", "value": "Diverso da chi?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30076175"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13427396"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3745280|http://www.wikidata.org/entity/Q3362634|http://www.wikidata.org/entity/Q1223109|http://www.wikidata.org/entity/Q1042251|http://www.wikidata.org/entity/Q1042185|http://www.wikidata.org/entity/Q808664|http://www.wikidata.org/entity/Q468793"}, "Published": {"type": "literal", "value": "2011|2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2009 film by Umberto Carteni"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3663776"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15070813"}, "Title": {"type": "literal", "value": "The Pretty One"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19592373"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19592373"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19958261|http://www.wikidata.org/entity/Q16239118|http://www.wikidata.org/entity/Q6701600|http://www.wikidata.org/entity/Q1264937|http://www.wikidata.org/entity/Q960721|http://www.wikidata.org/entity/Q707759|http://www.wikidata.org/entity/Q620822|http://www.wikidata.org/entity/Q528126|http://www.wikidata.org/entity/Q437948|http://www.wikidata.org/entity/Q218210|http://www.wikidata.org/entity/Q171525"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2013 film by Jen\u00e9e LaMarque"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q474199"}, "Title": {"type": "literal", "value": "Amos & Andrew"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5322060"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5322060"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5089830|http://www.wikidata.org/entity/Q1366460|http://www.wikidata.org/entity/Q726142|http://www.wikidata.org/entity/Q621490|http://www.wikidata.org/entity/Q527303|http://www.wikidata.org/entity/Q446717|http://www.wikidata.org/entity/Q405542|http://www.wikidata.org/entity/Q329734|http://www.wikidata.org/entity/Q267001|http://www.wikidata.org/entity/Q257271|http://www.wikidata.org/entity/Q172678|http://www.wikidata.org/entity/Q42869"}, "Published": {"type": "literal", "value": "1993"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "1993 film by E. Max Frye"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q186941"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q249215"}, "Title": {"type": "literal", "value": "Project X"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2319466"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2262850"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21933732|http://www.wikidata.org/entity/Q7087462|http://www.wikidata.org/entity/Q2272675|http://www.wikidata.org/entity/Q2156744|http://www.wikidata.org/entity/Q267330|http://www.wikidata.org/entity/Q171687"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3272147|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2012 film by Nima Nourizadeh"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1188938"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15068238"}, "Title": {"type": "literal", "value": "Kingsman: The Secret Service"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2593"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q445765|http://www.wikidata.org/entity/Q32661|http://www.wikidata.org/entity/Q2593|http://www.wikidata.org/entity/Q2543"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q162492|http://www.wikidata.org/entity/Q123351|http://www.wikidata.org/entity/Q1132632|http://www.wikidata.org/entity/Q879810|http://www.wikidata.org/entity/Q527023|http://www.wikidata.org/entity/Q312712|http://www.wikidata.org/entity/Q310930|http://www.wikidata.org/entity/Q291314|http://www.wikidata.org/entity/Q258777|http://www.wikidata.org/entity/Q210447|http://www.wikidata.org/entity/Q172678|http://www.wikidata.org/entity/Q1859256|http://www.wikidata.org/entity/Q1272489|http://www.wikidata.org/entity/Q1158522|http://www.wikidata.org/entity/Q5534044|http://www.wikidata.org/entity/Q3372059|http://www.wikidata.org/entity/Q21592498|http://www.wikidata.org/entity/Q18379490|http://www.wikidata.org/entity/Q16239385"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q2678111|http://www.wikidata.org/entity/Q2297927"}, "Duration": {"type": "literal", "value": "129"}, "Description": {"type": "literal", "value": "2014 film by Matthew Vaughn"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434841|http://www.wikidata.org/entity/Q1906017"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18398561"}, "Title": {"type": "literal", "value": "Frozen Fever"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5929198|http://www.wikidata.org/entity/Q156596"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q132311"}, "Duration": {"type": "literal", "value": "7"}, "Description": {"type": "literal", "value": "2015 American animated short film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1047410|http://www.wikidata.org/entity/Q191224"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q596085"}, "Title": {"type": "literal", "value": "Jonah Hex"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3808425"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q913128|http://www.wikidata.org/entity/Q7003802|http://www.wikidata.org/entity/Q1340718"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5387475|http://www.wikidata.org/entity/Q3833363|http://www.wikidata.org/entity/Q3808425|http://www.wikidata.org/entity/Q3182044|http://www.wikidata.org/entity/Q21486090|http://www.wikidata.org/entity/Q19405928|http://www.wikidata.org/entity/Q17385901|http://www.wikidata.org/entity/Q57147|http://www.wikidata.org/entity/Q41449|http://www.wikidata.org/entity/Q41396|http://www.wikidata.org/entity/Q2914570|http://www.wikidata.org/entity/Q2004409|http://www.wikidata.org/entity/Q2004171|http://www.wikidata.org/entity/Q1939485|http://www.wikidata.org/entity/Q958227|http://www.wikidata.org/entity/Q948751|http://www.wikidata.org/entity/Q403902|http://www.wikidata.org/entity/Q368037|http://www.wikidata.org/entity/Q355116|http://www.wikidata.org/entity/Q342665|http://www.wikidata.org/entity/Q322056|http://www.wikidata.org/entity/Q239240|http://www.wikidata.org/entity/Q210076|http://www.wikidata.org/entity/Q172261|http://www.wikidata.org/entity/Q80069"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q172980|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "2010 film by Jimmy Hayward"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q621364|http://www.wikidata.org/entity/Q2924461"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60049100"}, "Title": {"type": "literal", "value": "Murot und das Murmeltier"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1223694"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1223694"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61638533|http://www.wikidata.org/entity/Q29575212|http://www.wikidata.org/entity/Q29575174|http://www.wikidata.org/entity/Q17122801|http://www.wikidata.org/entity/Q2225497|http://www.wikidata.org/entity/Q1944553|http://www.wikidata.org/entity/Q1478871|http://www.wikidata.org/entity/Q807583|http://www.wikidata.org/entity/Q697129|http://www.wikidata.org/entity/Q96937"}, "Published": {"type": "literal", "value": "2019|2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "television film directed by Dietrich Br\u00fcggemann"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23565"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q175017"}, "Title": {"type": "literal", "value": "12 Meter ohne Kopf"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2371376"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1910207"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q215565|http://www.wikidata.org/entity/Q99064|http://www.wikidata.org/entity/Q91504|http://www.wikidata.org/entity/Q86919|http://www.wikidata.org/entity/Q69092|http://www.wikidata.org/entity/Q64645|http://www.wikidata.org/entity/Q23061988|http://www.wikidata.org/entity/Q21400435|http://www.wikidata.org/entity/Q17149503|http://www.wikidata.org/entity/Q2020120|http://www.wikidata.org/entity/Q1713608|http://www.wikidata.org/entity/Q1676772|http://www.wikidata.org/entity/Q1620586|http://www.wikidata.org/entity/Q1619430|http://www.wikidata.org/entity/Q1577817|http://www.wikidata.org/entity/Q1555527|http://www.wikidata.org/entity/Q1533711|http://www.wikidata.org/entity/Q1260674|http://www.wikidata.org/entity/Q1223694|http://www.wikidata.org/entity/Q880320"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q319221"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2009 German film directed by Sven Taddicken"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5672071"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5953208"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2581611"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q684771"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1995"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "1995 film by Bill L. Norton"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q52715708"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19667309"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Onur Tukel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5368427"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860820"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860820"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Kankur\u014d Kud\u014d"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12323344"}, "Title": {"type": "literal", "value": "K\u00e6rlighed ved f\u00f8rste hik"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q952621|http://www.wikidata.org/entity/Q12305706"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5258586|http://www.wikidata.org/entity/Q12338513"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12333598|http://www.wikidata.org/entity/Q12332885|http://www.wikidata.org/entity/Q12331303|http://www.wikidata.org/entity/Q12323948|http://www.wikidata.org/entity/Q12321367|http://www.wikidata.org/entity/Q12320284|http://www.wikidata.org/entity/Q12319764|http://www.wikidata.org/entity/Q12318313|http://www.wikidata.org/entity/Q12300808|http://www.wikidata.org/entity/Q11958211|http://www.wikidata.org/entity/Q7239357|http://www.wikidata.org/entity/Q4971290|http://www.wikidata.org/entity/Q38052540|http://www.wikidata.org/entity/Q4968553|http://www.wikidata.org/entity/Q4947416|http://www.wikidata.org/entity/Q2804024|http://www.wikidata.org/entity/Q2297454|http://www.wikidata.org/entity/Q1957570|http://www.wikidata.org/entity/Q1789215|http://www.wikidata.org/entity/Q1662462|http://www.wikidata.org/entity/Q1098466|http://www.wikidata.org/entity/Q740244|http://www.wikidata.org/entity/Q186501"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1999 film by Tomas Villum Jensen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q9335043"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1189562"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1189562"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q58431245|http://www.wikidata.org/entity/Q15855347|http://www.wikidata.org/entity/Q2228657|http://www.wikidata.org/entity/Q1900519|http://www.wikidata.org/entity/Q1570556|http://www.wikidata.org/entity/Q1407936|http://www.wikidata.org/entity/Q694341|http://www.wikidata.org/entity/Q521891|http://www.wikidata.org/entity/Q88747"}, "Published": {"type": "literal", "value": "2011|2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Dennis Todorovi\u0107"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2946975"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2778106|http://www.wikidata.org/entity/Q74428"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2778106|http://www.wikidata.org/entity/Q74428"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3086968|http://www.wikidata.org/entity/Q3051724|http://www.wikidata.org/entity/Q2941947|http://www.wikidata.org/entity/Q2884036|http://www.wikidata.org/entity/Q2861469|http://www.wikidata.org/entity/Q2834188|http://www.wikidata.org/entity/Q2413166|http://www.wikidata.org/entity/Q1713457|http://www.wikidata.org/entity/Q1341507|http://www.wikidata.org/entity/Q357387|http://www.wikidata.org/entity/Q3571575|http://www.wikidata.org/entity/Q3554229|http://www.wikidata.org/entity/Q3524285|http://www.wikidata.org/entity/Q3173186"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 short film directed by Olivier Nakache and \u00c9ric Toledano"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3425443"}, "Title": {"type": "literal", "value": "Rengaine"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3416159"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3416159"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3502082|http://www.wikidata.org/entity/Q3486697|http://www.wikidata.org/entity/Q3302043|http://www.wikidata.org/entity/Q466926"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Rachid Dja\u00efdani"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27067930"}, "Title": {"type": "literal", "value": "Willkommen bei den Hartmanns"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q78367"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q78367"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q62310|http://www.wikidata.org/entity/Q28005167|http://www.wikidata.org/entity/Q23067905|http://www.wikidata.org/entity/Q20474668|http://www.wikidata.org/entity/Q19960215|http://www.wikidata.org/entity/Q1676742|http://www.wikidata.org/entity/Q1317642|http://www.wikidata.org/entity/Q1018220|http://www.wikidata.org/entity/Q186692|http://www.wikidata.org/entity/Q101059|http://www.wikidata.org/entity/Q97423|http://www.wikidata.org/entity/Q90849|http://www.wikidata.org/entity/Q87432|http://www.wikidata.org/entity/Q78766"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "2016 film by Simon Verhoeven"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2511253"}, "Title": {"type": "literal", "value": "Vater Morgana"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2433397"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1584617|http://www.wikidata.org/entity/Q1578055|http://www.wikidata.org/entity/Q1252553|http://www.wikidata.org/entity/Q111879|http://www.wikidata.org/entity/Q109299|http://www.wikidata.org/entity/Q99340|http://www.wikidata.org/entity/Q92095|http://www.wikidata.org/entity/Q89446|http://www.wikidata.org/entity/Q77991|http://www.wikidata.org/entity/Q70727|http://www.wikidata.org/entity/Q63003|http://www.wikidata.org/entity/Q16739240|http://www.wikidata.org/entity/Q2477368|http://www.wikidata.org/entity/Q2450169|http://www.wikidata.org/entity/Q1928471|http://www.wikidata.org/entity/Q1892651|http://www.wikidata.org/entity/Q1795154"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2010 film by Till Endemann"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6092795"}, "Title": {"type": "literal", "value": "Kelo\u011flan Karaprens'e Kar\u015f\u0131"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6079743"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6079743"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q382114"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2006 film by Tayfun G\u00fcneyer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10712070"}, "Title": {"type": "literal", "value": "Vaktm\u00e4staren och professorn"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5553881"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5553881"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5603150"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Anders Andersson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1517621"}, "Title": {"type": "literal", "value": "In the Land of Women"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q132058"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q132058"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24951338|http://www.wikidata.org/entity/Q3113275|http://www.wikidata.org/entity/Q1191180|http://www.wikidata.org/entity/Q469914|http://www.wikidata.org/entity/Q294372|http://www.wikidata.org/entity/Q290103|http://www.wikidata.org/entity/Q286745|http://www.wikidata.org/entity/Q265547|http://www.wikidata.org/entity/Q240949|http://www.wikidata.org/entity/Q237809|http://www.wikidata.org/entity/Q230188|http://www.wikidata.org/entity/Q167498|http://www.wikidata.org/entity/Q126599|http://www.wikidata.org/entity/Q113206|http://www.wikidata.org/entity/Q109522"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2007 film by Jon Kasdan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15302998"}, "Title": {"type": "literal", "value": "Une villa \u00e0 Los Angeles"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2837071"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2837071"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3166719"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Aliocha"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1393003"}, "Title": {"type": "literal", "value": "Behaving Badly"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9358715"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23927006|http://www.wikidata.org/entity/Q15662709|http://www.wikidata.org/entity/Q4204710|http://www.wikidata.org/entity/Q1764846|http://www.wikidata.org/entity/Q1321346|http://www.wikidata.org/entity/Q1321323|http://www.wikidata.org/entity/Q1249010|http://www.wikidata.org/entity/Q449850|http://www.wikidata.org/entity/Q359061|http://www.wikidata.org/entity/Q343564|http://www.wikidata.org/entity/Q312081|http://www.wikidata.org/entity/Q311093|http://www.wikidata.org/entity/Q229957|http://www.wikidata.org/entity/Q224026|http://www.wikidata.org/entity/Q207852|http://www.wikidata.org/entity/Q177394|http://www.wikidata.org/entity/Q83287|http://www.wikidata.org/entity/Q53120|http://www.wikidata.org/entity/Q34086|http://www.wikidata.org/entity/Q4960"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2014 film by Tim Garrick"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13582568"}, "Title": {"type": "literal", "value": "A Million Ways to Die in the West"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188492"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188492|http://www.wikidata.org/entity/Q6241864|http://www.wikidata.org/entity/Q4714271"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q229013|http://www.wikidata.org/entity/Q224081|http://www.wikidata.org/entity/Q221464|http://www.wikidata.org/entity/Q16940304|http://www.wikidata.org/entity/Q4714271|http://www.wikidata.org/entity/Q2947843|http://www.wikidata.org/entity/Q1847082|http://www.wikidata.org/entity/Q1768022|http://www.wikidata.org/entity/Q1187274|http://www.wikidata.org/entity/Q1029535|http://www.wikidata.org/entity/Q967130|http://www.wikidata.org/entity/Q741473|http://www.wikidata.org/entity/Q529443|http://www.wikidata.org/entity/Q485310|http://www.wikidata.org/entity/Q463285|http://www.wikidata.org/entity/Q350819|http://www.wikidata.org/entity/Q232307|http://www.wikidata.org/entity/Q192682|http://www.wikidata.org/entity/Q189226|http://www.wikidata.org/entity/Q188492|http://www.wikidata.org/entity/Q171905|http://www.wikidata.org/entity/Q165518|http://www.wikidata.org/entity/Q116219|http://www.wikidata.org/entity/Q109324|http://www.wikidata.org/entity/Q80046|http://www.wikidata.org/entity/Q58444|http://www.wikidata.org/entity/Q16759|http://www.wikidata.org/entity/Q16296|http://www.wikidata.org/entity/Q489"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q172980|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "2014 film by Seth MacFarlane"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1754127"}, "Title": {"type": "literal", "value": "A fost sau n-a fost?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2734356"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2734356"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18547685|http://www.wikidata.org/entity/Q12742058|http://www.wikidata.org/entity/Q4116979"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2006 film by Corneliu Porumboiu"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q201379"}, "Title": {"type": "literal", "value": "Forgetting Sarah Marshall"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2624066"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q202304"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6415432|http://www.wikidata.org/entity/Q5363059|http://www.wikidata.org/entity/Q3702254|http://www.wikidata.org/entity/Q2903607|http://www.wikidata.org/entity/Q2827706|http://www.wikidata.org/entity/Q1713263|http://www.wikidata.org/entity/Q656258|http://www.wikidata.org/entity/Q560896|http://www.wikidata.org/entity/Q433241|http://www.wikidata.org/entity/Q432281|http://www.wikidata.org/entity/Q313546|http://www.wikidata.org/entity/Q313388|http://www.wikidata.org/entity/Q296609|http://www.wikidata.org/entity/Q284636|http://www.wikidata.org/entity/Q276525|http://www.wikidata.org/entity/Q231382|http://www.wikidata.org/entity/Q202304|http://www.wikidata.org/entity/Q178882|http://www.wikidata.org/entity/Q131866|http://www.wikidata.org/entity/Q37628|http://www.wikidata.org/entity/Q14537"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "2008 film by Nicholas Stoller"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q618091"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12125177"}, "Title": {"type": "literal", "value": "It's a Disaster"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3992157"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3992157"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1237204|http://www.wikidata.org/entity/Q362332|http://www.wikidata.org/entity/Q219402|http://www.wikidata.org/entity/Q210120"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q846544|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Todd Berger"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3480756"}, "Title": {"type": "literal", "value": "Seuls Two"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3591196|http://www.wikidata.org/entity/Q3418669"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3418669|http://www.wikidata.org/entity/Q3380199"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15965529|http://www.wikidata.org/entity/Q3591196|http://www.wikidata.org/entity/Q3418669|http://www.wikidata.org/entity/Q3272811|http://www.wikidata.org/entity/Q3086968|http://www.wikidata.org/entity/Q2851057|http://www.wikidata.org/entity/Q539703|http://www.wikidata.org/entity/Q357387|http://www.wikidata.org/entity/Q274227|http://www.wikidata.org/entity/Q236138|http://www.wikidata.org/entity/Q208590|http://www.wikidata.org/entity/Q164976"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Ramzy Bedia and \u00c9ric Judor"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3824902"}, "Title": {"type": "literal", "value": "La vida es un carnaval"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3946676"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3946676|http://www.wikidata.org/entity/Q3851211|http://www.wikidata.org/entity/Q3634619"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2006 film by Samuele Sbrighi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23900097"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3703628"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "119"}, "Description": {"type": "literal", "value": "2016 film by Davide Simon Mazzoli"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q46082771"}, "Title": {"type": "literal", "value": "La M\u00e9lodie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3416169"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3416169"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q983159"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Mohamed Rachid Hami"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14906074"}, "Title": {"type": "literal", "value": "A Haunted House 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21066677"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q310785"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2738010|http://www.wikidata.org/entity/Q2151597|http://www.wikidata.org/entity/Q1990727|http://www.wikidata.org/entity/Q936507|http://www.wikidata.org/entity/Q492327|http://www.wikidata.org/entity/Q310785|http://www.wikidata.org/entity/Q233786|http://www.wikidata.org/entity/Q231197|http://www.wikidata.org/entity/Q177394"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3272147|http://www.wikidata.org/entity/Q622548|http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2014 film by Michael Tiddes"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18693337"}, "Title": {"type": "literal", "value": "Juoppohullun p\u00e4iv\u00e4kirja"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16985950"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16985950"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14116154|http://www.wikidata.org/entity/Q11892451|http://www.wikidata.org/entity/Q11866918|http://www.wikidata.org/entity/Q3321553"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2012 Finnish film directed by Lauri Maijala"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16858303"}, "Title": {"type": "literal", "value": "\u00dcber-Ich und Du"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q90929"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q90929"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61831710|http://www.wikidata.org/entity/Q22675926|http://www.wikidata.org/entity/Q20243235|http://www.wikidata.org/entity/Q18221849|http://www.wikidata.org/entity/Q16438755|http://www.wikidata.org/entity/Q2077727|http://www.wikidata.org/entity/Q2060156|http://www.wikidata.org/entity/Q1944541|http://www.wikidata.org/entity/Q1929867|http://www.wikidata.org/entity/Q1756778|http://www.wikidata.org/entity/Q1616382|http://www.wikidata.org/entity/Q1529478|http://www.wikidata.org/entity/Q1504267|http://www.wikidata.org/entity/Q1331348|http://www.wikidata.org/entity/Q1330169|http://www.wikidata.org/entity/Q1317642|http://www.wikidata.org/entity/Q850066|http://www.wikidata.org/entity/Q523442|http://www.wikidata.org/entity/Q499769|http://www.wikidata.org/entity/Q118393|http://www.wikidata.org/entity/Q106466|http://www.wikidata.org/entity/Q88307|http://www.wikidata.org/entity/Q86714"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2014 film dramedy by Benjamin Heisenberg"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1766235"}, "Title": {"type": "literal", "value": "\u0648\u0647\u0644\u0651\u0623 \u0644\u0648\u064a\u0646\u061f|w halla' la wayn\u200e|Et maintenant, on va o\u00f9?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q266539"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13518238|http://www.wikidata.org/entity/Q3470519|http://www.wikidata.org/entity/Q266539"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12222229|http://www.wikidata.org/entity/Q670311|http://www.wikidata.org/entity/Q266539|http://www.wikidata.org/entity/Q62353"}, "Published": {"type": "literal", "value": "2011|2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2011 film by Nadine Labaki"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1552765"}, "Title": {"type": "literal", "value": "I'm Still Here"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q270730"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q185140|http://www.wikidata.org/entity/Q270730"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2680|http://www.wikidata.org/entity/Q76|http://www.wikidata.org/entity/Q18666096|http://www.wikidata.org/entity/Q3376508|http://www.wikidata.org/entity/Q3177495|http://www.wikidata.org/entity/Q486740|http://www.wikidata.org/entity/Q272972|http://www.wikidata.org/entity/Q270730|http://www.wikidata.org/entity/Q217298|http://www.wikidata.org/entity/Q216936|http://www.wikidata.org/entity/Q211415|http://www.wikidata.org/entity/Q192165|http://www.wikidata.org/entity/Q186485|http://www.wikidata.org/entity/Q185140|http://www.wikidata.org/entity/Q171905|http://www.wikidata.org/entity/Q163286|http://www.wikidata.org/entity/Q47100|http://www.wikidata.org/entity/Q44221|http://www.wikidata.org/entity/Q39792|http://www.wikidata.org/entity/Q38875|http://www.wikidata.org/entity/Q37876|http://www.wikidata.org/entity/Q26806"}, "Published": {"type": "literal", "value": "2010|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q459435|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2010 film by Casey Affleck"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19603873"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16262629"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21065355"}, "Title": {"type": "literal", "value": "Er ist wieder da"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1177226"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1663348|http://www.wikidata.org/entity/Q1177226"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q53954433|http://www.wikidata.org/entity/Q21400435|http://www.wikidata.org/entity/Q20243329|http://www.wikidata.org/entity/Q15992055|http://www.wikidata.org/entity/Q15851238|http://www.wikidata.org/entity/Q2343282|http://www.wikidata.org/entity/Q2057655|http://www.wikidata.org/entity/Q2020417|http://www.wikidata.org/entity/Q1806325|http://www.wikidata.org/entity/Q1702610|http://www.wikidata.org/entity/Q1553141|http://www.wikidata.org/entity/Q1477214|http://www.wikidata.org/entity/Q1465489|http://www.wikidata.org/entity/Q1232005|http://www.wikidata.org/entity/Q1159909|http://www.wikidata.org/entity/Q1145137|http://www.wikidata.org/entity/Q546822|http://www.wikidata.org/entity/Q119439|http://www.wikidata.org/entity/Q109360|http://www.wikidata.org/entity/Q105338|http://www.wikidata.org/entity/Q104670|http://www.wikidata.org/entity/Q104094|http://www.wikidata.org/entity/Q101524|http://www.wikidata.org/entity/Q90731|http://www.wikidata.org/entity/Q88570|http://www.wikidata.org/entity/Q62346|http://www.wikidata.org/entity/Q45387"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "2015 German film directed by David Wnendt"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22251974"}, "Title": {"type": "literal", "value": "Joshy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26897001"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26897001"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19661595|http://www.wikidata.org/entity/Q16239393|http://www.wikidata.org/entity/Q6212564|http://www.wikidata.org/entity/Q4717719|http://www.wikidata.org/entity/Q4241574|http://www.wikidata.org/entity/Q1968839|http://www.wikidata.org/entity/Q744166|http://www.wikidata.org/entity/Q430922|http://www.wikidata.org/entity/Q350589|http://www.wikidata.org/entity/Q235328|http://www.wikidata.org/entity/Q229197|http://www.wikidata.org/entity/Q228755|http://www.wikidata.org/entity/Q210547|http://www.wikidata.org/entity/Q171525"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Jeff Baena"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4411137"}, "Title": {"type": "literal", "value": "\u0421\u0432\u043e\u0431\u043e\u0434\u043d\u043e\u0435 \u043f\u043b\u0430\u0432\u0430\u043d\u0438\u0435"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4231887"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4231887"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4539768"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Boris Khlebnikov"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27890955"}, "Title": {"type": "literal", "value": "Strawberry Bubblegums"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q817710"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2016 German television film directed by Benjamin Teske"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q47162336"}, "Title": {"type": "literal", "value": "M\u00e4nner zeigen Filme & Frauen ihre Br\u00fcste"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24228993"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15623301|http://www.wikidata.org/entity/Q1910381|http://www.wikidata.org/entity/Q25493066"}, "Published": {"type": "literal", "value": "2013|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Isabell \u0160uba"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7207814"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4648088"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12072044|http://www.wikidata.org/entity/Q6918985|http://www.wikidata.org/entity/Q6373531|http://www.wikidata.org/entity/Q6261997|http://www.wikidata.org/entity/Q3595284|http://www.wikidata.org/entity/Q3523308|http://www.wikidata.org/entity/Q3521977|http://www.wikidata.org/entity/Q2460693"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by A. L. Vijay"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2745595"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3023829"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1192227|http://www.wikidata.org/entity/Q1142399|http://www.wikidata.org/entity/Q1057734|http://www.wikidata.org/entity/Q988955|http://www.wikidata.org/entity/Q945665|http://www.wikidata.org/entity/Q355173|http://www.wikidata.org/entity/Q271859"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15712918|http://www.wikidata.org/entity/Q15286013|http://www.wikidata.org/entity/Q1782964|http://www.wikidata.org/entity/Q761469|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Hiroyuki Imaishi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q735670"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6305601"}, "Title": {"type": "literal", "value": "\u0c1c\u0c41\u0c32\u0c3e\u0c2f\u0c3f"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7844679"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7844679"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26221429|http://www.wikidata.org/entity/Q22278958|http://www.wikidata.org/entity/Q19898405|http://www.wikidata.org/entity/Q17495881|http://www.wikidata.org/entity/Q13551326|http://www.wikidata.org/entity/Q12999076|http://www.wikidata.org/entity/Q7994331|http://www.wikidata.org/entity/Q7683304|http://www.wikidata.org/entity/Q7492544|http://www.wikidata.org/entity/Q7296651|http://www.wikidata.org/entity/Q7293689|http://www.wikidata.org/entity/Q7237601|http://www.wikidata.org/entity/Q6433821|http://www.wikidata.org/entity/Q5710886|http://www.wikidata.org/entity/Q5516315|http://www.wikidata.org/entity/Q5269357|http://www.wikidata.org/entity/Q3765029|http://www.wikidata.org/entity/Q3629983|http://www.wikidata.org/entity/Q2573055|http://www.wikidata.org/entity/Q642827"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q496523|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "152"}, "Description": {"type": "literal", "value": "2012 Telugu film directed by Trivikram Srinivas"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q39048679"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16251100"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5431079"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5431079"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3299726"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Faisal Saif"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q37325985"}, "Title": {"type": "literal", "value": "The Royal Hibiscus Hotel"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6080052"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6080052"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18684496"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Ishaya Bako"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q49872132"}, "Title": {"type": "literal", "value": "Puoi baciare lo sposo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3610041"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019|2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2018 film directed by Alessandro Genovesi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3304113"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2799863"}, "Title": {"type": "literal", "value": "Schlussmacher"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q64645"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1246111"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23019108|http://www.wikidata.org/entity/Q21899404|http://www.wikidata.org/entity/Q21206530|http://www.wikidata.org/entity/Q4107061|http://www.wikidata.org/entity/Q2514109|http://www.wikidata.org/entity/Q1929298|http://www.wikidata.org/entity/Q1904647|http://www.wikidata.org/entity/Q1891839|http://www.wikidata.org/entity/Q1681719|http://www.wikidata.org/entity/Q1539548|http://www.wikidata.org/entity/Q1527740|http://www.wikidata.org/entity/Q1302143|http://www.wikidata.org/entity/Q1260674|http://www.wikidata.org/entity/Q825931|http://www.wikidata.org/entity/Q108346|http://www.wikidata.org/entity/Q98286|http://www.wikidata.org/entity/Q97423|http://www.wikidata.org/entity/Q91031|http://www.wikidata.org/entity/Q64645|http://www.wikidata.org/entity/Q62929|http://www.wikidata.org/entity/Q60863"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "2013 film by Matthias Schweigh\u00f6fer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3077297"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3340019"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3340019"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "9"}, "Description": {"type": "literal", "value": "2004 film by Nicolas Alberny"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1773338"}, "Title": {"type": "literal", "value": "Rosenstiehl"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1425637"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "37"}, "Description": {"type": "literal", "value": "2005 film by Stefan Wei\u00df"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q502876"}, "Title": {"type": "literal", "value": "Eddie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2632767"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2660468|http://www.wikidata.org/entity/Q1342300|http://www.wikidata.org/entity/Q1306231|http://www.wikidata.org/entity/Q1140971|http://www.wikidata.org/entity/Q982558|http://www.wikidata.org/entity/Q964468|http://www.wikidata.org/entity/Q727048|http://www.wikidata.org/entity/Q451978|http://www.wikidata.org/entity/Q434802|http://www.wikidata.org/entity/Q382295|http://www.wikidata.org/entity/Q380802|http://www.wikidata.org/entity/Q352935|http://www.wikidata.org/entity/Q313266|http://www.wikidata.org/entity/Q313043|http://www.wikidata.org/entity/Q310944|http://www.wikidata.org/entity/Q303538|http://www.wikidata.org/entity/Q278203|http://www.wikidata.org/entity/Q201608|http://www.wikidata.org/entity/Q49001|http://www.wikidata.org/entity/Q22686"}, "Published": {"type": "literal", "value": "1996"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "1996 film by Steve Rash"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q190585|http://www.wikidata.org/entity/Q1348264|http://www.wikidata.org/entity/Q1983457"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16140116"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1015952"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film directed by Poj Arnon"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4158396"}, "Title": {"type": "literal", "value": "\u0414\u0435\u043d\u044c \u0440\u0430\u0434\u0438\u043e"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4171916"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4077949|http://www.wikidata.org/entity/Q4074470|http://www.wikidata.org/entity/Q4063900|http://www.wikidata.org/entity/Q3856333|http://www.wikidata.org/entity/Q2029106|http://www.wikidata.org/entity/Q1965416|http://www.wikidata.org/entity/Q1658597|http://www.wikidata.org/entity/Q380407|http://www.wikidata.org/entity/Q4494681|http://www.wikidata.org/entity/Q4369318|http://www.wikidata.org/entity/Q4283562|http://www.wikidata.org/entity/Q4282642|http://www.wikidata.org/entity/Q4254527|http://www.wikidata.org/entity/Q4234388|http://www.wikidata.org/entity/Q4227042|http://www.wikidata.org/entity/Q4216525|http://www.wikidata.org/entity/Q4163746|http://www.wikidata.org/entity/Q4157470|http://www.wikidata.org/entity/Q4112451|http://www.wikidata.org/entity/Q4112450|http://www.wikidata.org/entity/Q4083462"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q842256"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2008 film by Dmitry Dyachenko"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4504080"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4438260"}, "Title": {"type": "literal", "value": "Going Down in LA-LA Land"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5049076"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5049076"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22350777|http://www.wikidata.org/entity/Q5049076|http://www.wikidata.org/entity/Q991864|http://www.wikidata.org/entity/Q510713|http://www.wikidata.org/entity/Q318108"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Casper Andreas"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28542233"}, "Title": {"type": "literal", "value": "Lommbock"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1082448"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1082448"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15391954|http://www.wikidata.org/entity/Q1871731|http://www.wikidata.org/entity/Q1778862|http://www.wikidata.org/entity/Q1721422|http://www.wikidata.org/entity/Q586772|http://www.wikidata.org/entity/Q77758|http://www.wikidata.org/entity/Q74258|http://www.wikidata.org/entity/Q58603"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2017 film by Christian Z\u00fcbert"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6641398"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13013699"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13020250"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q154935"}, "Title": {"type": "literal", "value": "(500) Days of Summer"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q357998"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16886480|http://www.wikidata.org/entity/Q5965293"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191719|http://www.wikidata.org/entity/Q177311"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2009 American comedy drama film directed by Marc Webb"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5171873"}, "Title": {"type": "literal", "value": "Cornman: American Vegetable Hero"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4858225"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1535153|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 film by Barak Epstein"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14835086"}, "Title": {"type": "literal", "value": "Annelie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15436637"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15436637"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1504267"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "2012 film by Antej Farac"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1018477"}, "Title": {"type": "literal", "value": "Bye Bye Berlusconi!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q108302"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3838444|http://www.wikidata.org/entity/Q108302"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3904193|http://www.wikidata.org/entity/Q3903715|http://www.wikidata.org/entity/Q3838444|http://www.wikidata.org/entity/Q108302"}, "Published": {"type": "literal", "value": "2006|2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2005 film by Jan Henrik Stahlberg"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18170108"}, "Title": {"type": "literal", "value": "Kamara's Tree"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5264710"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16733669"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Desmond Elliot"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23773162"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3763185"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2016 film by Gianluca Ansanelli"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q40187"}, "Title": {"type": "literal", "value": "Dogma"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q489831"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q489831"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5318153|http://www.wikidata.org/entity/Q4980184|http://www.wikidata.org/entity/Q1140895|http://www.wikidata.org/entity/Q723672|http://www.wikidata.org/entity/Q489831|http://www.wikidata.org/entity/Q483118|http://www.wikidata.org/entity/Q447584|http://www.wikidata.org/entity/Q354010|http://www.wikidata.org/entity/Q316627|http://www.wikidata.org/entity/Q314610|http://www.wikidata.org/entity/Q204393|http://www.wikidata.org/entity/Q175535|http://www.wikidata.org/entity/Q150651|http://www.wikidata.org/entity/Q130742|http://www.wikidata.org/entity/Q125106|http://www.wikidata.org/entity/Q106481|http://www.wikidata.org/entity/Q40143|http://www.wikidata.org/entity/Q39982|http://www.wikidata.org/entity/Q4960|http://www.wikidata.org/entity/Q4109"}, "Published": {"type": "literal", "value": "2000|1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "1999 film by Kevin Smith"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2700070"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21095949"}, "Title": {"type": "literal", "value": "Familienfest"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q103486"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q84414|http://www.wikidata.org/entity/Q77777|http://www.wikidata.org/entity/Q1161422|http://www.wikidata.org/entity/Q108956|http://www.wikidata.org/entity/Q90847|http://www.wikidata.org/entity/Q1975375|http://www.wikidata.org/entity/Q1930074|http://www.wikidata.org/entity/Q1892651|http://www.wikidata.org/entity/Q1806191"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Lars Kraume"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3814997"}, "Title": {"type": "literal", "value": "A Matter of Hair"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5155259"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Ana Torres-\u00c1lvarez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3011034"}, "Title": {"type": "literal", "value": "D.E.B.S."}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q459542"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q459542"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3481446|http://www.wikidata.org/entity/Q461712|http://www.wikidata.org/entity/Q444190|http://www.wikidata.org/entity/Q275246|http://www.wikidata.org/entity/Q260455"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Angela Robinson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56045055"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q73608"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 American comedy film directed by Michael Manasseri"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2061070"}, "Title": {"type": "literal", "value": "Wide Awake"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q51489"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q51489"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1706810|http://www.wikidata.org/entity/Q1159104|http://www.wikidata.org/entity/Q361238|http://www.wikidata.org/entity/Q310283|http://www.wikidata.org/entity/Q272929|http://www.wikidata.org/entity/Q234514|http://www.wikidata.org/entity/Q228925|http://www.wikidata.org/entity/Q210120"}, "Published": {"type": "literal", "value": "1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "1998 film by M. Night Shyamalan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3077738"}, "Title": {"type": "literal", "value": "The Bling Ring"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q193628"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6962760|http://www.wikidata.org/entity/Q193628"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16235655|http://www.wikidata.org/entity/Q14807038|http://www.wikidata.org/entity/Q14105322|http://www.wikidata.org/entity/Q13560256|http://www.wikidata.org/entity/Q6755482|http://www.wikidata.org/entity/Q513169|http://www.wikidata.org/entity/Q508960|http://www.wikidata.org/entity/Q459638|http://www.wikidata.org/entity/Q432743|http://www.wikidata.org/entity/Q389017|http://www.wikidata.org/entity/Q239595|http://www.wikidata.org/entity/Q237259|http://www.wikidata.org/entity/Q230169|http://www.wikidata.org/entity/Q229011|http://www.wikidata.org/entity/Q220949|http://www.wikidata.org/entity/Q128828|http://www.wikidata.org/entity/Q76478|http://www.wikidata.org/entity/Q44467|http://www.wikidata.org/entity/Q39476|http://www.wikidata.org/entity/Q47899|http://www.wikidata.org/entity/Q44903"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2013 film by Sofia Coppola"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q467348|http://www.wikidata.org/entity/Q1544011|http://www.wikidata.org/entity/Q2450848|http://www.wikidata.org/entity/Q3992245|http://www.wikidata.org/entity/Q5448895|http://www.wikidata.org/entity/Q6952279"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29588607"}, "Title": {"type": "literal", "value": "Spider-Man: Into the Spider-Verse"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7357051|http://www.wikidata.org/entity/Q7176523"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7182133"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018|2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q1535153|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q40831"}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "2018 American computer-animated superhero film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1416835|http://www.wikidata.org/entity/Q186941|http://www.wikidata.org/entity/Q1200552"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30131659"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3587949"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q695190"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by \u00c9lise Girard"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q629596"}, "Title": {"type": "literal", "value": "Friends with Benefits"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2576503"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2576503"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q202304|http://www.wikidata.org/entity/Q201279|http://www.wikidata.org/entity/Q147077|http://www.wikidata.org/entity/Q43432|http://www.wikidata.org/entity/Q37628|http://www.wikidata.org/entity/Q15622421|http://www.wikidata.org/entity/Q1549708|http://www.wikidata.org/entity/Q552085|http://www.wikidata.org/entity/Q540608|http://www.wikidata.org/entity/Q339864|http://www.wikidata.org/entity/Q316602|http://www.wikidata.org/entity/Q314640|http://www.wikidata.org/entity/Q313043|http://www.wikidata.org/entity/Q309503|http://www.wikidata.org/entity/Q288656|http://www.wikidata.org/entity/Q229268|http://www.wikidata.org/entity/Q229249"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "2011 film by Will Gluck"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1370297|http://www.wikidata.org/entity/Q622848"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12209107"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12178530"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12178878"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Ahmed El Guindi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q50318891"}, "Title": {"type": "literal", "value": "Les Bigorneaux"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27862255"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50318929|http://www.wikidata.org/entity/Q27862255"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "24"}, "Description": {"type": "literal", "value": "2017 short film directed by Alice Vial"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50318955"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17450876"}, "Title": {"type": "literal", "value": "Sa\u011f Salim"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q31189612"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25473584|http://www.wikidata.org/entity/Q6076632|http://www.wikidata.org/entity/Q6050795"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Ersoy G\u00fcler"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29549638"}, "Title": {"type": "literal", "value": "\u0416\u0438\u0437\u043d\u044c \u0432\u043f\u0435\u0440\u0435\u0434\u0438"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4330970"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16857528"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25384451|http://www.wikidata.org/entity/Q21183528|http://www.wikidata.org/entity/Q16271982|http://www.wikidata.org/entity/Q14491922|http://www.wikidata.org/entity/Q4521700|http://www.wikidata.org/entity/Q4378600|http://www.wikidata.org/entity/Q4287998|http://www.wikidata.org/entity/Q4112450|http://www.wikidata.org/entity/Q2865340|http://www.wikidata.org/entity/Q536524"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2017 film by Karen Oganesyan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q574625"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q45351973"}, "Title": {"type": "literal", "value": "Leg dich nicht mit Klara an"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q45352058"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12912091|http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Mia Spengler"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2093198"}, "Title": {"type": "literal", "value": "Undercover Brother"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3843845"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q362930"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2159005|http://www.wikidata.org/entity/Q1369418|http://www.wikidata.org/entity/Q741909|http://www.wikidata.org/entity/Q485310|http://www.wikidata.org/entity/Q471128|http://www.wikidata.org/entity/Q461762|http://www.wikidata.org/entity/Q441888|http://www.wikidata.org/entity/Q376031|http://www.wikidata.org/entity/Q358345|http://www.wikidata.org/entity/Q206833|http://www.wikidata.org/entity/Q93818|http://www.wikidata.org/entity/Q40321|http://www.wikidata.org/entity/Q5950"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q622548|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2002 film by Malcolm D. Lee"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q511731"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2930360"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3194132"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3194132"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3380199|http://www.wikidata.org/entity/Q3218874|http://www.wikidata.org/entity/Q182991|http://www.wikidata.org/entity/Q130092|http://www.wikidata.org/entity/Q16682289"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Katia Lewkowicz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q544992"}, "Title": {"type": "literal", "value": "\u0633\u0643\u0631 \u0628\u0646\u0627\u062a|Sekkar banat\u200e"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q266539"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q266539"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q266539|http://www.wikidata.org/entity/Q12222229|http://www.wikidata.org/entity/Q8049841"}, "Published": {"type": "literal", "value": "2008|2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q5442753"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2007 film by Nadine Labaki"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15074451"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7146964"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Patrick Kong"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15055043"}, "Title": {"type": "literal", "value": "Kung Fu Panda 3"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q705711|http://www.wikidata.org/entity/Q18811838"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16643813|http://www.wikidata.org/entity/Q22976557"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q308840|http://www.wikidata.org/entity/Q220308|http://www.wikidata.org/entity/Q188375|http://www.wikidata.org/entity/Q169946|http://www.wikidata.org/entity/Q150482|http://www.wikidata.org/entity/Q42930|http://www.wikidata.org/entity/Q36970|http://www.wikidata.org/entity/Q23547|http://www.wikidata.org/entity/Q13909|http://www.wikidata.org/entity/Q483907|http://www.wikidata.org/entity/Q362332|http://www.wikidata.org/entity/Q358990|http://www.wikidata.org/entity/Q318110"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q1033891|http://www.wikidata.org/entity/Q319221"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2016 film by Jennifer Yuh Nelson, Alessandro Carloni"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q500088"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20744358"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27528493"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27528493"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18035575"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "22"}, "Description": {"type": "literal", "value": "2014 short film directed by Asaf Epstein"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18736633"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3149763"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3149763"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3149763"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Ina Mihalache"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23767825"}, "Title": {"type": "literal", "value": "No Vacancy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4102539"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q973456|http://www.wikidata.org/entity/Q509026|http://www.wikidata.org/entity/Q310493|http://www.wikidata.org/entity/Q309835|http://www.wikidata.org/entity/Q242472|http://www.wikidata.org/entity/Q240901|http://www.wikidata.org/entity/Q188432|http://www.wikidata.org/entity/Q184103|http://www.wikidata.org/entity/Q125354"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q40831"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1999 film by Maryus Vaysberg"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60853514"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q511485"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Jos\u00e9phine de Meaux"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11187871"}, "Title": {"type": "literal", "value": "The Four-Faced Liar"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3157528"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q43559317"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q43559317|http://www.wikidata.org/entity/Q21511977|http://www.wikidata.org/entity/Q5216755"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Jacob Chase"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q50819320"}, "Title": {"type": "literal", "value": "\u0a17\u0a4b\u0a32\u0a15 \u0a2c\u0a41\u0a17\u0a28\u0a40 \u0a2c\u0a48\u0a02\u0a15 \u0a24\u0a47 \u0a2c\u0a1f\u0a42\u0a06"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23418649"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20195451"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30641582|http://www.wikidata.org/entity/Q29440063|http://www.wikidata.org/entity/Q16222116|http://www.wikidata.org/entity/Q6164373|http://www.wikidata.org/entity/Q4748646|http://www.wikidata.org/entity/Q4683044"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 Indian Punjabi film directed by Ksshitij Chaudhary"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3180198"}, "Title": {"type": "literal", "value": "Eat Me!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22137027"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2000 film by Joe Talbott"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1988727"}, "Title": {"type": "literal", "value": "Air Bud: World Pup"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2903106"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1157858|http://www.wikidata.org/entity/Q976754|http://www.wikidata.org/entity/Q935122|http://www.wikidata.org/entity/Q718338|http://www.wikidata.org/entity/Q444820|http://www.wikidata.org/entity/Q311517|http://www.wikidata.org/entity/Q42608106|http://www.wikidata.org/entity/Q5228469|http://www.wikidata.org/entity/Q5072624|http://www.wikidata.org/entity/Q4971615|http://www.wikidata.org/entity/Q3959254|http://www.wikidata.org/entity/Q2275851"}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2000 film by Bill Bannerman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q908662"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12199836"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12213023"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4120152"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Rami Imam"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12228489"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20422996"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1391164"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12249036|http://www.wikidata.org/entity/Q12246410|http://www.wikidata.org/entity/Q12244972|http://www.wikidata.org/entity/Q12237872|http://www.wikidata.org/entity/Q12223700|http://www.wikidata.org/entity/Q6482021|http://www.wikidata.org/entity/Q1391164|http://www.wikidata.org/entity/Q1386100"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Mohamed Samy"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27590564"}, "Title": {"type": "literal", "value": "Welcome to Happiness"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7087871"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 American comedy film written and directed by Oliver Thompson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6345269"}, "Title": {"type": "literal", "value": "Cinema Parabicho"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3802240"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Isabel S\u00e1nchez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43383203"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4236310"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4254086|http://www.wikidata.org/entity/Q129190"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1393540|http://www.wikidata.org/entity/Q521665|http://www.wikidata.org/entity/Q271630"}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192881"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2017 film by Vladimir Kott"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29832059"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28022334"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Vignesh Karthick"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15852475"}, "Title": {"type": "literal", "value": "Vaterfreuden"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q64645"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18596028|http://www.wikidata.org/entity/Q1953755"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20683338|http://www.wikidata.org/entity/Q15623309|http://www.wikidata.org/entity/Q2642431|http://www.wikidata.org/entity/Q1963332|http://www.wikidata.org/entity/Q1684854|http://www.wikidata.org/entity/Q1673573|http://www.wikidata.org/entity/Q1527740|http://www.wikidata.org/entity/Q1342322|http://www.wikidata.org/entity/Q1331348|http://www.wikidata.org/entity/Q1292000|http://www.wikidata.org/entity/Q1260674|http://www.wikidata.org/entity/Q691917|http://www.wikidata.org/entity/Q103544|http://www.wikidata.org/entity/Q97394|http://www.wikidata.org/entity/Q91031|http://www.wikidata.org/entity/Q87594|http://www.wikidata.org/entity/Q70727|http://www.wikidata.org/entity/Q69092|http://www.wikidata.org/entity/Q64645|http://www.wikidata.org/entity/Q62929"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2014 film by Matthias Schweigh\u00f6fer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3631674"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q676233"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q676233"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3846163|http://www.wikidata.org/entity/Q3660558|http://www.wikidata.org/entity/Q2708170|http://www.wikidata.org/entity/Q676233"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2003 film by Edoardo Gabbriellini"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20032098"}, "Title": {"type": "literal", "value": "Papeles En eL Biento"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2885371"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2885371"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8353654|http://www.wikidata.org/entity/Q7132075|http://www.wikidata.org/entity/Q5759788|http://www.wikidata.org/entity/Q5667597|http://www.wikidata.org/entity/Q5274770|http://www.wikidata.org/entity/Q3290318|http://www.wikidata.org/entity/Q2422720|http://www.wikidata.org/entity/Q704160"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "99|98"}, "Description": {"type": "literal", "value": "2010 film by Juan Taratuto"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q784514"}, "Title": {"type": "literal", "value": "Clerks II"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q489831"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q489831"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19300018|http://www.wikidata.org/entity/Q5327254|http://www.wikidata.org/entity/Q1140895|http://www.wikidata.org/entity/Q917638|http://www.wikidata.org/entity/Q723672|http://www.wikidata.org/entity/Q708320|http://www.wikidata.org/entity/Q598158|http://www.wikidata.org/entity/Q489831|http://www.wikidata.org/entity/Q488335|http://www.wikidata.org/entity/Q483118|http://www.wikidata.org/entity/Q463692|http://www.wikidata.org/entity/Q412822|http://www.wikidata.org/entity/Q354010|http://www.wikidata.org/entity/Q332937|http://www.wikidata.org/entity/Q316627|http://www.wikidata.org/entity/Q314610|http://www.wikidata.org/entity/Q237194|http://www.wikidata.org/entity/Q228692|http://www.wikidata.org/entity/Q4960"}, "Published": {"type": "literal", "value": "2007|2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2006 American comedy film directed by Kevin Smith"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2700070"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55246967"}, "Title": {"type": "literal", "value": "Lovely Louise"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q850030"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29368920|http://www.wikidata.org/entity/Q2597852|http://www.wikidata.org/entity/Q850030"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52834817|http://www.wikidata.org/entity/Q14906908|http://www.wikidata.org/entity/Q7599998|http://www.wikidata.org/entity/Q1319602|http://www.wikidata.org/entity/Q546822|http://www.wikidata.org/entity/Q120509|http://www.wikidata.org/entity/Q117375"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Bettina Oberli"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1235358|http://www.wikidata.org/entity/Q57594934"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13024413"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1015952"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film directed by Poj Arnon"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48734430"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4746882"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4831843|http://www.wikidata.org/entity/Q1290010|http://www.wikidata.org/entity/Q56731876|http://www.wikidata.org/entity/Q28316728|http://www.wikidata.org/entity/Q6986875"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Amit Sharma"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q893815"}, "Title": {"type": "literal", "value": "Boris - Il film"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1522089|http://www.wikidata.org/entity/Q18540296|http://www.wikidata.org/entity/Q3838311"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1042185|http://www.wikidata.org/entity/Q808664|http://www.wikidata.org/entity/Q795628|http://www.wikidata.org/entity/Q202281|http://www.wikidata.org/entity/Q3904256|http://www.wikidata.org/entity/Q3893835|http://www.wikidata.org/entity/Q3851223|http://www.wikidata.org/entity/Q3838008|http://www.wikidata.org/entity/Q3659538|http://www.wikidata.org/entity/Q3616028|http://www.wikidata.org/entity/Q3610339|http://www.wikidata.org/entity/Q2639369|http://www.wikidata.org/entity/Q1993073|http://www.wikidata.org/entity/Q1050695"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2011 film by Giacomo Ciarrapico, Luca Vendruscolo"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3929491"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23564963"}, "Title": {"type": "literal", "value": "Nur ein kleines bisschen schwanger"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1806295"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1238933"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24574356|http://www.wikidata.org/entity/Q23639523|http://www.wikidata.org/entity/Q23561346|http://www.wikidata.org/entity/Q1736707|http://www.wikidata.org/entity/Q1668420|http://www.wikidata.org/entity/Q374812|http://www.wikidata.org/entity/Q122997|http://www.wikidata.org/entity/Q100545|http://www.wikidata.org/entity/Q100417|http://www.wikidata.org/entity/Q96086"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2007 film directed by Lars Montag"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3635302"}, "Title": {"type": "literal", "value": "Bartleby"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6274096"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4985"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2474995|http://www.wikidata.org/entity/Q951634|http://www.wikidata.org/entity/Q708153|http://www.wikidata.org/entity/Q449602|http://www.wikidata.org/entity/Q373989|http://www.wikidata.org/entity/Q310060|http://www.wikidata.org/entity/Q266425"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2001 film by Jonathan Parker"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1415029"}, "Title": {"type": "literal", "value": "Your Highness"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2296698"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q816440|http://www.wikidata.org/entity/Q336400"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7295103|http://www.wikidata.org/entity/Q3644509|http://www.wikidata.org/entity/Q2686633|http://www.wikidata.org/entity/Q2504253|http://www.wikidata.org/entity/Q920094|http://www.wikidata.org/entity/Q342533|http://www.wikidata.org/entity/Q342419|http://www.wikidata.org/entity/Q336400|http://www.wikidata.org/entity/Q316596|http://www.wikidata.org/entity/Q222390|http://www.wikidata.org/entity/Q191719|http://www.wikidata.org/entity/Q122473|http://www.wikidata.org/entity/Q37876|http://www.wikidata.org/entity/Q309690|http://www.wikidata.org/entity/Q306403|http://www.wikidata.org/entity/Q281544"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2011 film by David Gordon Green"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383|http://www.wikidata.org/entity/Q7437329"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2891067"}, "Title": {"type": "literal", "value": "La suerte en tus manos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1160223"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1160223"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28746686|http://www.wikidata.org/entity/Q6700387|http://www.wikidata.org/entity/Q6128626|http://www.wikidata.org/entity/Q6117401|http://www.wikidata.org/entity/Q5873561|http://www.wikidata.org/entity/Q5850378|http://www.wikidata.org/entity/Q5680400|http://www.wikidata.org/entity/Q3325953|http://www.wikidata.org/entity/Q543506|http://www.wikidata.org/entity/Q240136"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Daniel Burman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1551169"}, "Title": {"type": "literal", "value": "Temporada de patos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q710314"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q710314"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3027370"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2004 comedy film by Fernando Eimbcke"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19961281"}, "Title": {"type": "literal", "value": "Expelled"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16232128"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16232128"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q706142|http://www.wikidata.org/entity/Q20031673|http://www.wikidata.org/entity/Q3018069"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2015 film by Alex Goyette"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18636485"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2213842"}, "Title": {"type": "literal", "value": "\u0938\u0932\u093e\u092e-\u090f-\u0907\u0936\u094d\u0915\u093c"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2332619"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16201528|http://www.wikidata.org/entity/Q7935930|http://www.wikidata.org/entity/Q7488862|http://www.wikidata.org/entity/Q6447875|http://www.wikidata.org/entity/Q6323460|http://www.wikidata.org/entity/Q4879891|http://www.wikidata.org/entity/Q4765768|http://www.wikidata.org/entity/Q1992008|http://www.wikidata.org/entity/Q983053|http://www.wikidata.org/entity/Q466974|http://www.wikidata.org/entity/Q427623|http://www.wikidata.org/entity/Q421581|http://www.wikidata.org/entity/Q313956|http://www.wikidata.org/entity/Q313025|http://www.wikidata.org/entity/Q159166|http://www.wikidata.org/entity/Q158957|http://www.wikidata.org/entity/Q158745|http://www.wikidata.org/entity/Q158450|http://www.wikidata.org/entity/Q9543"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "201"}, "Description": {"type": "literal", "value": "2007 film by Nikhil Advani"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5390894"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2573669"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192881"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Marc van Uchelen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q9321426"}, "Title": {"type": "literal", "value": "Finding Dory"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q328723|http://www.wikidata.org/entity/Q17386294"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q740682|http://www.wikidata.org/entity/Q328723|http://www.wikidata.org/entity/Q24290079|http://www.wikidata.org/entity/Q17386294"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q319221"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2016 animated film produced by Pixar Animation Studios"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q127552|http://www.wikidata.org/entity/Q191224"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q62788429"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q62655108"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q62655108"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Paolo Zucca"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12192077"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12250381"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4120152"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Wael Ehsan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18020115"}, "Title": {"type": "literal", "value": "Familienfieber"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18026371"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21032030|http://www.wikidata.org/entity/Q17353072|http://www.wikidata.org/entity/Q1736532|http://www.wikidata.org/entity/Q121322"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "78"}, "Description": {"type": "literal", "value": "2014 film by Nico Sommer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16828640"}, "Title": {"type": "literal", "value": "Anina"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q42394286"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2013 animated film by Alfredo Soderguit"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16641860"}, "Title": {"type": "literal", "value": "Hippocrate"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2364139"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2364139"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3559693|http://www.wikidata.org/entity/Q3422822|http://www.wikidata.org/entity/Q3380605|http://www.wikidata.org/entity/Q3092547|http://www.wikidata.org/entity/Q2966416|http://www.wikidata.org/entity/Q1352534|http://www.wikidata.org/entity/Q1044296|http://www.wikidata.org/entity/Q273342"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Thomas Lilti"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2344361"}, "Title": {"type": "literal", "value": "Derecho de familia"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1160223"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1160223"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28466456|http://www.wikidata.org/entity/Q28074323|http://www.wikidata.org/entity/Q17566611|http://www.wikidata.org/entity/Q6171365|http://www.wikidata.org/entity/Q5996654|http://www.wikidata.org/entity/Q5984311|http://www.wikidata.org/entity/Q4801746|http://www.wikidata.org/entity/Q2887161|http://www.wikidata.org/entity/Q2272014|http://www.wikidata.org/entity/Q586715"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2006 film by Daniel Burman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1729298"}, "Title": {"type": "literal", "value": "Sommer der Gaukler"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q96164"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1745883|http://www.wikidata.org/entity/Q106886"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17325805|http://www.wikidata.org/entity/Q1984941|http://www.wikidata.org/entity/Q1928284|http://www.wikidata.org/entity/Q1608370|http://www.wikidata.org/entity/Q1429928|http://www.wikidata.org/entity/Q1080816|http://www.wikidata.org/entity/Q1018220|http://www.wikidata.org/entity/Q562212|http://www.wikidata.org/entity/Q115010|http://www.wikidata.org/entity/Q97153|http://www.wikidata.org/entity/Q96937|http://www.wikidata.org/entity/Q88900|http://www.wikidata.org/entity/Q88861|http://www.wikidata.org/entity/Q42335"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17013749|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "2011 feature film directed by Marcus H. Rosenm\u00fcller"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21498249"}, "Title": {"type": "literal", "value": "Sarnie \u017cniwo, czyli pokusa statuetkowego szlaku"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9166187"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Bartosz Walaszek"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9390232"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16249045"}, "Title": {"type": "literal", "value": "Unfinished Business"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1410263"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7614580"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q383930|http://www.wikidata.org/entity/Q363400|http://www.wikidata.org/entity/Q211322|http://www.wikidata.org/entity/Q193458|http://www.wikidata.org/entity/Q186692|http://www.wikidata.org/entity/Q118393|http://www.wikidata.org/entity/Q107730|http://www.wikidata.org/entity/Q105153|http://www.wikidata.org/entity/Q86280|http://www.wikidata.org/entity/Q34586426|http://www.wikidata.org/entity/Q20871771|http://www.wikidata.org/entity/Q18921335|http://www.wikidata.org/entity/Q3381855|http://www.wikidata.org/entity/Q2965628|http://www.wikidata.org/entity/Q1892860|http://www.wikidata.org/entity/Q1713263|http://www.wikidata.org/entity/Q1536641|http://www.wikidata.org/entity/Q1410263|http://www.wikidata.org/entity/Q1173856|http://www.wikidata.org/entity/Q546106|http://www.wikidata.org/entity/Q485901|http://www.wikidata.org/entity/Q451394"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2015 film by Ken Scott"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20677453"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3210335"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3210335"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3919521"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192881|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "61"}, "Description": {"type": "literal", "value": "2015 film by Andrei Kureichik"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q48954781"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q8073851"}, "Title": {"type": "literal", "value": "Zonad"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3181205"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by John Carney"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60854384"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4016123"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Volfango De Biasi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3304113"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22000365"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17466090"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17466090"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17466090"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Lisa Gornick"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7602355"}, "Title": {"type": "literal", "value": "Stars in Shorts"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3157528|http://www.wikidata.org/entity/Q965498|http://www.wikidata.org/entity/Q314659"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5106314"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q229271|http://www.wikidata.org/entity/Q210120|http://www.wikidata.org/entity/Q199929|http://www.wikidata.org/entity/Q162492|http://www.wikidata.org/entity/Q72749|http://www.wikidata.org/entity/Q55294|http://www.wikidata.org/entity/Q42581|http://www.wikidata.org/entity/Q28054|http://www.wikidata.org/entity/Q3806787|http://www.wikidata.org/entity/Q3569399|http://www.wikidata.org/entity/Q2589077|http://www.wikidata.org/entity/Q554315|http://www.wikidata.org/entity/Q455781|http://www.wikidata.org/entity/Q368037|http://www.wikidata.org/entity/Q311754|http://www.wikidata.org/entity/Q295803|http://www.wikidata.org/entity/Q261579|http://www.wikidata.org/entity/Q257442|http://www.wikidata.org/entity/Q235460"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Neil LaBute"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10298666"}, "Title": {"type": "literal", "value": "How to Train Your Dragon 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1181049"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8007645|http://www.wikidata.org/entity/Q1181049|http://www.wikidata.org/entity/Q201641"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q188473"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2014 animated film directed by Dean DeBlois"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q500088"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19007208"}, "Title": {"type": "literal", "value": "Don Verdean"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2480656"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1319744|http://www.wikidata.org/entity/Q439315|http://www.wikidata.org/entity/Q336400|http://www.wikidata.org/entity/Q316446|http://www.wikidata.org/entity/Q239453|http://www.wikidata.org/entity/Q231203|http://www.wikidata.org/entity/Q19629675"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Jared Hess"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2996718"}, "Title": {"type": "literal", "value": "Copacabana"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3246668"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3246668"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18067290|http://www.wikidata.org/entity/Q3591351|http://www.wikidata.org/entity/Q3276523|http://www.wikidata.org/entity/Q3271925|http://www.wikidata.org/entity/Q3271707|http://www.wikidata.org/entity/Q3242498|http://www.wikidata.org/entity/Q3008989|http://www.wikidata.org/entity/Q2956253|http://www.wikidata.org/entity/Q2941870|http://www.wikidata.org/entity/Q2494759|http://www.wikidata.org/entity/Q2130507|http://www.wikidata.org/entity/Q1661394|http://www.wikidata.org/entity/Q1345210|http://www.wikidata.org/entity/Q553904|http://www.wikidata.org/entity/Q440609|http://www.wikidata.org/entity/Q291521|http://www.wikidata.org/entity/Q106365"}, "Published": {"type": "literal", "value": "2012|2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "2010 film by Marc Fitoussi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3400588"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3539613|http://www.wikidata.org/entity/Q552639"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3130760|http://www.wikidata.org/entity/Q552639|http://www.wikidata.org/entity/Q441676"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Gilles Lellouche, Tristan Aurouet"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6029587"}, "Title": {"type": "literal", "value": "Infestation"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6451383"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6451383"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q241873|http://www.wikidata.org/entity/Q5248247|http://www.wikidata.org/entity/Q530646|http://www.wikidata.org/entity/Q422310|http://www.wikidata.org/entity/Q254775"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2009 film by Kyle Rankin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16077874"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5094228"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5094228"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2568122|http://www.wikidata.org/entity/Q704027|http://www.wikidata.org/entity/Q701930|http://www.wikidata.org/entity/Q701039|http://www.wikidata.org/entity/Q590914|http://www.wikidata.org/entity/Q16781"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Cheuk Wan Chi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56266782"}, "Title": {"type": "literal", "value": "Nadie sabe para qui\u00e9n trabaja"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16302557"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Harold Trompetero"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20965644"}, "Title": {"type": "literal", "value": "Reuber"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15784859"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1189418"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21032030|http://www.wikidata.org/entity/Q1594698"}, "Published": {"type": "literal", "value": "2015|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 German film by Axel Ranisch"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20972616"}, "Title": {"type": "literal", "value": "Dessau Dancers"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22928204"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1520844"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q203806|http://www.wikidata.org/entity/Q97010|http://www.wikidata.org/entity/Q92078|http://www.wikidata.org/entity/Q88891|http://www.wikidata.org/entity/Q17480788|http://www.wikidata.org/entity/Q2590455|http://www.wikidata.org/entity/Q1618848|http://www.wikidata.org/entity/Q1533711|http://www.wikidata.org/entity/Q824272|http://www.wikidata.org/entity/Q717013"}, "Published": {"type": "literal", "value": "2014|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2014 film by Jan Martin Scharf"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3897240"}, "Title": {"type": "literal", "value": "Passato prossimo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3847526"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3847526"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3765371|http://www.wikidata.org/entity/Q3763355|http://www.wikidata.org/entity/Q3680061|http://www.wikidata.org/entity/Q3610432|http://www.wikidata.org/entity/Q3148244|http://www.wikidata.org/entity/Q1042721|http://www.wikidata.org/entity/Q959138|http://www.wikidata.org/entity/Q555241|http://www.wikidata.org/entity/Q117899"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2003 film by Maria Sole Tognazzi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17264034"}, "Title": {"type": "literal", "value": "Knerten gifter seg"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11988524"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11961117"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11956951"}, "Published": {"type": "literal", "value": "2012|2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 Norwegian film directed by Martin Lund"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q63247471"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q551772"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Christophe Honor\u00e9"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28496667"}, "Title": {"type": "literal", "value": "Rock'n Roll"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q314403"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q314403"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16666759|http://www.wikidata.org/entity/Q3591418|http://www.wikidata.org/entity/Q3571886|http://www.wikidata.org/entity/Q3380199|http://www.wikidata.org/entity/Q2829519|http://www.wikidata.org/entity/Q2202755|http://www.wikidata.org/entity/Q724208|http://www.wikidata.org/entity/Q552639|http://www.wikidata.org/entity/Q314403|http://www.wikidata.org/entity/Q311804|http://www.wikidata.org/entity/Q212015|http://www.wikidata.org/entity/Q106349|http://www.wikidata.org/entity/Q8927"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "123"}, "Description": {"type": "literal", "value": "2017 film by Guillaume Canet"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3224718"}, "Title": {"type": "literal", "value": "Urmel voll in Fahrt"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13704719|http://www.wikidata.org/entity/Q8670824"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2008 film by Reinhard Klooss, Holger Tappe"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q741257"}, "Title": {"type": "literal", "value": "Meet the Spartans"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q302690|http://www.wikidata.org/entity/Q936338"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q302690|http://www.wikidata.org/entity/Q936338"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q739062|http://www.wikidata.org/entity/Q622864|http://www.wikidata.org/entity/Q562827|http://www.wikidata.org/entity/Q449947|http://www.wikidata.org/entity/Q433692|http://www.wikidata.org/entity/Q428796|http://www.wikidata.org/entity/Q313655|http://www.wikidata.org/entity/Q298995|http://www.wikidata.org/entity/Q298694|http://www.wikidata.org/entity/Q259798|http://www.wikidata.org/entity/Q185122|http://www.wikidata.org/entity/Q4346488|http://www.wikidata.org/entity/Q2094185|http://www.wikidata.org/entity/Q1371134|http://www.wikidata.org/entity/Q10306924"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q622548|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2008 film by Jason Friedberg, Aaron Seltzer"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q466459"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7751215"}, "Title": {"type": "literal", "value": "The Mexican Dream"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q972856"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Gustavo Hern\u00e1ndez P\u00e9rez"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q207460"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25350235"}, "Title": {"type": "literal", "value": "Status Update"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2424025"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q259047"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Scott Speer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16261153"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q486039"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1998 film directed by Jang Jin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4506847"}, "Title": {"type": "literal", "value": "\u0427\u0430\u0439\u043d\u044b\u0439 \u043f\u044c\u044f\u043d\u0438\u0446\u0430"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3986754"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3986754"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3986754"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2973181|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film directed by Basta"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22000649"}, "Title": {"type": "literal", "value": "Tick Tock Lullaby"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17466090"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17466090"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7294433"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Lisa Gornick"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17112726"}, "Title": {"type": "literal", "value": "The One I Love"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21872603"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3273787|http://www.wikidata.org/entity/Q381203|http://www.wikidata.org/entity/Q233466"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2014 film directed by Charlie McDowell"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19622410"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3181205"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3181205"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1996"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "1996 film by John Carney"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3795960"}, "Title": {"type": "literal", "value": "Il supplente"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3615794"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3615794"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4007739|http://www.wikidata.org/entity/Q3876185|http://www.wikidata.org/entity/Q3833350|http://www.wikidata.org/entity/Q3615794"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "16"}, "Description": {"type": "literal", "value": "2006 film by Andrea Jublin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61002330"}, "Title": {"type": "literal", "value": "B\u00da\u00c9K"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1011297"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23821621|http://www.wikidata.org/entity/Q1011297"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "2018 film directed by Krisztina Goda"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3695143"}, "Title": {"type": "literal", "value": "Cosimo e Nicole"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3749525"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3749525"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3616747|http://www.wikidata.org/entity/Q3615555|http://www.wikidata.org/entity/Q3362666|http://www.wikidata.org/entity/Q2975505|http://www.wikidata.org/entity/Q133787"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2012 film by Francesco Amato"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2032325"}, "Title": {"type": "literal", "value": "Year of the Dog"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1378351"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1378351"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3012305|http://www.wikidata.org/entity/Q2050378|http://www.wikidata.org/entity/Q514527|http://www.wikidata.org/entity/Q315099|http://www.wikidata.org/entity/Q241335|http://www.wikidata.org/entity/Q239145|http://www.wikidata.org/entity/Q234544|http://www.wikidata.org/entity/Q223110|http://www.wikidata.org/entity/Q220901"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2007 film by Mike White"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28252"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q46918"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2347167"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2347167"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q330315|http://www.wikidata.org/entity/Q252290|http://www.wikidata.org/entity/Q184885"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2008 computer animated film by Jugal Hansraj"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1696916"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q886187"}, "Title": {"type": "literal", "value": "Fun Size"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q728217"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q58816195"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3990695|http://www.wikidata.org/entity/Q2885767|http://www.wikidata.org/entity/Q2844979|http://www.wikidata.org/entity/Q2708237|http://www.wikidata.org/entity/Q967833|http://www.wikidata.org/entity/Q728217|http://www.wikidata.org/entity/Q535451|http://www.wikidata.org/entity/Q452618|http://www.wikidata.org/entity/Q327217|http://www.wikidata.org/entity/Q295034|http://www.wikidata.org/entity/Q262502|http://www.wikidata.org/entity/Q200194|http://www.wikidata.org/entity/Q171687|http://www.wikidata.org/entity/Q120406|http://www.wikidata.org/entity/Q117619|http://www.wikidata.org/entity/Q16239393"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2012 film by Josh Schwartz"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1785329|http://www.wikidata.org/entity/Q5431462"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29344739"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7376583"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7376583"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9543"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Ruchi Narain"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q730639"}, "Title": {"type": "literal", "value": "Sex and Breakfast"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6851327"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6851327"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6759968|http://www.wikidata.org/entity/Q712936|http://www.wikidata.org/entity/Q463734|http://www.wikidata.org/entity/Q387830|http://www.wikidata.org/entity/Q374038|http://www.wikidata.org/entity/Q290091|http://www.wikidata.org/entity/Q241867|http://www.wikidata.org/entity/Q241160|http://www.wikidata.org/entity/Q210200|http://www.wikidata.org/entity/Q103578"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "81"}, "Description": {"type": "literal", "value": "2007 film by Miles Brandman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12054232"}, "Title": {"type": "literal", "value": "Sign\u00e1l"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12059363"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12035281"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15870612|http://www.wikidata.org/entity/Q12041042|http://www.wikidata.org/entity/Q12025905|http://www.wikidata.org/entity/Q12021140|http://www.wikidata.org/entity/Q11985153|http://www.wikidata.org/entity/Q11925857|http://www.wikidata.org/entity/Q676173|http://www.wikidata.org/entity/Q530954|http://www.wikidata.org/entity/Q463683|http://www.wikidata.org/entity/Q352030"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Tom\u00e1\u0161 \u0158eho\u0159ek"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30964191"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30959974"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30959974"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30961843|http://www.wikidata.org/entity/Q30959278|http://www.wikidata.org/entity/Q4222310|http://www.wikidata.org/entity/Q4089456|http://www.wikidata.org/entity/Q540915"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "2018 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28495133"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3120713"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Guizmo"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3566715"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16185798"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q46010092"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by M\u00e1rk Bodzs\u00e1r"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3500469"}, "Title": {"type": "literal", "value": "Bachelor Party 2: The Last Temptation"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3161385"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3337574|http://www.wikidata.org/entity/Q263607"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5606142|http://www.wikidata.org/entity/Q3237664|http://www.wikidata.org/entity/Q1275214|http://www.wikidata.org/entity/Q901137|http://www.wikidata.org/entity/Q373594|http://www.wikidata.org/entity/Q267914|http://www.wikidata.org/entity/Q237897|http://www.wikidata.org/entity/Q231739"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by James Ryan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434841"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26054120"}, "Title": {"type": "literal", "value": "Hotel Rock'n'Roll"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1603845|http://www.wikidata.org/entity/Q1145137"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1145137|http://www.wikidata.org/entity/Q90300"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2091760|http://www.wikidata.org/entity/Q1698671|http://www.wikidata.org/entity/Q1618198|http://www.wikidata.org/entity/Q1603845|http://www.wikidata.org/entity/Q1504267|http://www.wikidata.org/entity/Q1496622|http://www.wikidata.org/entity/Q1145137|http://www.wikidata.org/entity/Q544690|http://www.wikidata.org/entity/Q69092"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2016 film directed by Michael Ostrowski and Helmut K\u00f6pping"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1243548"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4997882"}, "Title": {"type": "literal", "value": "Bunny and the Bull"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7151786"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7518724|http://www.wikidata.org/entity/Q3048553|http://www.wikidata.org/entity/Q1388430|http://www.wikidata.org/entity/Q1333118|http://www.wikidata.org/entity/Q936756|http://www.wikidata.org/entity/Q456850|http://www.wikidata.org/entity/Q310012|http://www.wikidata.org/entity/Q291443"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2009 film by Paul King"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q922857|http://www.wikidata.org/entity/Q3568109|http://www.wikidata.org/entity/Q5448886|http://www.wikidata.org/entity/Q7309238|http://www.wikidata.org/entity/Q7969872"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21843265"}, "Title": {"type": "literal", "value": "\u0414\u0435\u043d\u044c \u0432\u044b\u0431\u043e\u0440\u043e\u0432 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4078806"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4077949|http://www.wikidata.org/entity/Q4494681"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4478881|http://www.wikidata.org/entity/Q4254527|http://www.wikidata.org/entity/Q4157473|http://www.wikidata.org/entity/Q4494681|http://www.wikidata.org/entity/Q4112450|http://www.wikidata.org/entity/Q4077949|http://www.wikidata.org/entity/Q2665274|http://www.wikidata.org/entity/Q2373179|http://www.wikidata.org/entity/Q2029106"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2016 film by Aleksandr Barshak"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17479288"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16832192"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2012 film by Laura Chiossone"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13512523"}, "Title": {"type": "literal", "value": "Computer Chess"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q503951"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q503951"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5549473|http://www.wikidata.org/entity/Q251809"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Andrew Bujalski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2073855"}, "Title": {"type": "literal", "value": "Another Happy Day"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7407789"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7407789"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17612516|http://www.wikidata.org/entity/Q508049|http://www.wikidata.org/entity/Q457991|http://www.wikidata.org/entity/Q443343|http://www.wikidata.org/entity/Q311615|http://www.wikidata.org/entity/Q298818|http://www.wikidata.org/entity/Q242805|http://www.wikidata.org/entity/Q236822|http://www.wikidata.org/entity/Q229234|http://www.wikidata.org/entity/Q211144|http://www.wikidata.org/entity/Q43044"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "119"}, "Description": {"type": "literal", "value": "2011 film by Sam Levinson"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16252933"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1968484"}, "Title": {"type": "literal", "value": "\u0425\u043e\u0442\u0442\u0430\u0431\u044b\u0447"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4461540"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4461540"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4537735|http://www.wikidata.org/entity/Q4459812|http://www.wikidata.org/entity/Q4134891"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2973181|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2006 film by Pyotr Tochilin"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4403233|http://www.wikidata.org/entity/Q6813261"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26802446"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16916439|http://www.wikidata.org/entity/Q2460716"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16916439|http://www.wikidata.org/entity/Q2460716"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19677216"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Jessica Woodworth, Peter Brosens"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1197869"}, "Title": {"type": "literal", "value": "Footloose"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q723252"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5246414|http://www.wikidata.org/entity/Q723252"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q269894|http://www.wikidata.org/entity/Q267330|http://www.wikidata.org/entity/Q232646|http://www.wikidata.org/entity/Q208558|http://www.wikidata.org/entity/Q200768|http://www.wikidata.org/entity/Q17518837|http://www.wikidata.org/entity/Q6730221|http://www.wikidata.org/entity/Q3292628|http://www.wikidata.org/entity/Q3082658|http://www.wikidata.org/entity/Q2073496|http://www.wikidata.org/entity/Q917638|http://www.wikidata.org/entity/Q471081"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q842256"}, "Duration": {"type": "literal", "value": "113"}, "Description": {"type": "literal", "value": "2011 film by Craig Brewer"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1111024|http://www.wikidata.org/entity/Q512858"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11262985"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11380486"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Takayuki It\u014d"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48757706"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2857539"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3092547"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Antony Cordier"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2963165"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q970408"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3093531"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3479397|http://www.wikidata.org/entity/Q3295476|http://www.wikidata.org/entity/Q3063805|http://www.wikidata.org/entity/Q2825427|http://www.wikidata.org/entity/Q970408|http://www.wikidata.org/entity/Q778451|http://www.wikidata.org/entity/Q556578|http://www.wikidata.org/entity/Q543814|http://www.wikidata.org/entity/Q296287|http://www.wikidata.org/entity/Q270146"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Samuel Benchetrit"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30014813"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16223555"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6750439"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 Malayalam film directed by Sajid Yahya"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5991798"}, "Title": {"type": "literal", "value": "Mansacue"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q966522"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Marco Enr\u00edquez-Ominami"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3223319"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3499131"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3013871"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3554229|http://www.wikidata.org/entity/Q3501524|http://www.wikidata.org/entity/Q3499131|http://www.wikidata.org/entity/Q3219022|http://www.wikidata.org/entity/Q3123803|http://www.wikidata.org/entity/Q2980691|http://www.wikidata.org/entity/Q2410284|http://www.wikidata.org/entity/Q1836495|http://www.wikidata.org/entity/Q1799529|http://www.wikidata.org/entity/Q1341507|http://www.wikidata.org/entity/Q951825|http://www.wikidata.org/entity/Q715111|http://www.wikidata.org/entity/Q576085|http://www.wikidata.org/entity/Q354873|http://www.wikidata.org/entity/Q28487"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Steve Suissa"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17089799"}, "Title": {"type": "literal", "value": "White Reindeer"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13305138"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13305138"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Zach Clark"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q39739419"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q546714"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q62868209|http://www.wikidata.org/entity/Q50384541|http://www.wikidata.org/entity/Q21880688|http://www.wikidata.org/entity/Q20748299|http://www.wikidata.org/entity/Q17521534|http://www.wikidata.org/entity/Q1682918|http://www.wikidata.org/entity/Q89703|http://www.wikidata.org/entity/Q87594|http://www.wikidata.org/entity/Q71662|http://www.wikidata.org/entity/Q62346"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Anika Decker"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24937068"}, "Title": {"type": "literal", "value": "Willy 1er"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24935767"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24935767"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Ludovic Boukherma"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22075050"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22075549"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22075549"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "15"}, "Description": {"type": "literal", "value": "2015 film by Basil Khalil"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q58943182"}, "Title": {"type": "literal", "value": "\u0639\u0634\u0642 \u0628\u0647 \u0633\u0628\u06a9 \u0641\u0627\u0631\u0633\u06cc (\u0633\u0644\u0627\u0645 \u0627\u06cc \u0627\u06cc\u0631\u0627\u0646)"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q120045"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1445385"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q48920420|http://www.wikidata.org/entity/Q7161003|http://www.wikidata.org/entity/Q2391445|http://www.wikidata.org/entity/Q1696908|http://www.wikidata.org/entity/Q120291|http://www.wikidata.org/entity/Q90847"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 television film directed by Florian Baxmeyer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1607185"}, "Title": {"type": "literal", "value": "Swinging with the Finkels"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6274003"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6274003"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5209690|http://www.wikidata.org/entity/Q2131672|http://www.wikidata.org/entity/Q729828|http://www.wikidata.org/entity/Q517576|http://www.wikidata.org/entity/Q453740|http://www.wikidata.org/entity/Q316857|http://www.wikidata.org/entity/Q309486|http://www.wikidata.org/entity/Q233575|http://www.wikidata.org/entity/Q187832"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "81"}, "Description": {"type": "literal", "value": "2011 film by Jonathan Newman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3634702"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4805922"}, "Title": {"type": "literal", "value": "\u0c05\u0c37\u0c4d\u0c1f\u0c3e-\u0c1a\u0c2e\u0c4d\u0c2e\u0c3e"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6893545"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6893545"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18687931|http://www.wikidata.org/entity/Q7683304|http://www.wikidata.org/entity/Q7586442|http://www.wikidata.org/entity/Q6963590|http://www.wikidata.org/entity/Q4901277"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q40831"}, "Duration": {"type": "literal", "value": "186"}, "Description": {"type": "literal", "value": "2008 Telugu film directed by Mohan Krishna Indraganti"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23780457"}, "Title": {"type": "literal", "value": "Kingsman: The Golden Circle"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2593"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q32661|http://www.wikidata.org/entity/Q2593"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q229535|http://www.wikidata.org/entity/Q212064|http://www.wikidata.org/entity/Q203545|http://www.wikidata.org/entity/Q174843|http://www.wikidata.org/entity/Q172678|http://www.wikidata.org/entity/Q162492|http://www.wikidata.org/entity/Q80405|http://www.wikidata.org/entity/Q312712|http://www.wikidata.org/entity/Q270559|http://www.wikidata.org/entity/Q21592498|http://www.wikidata.org/entity/Q18379490|http://www.wikidata.org/entity/Q16239385|http://www.wikidata.org/entity/Q14752155|http://www.wikidata.org/entity/Q1334874|http://www.wikidata.org/entity/Q1033016|http://www.wikidata.org/entity/Q879616|http://www.wikidata.org/entity/Q725519|http://www.wikidata.org/entity/Q342788"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2297927|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q2678111"}, "Duration": {"type": "literal", "value": "141"}, "Description": {"type": "literal", "value": "2017 film by Matthew Vaughn"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434841"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6963574"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7409513"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7409513"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5318280|http://www.wikidata.org/entity/Q48619"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Samir Karnik"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23308961"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4171916"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4077949"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Dmitriy Dyachenko"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18722273"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3849424"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30610263"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28968258|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 animated film directed by Thurop Van Orman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q186941"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q44092005"}, "Title": {"type": "literal", "value": "Anchor and Hope|Tierra firme"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18542926"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18542926"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23728778|http://www.wikidata.org/entity/Q17364500|http://www.wikidata.org/entity/Q7839484|http://www.wikidata.org/entity/Q7183135|http://www.wikidata.org/entity/Q459348|http://www.wikidata.org/entity/Q232163|http://www.wikidata.org/entity/Q230636"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "111"}, "Description": {"type": "literal", "value": "2017 film by Carlos Marques-Marcet"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q54020369"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60485079"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6911832"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1749383"}, "Title": {"type": "literal", "value": "Who's Your Daddy?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q525725"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5085592|http://www.wikidata.org/entity/Q4980447|http://www.wikidata.org/entity/Q2627090|http://www.wikidata.org/entity/Q2178032|http://www.wikidata.org/entity/Q2158643|http://www.wikidata.org/entity/Q1328715|http://www.wikidata.org/entity/Q716343|http://www.wikidata.org/entity/Q552806|http://www.wikidata.org/entity/Q495487|http://www.wikidata.org/entity/Q462937|http://www.wikidata.org/entity/Q451108|http://www.wikidata.org/entity/Q449822|http://www.wikidata.org/entity/Q367469|http://www.wikidata.org/entity/Q272176|http://www.wikidata.org/entity/Q264946|http://www.wikidata.org/entity/Q261953|http://www.wikidata.org/entity/Q229920|http://www.wikidata.org/entity/Q176945|http://www.wikidata.org/entity/Q7152054|http://www.wikidata.org/entity/Q5240620"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2004 film by Andy Fickman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61642203"}, "Title": {"type": "literal", "value": "Bangla"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61641256"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61641256"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3857845|http://www.wikidata.org/entity/Q61641256|http://www.wikidata.org/entity/Q50772725|http://www.wikidata.org/entity/Q3904256"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2019 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16675434"}, "Title": {"type": "literal", "value": "Samba"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q74428|http://www.wikidata.org/entity/Q2778106"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q74428|http://www.wikidata.org/entity/Q27513138|http://www.wikidata.org/entity/Q3021818|http://www.wikidata.org/entity/Q2778106"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3302714|http://www.wikidata.org/entity/Q3157743|http://www.wikidata.org/entity/Q3156516|http://www.wikidata.org/entity/Q3144876|http://www.wikidata.org/entity/Q18326681|http://www.wikidata.org/entity/Q14435846|http://www.wikidata.org/entity/Q3340076|http://www.wikidata.org/entity/Q276005|http://www.wikidata.org/entity/Q115201|http://www.wikidata.org/entity/Q74428|http://www.wikidata.org/entity/Q2979699|http://www.wikidata.org/entity/Q2965785|http://www.wikidata.org/entity/Q2941870|http://www.wikidata.org/entity/Q2824177|http://www.wikidata.org/entity/Q2778106|http://www.wikidata.org/entity/Q981690|http://www.wikidata.org/entity/Q357387"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "118"}, "Description": {"type": "literal", "value": "2014 film directed by Olivier Nakache and \u00c9ric Toledano"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q384923"}, "Title": {"type": "literal", "value": "\u0b9a\u0bb0\u0bcb\u0b9c\u0bbe"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3524112"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3524112"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7499231"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Venkat Prabhu"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21775905"}, "Title": {"type": "literal", "value": "\u4e07\u4e07\u6ca1\u60f3\u5230"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24287376"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1061218|http://www.wikidata.org/entity/Q706933|http://www.wikidata.org/entity/Q20062520|http://www.wikidata.org/entity/Q18109600|http://www.wikidata.org/entity/Q15900137"}, "Published": {"type": "literal", "value": "2015|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2015 Chinese film directed by Jiaoshou"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2399153"}, "Title": {"type": "literal", "value": "\u0401\u043b\u043a\u0438"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4222061|http://www.wikidata.org/entity/Q4122763|http://www.wikidata.org/entity/Q344854|http://www.wikidata.org/entity/Q20503316"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q344854"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2329850|http://www.wikidata.org/entity/Q777625|http://www.wikidata.org/entity/Q631058|http://www.wikidata.org/entity/Q558666|http://www.wikidata.org/entity/Q442830|http://www.wikidata.org/entity/Q438799|http://www.wikidata.org/entity/Q23530|http://www.wikidata.org/entity/Q3479732|http://www.wikidata.org/entity/Q3291006|http://www.wikidata.org/entity/Q2865340|http://www.wikidata.org/entity/Q2626247"}, "Published": {"type": "literal", "value": "2011|2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2010 film by Timur Bekmambetov"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2892410"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q188439"}, "Title": {"type": "literal", "value": "Tangled"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028506|http://www.wikidata.org/entity/Q1018606"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5213495"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011|2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28968258|http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2010 computer-animated musical fantasy-comedy film by Disney"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1047410"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16938163"}, "Title": {"type": "literal", "value": "Carmina y am\u00e9n"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3621855"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3621855"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6004136|http://www.wikidata.org/entity/Q5752752|http://www.wikidata.org/entity/Q3572483"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2014 film by Paco Le\u00f3n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22672807"}, "Title": {"type": "literal", "value": "Adopte un veuf"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3084424"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3189060|http://www.wikidata.org/entity/Q2929989|http://www.wikidata.org/entity/Q2863100|http://www.wikidata.org/entity/Q518457"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Fran\u00e7ois Desagnat"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5733720"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5155259"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Ana Torres-\u00c1lvarez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22000124"}, "Title": {"type": "literal", "value": "Eu odeio o Big Br\u00f3der"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10278413"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "127"}, "Description": {"type": "literal", "value": "2013 film by Evandro Berlesi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15279283"}, "Title": {"type": "literal", "value": "\u540d\u63a2\u5075\u30b3\u30ca\u30f3 \u7570\u6b21\u5143\u306e\u72d9\u6483\u624b"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9372608"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q1200678|http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by K\u014dbun Shizuno"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054807"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25315589"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25315761"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12470600"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film directed by Anggy Umbara"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19751757"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4386089"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4330970"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4234108"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3015088"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Karen Oganesyan"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4504080"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11613749"}, "Title": {"type": "literal", "value": "\u821f\u3092\u7de8\u3080"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8062226"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2279206"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11678345|http://www.wikidata.org/entity/Q11539551|http://www.wikidata.org/entity/Q11500522|http://www.wikidata.org/entity/Q11449896|http://www.wikidata.org/entity/Q11410217|http://www.wikidata.org/entity/Q11378875|http://www.wikidata.org/entity/Q6875103|http://www.wikidata.org/entity/Q5359721|http://www.wikidata.org/entity/Q3546783|http://www.wikidata.org/entity/Q3544184|http://www.wikidata.org/entity/Q3286682|http://www.wikidata.org/entity/Q1347933|http://www.wikidata.org/entity/Q1039639|http://www.wikidata.org/entity/Q684967|http://www.wikidata.org/entity/Q326335|http://www.wikidata.org/entity/Q288114|http://www.wikidata.org/entity/Q253873"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Yuya Ishii"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18573369"}, "Title": {"type": "literal", "value": "Ein Mord mit Aussicht"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1682199"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q47468852"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q96068|http://www.wikidata.org/entity/Q56055270|http://www.wikidata.org/entity/Q54605668|http://www.wikidata.org/entity/Q54324477|http://www.wikidata.org/entity/Q28055835|http://www.wikidata.org/entity/Q21996473|http://www.wikidata.org/entity/Q18679286|http://www.wikidata.org/entity/Q2057667|http://www.wikidata.org/entity/Q1927678|http://www.wikidata.org/entity/Q1917760|http://www.wikidata.org/entity/Q1910132|http://www.wikidata.org/entity/Q1696765|http://www.wikidata.org/entity/Q1478392|http://www.wikidata.org/entity/Q1173172|http://www.wikidata.org/entity/Q1043589|http://www.wikidata.org/entity/Q879361|http://www.wikidata.org/entity/Q546822|http://www.wikidata.org/entity/Q497927"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2321734|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2015 German television film directed by Jan Schomburg"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20111009"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5956887"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4975440"}, "Title": {"type": "literal", "value": "Brother's Justice"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56285770|http://www.wikidata.org/entity/Q462354"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q462354"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by David Palmer and Dax Shepard"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3358108"}, "Title": {"type": "literal", "value": "Ouf"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19521240"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q449240|http://www.wikidata.org/entity/Q292545|http://www.wikidata.org/entity/Q288180|http://www.wikidata.org/entity/Q230710|http://www.wikidata.org/entity/Q15148942|http://www.wikidata.org/entity/Q3592761|http://www.wikidata.org/entity/Q3503482|http://www.wikidata.org/entity/Q3308651|http://www.wikidata.org/entity/Q3166719|http://www.wikidata.org/entity/Q3046281|http://www.wikidata.org/entity/Q2925490|http://www.wikidata.org/entity/Q1647279|http://www.wikidata.org/entity/Q1345210|http://www.wikidata.org/entity/Q1306432"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film directed by Yann Coridian"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6683587"}, "Title": {"type": "literal", "value": "Kaybedenler Kul\u00fcb\u00fc"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7814245"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21526588|http://www.wikidata.org/entity/Q7814245"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8080044|http://www.wikidata.org/entity/Q6100684|http://www.wikidata.org/entity/Q6098512|http://www.wikidata.org/entity/Q6088955|http://www.wikidata.org/entity/Q6082472|http://www.wikidata.org/entity/Q6079985|http://www.wikidata.org/entity/Q4117946|http://www.wikidata.org/entity/Q3337865|http://www.wikidata.org/entity/Q930862|http://www.wikidata.org/entity/Q913571|http://www.wikidata.org/entity/Q17045521"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Tolga \u00d6rnek"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13224620"}, "Title": {"type": "literal", "value": "\u042d\u043d\u0442\u0440\u043e\u043f\u0438\u044f"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13218104"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4172072|http://www.wikidata.org/entity/Q468621|http://www.wikidata.org/entity/Q287099|http://www.wikidata.org/entity/Q4506333"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q53094|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "75"}, "Description": {"type": "literal", "value": "2012 film by Maria Sahakyan"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4822165"}, "Title": {"type": "literal", "value": "Torrance Rises"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6483320"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q259913"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1999 film by Lance Bangs"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1999"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60188951"}, "Title": {"type": "literal", "value": "Love Machine"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60189101"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60189033|http://www.wikidata.org/entity/Q33516309|http://www.wikidata.org/entity/Q28520849|http://www.wikidata.org/entity/Q21582242|http://www.wikidata.org/entity/Q1944541|http://www.wikidata.org/entity/Q1711858|http://www.wikidata.org/entity/Q1648072|http://www.wikidata.org/entity/Q1624616|http://www.wikidata.org/entity/Q1587263|http://www.wikidata.org/entity/Q1541921|http://www.wikidata.org/entity/Q1428994|http://www.wikidata.org/entity/Q1328659|http://www.wikidata.org/entity/Q1281189|http://www.wikidata.org/entity/Q1097560|http://www.wikidata.org/entity/Q354474|http://www.wikidata.org/entity/Q77807"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film by Andreas Schmied"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1369459"}, "Published": {"type": "literal", "value": "2019"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15731572"}, "Title": {"type": "literal", "value": "Les Grandes Ondes (\u00e0 l'ouest)"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3241813"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3241813"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130092|http://www.wikidata.org/entity/Q3369588|http://www.wikidata.org/entity/Q3241813|http://www.wikidata.org/entity/Q3170007|http://www.wikidata.org/entity/Q3090038|http://www.wikidata.org/entity/Q1930952|http://www.wikidata.org/entity/Q116128"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2013 film by Lionel Baier"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17145684|http://www.wikidata.org/entity/Q3232641"}, "Published": {"type": "literal", "value": "2014|2013"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q62021253"}, "Title": {"type": "literal", "value": "Befreite Zone"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q62021621"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q62021621"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1696958|http://www.wikidata.org/entity/Q102450|http://www.wikidata.org/entity/Q78197|http://www.wikidata.org/entity/Q64823"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2003 film by Norbert Baumgarten"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2004|2003"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7752552"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2394473"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by David Hicks"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1607312"}, "Published": {"type": "literal", "value": "2012"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3823681"}, "Title": {"type": "literal", "value": "La prima notte di nozze"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3694301"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3694301"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4000160|http://www.wikidata.org/entity/Q3847540|http://www.wikidata.org/entity/Q3827856|http://www.wikidata.org/entity/Q3751198|http://www.wikidata.org/entity/Q3749314|http://www.wikidata.org/entity/Q3745905|http://www.wikidata.org/entity/Q3733965|http://www.wikidata.org/entity/Q3721421|http://www.wikidata.org/entity/Q3641985|http://www.wikidata.org/entity/Q3617074|http://www.wikidata.org/entity/Q3609295|http://www.wikidata.org/entity/Q2653134|http://www.wikidata.org/entity/Q2481109|http://www.wikidata.org/entity/Q935640|http://www.wikidata.org/entity/Q555828|http://www.wikidata.org/entity/Q77456"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "1976 film by Corrado Prisco"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1976"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25336867"}, "Title": {"type": "literal", "value": "O man\u00edaco do Facebook"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10278413"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "125"}, "Description": {"type": "literal", "value": "2016 film by Evandro Berlesi"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3110682"}, "Title": {"type": "literal", "value": "Good Neighbors"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434244"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434244"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3311377|http://www.wikidata.org/entity/Q3052376|http://www.wikidata.org/entity/Q2850841|http://www.wikidata.org/entity/Q1309821|http://www.wikidata.org/entity/Q551861|http://www.wikidata.org/entity/Q336131|http://www.wikidata.org/entity/Q316756"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2421031|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 Canadian comedy/thriller film directed by Jacob Tierney"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48672800"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3298525"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6984068"}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Whitney Cummings"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28496933"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1930523"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1930523"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Michael Cohen"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16857388"}, "Title": {"type": "literal", "value": "Feast"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17521924"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17521924|http://www.wikidata.org/entity/Q3421133"}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1919632|http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "7|6"}, "Description": {"type": "literal", "value": "2014 computer-animated short film directed by Patrick Osborne"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1047410"}, "Published": {"type": "literal", "value": "2015|2014"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10959765"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5073156"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6370538|http://www.wikidata.org/entity/Q4120263|http://www.wikidata.org/entity/Q591801|http://www.wikidata.org/entity/Q432164"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2000 film by Sandra Nashaat"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2000"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2550185"}, "Title": {"type": "literal", "value": "Was nicht passt, wird passend gemacht"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2078661"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1908448"}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2002 film by Peter Thorwarth"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2002"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q645405"}, "Title": {"type": "literal", "value": "Alpha and Omega"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2895448|http://www.wikidata.org/entity/Q2852811"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2964698"}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2010 American computer animated comedy drama film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1433174|http://www.wikidata.org/entity/Q2702789"}, "Published": {"type": "literal", "value": "2010"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3791225"}, "Title": {"type": "literal", "value": "I racconti di Canterbury N. 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1873491"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3840114"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3845497|http://www.wikidata.org/entity/Q3839271|http://www.wikidata.org/entity/Q3726621|http://www.wikidata.org/entity/Q3634653|http://www.wikidata.org/entity/Q1156919|http://www.wikidata.org/entity/Q1040908|http://www.wikidata.org/entity/Q515997"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "1972 film by Lucio Giachin"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1972"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13499767"}, "Title": {"type": "literal", "value": "Tadeo Jones 2: El secreto del rey Midas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5785736"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "81"}, "Description": {"type": "literal", "value": "2017 animated film directed by Enrique Gato"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018|2017"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20476212"}, "Title": {"type": "literal", "value": "Ali Baba ve Yedi C\u00fcceler"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q732915"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q732915"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q732915"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 Turkish film directed by Cem Y\u0131lmaz"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17059620"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7135164"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7377514"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Parambrata Chatterjee"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18700753"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11585892"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1154775"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Jun'ichi Ishikawa"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3991647"}, "Title": {"type": "literal", "value": "Tiny Furniture"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q288359"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q288359"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5902748|http://www.wikidata.org/entity/Q5591098|http://www.wikidata.org/entity/Q4749378|http://www.wikidata.org/entity/Q3219659|http://www.wikidata.org/entity/Q2084523|http://www.wikidata.org/entity/Q440189|http://www.wikidata.org/entity/Q288359|http://www.wikidata.org/entity/Q39958"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2010 film by Lena Dunham"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61477873"}, "Title": {"type": "literal", "value": "Bajo el mismo techo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5953837"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5953837"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q46551267|http://www.wikidata.org/entity/Q16630420|http://www.wikidata.org/entity/Q9048555|http://www.wikidata.org/entity/Q8198107|http://www.wikidata.org/entity/Q5798422|http://www.wikidata.org/entity/Q3807924|http://www.wikidata.org/entity/Q3698926|http://www.wikidata.org/entity/Q251636|http://www.wikidata.org/entity/Q242410|http://www.wikidata.org/entity/Q129501"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Spanish 2019 comedy film directed by Juana Mac\u00edas"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2577308"}, "Title": {"type": "literal", "value": "The Infidel"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6288595"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q526242"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q468241"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2010 comedy film directed by Josh Appignanesi"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011|2010"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19934668"}, "Title": {"type": "literal", "value": "High Performance \u2013 Mandarinen l\u00fcgen nicht"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15821424"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15821424"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16504482|http://www.wikidata.org/entity/Q2091760|http://www.wikidata.org/entity/Q1683750|http://www.wikidata.org/entity/Q1603396|http://www.wikidata.org/entity/Q1328659|http://www.wikidata.org/entity/Q355662|http://www.wikidata.org/entity/Q89703"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2014 film by Johanna Moder"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015|2014"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23930094"}, "Title": {"type": "literal", "value": "Simon sagt auf Wiedersehen zu seiner Vorhaut"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27929944"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2015 film directed by Viviane Andereggen"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q33105131"}, "Title": {"type": "literal", "value": "Mid-90s"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q313388"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q313388"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q47467684|http://www.wikidata.org/entity/Q17488953|http://www.wikidata.org/entity/Q15222780"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2018 film directed by Jonah Hill"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16248298|http://www.wikidata.org/entity/Q17295709"}, "Published": {"type": "literal", "value": "2018"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56278697"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5980564"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6212645"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Iain Morris"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1253937"}, "Title": {"type": "literal", "value": "Dr. Jekyll and Ms. Hyde"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q332804"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q332804"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q446481|http://www.wikidata.org/entity/Q376131|http://www.wikidata.org/entity/Q351479|http://www.wikidata.org/entity/Q328074|http://www.wikidata.org/entity/Q315083|http://www.wikidata.org/entity/Q267976|http://www.wikidata.org/entity/Q267051|http://www.wikidata.org/entity/Q230736"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "1995 British-American comedy film directed by David Price"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1995"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q46028619"}, "Title": {"type": "literal", "value": "Sophelikoptern"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6172133"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6172133"}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film directed by Jonas Selberg Augusts\u00e9n"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17182410"}, "Title": {"type": "literal", "value": "Gregory Go Boom"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27773793"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27773793"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q309555"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Janicza Bravo"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15270658"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4139036"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1957385|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 animated film directed by Georgi Gitis"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4401085"}, "Published": {"type": "literal", "value": "2013"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19364012"}, "Title": {"type": "literal", "value": "Zeroville"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q306403"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23796638|http://www.wikidata.org/entity/Q926912|http://www.wikidata.org/entity/Q921470|http://www.wikidata.org/entity/Q383930|http://www.wikidata.org/entity/Q336400|http://www.wikidata.org/entity/Q306403|http://www.wikidata.org/entity/Q256884|http://www.wikidata.org/entity/Q241897|http://www.wikidata.org/entity/Q220308|http://www.wikidata.org/entity/Q218503|http://www.wikidata.org/entity/Q112536|http://www.wikidata.org/entity/Q80069"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2017 film by James Franco"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21178818"}, "Published": {"type": "literal", "value": "2017"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17277457"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q470841"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5443398"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Han Han"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16949685"}, "Title": {"type": "literal", "value": "Coffee Town"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4953855"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4953855"}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Brad Copeland"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2604282"}, "Title": {"type": "literal", "value": "The People I've Slept With"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q706016"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6426462"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7291588|http://www.wikidata.org/entity/Q1729395|http://www.wikidata.org/entity/Q1400297|http://www.wikidata.org/entity/Q1190037|http://www.wikidata.org/entity/Q633905|http://www.wikidata.org/entity/Q530166|http://www.wikidata.org/entity/Q507888|http://www.wikidata.org/entity/Q433962"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Quentin Lee"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16549745"}, "Title": {"type": "literal", "value": "Dimmi che destino avr\u00f2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3900890"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2012 film by Peter Marcias"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1476932"}, "Title": {"type": "literal", "value": "Queens Logic"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2632767"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7823470"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q237247|http://www.wikidata.org/entity/Q234137|http://www.wikidata.org/entity/Q204393|http://www.wikidata.org/entity/Q184805|http://www.wikidata.org/entity/Q172261|http://www.wikidata.org/entity/Q106997|http://www.wikidata.org/entity/Q15947345|http://www.wikidata.org/entity/Q10841812|http://www.wikidata.org/entity/Q7823470|http://www.wikidata.org/entity/Q3454165|http://www.wikidata.org/entity/Q3161916|http://www.wikidata.org/entity/Q3156746|http://www.wikidata.org/entity/Q2935069|http://www.wikidata.org/entity/Q2052465|http://www.wikidata.org/entity/Q1822688|http://www.wikidata.org/entity/Q1198176|http://www.wikidata.org/entity/Q1190150|http://www.wikidata.org/entity/Q509117|http://www.wikidata.org/entity/Q276269"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "1991 film by Steve Rash"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1991"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56305361"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4264563"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film directed by Sergey Loban"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27526166"}, "Title": {"type": "literal", "value": "Adios Amigos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21283233"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q461653"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192881"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2016 film by Albert Jan van Rees"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4809073"}, "Title": {"type": "literal", "value": "Assisted Living"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5365486"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16727580"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Elliot Greenebaum"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2003"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3437951"}, "Title": {"type": "literal", "value": "\u0930\u0949\u0915\u0947\u091f \u0938\u093f\u0902\u0939"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3482121"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6123531"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7491730|http://www.wikidata.org/entity/Q5527641|http://www.wikidata.org/entity/Q3401588|http://www.wikidata.org/entity/Q1063412"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Shimit Amin"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20826390"}, "Title": {"type": "literal", "value": "R\u00f3zsasz\u00edn sajt"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60538546"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Barnab\u00e1s T\u00f3th"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18711335"}, "Title": {"type": "literal", "value": "Maikol Yordan de Viaje Perdido"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20015283"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 Costa Rican film directed by Miguel Alejandro G\u00f3mez"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12835389"}, "Title": {"type": "literal", "value": "Adam ol! 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12846298"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Sarkhan Karamoglu"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15679974"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q908962"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1154232"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "78"}, "Description": {"type": "literal", "value": "2013 film by Nobuhiro Yamashita"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1382322"}, "Title": {"type": "literal", "value": "Evet, ich will!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q98255"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q98255"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22294679|http://www.wikidata.org/entity/Q21035816|http://www.wikidata.org/entity/Q6081791|http://www.wikidata.org/entity/Q2511663|http://www.wikidata.org/entity/Q2455413|http://www.wikidata.org/entity/Q2020358|http://www.wikidata.org/entity/Q2005315|http://www.wikidata.org/entity/Q1959302|http://www.wikidata.org/entity/Q1824918|http://www.wikidata.org/entity/Q1652293|http://www.wikidata.org/entity/Q1617763|http://www.wikidata.org/entity/Q1575584|http://www.wikidata.org/entity/Q1534215|http://www.wikidata.org/entity/Q1459956|http://www.wikidata.org/entity/Q1349407|http://www.wikidata.org/entity/Q1308271|http://www.wikidata.org/entity/Q1273627|http://www.wikidata.org/entity/Q1222375|http://www.wikidata.org/entity/Q928700|http://www.wikidata.org/entity/Q832186|http://www.wikidata.org/entity/Q755917|http://www.wikidata.org/entity/Q390675|http://www.wikidata.org/entity/Q389042|http://www.wikidata.org/entity/Q273637|http://www.wikidata.org/entity/Q197977|http://www.wikidata.org/entity/Q125744|http://www.wikidata.org/entity/Q124280|http://www.wikidata.org/entity/Q114624|http://www.wikidata.org/entity/Q111244|http://www.wikidata.org/entity/Q109299|http://www.wikidata.org/entity/Q106744|http://www.wikidata.org/entity/Q104696|http://www.wikidata.org/entity/Q100700|http://www.wikidata.org/entity/Q100240|http://www.wikidata.org/entity/Q98255|http://www.wikidata.org/entity/Q90890|http://www.wikidata.org/entity/Q90869|http://www.wikidata.org/entity/Q75177"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2008 film by Sinan Akku\u015f"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009|2008"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20091396"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4330970"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film directed by Karen Oganesyan"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14509721"}, "Title": {"type": "literal", "value": "You Are Here"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q161916|http://www.wikidata.org/entity/Q924283|http://www.wikidata.org/entity/Q230203|http://www.wikidata.org/entity/Q139325"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q924283"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q265285|http://www.wikidata.org/entity/Q262862|http://www.wikidata.org/entity/Q238877|http://www.wikidata.org/entity/Q236364|http://www.wikidata.org/entity/Q230203|http://www.wikidata.org/entity/Q225239|http://www.wikidata.org/entity/Q161916|http://www.wikidata.org/entity/Q158250|http://www.wikidata.org/entity/Q139325|http://www.wikidata.org/entity/Q23054715|http://www.wikidata.org/entity/Q15712264|http://www.wikidata.org/entity/Q5302371|http://www.wikidata.org/entity/Q1394940|http://www.wikidata.org/entity/Q1392931|http://www.wikidata.org/entity/Q1176588|http://www.wikidata.org/entity/Q536437"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "2013 American Comedy film"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12246396"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16297557"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12241008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q53094"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1171584"}, "Title": {"type": "literal", "value": "Sorority Boys"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1400238"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2528430|http://www.wikidata.org/entity/Q1740243|http://www.wikidata.org/entity/Q1343650|http://www.wikidata.org/entity/Q1275214|http://www.wikidata.org/entity/Q448522|http://www.wikidata.org/entity/Q311613|http://www.wikidata.org/entity/Q302265|http://www.wikidata.org/entity/Q288680|http://www.wikidata.org/entity/Q242206|http://www.wikidata.org/entity/Q236755|http://www.wikidata.org/entity/Q31741"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2002 comedy film directed by Wallace Wolodarsky"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q497155"}, "Published": {"type": "literal", "value": "2002"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28127569"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23882438"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3522919"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Kannan Thamarakkulam"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21031044"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q682762"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20048062|http://www.wikidata.org/entity/Q6003470|http://www.wikidata.org/entity/Q5476218|http://www.wikidata.org/entity/Q2972747"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2013 film by Marco Berger"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15209986"}, "Title": {"type": "literal", "value": "Chappie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q715838"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q435705|http://www.wikidata.org/entity/Q715838"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5070338|http://www.wikidata.org/entity/Q2084794|http://www.wikidata.org/entity/Q613471|http://www.wikidata.org/entity/Q512353|http://www.wikidata.org/entity/Q458337|http://www.wikidata.org/entity/Q350014|http://www.wikidata.org/entity/Q316997|http://www.wikidata.org/entity/Q245075|http://www.wikidata.org/entity/Q129591|http://www.wikidata.org/entity/Q102124|http://www.wikidata.org/entity/Q21518548|http://www.wikidata.org/entity/Q21031714|http://www.wikidata.org/entity/Q18378828|http://www.wikidata.org/entity/Q15856666|http://www.wikidata.org/entity/Q10623856|http://www.wikidata.org/entity/Q5611881"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q761469|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q20443008|http://www.wikidata.org/entity/Q2678111|http://www.wikidata.org/entity/Q2484376"}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "2015 film by Neill Blomkamp"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2856187|http://www.wikidata.org/entity/Q22807052"}, "Published": {"type": "literal", "value": "2015"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16492264"}, "Title": {"type": "literal", "value": "El ciudadano Kramer"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q868516"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q868516"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Stefan Kramer"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26844369"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4316314"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3479732|http://www.wikidata.org/entity/Q4316314"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3479732|http://www.wikidata.org/entity/Q26904119|http://www.wikidata.org/entity/Q4424820"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2016 film by Aleksandr Nezlobin"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1975145"}, "Published": {"type": "literal", "value": "2016"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26990213"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1894395"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16890266|http://www.wikidata.org/entity/Q2437931|http://www.wikidata.org/entity/Q1405744|http://www.wikidata.org/entity/Q1273429|http://www.wikidata.org/entity/Q95932"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2016 film directed by Marcus Ulbricht"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3716128"}, "Title": {"type": "literal", "value": "\u09a6\u09c1\u0987 \u09aa\u09c3\u09a5\u09bf\u09ac\u09c0"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3194810"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6951550"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5299396|http://www.wikidata.org/entity/Q5266378|http://www.wikidata.org/entity/Q4860999|http://www.wikidata.org/entity/Q402203"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "150"}, "Description": {"type": "literal", "value": "2010 film by Raj Chakraborty"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20814850"}, "Title": {"type": "literal", "value": "L\u2019Avenir"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3307854"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3307854"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23816434|http://www.wikidata.org/entity/Q16677381|http://www.wikidata.org/entity/Q2848242|http://www.wikidata.org/entity/Q273803|http://www.wikidata.org/entity/Q106365"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2016 film by Mia Hansen-L\u00f8ve"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q51845240"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1271549"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55849622|http://www.wikidata.org/entity/Q1910207|http://www.wikidata.org/entity/Q1271549"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q120509"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Manuel Flurin Hendry"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018|2017"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28657118"}, "Title": {"type": "literal", "value": "Ron Goossens, Low Budget Stuntman"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q943006"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2017 film by Steffen Haars"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15340352"}, "Title": {"type": "literal", "value": "In a World..."}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q241686"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q241686"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55585213|http://www.wikidata.org/entity/Q7801308|http://www.wikidata.org/entity/Q6835627|http://www.wikidata.org/entity/Q6812678|http://www.wikidata.org/entity/Q3180023|http://www.wikidata.org/entity/Q1985488|http://www.wikidata.org/entity/Q1378118|http://www.wikidata.org/entity/Q983082|http://www.wikidata.org/entity/Q980143|http://www.wikidata.org/entity/Q717951|http://www.wikidata.org/entity/Q510966|http://www.wikidata.org/entity/Q449126|http://www.wikidata.org/entity/Q446045|http://www.wikidata.org/entity/Q280098|http://www.wikidata.org/entity/Q269309|http://www.wikidata.org/entity/Q241686|http://www.wikidata.org/entity/Q163263|http://www.wikidata.org/entity/Q127113"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2013 film by Lake Bell"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q203108"}, "Title": {"type": "literal", "value": "TMNT"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q975134"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q975134"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q318885|http://www.wikidata.org/entity/Q313266|http://www.wikidata.org/entity/Q193048|http://www.wikidata.org/entity/Q180852|http://www.wikidata.org/entity/Q180665|http://www.wikidata.org/entity/Q178348|http://www.wikidata.org/entity/Q16296|http://www.wikidata.org/entity/Q6849459|http://www.wikidata.org/entity/Q2536187|http://www.wikidata.org/entity/Q1147104|http://www.wikidata.org/entity/Q489831|http://www.wikidata.org/entity/Q488335"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q761469|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q1146335"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2007 science fiction/martial arts CGI film directed by Kevin Munroe"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3043485"}, "Published": {"type": "literal", "value": "2007|2008"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18220864"}, "Title": {"type": "literal", "value": "Im Alter von Ellen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6517532"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6517532"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1683837|http://www.wikidata.org/entity/Q1555527|http://www.wikidata.org/entity/Q1504267|http://www.wikidata.org/entity/Q270005|http://www.wikidata.org/entity/Q109444|http://www.wikidata.org/entity/Q90374"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2010 film by Pia Marais"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011|2010"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3057240"}, "Title": {"type": "literal", "value": "Ernest et C\u00e9lestine"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3559781|http://www.wikidata.org/entity/Q3501563|http://www.wikidata.org/entity/Q2896206"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3094148|http://www.wikidata.org/entity/Q332689"}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "77"}, "Description": {"type": "literal", "value": "2012 animated movie"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3230674"}, "Published": {"type": "literal", "value": "2013|2012"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19842746"}, "Title": {"type": "literal", "value": "Teenage Mutant Ninja Turtles: Half Shell"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19720623"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6288593"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q913132|http://www.wikidata.org/entity/Q781176|http://www.wikidata.org/entity/Q686301|http://www.wikidata.org/entity/Q616960|http://www.wikidata.org/entity/Q555396|http://www.wikidata.org/entity/Q376031|http://www.wikidata.org/entity/Q369109|http://www.wikidata.org/entity/Q355116|http://www.wikidata.org/entity/Q331720|http://www.wikidata.org/entity/Q271866|http://www.wikidata.org/entity/Q223281|http://www.wikidata.org/entity/Q222039|http://www.wikidata.org/entity/Q151859|http://www.wikidata.org/entity/Q129041|http://www.wikidata.org/entity/Q80069|http://www.wikidata.org/entity/Q24702631|http://www.wikidata.org/entity/Q20090990|http://www.wikidata.org/entity/Q3342656|http://www.wikidata.org/entity/Q2126049|http://www.wikidata.org/entity/Q1164810|http://www.wikidata.org/entity/Q960721|http://www.wikidata.org/entity/Q929291|http://www.wikidata.org/entity/Q926963|http://www.wikidata.org/entity/Q60478"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1033891|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q188473"}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "2016 American 3D science fiction action comedy film directed by Dave Green"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q159846"}, "Published": {"type": "literal", "value": "2016"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16253773"}, "Title": {"type": "literal", "value": "Obvious Child"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18153579"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18153579"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6124807|http://www.wikidata.org/entity/Q744166|http://www.wikidata.org/entity/Q449959|http://www.wikidata.org/entity/Q362332|http://www.wikidata.org/entity/Q292381|http://www.wikidata.org/entity/Q274812"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2014 film by Gillian Robespierre"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1066199"}, "Title": {"type": "literal", "value": "\u30ea\u30f3\u30c0 \u30ea\u30f3\u30c0 \u30ea\u30f3\u30c0"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q908962"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11415886|http://www.wikidata.org/entity/Q908962"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11563549|http://www.wikidata.org/entity/Q11467963|http://www.wikidata.org/entity/Q10855296|http://www.wikidata.org/entity/Q3548366|http://www.wikidata.org/entity/Q3545152|http://www.wikidata.org/entity/Q1144033|http://www.wikidata.org/entity/Q1093071|http://www.wikidata.org/entity/Q1041015|http://www.wikidata.org/entity/Q360986|http://www.wikidata.org/entity/Q269742"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "114"}, "Description": {"type": "literal", "value": "2005 film by Nobuhiro Yamashita"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2005"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20899738"}, "Title": {"type": "literal", "value": "Good Kids"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5107394"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5107394"}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Chris McCoy"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7563717"}, "Title": {"type": "literal", "value": "Sorry, Thanks"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18351577"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q251809"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Dia Sokol Savage"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1103638"}, "Title": {"type": "literal", "value": "Blinkende lygter"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q491314"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q491314"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12331627|http://www.wikidata.org/entity/Q12328694|http://www.wikidata.org/entity/Q12327673|http://www.wikidata.org/entity/Q12323855|http://www.wikidata.org/entity/Q12316066|http://www.wikidata.org/entity/Q7176561|http://www.wikidata.org/entity/Q7113315|http://www.wikidata.org/entity/Q5882039|http://www.wikidata.org/entity/Q5586759|http://www.wikidata.org/entity/Q4968553|http://www.wikidata.org/entity/Q4955475|http://www.wikidata.org/entity/Q2778476|http://www.wikidata.org/entity/Q2347440|http://www.wikidata.org/entity/Q2033737|http://www.wikidata.org/entity/Q1912647|http://www.wikidata.org/entity/Q1797707|http://www.wikidata.org/entity/Q1797681|http://www.wikidata.org/entity/Q1760754|http://www.wikidata.org/entity/Q952621|http://www.wikidata.org/entity/Q740244|http://www.wikidata.org/entity/Q470023|http://www.wikidata.org/entity/Q435097|http://www.wikidata.org/entity/Q383754|http://www.wikidata.org/entity/Q382210|http://www.wikidata.org/entity/Q323563|http://www.wikidata.org/entity/Q294647|http://www.wikidata.org/entity/Q264696|http://www.wikidata.org/entity/Q186501|http://www.wikidata.org/entity/Q41730460|http://www.wikidata.org/entity/Q38052610"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "2000 film by Anders Thomas Jensen"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2000|2002"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3213382"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2938811"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3310148"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q983159|http://www.wikidata.org/entity/Q271944|http://www.wikidata.org/entity/Q212873|http://www.wikidata.org/entity/Q3506158|http://www.wikidata.org/entity/Q3473336|http://www.wikidata.org/entity/Q3367400|http://www.wikidata.org/entity/Q3335761|http://www.wikidata.org/entity/Q3242498|http://www.wikidata.org/entity/Q3190953|http://www.wikidata.org/entity/Q3161671|http://www.wikidata.org/entity/Q2966467|http://www.wikidata.org/entity/Q2964183|http://www.wikidata.org/entity/Q2820822"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Carine Tardieu"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19245400"}, "Title": {"type": "literal", "value": "Digging for Fire"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6212564"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6212564|http://www.wikidata.org/entity/Q171525"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q236956|http://www.wikidata.org/entity/Q235905|http://www.wikidata.org/entity/Q171525|http://www.wikidata.org/entity/Q67701|http://www.wikidata.org/entity/Q44467|http://www.wikidata.org/entity/Q29328|http://www.wikidata.org/entity/Q20090365|http://www.wikidata.org/entity/Q16226409|http://www.wikidata.org/entity/Q5576465|http://www.wikidata.org/entity/Q3195292|http://www.wikidata.org/entity/Q1077549|http://www.wikidata.org/entity/Q744166|http://www.wikidata.org/entity/Q528126|http://www.wikidata.org/entity/Q436360|http://www.wikidata.org/entity/Q354031|http://www.wikidata.org/entity/Q316446|http://www.wikidata.org/entity/Q311314|http://www.wikidata.org/entity/Q238900"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2015 film by Joe Swanberg"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16496329"}, "Title": {"type": "literal", "value": "Balas & Bolinhos - O Regresso"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1670730"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2004 film by Lu\u00eds Ismael"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2004"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3851940"}, "Title": {"type": "literal", "value": "Matrimoni e altri disastri"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q516541"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3080921|http://www.wikidata.org/entity/Q516541"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3851224|http://www.wikidata.org/entity/Q3763387|http://www.wikidata.org/entity/Q3749413|http://www.wikidata.org/entity/Q3620029|http://www.wikidata.org/entity/Q2721648|http://www.wikidata.org/entity/Q2575446|http://www.wikidata.org/entity/Q1227029|http://www.wikidata.org/entity/Q285419|http://www.wikidata.org/entity/Q201617"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2010 Italian film directed by Nina Di Majo"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11708615"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2721147"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2721147"}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Dariusz Zawi\u015blak"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19898063"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2734356"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2734356"}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2015 film by Corneliu Porumboiu"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7198637"}, "Title": {"type": "literal", "value": "Pitbullterje"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11958682"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q329546"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3356840|http://www.wikidata.org/entity/Q501324"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Arild Fr\u00f6hlich"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2005"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17101080"}, "Title": {"type": "literal", "value": "The Dirties"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q25209047"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Matt Johnson"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17478880"}, "Title": {"type": "literal", "value": "Confusi e felici"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3850996"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2014 film by Massimiliano Bruno"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3804257"}, "Published": {"type": "literal", "value": "2014"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20950352"}, "Title": {"type": "literal", "value": "Fack ju G\u00f6hte 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q112352"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q112352"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20564196|http://www.wikidata.org/entity/Q19958947|http://www.wikidata.org/entity/Q19946297|http://www.wikidata.org/entity/Q18411528|http://www.wikidata.org/entity/Q17479630|http://www.wikidata.org/entity/Q17353105|http://www.wikidata.org/entity/Q16218089|http://www.wikidata.org/entity/Q15890988|http://www.wikidata.org/entity/Q2777390|http://www.wikidata.org/entity/Q2669267|http://www.wikidata.org/entity/Q2530909|http://www.wikidata.org/entity/Q1913731|http://www.wikidata.org/entity/Q1876677|http://www.wikidata.org/entity/Q1686699|http://www.wikidata.org/entity/Q1600532|http://www.wikidata.org/entity/Q824272|http://www.wikidata.org/entity/Q449665|http://www.wikidata.org/entity/Q227409|http://www.wikidata.org/entity/Q215565|http://www.wikidata.org/entity/Q112684|http://www.wikidata.org/entity/Q100841|http://www.wikidata.org/entity/Q89832|http://www.wikidata.org/entity/Q78766|http://www.wikidata.org/entity/Q69669|http://www.wikidata.org/entity/Q66771|http://www.wikidata.org/entity/Q62346|http://www.wikidata.org/entity/Q61099"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "2015 film directed by Bora Da\u011ftekin"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q564960"}, "Published": {"type": "literal", "value": "2015"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29615846"}, "Title": {"type": "literal", "value": "Aurore"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2906097"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3524049|http://www.wikidata.org/entity/Q240521"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Blandine Lenoir"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3193645"}, "Published": {"type": "literal", "value": "2018|2017"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20538741"}, "Title": {"type": "literal", "value": "Nos futurs"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2080043"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2080043"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14609928|http://www.wikidata.org/entity/Q3530821|http://www.wikidata.org/entity/Q3471241|http://www.wikidata.org/entity/Q3307961|http://www.wikidata.org/entity/Q3218847|http://www.wikidata.org/entity/Q3200883|http://www.wikidata.org/entity/Q3169590|http://www.wikidata.org/entity/Q3169522|http://www.wikidata.org/entity/Q2821516|http://www.wikidata.org/entity/Q1139064|http://www.wikidata.org/entity/Q777528|http://www.wikidata.org/entity/Q462376|http://www.wikidata.org/entity/Q449082|http://www.wikidata.org/entity/Q139052|http://www.wikidata.org/entity/Q41672830|http://www.wikidata.org/entity/Q16670062|http://www.wikidata.org/entity/Q16535251"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q663106"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2015 film by R\u00e9mi Bezan\u00e7on"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q525894|http://www.wikidata.org/entity/Q913462"}, "Published": {"type": "literal", "value": "2015"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23660760"}, "Title": {"type": "literal", "value": "Maremmamara"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3837059"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3837059"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23655841|http://www.wikidata.org/entity/Q19408742|http://www.wikidata.org/entity/Q13469193|http://www.wikidata.org/entity/Q3837059|http://www.wikidata.org/entity/Q3634619|http://www.wikidata.org/entity/Q3615668|http://www.wikidata.org/entity/Q3290121|http://www.wikidata.org/entity/Q315258"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2016 film by Lorenzo Renzi"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18603039"}, "Title": {"type": "literal", "value": "Paper Towns"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6124973"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5965293|http://www.wikidata.org/entity/Q16886480"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17579921|http://www.wikidata.org/entity/Q16194006|http://www.wikidata.org/entity/Q16156312|http://www.wikidata.org/entity/Q13426679|http://www.wikidata.org/entity/Q6166571|http://www.wikidata.org/entity/Q3486491|http://www.wikidata.org/entity/Q1395624|http://www.wikidata.org/entity/Q1249010|http://www.wikidata.org/entity/Q22058479|http://www.wikidata.org/entity/Q20741007|http://www.wikidata.org/entity/Q19934239|http://www.wikidata.org/entity/Q630446|http://www.wikidata.org/entity/Q513169|http://www.wikidata.org/entity/Q289540"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1200678|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q52162262|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "2015 film directed by Jake Schreier"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434841"}, "Published": {"type": "literal", "value": "2015"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48671641"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7289434"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Ramesh Pisharody"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17502379"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11549838"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q857410"}, "Title": {"type": "literal", "value": "The Calcium Kid"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4716899"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1900097|http://www.wikidata.org/entity/Q1190134|http://www.wikidata.org/entity/Q1139433|http://www.wikidata.org/entity/Q527303|http://www.wikidata.org/entity/Q470746|http://www.wikidata.org/entity/Q468241|http://www.wikidata.org/entity/Q359488|http://www.wikidata.org/entity/Q151113|http://www.wikidata.org/entity/Q44467"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1339864|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2004 film by Alex De Rakoff"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2060840|http://www.wikidata.org/entity/Q2450848"}, "Published": {"type": "literal", "value": "2004"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q8240308"}, "Title": {"type": "literal", "value": "Bajo las estrellas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20492764"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5444600"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3326153|http://www.wikidata.org/entity/Q2602857"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22236109"}, "Title": {"type": "literal", "value": "Hunt for the Wilderpeople"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2388576"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2388576"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q51845341|http://www.wikidata.org/entity/Q24189388|http://www.wikidata.org/entity/Q16213557|http://www.wikidata.org/entity/Q7106074|http://www.wikidata.org/entity/Q2388576|http://www.wikidata.org/entity/Q2330139|http://www.wikidata.org/entity/Q1806933|http://www.wikidata.org/entity/Q214309"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2016 film by Taika Waititi"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7730459"}, "Title": {"type": "literal", "value": "The Do-Deca-Pentathlon"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6166571|http://www.wikidata.org/entity/Q3273787"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Mark Duplass, Jay Duplass"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19868263"}, "Published": {"type": "literal", "value": "2012"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2464426"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2005799"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2005799"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6399296"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "120"}, "Description": {"type": "literal", "value": "2010 film by Ahmad Abdalla"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6416788"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7418444"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q731854|http://www.wikidata.org/entity/Q262665"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Sanjay Khanduri"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24278847"}, "Title": {"type": "literal", "value": "Ali's Wedding"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q723820"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7105673"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "2016 film by Jeffrey Walker"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q47952256"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q453691"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q453691"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q189422"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Mr. Oizo"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4425747"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q374286"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q374286"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q471215"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by James Wan"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q44492608"}, "Title": {"type": "literal", "value": "El paseo 4"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q50358500"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film directed by Juan Camilo Pinz\u00f3n"}, "ProductionCompany": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26882438"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23760919"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "55"}, "Description": {"type": "literal", "value": "2016 film by Rueben Wood"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21819857"}, "Title": {"type": "literal", "value": "Sing Street"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3181205"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3181205"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23759119|http://www.wikidata.org/entity/Q9024781|http://www.wikidata.org/entity/Q2791895|http://www.wikidata.org/entity/Q444616|http://www.wikidata.org/entity/Q358032"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q842256"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2016 musical comedy-drama film directed by John Carney"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3818777"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21191123|http://www.wikidata.org/entity/Q21191121|http://www.wikidata.org/entity/Q5526897"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q33791454|http://www.wikidata.org/entity/Q28065303|http://www.wikidata.org/entity/Q21191123|http://www.wikidata.org/entity/Q21191121|http://www.wikidata.org/entity/Q5902375|http://www.wikidata.org/entity/Q5653560|http://www.wikidata.org/entity/Q2831782|http://www.wikidata.org/entity/Q763107|http://www.wikidata.org/entity/Q324030"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2008 film by Gast\u00f3n Duprat & Mariano Cohn"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21925075"}, "Title": {"type": "literal", "value": "The Edge of Seventeen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26908000"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26908000"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16236978|http://www.wikidata.org/entity/Q4718501|http://www.wikidata.org/entity/Q3731491|http://www.wikidata.org/entity/Q452347|http://www.wikidata.org/entity/Q242629|http://www.wikidata.org/entity/Q231726|http://www.wikidata.org/entity/Q229572|http://www.wikidata.org/entity/Q201279|http://www.wikidata.org/entity/Q40638"}, "Published": {"type": "literal", "value": "2017|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2016 film by Kelly Fremon Craig"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1506909"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q579261"}, "Title": {"type": "literal", "value": "Mundo gr\u00faa"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2562608"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2562608"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28070847|http://www.wikidata.org/entity/Q6700790|http://www.wikidata.org/entity/Q6111340|http://www.wikidata.org/entity/Q5591498|http://www.wikidata.org/entity/Q5218961|http://www.wikidata.org/entity/Q2887161"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "1999 film by Pablo Trapero"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17539570"}, "Title": {"type": "literal", "value": "Doktorspiele"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1893857"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1893857"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2020358|http://www.wikidata.org/entity/Q2019755|http://www.wikidata.org/entity/Q1913731|http://www.wikidata.org/entity/Q1683505|http://www.wikidata.org/entity/Q1682918|http://www.wikidata.org/entity/Q1251037|http://www.wikidata.org/entity/Q559888|http://www.wikidata.org/entity/Q95311|http://www.wikidata.org/entity/Q69108"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2014 film by Marco Petry"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18352782"}, "Title": {"type": "literal", "value": "\u0b9a\u0b95\u0bb2\u0b95\u0bb2\u0bbe \u0bb5\u0bb2\u0bcd\u0bb2\u0bb5\u0ba9\u0bcd"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7645322"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q469886"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film directed by Suraj"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3521782"}, "Title": {"type": "literal", "value": "The Marc Pease Experience"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2438469"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2438469"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5516062|http://www.wikidata.org/entity/Q3574528|http://www.wikidata.org/entity/Q3299416|http://www.wikidata.org/entity/Q3163247|http://www.wikidata.org/entity/Q3007115|http://www.wikidata.org/entity/Q1279993|http://www.wikidata.org/entity/Q313705|http://www.wikidata.org/entity/Q67701|http://www.wikidata.org/entity/Q47100"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2009 film by Todd Louiso"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q208131"}, "Title": {"type": "literal", "value": "Shrek Forever After"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2507259"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q552255"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21401869|http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2010 animated comedy film directed by Mike Mitchell"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q500088"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q753605"}, "Title": {"type": "literal", "value": "Hop"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2037657"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24262189|http://www.wikidata.org/entity/Q24261987|http://www.wikidata.org/entity/Q4964545"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q485901|http://www.wikidata.org/entity/Q315864|http://www.wikidata.org/entity/Q296609|http://www.wikidata.org/entity/Q262502|http://www.wikidata.org/entity/Q232047|http://www.wikidata.org/entity/Q202056|http://www.wikidata.org/entity/Q201927|http://www.wikidata.org/entity/Q49017|http://www.wikidata.org/entity/Q16759"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2011 film by Tim Hill"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1189512|http://www.wikidata.org/entity/Q2702789"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7997639"}, "Title": {"type": "literal", "value": "Whore"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q369292"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q58327634|http://www.wikidata.org/entity/Q5525025|http://www.wikidata.org/entity/Q5339441|http://www.wikidata.org/entity/Q2603410|http://www.wikidata.org/entity/Q733691|http://www.wikidata.org/entity/Q713634|http://www.wikidata.org/entity/Q513432|http://www.wikidata.org/entity/Q503013|http://www.wikidata.org/entity/Q369292|http://www.wikidata.org/entity/Q234566|http://www.wikidata.org/entity/Q228789|http://www.wikidata.org/entity/Q80069|http://www.wikidata.org/entity/Q2597"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Thomas Dekker"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18703892"}, "Title": {"type": "literal", "value": "Youth"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q374678"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q374678"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q123351|http://www.wikidata.org/entity/Q119721|http://www.wikidata.org/entity/Q41142|http://www.wikidata.org/entity/Q19406724|http://www.wikidata.org/entity/Q18223845|http://www.wikidata.org/entity/Q18030614|http://www.wikidata.org/entity/Q16730400|http://www.wikidata.org/entity/Q7231806|http://www.wikidata.org/entity/Q7149393|http://www.wikidata.org/entity/Q4717408|http://www.wikidata.org/entity/Q3836804|http://www.wikidata.org/entity/Q3827760|http://www.wikidata.org/entity/Q3756510|http://www.wikidata.org/entity/Q3609301|http://www.wikidata.org/entity/Q2806299|http://www.wikidata.org/entity/Q2590605|http://www.wikidata.org/entity/Q2158797|http://www.wikidata.org/entity/Q2020161|http://www.wikidata.org/entity/Q1594336|http://www.wikidata.org/entity/Q871004|http://www.wikidata.org/entity/Q719083|http://www.wikidata.org/entity/Q468387|http://www.wikidata.org/entity/Q343616|http://www.wikidata.org/entity/Q268575|http://www.wikidata.org/entity/Q240324|http://www.wikidata.org/entity/Q235200|http://www.wikidata.org/entity/Q191132|http://www.wikidata.org/entity/Q134077"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "118"}, "Description": {"type": "literal", "value": "2015 film directed by Paolo Sorrentino"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16321327"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3631232"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1528398"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q973528"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4021766|http://www.wikidata.org/entity/Q3771825|http://www.wikidata.org/entity/Q3616769|http://www.wikidata.org/entity/Q3574220|http://www.wikidata.org/entity/Q1662519|http://www.wikidata.org/entity/Q1522638|http://www.wikidata.org/entity/Q1042540|http://www.wikidata.org/entity/Q935640|http://www.wikidata.org/entity/Q751973|http://www.wikidata.org/entity/Q503919|http://www.wikidata.org/entity/Q493352|http://www.wikidata.org/entity/Q472419|http://www.wikidata.org/entity/Q433856|http://www.wikidata.org/entity/Q433515"}, "Published": {"type": "literal", "value": "1958"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "1958 film by Giuseppe Lipartiti"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23565133"}, "Title": {"type": "literal", "value": "Pl\u00f6tzlich fett!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1624514"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16320787"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24039539|http://www.wikidata.org/entity/Q2285325|http://www.wikidata.org/entity/Q1712069|http://www.wikidata.org/entity/Q1600394|http://www.wikidata.org/entity/Q1133888|http://www.wikidata.org/entity/Q89424|http://www.wikidata.org/entity/Q87606|http://www.wikidata.org/entity/Q66027"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2011 film by Holger Haase"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19359134"}, "Title": {"type": "literal", "value": "Acn\u00e9"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19960535"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2008 Uruguayan film directed by Federico Veiroj"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3472803"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5650180"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5650180|http://www.wikidata.org/entity/Q5257870|http://www.wikidata.org/entity/Q4830060|http://www.wikidata.org/entity/Q4688834"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Hans Isaac"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28736862"}, "Title": {"type": "literal", "value": "Konrad & Katharina"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1450153"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q111498"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 German-Austrian TV film directed by Franziska Meletzky"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21964532"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4919568"}, "Title": {"type": "literal", "value": "Bjarnfre\u00f0arson"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3446294"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q445921"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "109"}, "Description": {"type": "literal", "value": "2009 film by Ragnar Bragason"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q9644367"}, "Title": {"type": "literal", "value": "Balas & Bolinhos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1670730"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "62"}, "Description": {"type": "literal", "value": "2001 film by Lu\u00eds Ismael"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16982089"}, "Title": {"type": "literal", "value": "Mississippi Grind"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4766862|http://www.wikidata.org/entity/Q3453777"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4766862|http://www.wikidata.org/entity/Q3453777"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16253434|http://www.wikidata.org/entity/Q6773512|http://www.wikidata.org/entity/Q6152556|http://www.wikidata.org/entity/Q2358416|http://www.wikidata.org/entity/Q1387412|http://www.wikidata.org/entity/Q816565|http://www.wikidata.org/entity/Q646261|http://www.wikidata.org/entity/Q526620|http://www.wikidata.org/entity/Q456480|http://www.wikidata.org/entity/Q238843|http://www.wikidata.org/entity/Q193458|http://www.wikidata.org/entity/Q192682"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q663106"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Anna Boden"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q851825"}, "Title": {"type": "literal", "value": "Mannen som elsket Yngve"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9345832"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2031514"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1190263|http://www.wikidata.org/entity/Q973271|http://www.wikidata.org/entity/Q273315|http://www.wikidata.org/entity/Q22093709|http://www.wikidata.org/entity/Q17103752|http://www.wikidata.org/entity/Q13582646|http://www.wikidata.org/entity/Q11993577|http://www.wikidata.org/entity/Q11980640|http://www.wikidata.org/entity/Q11967809|http://www.wikidata.org/entity/Q4940710|http://www.wikidata.org/entity/Q4578840|http://www.wikidata.org/entity/Q3924580|http://www.wikidata.org/entity/Q2022437"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q1257444|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2008 Norwegian film directed by Stian Kristiansen"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3657087"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4450043"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4125601|http://www.wikidata.org/entity/Q21092329"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21092329|http://www.wikidata.org/entity/Q4125601|http://www.wikidata.org/entity/Q25080"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4113110|http://www.wikidata.org/entity/Q2398970|http://www.wikidata.org/entity/Q287110|http://www.wikidata.org/entity/Q13218109|http://www.wikidata.org/entity/Q4424669|http://www.wikidata.org/entity/Q4237373|http://www.wikidata.org/entity/Q4235710|http://www.wikidata.org/entity/Q4224524|http://www.wikidata.org/entity/Q4172110|http://www.wikidata.org/entity/Q4148281|http://www.wikidata.org/entity/Q4125601|http://www.wikidata.org/entity/Q25080"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1436734|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2005 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1107739"}, "Title": {"type": "literal", "value": "Coldblooded"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1400238"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1400238"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1339019|http://www.wikidata.org/entity/Q1173579|http://www.wikidata.org/entity/Q472282|http://www.wikidata.org/entity/Q462056|http://www.wikidata.org/entity/Q395274|http://www.wikidata.org/entity/Q361238|http://www.wikidata.org/entity/Q311769|http://www.wikidata.org/entity/Q271616|http://www.wikidata.org/entity/Q234967|http://www.wikidata.org/entity/Q43322|http://www.wikidata.org/entity/Q40143"}, "Published": {"type": "literal", "value": "1995"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1788980|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q16950433|http://www.wikidata.org/entity/Q2484376"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "1995 film by Wallace Wolodarsky"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1983457"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q315592"}, "Title": {"type": "literal", "value": "Four Christmases"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q524897"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7614304|http://www.wikidata.org/entity/Q7147781|http://www.wikidata.org/entity/Q6112134|http://www.wikidata.org/entity/Q2943801|http://www.wikidata.org/entity/Q2924850|http://www.wikidata.org/entity/Q1190692|http://www.wikidata.org/entity/Q713099|http://www.wikidata.org/entity/Q465571|http://www.wikidata.org/entity/Q356487|http://www.wikidata.org/entity/Q295964|http://www.wikidata.org/entity/Q235302|http://www.wikidata.org/entity/Q231811|http://www.wikidata.org/entity/Q190994|http://www.wikidata.org/entity/Q176945|http://www.wikidata.org/entity/Q171736|http://www.wikidata.org/entity/Q167520|http://www.wikidata.org/entity/Q108935|http://www.wikidata.org/entity/Q107730|http://www.wikidata.org/entity/Q44063"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2008 film by Seth Gordon"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q79202|http://www.wikidata.org/entity/Q512858"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43303293"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3894444"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2017 film by Paolo Ruffini"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3745440"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4310559"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22928635"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2827647|http://www.wikidata.org/entity/Q591801"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Khaled Marei"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60497831"}, "Title": {"type": "literal", "value": "Nobili bugie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41476289"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41476289"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3894434|http://www.wikidata.org/entity/Q3804842|http://www.wikidata.org/entity/Q315258|http://www.wikidata.org/entity/Q119598|http://www.wikidata.org/entity/Q107006|http://www.wikidata.org/entity/Q3991973|http://www.wikidata.org/entity/Q3929147"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2016 film directed by Antonio Pisu"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61586168"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5351024"}, "Title": {"type": "literal", "value": "El cielo rojo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20015283"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1135802|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Miguel Alejandro G\u00f3mez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1773883"}, "Title": {"type": "literal", "value": "Kleinstatthelden"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q57617371"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23788254"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2010 film by Marc Schaumburg"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q991440"}, "Title": {"type": "literal", "value": "Goon"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3308160"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q316756"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3875964|http://www.wikidata.org/entity/Q3177264|http://www.wikidata.org/entity/Q1529138|http://www.wikidata.org/entity/Q1357050|http://www.wikidata.org/entity/Q1258012|http://www.wikidata.org/entity/Q1189105|http://www.wikidata.org/entity/Q716169|http://www.wikidata.org/entity/Q316756|http://www.wikidata.org/entity/Q312129|http://www.wikidata.org/entity/Q298368|http://www.wikidata.org/entity/Q237781|http://www.wikidata.org/entity/Q193212"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1339864|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2011 Canadian-American film directed by Michael Dowse"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3505827"}, "Title": {"type": "literal", "value": "\u00da\u010dastn\u00edci z\u00e1jezdu"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11727279"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11727279|http://www.wikidata.org/entity/Q723275"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61690691|http://www.wikidata.org/entity/Q61043065|http://www.wikidata.org/entity/Q17312097|http://www.wikidata.org/entity/Q12051006|http://www.wikidata.org/entity/Q12035606|http://www.wikidata.org/entity/Q12034415|http://www.wikidata.org/entity/Q12023662|http://www.wikidata.org/entity/Q11774275|http://www.wikidata.org/entity/Q11719712|http://www.wikidata.org/entity/Q11218422|http://www.wikidata.org/entity/Q10853432|http://www.wikidata.org/entity/Q10791191|http://www.wikidata.org/entity/Q6438503|http://www.wikidata.org/entity/Q3490004|http://www.wikidata.org/entity/Q2356044|http://www.wikidata.org/entity/Q2324843|http://www.wikidata.org/entity/Q2064616|http://www.wikidata.org/entity/Q32787"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Ji\u0159\u00ed Vejd\u011blek"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4520222"}, "Title": {"type": "literal", "value": "\u0428\u0430\u043f\u0438\u0442\u043e-\u0448\u043e\u0443"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4264563"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4374664"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20070209|http://www.wikidata.org/entity/Q4444208|http://www.wikidata.org/entity/Q4368054|http://www.wikidata.org/entity/Q4192817|http://www.wikidata.org/entity/Q2369235"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1135802|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film directed by Sergey Loban"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4403001"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17810451"}, "Title": {"type": "literal", "value": "\u05de\u05d9\u05ea\u05d4 \u05d8\u05d5\u05d1\u05d4"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7000493"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7000493"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16128942|http://www.wikidata.org/entity/Q12411810|http://www.wikidata.org/entity/Q12410285|http://www.wikidata.org/entity/Q12409093|http://www.wikidata.org/entity/Q12406576|http://www.wikidata.org/entity/Q12403789|http://www.wikidata.org/entity/Q6980025|http://www.wikidata.org/entity/Q6597230|http://www.wikidata.org/entity/Q3161569|http://www.wikidata.org/entity/Q2599101|http://www.wikidata.org/entity/Q1229720|http://www.wikidata.org/entity/Q671640"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2014 film by Sharon Maymon"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60846366"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3340652"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Nicolas Pariser"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11386448"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11316214"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2365265|http://www.wikidata.org/entity/Q1144858|http://www.wikidata.org/entity/Q1060139"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q237338"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Yuki Tanada"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28114644"}, "Title": {"type": "literal", "value": "Deidra & Laney Rob a Train"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19865982"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Sydney Freeland"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1966713"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2663764"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2663764|http://www.wikidata.org/entity/Q6109552"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14639747|http://www.wikidata.org/entity/Q14438735|http://www.wikidata.org/entity/Q5636162|http://www.wikidata.org/entity/Q2781686|http://www.wikidata.org/entity/Q2663764|http://www.wikidata.org/entity/Q2227611|http://www.wikidata.org/entity/Q2225127|http://www.wikidata.org/entity/Q2200573|http://www.wikidata.org/entity/Q2093057|http://www.wikidata.org/entity/Q2004188|http://www.wikidata.org/entity/Q17600945"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Geoffrey Enthoven"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1265691"}, "Title": {"type": "literal", "value": "The Five-Year Engagement"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2624066"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2624066|http://www.wikidata.org/entity/Q202304"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19661595|http://www.wikidata.org/entity/Q5349376|http://www.wikidata.org/entity/Q3104324|http://www.wikidata.org/entity/Q2820073|http://www.wikidata.org/entity/Q2315802|http://www.wikidata.org/entity/Q1077635|http://www.wikidata.org/entity/Q912938|http://www.wikidata.org/entity/Q618352|http://www.wikidata.org/entity/Q539917|http://www.wikidata.org/entity/Q531195|http://www.wikidata.org/entity/Q503706|http://www.wikidata.org/entity/Q434661|http://www.wikidata.org/entity/Q373989|http://www.wikidata.org/entity/Q241897|http://www.wikidata.org/entity/Q239145|http://www.wikidata.org/entity/Q235328|http://www.wikidata.org/entity/Q215017|http://www.wikidata.org/entity/Q202304|http://www.wikidata.org/entity/Q193517"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "124"}, "Description": {"type": "literal", "value": "2012 film by Nicholas Stoller"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383|http://www.wikidata.org/entity/Q618091|http://www.wikidata.org/entity/Q2702789"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48897076"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8031978"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Wong Chun-chun"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17713411"}, "Title": {"type": "literal", "value": "Ted 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188492"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188492|http://www.wikidata.org/entity/Q6241864|http://www.wikidata.org/entity/Q4714271"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9178960|http://www.wikidata.org/entity/Q7693340|http://www.wikidata.org/entity/Q7442359|http://www.wikidata.org/entity/Q6261993|http://www.wikidata.org/entity/Q6241864|http://www.wikidata.org/entity/Q5896455|http://www.wikidata.org/entity/Q2706805|http://www.wikidata.org/entity/Q2382385|http://www.wikidata.org/entity/Q1498498|http://www.wikidata.org/entity/Q1455459|http://www.wikidata.org/entity/Q1282382|http://www.wikidata.org/entity/Q1187274|http://www.wikidata.org/entity/Q862481|http://www.wikidata.org/entity/Q723057|http://www.wikidata.org/entity/Q707759|http://www.wikidata.org/entity/Q706844|http://www.wikidata.org/entity/Q2885746|http://www.wikidata.org/entity/Q16194726|http://www.wikidata.org/entity/Q15621280|http://www.wikidata.org/entity/Q5609534|http://www.wikidata.org/entity/Q5601054|http://www.wikidata.org/entity/Q5486092|http://www.wikidata.org/entity/Q229036|http://www.wikidata.org/entity/Q224081|http://www.wikidata.org/entity/Q218718|http://www.wikidata.org/entity/Q201927|http://www.wikidata.org/entity/Q189226|http://www.wikidata.org/entity/Q188492|http://www.wikidata.org/entity/Q164119|http://www.wikidata.org/entity/Q152082|http://www.wikidata.org/entity/Q151168|http://www.wikidata.org/entity/Q58444|http://www.wikidata.org/entity/Q48337|http://www.wikidata.org/entity/Q16296|http://www.wikidata.org/entity/Q4914|http://www.wikidata.org/entity/Q4029|http://www.wikidata.org/entity/Q374346|http://www.wikidata.org/entity/Q368424|http://www.wikidata.org/entity/Q355209|http://www.wikidata.org/entity/Q350208|http://www.wikidata.org/entity/Q343564|http://www.wikidata.org/entity/Q316955|http://www.wikidata.org/entity/Q313381|http://www.wikidata.org/entity/Q233886|http://www.wikidata.org/entity/Q231576|http://www.wikidata.org/entity/Q5181365|http://www.wikidata.org/entity/Q4714271|http://www.wikidata.org/entity/Q4407963|http://www.wikidata.org/entity/Q4172513|http://www.wikidata.org/entity/Q2907990|http://www.wikidata.org/entity/Q24726582|http://www.wikidata.org/entity/Q16217365|http://www.wikidata.org/entity/Q16213883"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "2015 film by Seth MacFarlane"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q168383"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q588007"}, "Title": {"type": "literal", "value": "Baby Mama"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3308374"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3308374"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1319744|http://www.wikidata.org/entity/Q924104|http://www.wikidata.org/entity/Q726140|http://www.wikidata.org/entity/Q629696|http://www.wikidata.org/entity/Q462354|http://www.wikidata.org/entity/Q269869|http://www.wikidata.org/entity/Q235198|http://www.wikidata.org/entity/Q233027|http://www.wikidata.org/entity/Q230203|http://www.wikidata.org/entity/Q102124|http://www.wikidata.org/entity/Q16473|http://www.wikidata.org/entity/Q14540"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5442753|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2008 film by Michael McCullers"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2702789"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6427861"}, "Title": {"type": "literal", "value": "Kolpa\u00e7ino: Bomba"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8082387"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6056101|http://www.wikidata.org/entity/Q4802773"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by \u015eafak Sezer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3205021"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q899042"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q899042"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2625575|http://www.wikidata.org/entity/Q443884|http://www.wikidata.org/entity/Q441272|http://www.wikidata.org/entity/Q15676192|http://www.wikidata.org/entity/Q3416159|http://www.wikidata.org/entity/Q3351409|http://www.wikidata.org/entity/Q3334837|http://www.wikidata.org/entity/Q2980691"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Rapha\u00ebl Fejt\u00f6"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q9377354"}, "Title": {"type": "literal", "value": "Wojna \u017ce\u0144sko-m\u0119ska"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9394693"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11708569"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11766367"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by \u0141ukasz Palkowski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2415155"}, "Title": {"type": "literal", "value": "Remember the Daze"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56279044"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56279044"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4356272|http://www.wikidata.org/entity/Q3194202|http://www.wikidata.org/entity/Q2820059|http://www.wikidata.org/entity/Q2342145|http://www.wikidata.org/entity/Q1383036|http://www.wikidata.org/entity/Q1339579|http://www.wikidata.org/entity/Q1252523|http://www.wikidata.org/entity/Q449626|http://www.wikidata.org/entity/Q422310|http://www.wikidata.org/entity/Q264946|http://www.wikidata.org/entity/Q237537|http://www.wikidata.org/entity/Q236463|http://www.wikidata.org/entity/Q229914|http://www.wikidata.org/entity/Q229166|http://www.wikidata.org/entity/Q199931|http://www.wikidata.org/entity/Q152555|http://www.wikidata.org/entity/Q29328"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Jess Manafort"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5135267"}, "Title": {"type": "literal", "value": "Close to Heaven"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11774164"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11774164"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q57878252|http://www.wikidata.org/entity/Q16957126|http://www.wikidata.org/entity/Q12050232|http://www.wikidata.org/entity/Q12022103|http://www.wikidata.org/entity/Q11723048|http://www.wikidata.org/entity/Q3858922|http://www.wikidata.org/entity/Q3646680|http://www.wikidata.org/entity/Q468499"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Dan Sv\u00e1tek"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19803437"}, "Title": {"type": "literal", "value": "16 \u00fcber Nacht!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2370977"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15791708"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2224375|http://www.wikidata.org/entity/Q1682638|http://www.wikidata.org/entity/Q1478606|http://www.wikidata.org/entity/Q1457314|http://www.wikidata.org/entity/Q1327925|http://www.wikidata.org/entity/Q1001304|http://www.wikidata.org/entity/Q560789|http://www.wikidata.org/entity/Q97473|http://www.wikidata.org/entity/Q88864"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2014 film by Sven Bohse"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25999873"}, "Title": {"type": "literal", "value": "War with Grandpa"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2037657"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3530648|http://www.wikidata.org/entity/Q24951222"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q36949|http://www.wikidata.org/entity/Q20974029|http://www.wikidata.org/entity/Q185051"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 American family-comedy-drama film directed by Tim Hill"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17275678"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30890073"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15270257"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4445421|http://www.wikidata.org/entity/Q4112450|http://www.wikidata.org/entity/Q2865340"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Natalya Merkulova"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15728879"}, "Title": {"type": "literal", "value": "My Little Pony: Equestria Girls 2 \u2013 Rainbow Rocks"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15720731"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15710480"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "73"}, "Description": {"type": "literal", "value": "2014 animated film directed by Jayson Thiessen"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3783594"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28664952"}, "Title": {"type": "literal", "value": "\u041a\u043b\u0443\u0448\u0438"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2833792"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16692244"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4320202|http://www.wikidata.org/entity/Q3313664|http://www.wikidata.org/entity/Q167548"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Alexander Kott"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17415494"}, "Title": {"type": "literal", "value": "P\u00e5 B\u00f8lgelengde"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22442864"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22442864"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22442874|http://www.wikidata.org/entity/Q22283875|http://www.wikidata.org/entity/Q17107201|http://www.wikidata.org/entity/Q12009298"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2011 Norwegian film directed by Frode Nesb\u00f8 Nord\u00e5s"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5766398"}, "Title": {"type": "literal", "value": "Chiles xalape\u00f1os"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5854354"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Fabrizio Prada"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29021224"}, "Title": {"type": "literal", "value": "Bad Boys for Life"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17190262|http://www.wikidata.org/entity/Q19587511"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7173432"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41796239|http://www.wikidata.org/entity/Q350601|http://www.wikidata.org/entity/Q296883|http://www.wikidata.org/entity/Q183542|http://www.wikidata.org/entity/Q123174|http://www.wikidata.org/entity/Q40096"}, "Published": {"type": "literal", "value": "2020"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4984974|http://www.wikidata.org/entity/Q2678111|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2020 film directed by Adil El Arbi and Bilall Fallah"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17305144|http://www.wikidata.org/entity/Q186941"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q507490"}, "Title": {"type": "literal", "value": "\u0915\u0932 \u0939\u094b \u0928\u093e \u0939\u094b"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2332619"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q468442"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3632832|http://www.wikidata.org/entity/Q2341578|http://www.wikidata.org/entity/Q1628810|http://www.wikidata.org/entity/Q1612637|http://www.wikidata.org/entity/Q485557|http://www.wikidata.org/entity/Q464932|http://www.wikidata.org/entity/Q252290|http://www.wikidata.org/entity/Q188671|http://www.wikidata.org/entity/Q165816|http://www.wikidata.org/entity/Q147395|http://www.wikidata.org/entity/Q32342|http://www.wikidata.org/entity/Q9535"}, "Published": {"type": "literal", "value": "2004|2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "187"}, "Description": {"type": "literal", "value": "2003 film by Nikhil Advani"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1207592"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14826360"}, "Title": {"type": "literal", "value": "G.B.F."}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5225170"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q46998741|http://www.wikidata.org/entity/Q26084996|http://www.wikidata.org/entity/Q13565434|http://www.wikidata.org/entity/Q8044951|http://www.wikidata.org/entity/Q3023753|http://www.wikidata.org/entity/Q1927999|http://www.wikidata.org/entity/Q921470|http://www.wikidata.org/entity/Q729828|http://www.wikidata.org/entity/Q241681|http://www.wikidata.org/entity/Q238712|http://www.wikidata.org/entity/Q234207|http://www.wikidata.org/entity/Q234137|http://www.wikidata.org/entity/Q215219|http://www.wikidata.org/entity/Q211730|http://www.wikidata.org/entity/Q40473"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2013 film by Darren Stein"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5253809"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2332619"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2332619"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2017182|http://www.wikidata.org/entity/Q1992008|http://www.wikidata.org/entity/Q983043|http://www.wikidata.org/entity/Q834338|http://www.wikidata.org/entity/Q421581"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Nikhil Advani"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q47354316"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q274265"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q274265"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6786690"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2018 film directed by Ma\u0142gorzata Szumowska"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17378488"}, "Title": {"type": "literal", "value": "Recep \u0130vedik 4"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7813033"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q388027"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q388027"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Togan G\u00f6kbakar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1427730"}, "Title": {"type": "literal", "value": "Wayne's World 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3498661"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q892822|http://www.wikidata.org/entity/Q185724|http://www.wikidata.org/entity/Q2910308"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q286570|http://www.wikidata.org/entity/Q266361|http://www.wikidata.org/entity/Q229749|http://www.wikidata.org/entity/Q185724|http://www.wikidata.org/entity/Q185051|http://www.wikidata.org/entity/Q131380|http://www.wikidata.org/entity/Q126826|http://www.wikidata.org/entity/Q124357|http://www.wikidata.org/entity/Q80739|http://www.wikidata.org/entity/Q60493|http://www.wikidata.org/entity/Q16758|http://www.wikidata.org/entity/Q533414|http://www.wikidata.org/entity/Q358990|http://www.wikidata.org/entity/Q351812|http://www.wikidata.org/entity/Q345325|http://www.wikidata.org/entity/Q311752|http://www.wikidata.org/entity/Q617641|http://www.wikidata.org/entity/Q545924|http://www.wikidata.org/entity/Q5528158|http://www.wikidata.org/entity/Q3952829|http://www.wikidata.org/entity/Q3498661|http://www.wikidata.org/entity/Q1354181|http://www.wikidata.org/entity/Q1322660|http://www.wikidata.org/entity/Q888178|http://www.wikidata.org/entity/Q779151|http://www.wikidata.org/entity/Q676094"}, "Published": {"type": "literal", "value": "1994|1993"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "1993 film by Stephen Surjik"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q159846"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6092946"}, "Title": {"type": "literal", "value": "Celal Tan ve Ailesinin A\u015f\u0131r\u0131 Ac\u0131kl\u0131 Hikayesi"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6090129"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6705231|http://www.wikidata.org/entity/Q6101841|http://www.wikidata.org/entity/Q5423258"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Onur \u00dcnl\u00fc"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30668415"}, "Title": {"type": "literal", "value": "\u0baa\u0bbe\u0bb0\u0bcd\u0b9f\u0bcd\u0b9f\u0bbf"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3524112"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3524112"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3424281"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Venkat Prabhu"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22000346"}, "Title": {"type": "literal", "value": "Sin filtro"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3876520"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q872345"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Nicol\u00e1s L\u00f3pez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q642559"}, "Title": {"type": "literal", "value": "EuroTrip"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6174898|http://www.wikidata.org/entity/Q4714077|http://www.wikidata.org/entity/Q3018358"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6174898|http://www.wikidata.org/entity/Q4714077|http://www.wikidata.org/entity/Q3018358"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15821131|http://www.wikidata.org/entity/Q14917610|http://www.wikidata.org/entity/Q4382501|http://www.wikidata.org/entity/Q3858922|http://www.wikidata.org/entity/Q2870023|http://www.wikidata.org/entity/Q2602612|http://www.wikidata.org/entity/Q2546318|http://www.wikidata.org/entity/Q1189021|http://www.wikidata.org/entity/Q521891|http://www.wikidata.org/entity/Q456358|http://www.wikidata.org/entity/Q434291|http://www.wikidata.org/entity/Q377072|http://www.wikidata.org/entity/Q320204|http://www.wikidata.org/entity/Q296822|http://www.wikidata.org/entity/Q271627|http://www.wikidata.org/entity/Q254886|http://www.wikidata.org/entity/Q229528|http://www.wikidata.org/entity/Q449947|http://www.wikidata.org/entity/Q215565|http://www.wikidata.org/entity/Q213824|http://www.wikidata.org/entity/Q201927|http://www.wikidata.org/entity/Q133112|http://www.wikidata.org/entity/Q96191|http://www.wikidata.org/entity/Q14535|http://www.wikidata.org/entity/Q195718|http://www.wikidata.org/entity/Q175535"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2004 film by Jeff Schaffer"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7752106"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17351649"}, "Title": {"type": "literal", "value": "\u05d0\u05e4\u05e1 \u05d1\u05d9\u05d7\u05e1\u05d9 \u05d0\u05e0\u05d5\u05e9"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18001820"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18001820"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7044447|http://www.wikidata.org/entity/Q6829702|http://www.wikidata.org/entity/Q3573301|http://www.wikidata.org/entity/Q528853|http://www.wikidata.org/entity/Q18091356|http://www.wikidata.org/entity/Q16131653|http://www.wikidata.org/entity/Q16128945|http://www.wikidata.org/entity/Q7068724|http://www.wikidata.org/entity/Q7047796"}, "Published": {"type": "literal", "value": "2016|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2014 film directed by Talya Lavie"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18669866"}, "Title": {"type": "literal", "value": "Dirty Grandpa"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1159118"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22958604|http://www.wikidata.org/entity/Q15679593|http://www.wikidata.org/entity/Q6163031|http://www.wikidata.org/entity/Q5407903|http://www.wikidata.org/entity/Q457034|http://www.wikidata.org/entity/Q432973|http://www.wikidata.org/entity/Q363386|http://www.wikidata.org/entity/Q350589|http://www.wikidata.org/entity/Q232646|http://www.wikidata.org/entity/Q218279|http://www.wikidata.org/entity/Q210547|http://www.wikidata.org/entity/Q192165|http://www.wikidata.org/entity/Q45229|http://www.wikidata.org/entity/Q36949"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2016 American comedy film directed by Dan Mazer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17071483"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17073575"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6035995|http://www.wikidata.org/entity/Q277422"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Mamas K. Chandran"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3898441"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3838542|http://www.wikidata.org/entity/Q447156"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3961164|http://www.wikidata.org/entity/Q3838542|http://www.wikidata.org/entity/Q3619161|http://www.wikidata.org/entity/Q3609301|http://www.wikidata.org/entity/Q3605677|http://www.wikidata.org/entity/Q1085599|http://www.wikidata.org/entity/Q743887|http://www.wikidata.org/entity/Q459396|http://www.wikidata.org/entity/Q440033"}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "121"}, "Description": {"type": "literal", "value": "1999 film by Mariano Laurenti, Luciano Caldore"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4855224"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16139519"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4918726|http://www.wikidata.org/entity/Q1087544"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Adisorn Tresirikasem"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27590807"}, "Title": {"type": "literal", "value": "Arctic Justice: Thunder Squad"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14645232"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14645232|http://www.wikidata.org/entity/Q23553923|http://www.wikidata.org/entity/Q16198106"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28968258|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Aaron Woodley"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21998350"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4881302"}, "Title": {"type": "literal", "value": "Being Michael Madsen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22279262"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q220584"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Michael Mongillo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43208788"}, "Title": {"type": "literal", "value": "The Extraordinary Journey Of The Fakir"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1410263"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3264745"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16236368|http://www.wikidata.org/entity/Q15381644|http://www.wikidata.org/entity/Q2821516|http://www.wikidata.org/entity/Q816568|http://www.wikidata.org/entity/Q728158|http://www.wikidata.org/entity/Q331050|http://www.wikidata.org/entity/Q28487"}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2017 film by Marjane Satrapi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14541928"}, "Title": {"type": "literal", "value": "Par\u00e1dn\u011b pokecal"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q43371305"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q43371305"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q43371305|http://www.wikidata.org/entity/Q18070526|http://www.wikidata.org/entity/Q17067219|http://www.wikidata.org/entity/Q12036129|http://www.wikidata.org/entity/Q12034388|http://www.wikidata.org/entity/Q12023435|http://www.wikidata.org/entity/Q11878252|http://www.wikidata.org/entity/Q10823043|http://www.wikidata.org/entity/Q3505255|http://www.wikidata.org/entity/Q3292493"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "75"}, "Description": {"type": "literal", "value": "2014 film by Tom\u00e1\u0161 Pavl\u00ed\u010dek"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48950557"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28368075"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28368075"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4534682|http://www.wikidata.org/entity/Q4406527|http://www.wikidata.org/entity/Q4399708|http://www.wikidata.org/entity/Q4237365|http://www.wikidata.org/entity/Q4235873|http://www.wikidata.org/entity/Q4143504|http://www.wikidata.org/entity/Q4141796|http://www.wikidata.org/entity/Q4132834"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "75"}, "Description": {"type": "literal", "value": "film directed by Leonid Margolin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17998997"}, "Title": {"type": "literal", "value": "Otok ljubavi"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q83487"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12719957|http://www.wikidata.org/entity/Q12633599|http://www.wikidata.org/entity/Q6524769|http://www.wikidata.org/entity/Q3228849|http://www.wikidata.org/entity/Q1254803|http://www.wikidata.org/entity/Q438820|http://www.wikidata.org/entity/Q311716|http://www.wikidata.org/entity/Q13081846|http://www.wikidata.org/entity/Q12749301"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Jasmile \u017dbani\u0107"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q62566132"}, "Title": {"type": "literal", "value": "Mann im Spagat"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1486110"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15623309|http://www.wikidata.org/entity/Q2021008|http://www.wikidata.org/entity/Q1486110|http://www.wikidata.org/entity/Q1100074|http://www.wikidata.org/entity/Q879073|http://www.wikidata.org/entity/Q103579|http://www.wikidata.org/entity/Q65511"}, "Published": {"type": "literal", "value": "2017|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2016 film by Timo Jacobs"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24611747"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q58002138"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21183528|http://www.wikidata.org/entity/Q18008998|http://www.wikidata.org/entity/Q4442491|http://www.wikidata.org/entity/Q4347806|http://www.wikidata.org/entity/Q2373179|http://www.wikidata.org/entity/Q558666|http://www.wikidata.org/entity/Q247846"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2016 film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1323594"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28087918"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1806295"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2641871"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2016 film by Lars Montag"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2935739"}, "Title": {"type": "literal", "value": "Begin Again"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3181205"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3181205"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18684260|http://www.wikidata.org/entity/Q4830761|http://www.wikidata.org/entity/Q767499|http://www.wikidata.org/entity/Q438992|http://www.wikidata.org/entity/Q344567|http://www.wikidata.org/entity/Q231726|http://www.wikidata.org/entity/Q230378|http://www.wikidata.org/entity/Q219631|http://www.wikidata.org/entity/Q42581|http://www.wikidata.org/entity/Q41422|http://www.wikidata.org/entity/Q38875|http://www.wikidata.org/entity/Q4042"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2013 film directed by John Carney"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1138789|http://www.wikidata.org/entity/Q18154751|http://www.wikidata.org/entity/Q23017119"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20649371"}, "Title": {"type": "literal", "value": "Goon: Last of the Enforcers"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q316756"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q316756"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15542608|http://www.wikidata.org/entity/Q13570507|http://www.wikidata.org/entity/Q11309114|http://www.wikidata.org/entity/Q1529138|http://www.wikidata.org/entity/Q1258012|http://www.wikidata.org/entity/Q1189105|http://www.wikidata.org/entity/Q1148822|http://www.wikidata.org/entity/Q716169|http://www.wikidata.org/entity/Q551558|http://www.wikidata.org/entity/Q316756|http://www.wikidata.org/entity/Q298368|http://www.wikidata.org/entity/Q237781|http://www.wikidata.org/entity/Q193212|http://www.wikidata.org/entity/Q188500"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1339864|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Jay Baruchel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19263995"}, "Title": {"type": "literal", "value": "Tangerine|Tangerine"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7441419"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7441419"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21596656|http://www.wikidata.org/entity/Q21596659|http://www.wikidata.org/entity/Q44273|http://www.wikidata.org/entity/Q977095|http://www.wikidata.org/entity/Q943390"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2015 film by Sean S. Baker"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q325077"}, "Title": {"type": "literal", "value": "1\u00bd Ritter \u2013 Auf der Suche nach der hinrei\u00dfenden Herzelinde"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17253608|http://www.wikidata.org/entity/Q57391"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2020663"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2434366|http://www.wikidata.org/entity/Q2087712|http://www.wikidata.org/entity/Q1937361|http://www.wikidata.org/entity/Q1747632|http://www.wikidata.org/entity/Q1704038|http://www.wikidata.org/entity/Q1554211|http://www.wikidata.org/entity/Q1545055|http://www.wikidata.org/entity/Q1097451|http://www.wikidata.org/entity/Q1067500|http://www.wikidata.org/entity/Q220461|http://www.wikidata.org/entity/Q203806|http://www.wikidata.org/entity/Q114624|http://www.wikidata.org/entity/Q110710|http://www.wikidata.org/entity/Q102990|http://www.wikidata.org/entity/Q97717|http://www.wikidata.org/entity/Q96086|http://www.wikidata.org/entity/Q78641|http://www.wikidata.org/entity/Q22687781|http://www.wikidata.org/entity/Q21209197|http://www.wikidata.org/entity/Q78367|http://www.wikidata.org/entity/Q78006|http://www.wikidata.org/entity/Q77777|http://www.wikidata.org/entity/Q77035|http://www.wikidata.org/entity/Q76128|http://www.wikidata.org/entity/Q75187|http://www.wikidata.org/entity/Q72611|http://www.wikidata.org/entity/Q70808|http://www.wikidata.org/entity/Q68084|http://www.wikidata.org/entity/Q67917|http://www.wikidata.org/entity/Q63033|http://www.wikidata.org/entity/Q62352|http://www.wikidata.org/entity/Q57391|http://www.wikidata.org/entity/Q45387"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "2008 film by Til Schweiger"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q126399"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11765865"}, "Title": {"type": "literal", "value": "Made in Poland"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3408710"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192881"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Przemys\u0142aw Wojcieszek"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1475765"}, "Title": {"type": "literal", "value": "Police Academy 4: Citizens on Patrol"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6194719"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1339176"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q849641|http://www.wikidata.org/entity/Q768677|http://www.wikidata.org/entity/Q708595|http://www.wikidata.org/entity/Q526365|http://www.wikidata.org/entity/Q523958|http://www.wikidata.org/entity/Q522533|http://www.wikidata.org/entity/Q445253|http://www.wikidata.org/entity/Q444284|http://www.wikidata.org/entity/Q381046|http://www.wikidata.org/entity/Q369424|http://www.wikidata.org/entity/Q318938|http://www.wikidata.org/entity/Q318685|http://www.wikidata.org/entity/Q298658|http://www.wikidata.org/entity/Q279225|http://www.wikidata.org/entity/Q265333|http://www.wikidata.org/entity/Q176945|http://www.wikidata.org/entity/Q62975|http://www.wikidata.org/entity/Q19663780|http://www.wikidata.org/entity/Q3982518|http://www.wikidata.org/entity/Q3023744|http://www.wikidata.org/entity/Q2903550|http://www.wikidata.org/entity/Q1391108|http://www.wikidata.org/entity/Q971344"}, "Published": {"type": "literal", "value": "1987"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "1987 film by Jim Drake"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q126399"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22665878"}, "Title": {"type": "literal", "value": "Thor: Ragnarok"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2388576"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5181136|http://www.wikidata.org/entity/Q5113482|http://www.wikidata.org/entity/Q42244196"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q54314"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q628165|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q2678111|http://www.wikidata.org/entity/Q1535153|http://www.wikidata.org/entity/Q2973181"}, "Duration": {"type": "literal", "value": "130"}, "Description": {"type": "literal", "value": "2017 superhero film produced by Marvel Studios"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1323594|http://www.wikidata.org/entity/Q367466"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28173261"}, "Title": {"type": "literal", "value": "The Star"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7807482"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q28026639"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2017 film by Timothy Reckart"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1637250|http://www.wikidata.org/entity/Q2914692|http://www.wikidata.org/entity/Q4688987|http://www.wikidata.org/entity/Q186941|http://www.wikidata.org/entity/Q1416835"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q39736092"}, "Title": {"type": "literal", "value": "Blind & H\u00e4sslich"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1478871"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1478871"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21032079|http://www.wikidata.org/entity/Q16061625|http://www.wikidata.org/entity/Q15990501|http://www.wikidata.org/entity/Q15907175|http://www.wikidata.org/entity/Q15822029|http://www.wikidata.org/entity/Q15820682|http://www.wikidata.org/entity/Q15784859|http://www.wikidata.org/entity/Q2157388|http://www.wikidata.org/entity/Q1580454|http://www.wikidata.org/entity/Q1478871|http://www.wikidata.org/entity/Q1223694|http://www.wikidata.org/entity/Q1163254|http://www.wikidata.org/entity/Q461724|http://www.wikidata.org/entity/Q96937|http://www.wikidata.org/entity/Q90374"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2017 film by Tom Lass"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1262452"}, "Title": {"type": "literal", "value": "\u091c\u093e\u0928\u0947 \u0924\u0942 \u092f\u093e \u091c\u093e\u0928\u0947 \u0928\u093e"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2820242"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2820242"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2364996|http://www.wikidata.org/entity/Q312781|http://www.wikidata.org/entity/Q63730"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "155"}, "Description": {"type": "literal", "value": "2008 film by Abbas Tyrewala"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2820005"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10427785"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5896780"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5896780"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2012 film by Karzan Kader"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7319867"}, "Title": {"type": "literal", "value": "Rezerwat"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9394693"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9339532"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by \u0141ukasz Palkowski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17011725"}, "Title": {"type": "literal", "value": "Sex After Kids"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23882167"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23882167"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Jeremy Lalonde"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7228593"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16728026"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16728026"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11056386|http://www.wikidata.org/entity/Q3536811"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Veerabhadram Chowdary"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28736927"}, "Title": {"type": "literal", "value": "Coexister"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3063963"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3063963"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3418669"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Fabrice \u00c9bou\u00e9"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1375196"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q53470370"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028394"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028394"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Antoine Desrosi\u00e8res"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17154837"}, "Title": {"type": "literal", "value": "Ast\u00e9rix: Le Domaine des dieux"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61875074|http://www.wikidata.org/entity/Q2833411"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2833411"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2014 French-Belgian 3D computer animated adventure family comedy film directed by Alexandre Astier"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1881062"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21009118"}, "Title": {"type": "literal", "value": "L'\u00c9tudiante et Monsieur Henri"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3156075"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3156075"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q106544"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2015 film by Ivan Calb\u00e9rac"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16410759"}, "Title": {"type": "literal", "value": "Jan Uusp\u00f5ld l\u00e4heb Tartusse"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12359148"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Andres Maimik"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4154027"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4077105"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4343990"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Ruslan Balttser"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q57587682"}, "Title": {"type": "literal", "value": "Skin Creepers"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1386089"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1386089"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q104371"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Ezra Tsegaye"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24705264"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6177291"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q369747|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2016 film by Jen Heck"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q59964749"}, "Title": {"type": "literal", "value": "Swingers"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q468517"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12327175|http://www.wikidata.org/entity/Q11884411|http://www.wikidata.org/entity/Q468517"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11898057|http://www.wikidata.org/entity/Q11882539|http://www.wikidata.org/entity/Q11880982|http://www.wikidata.org/entity/Q11871841|http://www.wikidata.org/entity/Q5375691|http://www.wikidata.org/entity/Q3313763|http://www.wikidata.org/entity/Q3299182|http://www.wikidata.org/entity/Q3183562|http://www.wikidata.org/entity/Q26720311|http://www.wikidata.org/entity/Q16990337"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film directed by Pamela Tola"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11854643"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55593651"}, "Title": {"type": "literal", "value": "\u041a\u043e\u0440\u043e\u0442\u043a\u0438\u0435 \u0432\u043e\u043b\u043d\u044b"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q42296268"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q42296268"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27927321|http://www.wikidata.org/entity/Q4539548|http://www.wikidata.org/entity/Q1688694"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q224133"}, "Title": {"type": "literal", "value": "30 Minutes or Less"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q521691"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q350714|http://www.wikidata.org/entity/Q336400|http://www.wikidata.org/entity/Q247088|http://www.wikidata.org/entity/Q219512|http://www.wikidata.org/entity/Q113431|http://www.wikidata.org/entity/Q15832826|http://www.wikidata.org/entity/Q4962181|http://www.wikidata.org/entity/Q984077|http://www.wikidata.org/entity/Q369482|http://www.wikidata.org/entity/Q359488"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2678111|http://www.wikidata.org/entity/Q1200678|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "83"}, "Description": {"type": "literal", "value": "2011 film by Ruben Fleischer"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q186941|http://www.wikidata.org/entity/Q2856187|http://www.wikidata.org/entity/Q7304367"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5004118"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3162772|http://www.wikidata.org/entity/Q722137"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28976038|http://www.wikidata.org/entity/Q3162772"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q31933536|http://www.wikidata.org/entity/Q15730021|http://www.wikidata.org/entity/Q12054281|http://www.wikidata.org/entity/Q12050932|http://www.wikidata.org/entity/Q12050166|http://www.wikidata.org/entity/Q12044114|http://www.wikidata.org/entity/Q12042457|http://www.wikidata.org/entity/Q12037934|http://www.wikidata.org/entity/Q12036810|http://www.wikidata.org/entity/Q12035874|http://www.wikidata.org/entity/Q12023655|http://www.wikidata.org/entity/Q12023459|http://www.wikidata.org/entity/Q12022576|http://www.wikidata.org/entity/Q12008907|http://www.wikidata.org/entity/Q10854033|http://www.wikidata.org/entity/Q10854022|http://www.wikidata.org/entity/Q7820613|http://www.wikidata.org/entity/Q6376034|http://www.wikidata.org/entity/Q5126954|http://www.wikidata.org/entity/Q3090526|http://www.wikidata.org/entity/Q2356044|http://www.wikidata.org/entity/Q2354248|http://www.wikidata.org/entity/Q2173011|http://www.wikidata.org/entity/Q2064639|http://www.wikidata.org/entity/Q1930399|http://www.wikidata.org/entity/Q444097|http://www.wikidata.org/entity/Q430017"}, "Published": {"type": "literal", "value": "1995"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1995 film by Jaroslav Soukup"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26720603"}, "Title": {"type": "literal", "value": "Ingrid Goes West"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27685115"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28595298|http://www.wikidata.org/entity/Q27685115"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19667862|http://www.wikidata.org/entity/Q15542608|http://www.wikidata.org/entity/Q3395911|http://www.wikidata.org/entity/Q794599|http://www.wikidata.org/entity/Q234644|http://www.wikidata.org/entity/Q210547"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2017 American comedy-drama film directed by Matt Spicer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25136772"}, "Title": {"type": "literal", "value": "Dreamland"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2001430"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Robert Coppola Schwartzman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19059800"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2452247"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2839854"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Jon Karthaus"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16530861"}, "Title": {"type": "literal", "value": "Babysitting"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3380121|http://www.wikidata.org/entity/Q3340086"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17175096|http://www.wikidata.org/entity/Q3380121"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3379789|http://www.wikidata.org/entity/Q3379440|http://www.wikidata.org/entity/Q3118479|http://www.wikidata.org/entity/Q3018751|http://www.wikidata.org/entity/Q3018364|http://www.wikidata.org/entity/Q2960978|http://www.wikidata.org/entity/Q2836561|http://www.wikidata.org/entity/Q2833411|http://www.wikidata.org/entity/Q728158|http://www.wikidata.org/entity/Q443516|http://www.wikidata.org/entity/Q28105126|http://www.wikidata.org/entity/Q17175096|http://www.wikidata.org/entity/Q16832036|http://www.wikidata.org/entity/Q15973762|http://www.wikidata.org/entity/Q3559579|http://www.wikidata.org/entity/Q3380121"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q3272147"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2014 French film by Nicolas Benamou, Philippe Lacheau"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22100100"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q703779"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22774261|http://www.wikidata.org/entity/Q9370539|http://www.wikidata.org/entity/Q7967359|http://www.wikidata.org/entity/Q7820932"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1200678|http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "136"}, "Description": {"type": "literal", "value": "2015 film by Chen Sicheng"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24206373|http://www.wikidata.org/entity/Q24895635|http://www.wikidata.org/entity/Q27694781"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q63248374"}, "Title": {"type": "literal", "value": "Bad Trip"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q63546532"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2394603"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21067271|http://www.wikidata.org/entity/Q5386029"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 comedy film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q891732"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q113149"}, "Title": {"type": "literal", "value": "Take This Waltz"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q234212"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q234212"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4661797|http://www.wikidata.org/entity/Q3181396|http://www.wikidata.org/entity/Q2820018|http://www.wikidata.org/entity/Q1315493|http://www.wikidata.org/entity/Q655762|http://www.wikidata.org/entity/Q229013|http://www.wikidata.org/entity/Q220308|http://www.wikidata.org/entity/Q156796"}, "Published": {"type": "literal", "value": "2013|2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "116"}, "Description": {"type": "literal", "value": "2011 film by Sarah Polley"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q186941"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23899211"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3509959"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3509959"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16670062"}, "Published": {"type": "literal", "value": "2017|2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by S\u00e9bastien Betbeder"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3991078"}, "Title": {"type": "literal", "value": "Ti stimo fratello"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3768343"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3768343"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3978317|http://www.wikidata.org/entity/Q3851381|http://www.wikidata.org/entity/Q3768343|http://www.wikidata.org/entity/Q3707258|http://www.wikidata.org/entity/Q3660210|http://www.wikidata.org/entity/Q3637342|http://www.wikidata.org/entity/Q3608096|http://www.wikidata.org/entity/Q3362666|http://www.wikidata.org/entity/Q3301697|http://www.wikidata.org/entity/Q34922"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2012 film by Giovanni Vernia"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3683611"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q641492"}, "Title": {"type": "literal", "value": "Herbie: Fully Loaded"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q459542"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1319539|http://www.wikidata.org/entity/Q1074029|http://www.wikidata.org/entity/Q622651|http://www.wikidata.org/entity/Q548479"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q138005|http://www.wikidata.org/entity/Q44903|http://www.wikidata.org/entity/Q217238|http://www.wikidata.org/entity/Q193070|http://www.wikidata.org/entity/Q18638563|http://www.wikidata.org/entity/Q2830641|http://www.wikidata.org/entity/Q2469967|http://www.wikidata.org/entity/Q1387836|http://www.wikidata.org/entity/Q1319539|http://www.wikidata.org/entity/Q1189470|http://www.wikidata.org/entity/Q1095544|http://www.wikidata.org/entity/Q946087|http://www.wikidata.org/entity/Q818078|http://www.wikidata.org/entity/Q566037|http://www.wikidata.org/entity/Q548479|http://www.wikidata.org/entity/Q439070|http://www.wikidata.org/entity/Q380127|http://www.wikidata.org/entity/Q360674|http://www.wikidata.org/entity/Q313565|http://www.wikidata.org/entity/Q298672|http://www.wikidata.org/entity/Q275246|http://www.wikidata.org/entity/Q272917"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2005 American comedy film directed by Angela Robinson"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17343522|http://www.wikidata.org/entity/Q191224"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17400618"}, "Title": {"type": "literal", "value": "Kvinnen i mitt liv"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11957305"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7790021"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by Alexander Eik"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q990490"}, "Title": {"type": "literal", "value": "Neun Szenen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1223694"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1223694|http://www.wikidata.org/entity/Q96937"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2006 film by Dietrich Br\u00fcggemann"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q461684"}, "Title": {"type": "literal", "value": "M\u00e4dchen, M\u00e4dchen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60766"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1884029|http://www.wikidata.org/entity/Q1082448"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16440266|http://www.wikidata.org/entity/Q1759048|http://www.wikidata.org/entity/Q1708406|http://www.wikidata.org/entity/Q1676742|http://www.wikidata.org/entity/Q1330248|http://www.wikidata.org/entity/Q1018220|http://www.wikidata.org/entity/Q556857|http://www.wikidata.org/entity/Q95368|http://www.wikidata.org/entity/Q89484|http://www.wikidata.org/entity/Q78766|http://www.wikidata.org/entity/Q76172|http://www.wikidata.org/entity/Q66027|http://www.wikidata.org/entity/Q64823|http://www.wikidata.org/entity/Q63003|http://www.wikidata.org/entity/Q61099|http://www.wikidata.org/entity/Q60766"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2001 film by Dennis Gansel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17479299"}, "Title": {"type": "literal", "value": "Tutta colpa della SIP"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1313474"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1313474"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1988"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "1988 film directed by Gianfranco Bullo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12127154"}, "Title": {"type": "literal", "value": "Ride Along"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2005037"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3116203"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q295233|http://www.wikidata.org/entity/Q193048|http://www.wikidata.org/entity/Q173637|http://www.wikidata.org/entity/Q748404|http://www.wikidata.org/entity/Q618352|http://www.wikidata.org/entity/Q447960|http://www.wikidata.org/entity/Q3076630|http://www.wikidata.org/entity/Q1139526|http://www.wikidata.org/entity/Q971145"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q4984974|http://www.wikidata.org/entity/Q663106"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2014 action comedy film by Tim Story"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7284877"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16144100"}, "Title": {"type": "literal", "value": "5x Favela - Agora por N\u00f3s Mesmos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16939601"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2010 film by Cacau Amaral"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7078976"}, "Title": {"type": "literal", "value": "Off the Ledge"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4974466"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6968881|http://www.wikidata.org/entity/Q2518113"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Brooke Mikey Anderson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42561120"}, "Title": {"type": "literal", "value": "Smetto quando voglio - Ad honorem"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16611774"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16611774"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2017 film by Sydney Sibilia"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3739211"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q32067415"}, "Title": {"type": "literal", "value": "Action Point"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7803777"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16844704"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q295034"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Tim Kirkby"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16838897"}, "Title": {"type": "literal", "value": "Get Santa"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q966124"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q966124"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q185079"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2014 film by Christopher Smith"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3476213"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28497242"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3340065"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Nicolas Bary"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19060256"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18176063"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16175177"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q490918"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Jeong Gi-hun"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55106047"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12611857"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6406891"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7931370"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7931370"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7585694|http://www.wikidata.org/entity/Q7410100|http://www.wikidata.org/entity/Q7296358|http://www.wikidata.org/entity/Q4806897|http://www.wikidata.org/entity/Q4699975"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 Malayalam film directed by Vinay Govind"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17479273"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20056585"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20056585"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2014 film by Gabriele Pignotta"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2167073"}, "Title": {"type": "literal", "value": "Rosencrantz and Guildenstern Are Undead"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q337578"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q337578"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q230817|http://www.wikidata.org/entity/Q1338401|http://www.wikidata.org/entity/Q720777"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2137852|http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2009 film by Jordan Galland"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4655076"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11426076"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12606859|http://www.wikidata.org/entity/Q1064542"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q599558|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2012 film by Hideo J\u014dj\u014d"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1621289"}, "Title": {"type": "literal", "value": "Sie haben Knut"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2336829"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q109834"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2097122|http://www.wikidata.org/entity/Q125372|http://www.wikidata.org/entity/Q86919|http://www.wikidata.org/entity/Q77758|http://www.wikidata.org/entity/Q68448"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "107"}, "Description": {"type": "literal", "value": "2003 film by Stefan Krohmer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1008801"}, "Title": {"type": "literal", "value": "\u0c05\u0c26\u0c41\u0c30\u0c4d\u0c38\u0c4d"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7906291"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6428713|http://www.wikidata.org/entity/Q7906291"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7429093|http://www.wikidata.org/entity/Q7282980|http://www.wikidata.org/entity/Q6428971|http://www.wikidata.org/entity/Q3765029|http://www.wikidata.org/entity/Q3595538|http://www.wikidata.org/entity/Q3595438|http://www.wikidata.org/entity/Q3521977|http://www.wikidata.org/entity/Q3498996|http://www.wikidata.org/entity/Q3089275|http://www.wikidata.org/entity/Q2876219|http://www.wikidata.org/entity/Q2748319|http://www.wikidata.org/entity/Q15298330|http://www.wikidata.org/entity/Q7994331|http://www.wikidata.org/entity/Q7920464|http://www.wikidata.org/entity/Q7683304|http://www.wikidata.org/entity/Q7492340"}, "Published": {"type": "literal", "value": "2010|2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1150666|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 Telugu film directed by V. V. Vinayak"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4768004"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q963323"}, "Title": {"type": "literal", "value": "Norberto apenas tarde"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2272014"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2272014"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17566626|http://www.wikidata.org/entity/Q5850378"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2010 film by Daniel Hendler"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q44484831"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14252646"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Nawell Madani"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4905679"}, "Title": {"type": "literal", "value": "Big Fellas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7184290"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5611881|http://www.wikidata.org/entity/Q5562832"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Philip Roberts"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3010450"}, "Title": {"type": "literal", "value": "Hit and Run"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q56285770|http://www.wikidata.org/entity/Q462354"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q462354"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7611767|http://www.wikidata.org/entity/Q720754|http://www.wikidata.org/entity/Q462354|http://www.wikidata.org/entity/Q353755|http://www.wikidata.org/entity/Q311613|http://www.wikidata.org/entity/Q309640|http://www.wikidata.org/entity/Q284636|http://www.wikidata.org/entity/Q267422|http://www.wikidata.org/entity/Q231811|http://www.wikidata.org/entity/Q223033|http://www.wikidata.org/entity/Q205707|http://www.wikidata.org/entity/Q178882|http://www.wikidata.org/entity/Q164328"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 American action comedy film directed by David Palmer and Dax Shepard"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20724384"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55598540"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55598540"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q289032"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Marie Belhomme"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4299853"}, "Title": {"type": "literal", "value": "Foster"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6274003"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6274003"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5209690|http://www.wikidata.org/entity/Q2290416|http://www.wikidata.org/entity/Q380856|http://www.wikidata.org/entity/Q295974|http://www.wikidata.org/entity/Q237805|http://www.wikidata.org/entity/Q229291"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2011 television film directed by Jonathan Newman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12180635"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12213023"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q353690"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Rami Imam"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13553877"}, "Title": {"type": "literal", "value": "La Fille du 14 juillet"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14833406"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14833406"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14609928|http://www.wikidata.org/entity/Q3559719|http://www.wikidata.org/entity/Q3559331|http://www.wikidata.org/entity/Q3379937|http://www.wikidata.org/entity/Q1569147|http://www.wikidata.org/entity/Q993671"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 French film directed by Antonin Peretjatko"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2412059"}, "Title": {"type": "literal", "value": "Clockwatchers"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3808290"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3808290"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1678770|http://www.wikidata.org/entity/Q708097|http://www.wikidata.org/entity/Q621490|http://www.wikidata.org/entity/Q547801|http://www.wikidata.org/entity/Q467709|http://www.wikidata.org/entity/Q355133|http://www.wikidata.org/entity/Q256144|http://www.wikidata.org/entity/Q229291|http://www.wikidata.org/entity/Q204586|http://www.wikidata.org/entity/Q179041|http://www.wikidata.org/entity/Q60422|http://www.wikidata.org/entity/Q15489819|http://www.wikidata.org/entity/Q7072015|http://www.wikidata.org/entity/Q2830641|http://www.wikidata.org/entity/Q2683767"}, "Published": {"type": "literal", "value": "1998|1997"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1997 film by Jill Sprecher"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2138792"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27044987"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27044988"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q645928|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q93204"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2016 film by Chris Goodwin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16699697"}, "Title": {"type": "literal", "value": "\u0421\u043e\u0440\u043e\u0447\u0438\u043d\u0441\u043a\u0430\u044f \u044f\u0440\u043c\u0430\u0440\u043a\u0430"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4173781"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4173781"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4172541|http://www.wikidata.org/entity/Q2391534|http://www.wikidata.org/entity/Q275875|http://www.wikidata.org/entity/Q43137"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q2743"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2004 film by Semyon Gorov"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22671149"}, "Title": {"type": "literal", "value": "La Vache"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028520"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23021082|http://www.wikidata.org/entity/Q16028520|http://www.wikidata.org/entity/Q2404088"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23021082|http://www.wikidata.org/entity/Q312661|http://www.wikidata.org/entity/Q115735"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2016 film by Mohamed Hamidi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q164951"}, "Title": {"type": "literal", "value": "Solino"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q77061"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1520844"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3639389|http://www.wikidata.org/entity/Q2437312|http://www.wikidata.org/entity/Q2129710|http://www.wikidata.org/entity/Q2076077|http://www.wikidata.org/entity/Q1778862|http://www.wikidata.org/entity/Q1611949|http://www.wikidata.org/entity/Q1523693|http://www.wikidata.org/entity/Q1437173|http://www.wikidata.org/entity/Q1283065|http://www.wikidata.org/entity/Q1082059|http://www.wikidata.org/entity/Q500913|http://www.wikidata.org/entity/Q455007|http://www.wikidata.org/entity/Q333190|http://www.wikidata.org/entity/Q111267|http://www.wikidata.org/entity/Q102833|http://www.wikidata.org/entity/Q84414|http://www.wikidata.org/entity/Q72883|http://www.wikidata.org/entity/Q58603|http://www.wikidata.org/entity/Q36107|http://www.wikidata.org/entity/Q21189003|http://www.wikidata.org/entity/Q3751367|http://www.wikidata.org/entity/Q3702372"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "124"}, "Description": {"type": "literal", "value": "2002 film by Fatih Ak\u0131n"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5916271"}, "Title": {"type": "literal", "value": "Housos vs. Authority"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7150609"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7150609"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6110025"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Paul Fenech"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2559560"}, "Title": {"type": "literal", "value": "Me and You and Everyone We Know"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q256671"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q256671"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6204076|http://www.wikidata.org/entity/Q4957028|http://www.wikidata.org/entity/Q1963890|http://www.wikidata.org/entity/Q641408|http://www.wikidata.org/entity/Q459384|http://www.wikidata.org/entity/Q453774|http://www.wikidata.org/entity/Q256671"}, "Published": {"type": "literal", "value": "2006|2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2005 American romantic comedy-drama film directed by Miranda July"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1108255"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q44069111"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2526855"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15557950"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1966"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "1966 film by Vincenzo Cascino"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30067999"}, "Title": {"type": "literal", "value": "\u092c\u093f\u0930 \u092c\u093f\u0915\u094d\u0930\u092e|Bir Bikram"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30070289"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16734870"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "t1427861025"}, "Description": {"type": "literal", "value": "2016 Nepalese blockbuster film directed by Milan Chams"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10975963"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12250381"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6370538"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Wael Ehsan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11751120"}, "Title": {"type": "literal", "value": "Kup teraz"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11817800"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11817800"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11817800"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Piotr Matwiejczyk"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20856878"}, "Title": {"type": "literal", "value": "Demon"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10827785"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10827785"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1675238|http://www.wikidata.org/entity/Q514958"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2015 film by Marcin Wrona"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17093259"}, "Title": {"type": "literal", "value": "Land Ho!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16210586|http://www.wikidata.org/entity/Q4662138"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film directed by Martha Stephens and Aaron Katz"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17636311"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16028205"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q951025|http://www.wikidata.org/entity/Q291521|http://www.wikidata.org/entity/Q242526"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Sylvie Ohayon"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12006724"}, "Title": {"type": "literal", "value": "Tommys inferno"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22269507"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22269507"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17194694|http://www.wikidata.org/entity/Q17097163|http://www.wikidata.org/entity/Q11995178|http://www.wikidata.org/entity/Q11991504|http://www.wikidata.org/entity/Q11982752|http://www.wikidata.org/entity/Q11958332|http://www.wikidata.org/entity/Q4764329|http://www.wikidata.org/entity/Q4580829|http://www.wikidata.org/entity/Q3720735|http://www.wikidata.org/entity/Q3356840"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2005 Norwegian film directed by Ove Raymond Gylden\u00e5s"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22269313"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1532274"}, "Title": {"type": "literal", "value": "El abrazo partido"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1160223"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1160223"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28746810|http://www.wikidata.org/entity/Q28465997|http://www.wikidata.org/entity/Q27921941|http://www.wikidata.org/entity/Q16274750|http://www.wikidata.org/entity/Q9048206|http://www.wikidata.org/entity/Q6812438|http://www.wikidata.org/entity/Q6300538|http://www.wikidata.org/entity/Q6277892|http://www.wikidata.org/entity/Q6128626|http://www.wikidata.org/entity/Q6117401|http://www.wikidata.org/entity/Q5806279|http://www.wikidata.org/entity/Q5710826|http://www.wikidata.org/entity/Q5397172|http://www.wikidata.org/entity/Q2887161|http://www.wikidata.org/entity/Q2272014"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2004 film by Daniel Burman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61978152"}, "Title": {"type": "literal", "value": "Turbo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5239955"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1339864|http://www.wikidata.org/entity/Q202866|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2013 animated film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q500088"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5574988"}, "Title": {"type": "literal", "value": "Go for Broke"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6169127"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6169127"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22943994|http://www.wikidata.org/entity/Q6169127|http://www.wikidata.org/entity/Q3307977|http://www.wikidata.org/entity/Q3023394|http://www.wikidata.org/entity/Q724868|http://www.wikidata.org/entity/Q594738|http://www.wikidata.org/entity/Q311241|http://www.wikidata.org/entity/Q39972"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Jean-Claude La Marre"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12429398"}, "Title": {"type": "literal", "value": "\u091c\u094b\u0915\u0930"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3959623"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3959623"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2726196|http://www.wikidata.org/entity/Q614907|http://www.wikidata.org/entity/Q365007|http://www.wikidata.org/entity/Q233748"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2012 film by Shirish Kunder"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15046565"}, "Title": {"type": "literal", "value": "Lovesick"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6702134"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3051228|http://www.wikidata.org/entity/Q761697|http://www.wikidata.org/entity/Q435839|http://www.wikidata.org/entity/Q350746|http://www.wikidata.org/entity/Q310926|http://www.wikidata.org/entity/Q267400|http://www.wikidata.org/entity/Q234096|http://www.wikidata.org/entity/Q201994|http://www.wikidata.org/entity/Q186896"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Luke Matheny"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q964350"}, "Title": {"type": "literal", "value": "Puff, Puff, Pass"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q119676"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7366020|http://www.wikidata.org/entity/Q6460949|http://www.wikidata.org/entity/Q432973|http://www.wikidata.org/entity/Q374220|http://www.wikidata.org/entity/Q358306|http://www.wikidata.org/entity/Q316032|http://www.wikidata.org/entity/Q271464|http://www.wikidata.org/entity/Q198638|http://www.wikidata.org/entity/Q119676"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Mekhi Phifer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43182044"}, "Title": {"type": "literal", "value": "27: El club de los malditos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24960799"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24960799|http://www.wikidata.org/entity/Q778865"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5798126|http://www.wikidata.org/entity/Q5274602|http://www.wikidata.org/entity/Q4310171|http://www.wikidata.org/entity/Q3394200|http://www.wikidata.org/entity/Q533571|http://www.wikidata.org/entity/Q175991"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157394|http://www.wikidata.org/entity/Q53094"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2018 film by Nicanor Loreti"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3818482"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3972430"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3972430|http://www.wikidata.org/entity/Q1008634"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3849352|http://www.wikidata.org/entity/Q3659538|http://www.wikidata.org/entity/Q3610339|http://www.wikidata.org/entity/Q1008634|http://www.wikidata.org/entity/Q556039|http://www.wikidata.org/entity/Q49026"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2008 film by Stefano Chiantini"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23654294"}, "Title": {"type": "literal", "value": "All I want for Christmas"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3128032"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10366878|http://www.wikidata.org/entity/Q7347286|http://www.wikidata.org/entity/Q6201072|http://www.wikidata.org/entity/Q1139435|http://www.wikidata.org/entity/Q900426|http://www.wikidata.org/entity/Q740511|http://www.wikidata.org/entity/Q437799|http://www.wikidata.org/entity/Q290103|http://www.wikidata.org/entity/Q270743"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28026639|http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2007 film by Harvey Frost"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2519061"}, "Title": {"type": "literal", "value": "Sweet Valentine"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19545053"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16682309"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16682309|http://www.wikidata.org/entity/Q3479397|http://www.wikidata.org/entity/Q3106155|http://www.wikidata.org/entity/Q2964192|http://www.wikidata.org/entity/Q2582571|http://www.wikidata.org/entity/Q721337|http://www.wikidata.org/entity/Q269873"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 French film directed by Emma Luchini"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27957927"}, "Title": {"type": "literal", "value": "Tully"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q314502"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q230795"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16337574|http://www.wikidata.org/entity/Q16238721|http://www.wikidata.org/entity/Q3273787|http://www.wikidata.org/entity/Q528126|http://www.wikidata.org/entity/Q80046"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2018 film by Jason Reitman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q649649|http://www.wikidata.org/entity/Q16954085|http://www.wikidata.org/entity/Q23016773"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26708840"}, "Title": {"type": "literal", "value": "Doggie Heaven"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q374286"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by James Wan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4499335"}, "Title": {"type": "literal", "value": "Cold Souls"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3490844"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3490844"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22212873|http://www.wikidata.org/entity/Q310318|http://www.wikidata.org/entity/Q268298|http://www.wikidata.org/entity/Q232098|http://www.wikidata.org/entity/Q229535|http://www.wikidata.org/entity/Q208649"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2009 film by Sophie Barthes"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12229413"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12213023"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12249717"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Rami Imam"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3279058"}, "Title": {"type": "literal", "value": "Drake & Josh: Really Big Shrimp"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2237602|http://www.wikidata.org/entity/Q261812"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q444344|http://www.wikidata.org/entity/Q349928|http://www.wikidata.org/entity/Q311779|http://www.wikidata.org/entity/Q263737|http://www.wikidata.org/entity/Q261812|http://www.wikidata.org/entity/Q5104"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Drake Bell, Steve Hoefer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25136684"}, "Title": {"type": "literal", "value": "The Lie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q679110"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1378842"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3104324|http://www.wikidata.org/entity/Q2838329|http://www.wikidata.org/entity/Q2646925|http://www.wikidata.org/entity/Q1378842|http://www.wikidata.org/entity/Q1091285|http://www.wikidata.org/entity/Q679110|http://www.wikidata.org/entity/Q466051|http://www.wikidata.org/entity/Q440302|http://www.wikidata.org/entity/Q264996|http://www.wikidata.org/entity/Q44273"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Joshua Leonard"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2893674"}, "Title": {"type": "literal", "value": "\u0401\u043b\u043a\u0438 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4222061|http://www.wikidata.org/entity/Q4130936|http://www.wikidata.org/entity/Q4077720|http://www.wikidata.org/entity/Q2833792"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7510890|http://www.wikidata.org/entity/Q4317349|http://www.wikidata.org/entity/Q344854"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3479732|http://www.wikidata.org/entity/Q1966992|http://www.wikidata.org/entity/Q442830|http://www.wikidata.org/entity/Q282818"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2011 film by Dmitriy Kiselev"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2892410"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60040457"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60199216|http://www.wikidata.org/entity/Q90384"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6042909|http://www.wikidata.org/entity/Q1396278|http://www.wikidata.org/entity/Q90384"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "science fiction film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48671382"}, "Title": {"type": "literal", "value": "Good Posture"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5289370"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5289370"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q44416691|http://www.wikidata.org/entity/Q28957276|http://www.wikidata.org/entity/Q16241504|http://www.wikidata.org/entity/Q7806781|http://www.wikidata.org/entity/Q5484158|http://www.wikidata.org/entity/Q4391317|http://www.wikidata.org/entity/Q1279993|http://www.wikidata.org/entity/Q1249010|http://www.wikidata.org/entity/Q230308"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "film directed by Dolly Wells"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18112021"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7544363"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q379157"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Smeep Kang"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6933585"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18529992"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2338332|http://www.wikidata.org/entity/Q1826953|http://www.wikidata.org/entity/Q938613"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "1999 film by Stefano Bambini, Lino D\u2019Angi\u00f2, Alan De Luca"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56402968"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3735074"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Aleksi Salmenper\u00e4"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1370934"}, "Title": {"type": "literal", "value": "Fatso"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11958682"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11958682|http://www.wikidata.org/entity/Q7710835"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17100163|http://www.wikidata.org/entity/Q11991481|http://www.wikidata.org/entity/Q11982752|http://www.wikidata.org/entity/Q4569518|http://www.wikidata.org/entity/Q521487"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1257444|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2008 Norwegian film directed by Arild Fr\u00f6hlich"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22260745"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18378994"}, "Title": {"type": "literal", "value": "Bridge and Tunnel"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6163110"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6163110"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Jason Michael Brescia"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16318968"}, "Title": {"type": "literal", "value": "Tristesse Club"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29052800"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29052800"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3559719|http://www.wikidata.org/entity/Q3380605|http://www.wikidata.org/entity/Q3219319|http://www.wikidata.org/entity/Q2850968|http://www.wikidata.org/entity/Q1238309|http://www.wikidata.org/entity/Q440609|http://www.wikidata.org/entity/Q233742|http://www.wikidata.org/entity/Q18633968"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Vincent Mariette"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q42427934"}, "Title": {"type": "literal", "value": "Minu n\u00e4oga onu"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12366619|http://www.wikidata.org/entity/Q12359148"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16407064|http://www.wikidata.org/entity/Q12374189|http://www.wikidata.org/entity/Q12362505"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Andres Maimik"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q58971925"}, "Title": {"type": "literal", "value": "L'ospite"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18170234"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23857249|http://www.wikidata.org/entity/Q18170234|http://www.wikidata.org/entity/Q3938128|http://www.wikidata.org/entity/Q56296150"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3617662|http://www.wikidata.org/entity/Q21207691|http://www.wikidata.org/entity/Q3990763"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2018 film by Duccio Chiarini"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q798613"}, "Title": {"type": "literal", "value": "Mon idole"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q314403"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6292322|http://www.wikidata.org/entity/Q3380199|http://www.wikidata.org/entity/Q314403"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17377232|http://www.wikidata.org/entity/Q16185220|http://www.wikidata.org/entity/Q3591288|http://www.wikidata.org/entity/Q3380199|http://www.wikidata.org/entity/Q3380140|http://www.wikidata.org/entity/Q3219319|http://www.wikidata.org/entity/Q3157743|http://www.wikidata.org/entity/Q2966467|http://www.wikidata.org/entity/Q2863129|http://www.wikidata.org/entity/Q2848938|http://www.wikidata.org/entity/Q965873|http://www.wikidata.org/entity/Q949391|http://www.wikidata.org/entity/Q576085|http://www.wikidata.org/entity/Q552639|http://www.wikidata.org/entity/Q535127|http://www.wikidata.org/entity/Q466991|http://www.wikidata.org/entity/Q443516|http://www.wikidata.org/entity/Q314403|http://www.wikidata.org/entity/Q57118"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "110"}, "Description": {"type": "literal", "value": "2002 film by Guillaume Canet"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3071502"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28146958"}, "Title": {"type": "literal", "value": "Fletcher and Jenks"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28140054"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28528756"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28563563|http://www.wikidata.org/entity/Q28140026"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "7"}, "Description": {"type": "literal", "value": "2016 short film by Tony Olmos"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28485489"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18674922"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16989960"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Marja Pyykk\u00f6"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56241654"}, "Title": {"type": "literal", "value": "Todas para uno"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16302557"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Harold Trompetero"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11320214"}, "Title": {"type": "literal", "value": "D\u00eds"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16425993"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Silja Hauksd\u00f3ttir"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27964571"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7933508"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7933508"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7645142"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Vipul Mehta"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q21643356"}, "Title": {"type": "literal", "value": "Sex & Crime"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23197748"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1097434|http://www.wikidata.org/entity/Q113799|http://www.wikidata.org/entity/Q104094|http://www.wikidata.org/entity/Q102709|http://www.wikidata.org/entity/Q90820|http://www.wikidata.org/entity/Q74258"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "2016 German film directed by Paul Florian M\u00fcller"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2771452"}, "Title": {"type": "literal", "value": "Jezus is een Palestijn"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2657944"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2100206|http://www.wikidata.org/entity/Q1235490|http://www.wikidata.org/entity/Q388679"}, "Published": {"type": "literal", "value": "2000|1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1999 film by Lodewijk Crijns"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1847868"}, "Title": {"type": "literal", "value": "Everyone's Hero"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5144905|http://www.wikidata.org/entity/Q174311|http://www.wikidata.org/entity/Q5218823"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q287607|http://www.wikidata.org/entity/Q267097|http://www.wikidata.org/entity/Q235685|http://www.wikidata.org/entity/Q224159|http://www.wikidata.org/entity/Q188648|http://www.wikidata.org/entity/Q182763|http://www.wikidata.org/entity/Q49001|http://www.wikidata.org/entity/Q707804|http://www.wikidata.org/entity/Q449959|http://www.wikidata.org/entity/Q313545|http://www.wikidata.org/entity/Q312521|http://www.wikidata.org/entity/Q310493"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2006 film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3304113"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4410010"}, "Title": {"type": "literal", "value": "\u0421\u0432\u0430\u0442\u044b 2"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4536851"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Andrey Yakovlev"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15042128"}, "Title": {"type": "literal", "value": "O Concurso"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7159986"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10286900"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2013 film by Pedro Vasconcellos"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24659706"}, "Title": {"type": "literal", "value": "Looking: The Movie"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2846620"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19202167|http://www.wikidata.org/entity/Q2846620"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19661595|http://www.wikidata.org/entity/Q19609557|http://www.wikidata.org/entity/Q18921514|http://www.wikidata.org/entity/Q6939119|http://www.wikidata.org/entity/Q1160718|http://www.wikidata.org/entity/Q716998|http://www.wikidata.org/entity/Q556644"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2016 television film directed by Andrew Haigh"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17592289"}, "Title": {"type": "literal", "value": "Silvi"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18026371"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "97"}, "Description": {"type": "literal", "value": "2013 film by Nico Sommer"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14948585"}, "Title": {"type": "literal", "value": "Plastic"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1253831"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1253831|http://www.wikidata.org/entity/Q16218494|http://www.wikidata.org/entity/Q7396645"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q242104|http://www.wikidata.org/entity/Q233474|http://www.wikidata.org/entity/Q167774|http://www.wikidata.org/entity/Q57614|http://www.wikidata.org/entity/Q6809611|http://www.wikidata.org/entity/Q5372939|http://www.wikidata.org/entity/Q4805390|http://www.wikidata.org/entity/Q2823942|http://www.wikidata.org/entity/Q1655655|http://www.wikidata.org/entity/Q1319882|http://www.wikidata.org/entity/Q973762|http://www.wikidata.org/entity/Q609464|http://www.wikidata.org/entity/Q552026|http://www.wikidata.org/entity/Q523420|http://www.wikidata.org/entity/Q454481|http://www.wikidata.org/entity/Q345038"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q496523|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q2678111"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2014 British action comedy-crime film directed by Julian Gilbey"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5527238"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20001462"}, "Title": {"type": "literal", "value": "Popstar: Never Stop Never Stopping|Popstar: Sem Parar, Sem Limites"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q545634|http://www.wikidata.org/entity/Q419466"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q419466|http://www.wikidata.org/entity/Q545634|http://www.wikidata.org/entity/Q314640"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5090122|http://www.wikidata.org/entity/Q1322660|http://www.wikidata.org/entity/Q1319744|http://www.wikidata.org/entity/Q784009|http://www.wikidata.org/entity/Q21032133|http://www.wikidata.org/entity/Q7612835|http://www.wikidata.org/entity/Q7153461|http://www.wikidata.org/entity/Q5576465|http://www.wikidata.org/entity/Q5386029|http://www.wikidata.org/entity/Q2632|http://www.wikidata.org/entity/Q616982|http://www.wikidata.org/entity/Q545634|http://www.wikidata.org/entity/Q449531|http://www.wikidata.org/entity/Q419466|http://www.wikidata.org/entity/Q372559|http://www.wikidata.org/entity/Q355116|http://www.wikidata.org/entity/Q335680|http://www.wikidata.org/entity/Q322915|http://www.wikidata.org/entity/Q314640|http://www.wikidata.org/entity/Q229013|http://www.wikidata.org/entity/Q272946|http://www.wikidata.org/entity/Q52447|http://www.wikidata.org/entity/Q43432|http://www.wikidata.org/entity/Q41076|http://www.wikidata.org/entity/Q14537|http://www.wikidata.org/entity/Q8349|http://www.wikidata.org/entity/Q6096|http://www.wikidata.org/entity/Q6060|http://www.wikidata.org/entity/Q184572|http://www.wikidata.org/entity/Q165911|http://www.wikidata.org/entity/Q162629|http://www.wikidata.org/entity/Q160009|http://www.wikidata.org/entity/Q263024|http://www.wikidata.org/entity/Q237012|http://www.wikidata.org/entity/Q236527|http://www.wikidata.org/entity/Q233061|http://www.wikidata.org/entity/Q219631|http://www.wikidata.org/entity/Q218091|http://www.wikidata.org/entity/Q215546|http://www.wikidata.org/entity/Q214227|http://www.wikidata.org/entity/Q194220|http://www.wikidata.org/entity/Q147077"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2016 American mockumentary comedy film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q618091"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17450842"}, "Title": {"type": "literal", "value": "Mc Dandik"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6075603"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Ragga Oktay"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13469360"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13445909"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Luigi Cecinelli"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7897087"}, "Title": {"type": "literal", "value": "Unmade Beds"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2834494"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5796995|http://www.wikidata.org/entity/Q2262485|http://www.wikidata.org/entity/Q239498"}, "Published": {"type": "literal", "value": "2010|2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Alexis Dos Santos"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5492613"}, "Title": {"type": "literal", "value": "Franti\u0161ek je d\u011bvka\u0159"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15042966"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15042966"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23767040|http://www.wikidata.org/entity/Q18746143|http://www.wikidata.org/entity/Q17312097|http://www.wikidata.org/entity/Q12045111|http://www.wikidata.org/entity/Q12035516|http://www.wikidata.org/entity/Q12033020|http://www.wikidata.org/entity/Q12026516|http://www.wikidata.org/entity/Q11052902|http://www.wikidata.org/entity/Q10861555|http://www.wikidata.org/entity/Q3646680|http://www.wikidata.org/entity/Q3496566|http://www.wikidata.org/entity/Q1449324|http://www.wikidata.org/entity/Q168916|http://www.wikidata.org/entity/Q32787"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2008 film by Jan Pru\u0161inovsk\u00fd"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4901653"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7399012"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7285873|http://www.wikidata.org/entity/Q3595440|http://www.wikidata.org/entity/Q3595187|http://www.wikidata.org/entity/Q3181904|http://www.wikidata.org/entity/Q929422"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Sagar Ballary"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12126738"}, "Title": {"type": "literal", "value": "On the Ropes"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6769057"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6769057"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6769057|http://www.wikidata.org/entity/Q4886460"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1339864|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Mark Noyce"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q759928"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1176505"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q167090"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q167090"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 television film directed by David Schalko"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8073"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1073297"}, "Title": {"type": "literal", "value": "Kontroll"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q771774"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q771774"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9255590|http://www.wikidata.org/entity/Q1293524|http://www.wikidata.org/entity/Q1286036|http://www.wikidata.org/entity/Q1236180|http://www.wikidata.org/entity/Q1212670|http://www.wikidata.org/entity/Q1120300|http://www.wikidata.org/entity/Q875366|http://www.wikidata.org/entity/Q853217|http://www.wikidata.org/entity/Q821377|http://www.wikidata.org/entity/Q788367|http://www.wikidata.org/entity/Q733755|http://www.wikidata.org/entity/Q714954|http://www.wikidata.org/entity/Q635640|http://www.wikidata.org/entity/Q222704"}, "Published": {"type": "literal", "value": "2005|2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2003 Hungarian film directed by Nimr\u00f3d Antal"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18633960"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2906097"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2906097"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3350865"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Blandine Lenoir"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3905599"}, "Title": {"type": "literal", "value": "Pirates of Treasure Island"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q705047"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7817001|http://www.wikidata.org/entity/Q4236621|http://www.wikidata.org/entity/Q705047|http://www.wikidata.org/entity/Q312077"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2006 film by Leigh Scott"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1459090"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18703094"}, "Title": {"type": "literal", "value": "Captain Fantastic"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1190406"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1190406"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q271986|http://www.wikidata.org/entity/Q233786|http://www.wikidata.org/entity/Q171363|http://www.wikidata.org/entity/Q4767833|http://www.wikidata.org/entity/Q2558129|http://www.wikidata.org/entity/Q491775|http://www.wikidata.org/entity/Q310944"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q1054574"}, "Duration": {"type": "literal", "value": "118"}, "Description": {"type": "literal", "value": "2016 film by Matt Ross"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q54152498"}, "Title": {"type": "literal", "value": "Back for Good"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q45352058"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Mia Spengler"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q115749"}, "Title": {"type": "literal", "value": "\u0e01\u0e27\u0e19 \u0e21\u0e36\u0e19 \u0e42\u0e2e"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q636817"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4919112"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Banjong Pisanthanakun"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5395573"}, "Title": {"type": "literal", "value": "Perico Ripiao"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28028515"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26250785"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4237364"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13218075|http://www.wikidata.org/entity/Q4526492|http://www.wikidata.org/entity/Q4228271"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "96"}, "Description": {"type": "literal", "value": "2016 film by Marija Krawtschenko"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4504080"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6378736"}, "Title": {"type": "literal", "value": "Free Birds"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3808425"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q354010"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q663106|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2013 American 3D computer-animated buddy comedy film directed by Jimmy Hayward"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7306853"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25433007"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6564971"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Afshin Hashemi"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28496979"}, "Title": {"type": "literal", "value": "Mutafukaz"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11629499|http://www.wikidata.org/entity/Q3453195"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3453195"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2484376|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94|90"}, "Description": {"type": "literal", "value": "2017 Franco-Japanese animated film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q182361|http://www.wikidata.org/entity/Q24937949"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14755359"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5875129"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2828957"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "film directed by Hamed Kolahdari"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q911520"}, "Title": {"type": "literal", "value": "The Switch"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24204|http://www.wikidata.org/entity/Q8003113"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4730790"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q106706|http://www.wikidata.org/entity/Q32522|http://www.wikidata.org/entity/Q20727848|http://www.wikidata.org/entity/Q8003135|http://www.wikidata.org/entity/Q7436297|http://www.wikidata.org/entity/Q4078477|http://www.wikidata.org/entity/Q2438469|http://www.wikidata.org/entity/Q1255263|http://www.wikidata.org/entity/Q435183|http://www.wikidata.org/entity/Q351290|http://www.wikidata.org/entity/Q284636|http://www.wikidata.org/entity/Q230523"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "101"}, "Description": {"type": "literal", "value": "2010 film by Josh Gordon, Will Speck"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5368270"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1133772"}, "Title": {"type": "literal", "value": "Napoleon Dynamite"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2480656"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3177537|http://www.wikidata.org/entity/Q2480656"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5372405|http://www.wikidata.org/entity/Q3482458|http://www.wikidata.org/entity/Q2745996|http://www.wikidata.org/entity/Q1319770|http://www.wikidata.org/entity/Q969305|http://www.wikidata.org/entity/Q527402|http://www.wikidata.org/entity/Q449947|http://www.wikidata.org/entity/Q392370|http://www.wikidata.org/entity/Q392126|http://www.wikidata.org/entity/Q234321|http://www.wikidata.org/entity/Q229038"}, "Published": {"type": "literal", "value": "2006|2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "2004 film by Jared Hess"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q159846|http://www.wikidata.org/entity/Q953040|http://www.wikidata.org/entity/Q1111024|http://www.wikidata.org/entity/Q2330632"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5564453"}, "Title": {"type": "literal", "value": "Girl Walks into a Bar"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3476873"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3476873"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16830404|http://www.wikidata.org/entity/Q5525271|http://www.wikidata.org/entity/Q367155|http://www.wikidata.org/entity/Q361610|http://www.wikidata.org/entity/Q360313|http://www.wikidata.org/entity/Q321770|http://www.wikidata.org/entity/Q311517|http://www.wikidata.org/entity/Q303957|http://www.wikidata.org/entity/Q298173|http://www.wikidata.org/entity/Q262182|http://www.wikidata.org/entity/Q233707|http://www.wikidata.org/entity/Q228871|http://www.wikidata.org/entity/Q228692|http://www.wikidata.org/entity/Q192887|http://www.wikidata.org/entity/Q139642|http://www.wikidata.org/entity/Q133820|http://www.wikidata.org/entity/Q26806"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Sebastian Gutierrez"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q35919|http://www.wikidata.org/entity/Q6184876"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q63213666"}, "Title": {"type": "literal", "value": "La Belle \u00c9poque"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q741655"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q741655"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1930523|http://www.wikidata.org/entity/Q1328973|http://www.wikidata.org/entity/Q1187592|http://www.wikidata.org/entity/Q642952|http://www.wikidata.org/entity/Q314403|http://www.wikidata.org/entity/Q123135|http://www.wikidata.org/entity/Q106349|http://www.wikidata.org/entity/Q106303|http://www.wikidata.org/entity/Q17173840|http://www.wikidata.org/entity/Q15970719|http://www.wikidata.org/entity/Q3385026|http://www.wikidata.org/entity/Q3037010"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Nicolas Bedos"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3232650"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6095528"}, "Title": {"type": "literal", "value": "Qu\u00e9 pena tu familia"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3876520"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Nicol\u00e1s L\u00f3pez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q621493"}, "Title": {"type": "literal", "value": "Observe and Report"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1691304"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1691304"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18666096|http://www.wikidata.org/entity/Q5213110|http://www.wikidata.org/entity/Q3218835|http://www.wikidata.org/entity/Q2604240|http://www.wikidata.org/entity/Q1138674|http://www.wikidata.org/entity/Q816440|http://www.wikidata.org/entity/Q374065|http://www.wikidata.org/entity/Q369482|http://www.wikidata.org/entity/Q359488|http://www.wikidata.org/entity/Q336400|http://www.wikidata.org/entity/Q289931|http://www.wikidata.org/entity/Q220308|http://www.wikidata.org/entity/Q211280|http://www.wikidata.org/entity/Q4491"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2009 film by Jody Hill"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q621364"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2126333"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20895357"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2193799"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192881"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Remy van Heugten"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3076144"}, "Title": {"type": "literal", "value": "Women in Trouble"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3476873"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3476873"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1026018|http://www.wikidata.org/entity/Q450219|http://www.wikidata.org/entity/Q298173|http://www.wikidata.org/entity/Q262278|http://www.wikidata.org/entity/Q242451|http://www.wikidata.org/entity/Q235519|http://www.wikidata.org/entity/Q235072|http://www.wikidata.org/entity/Q234809|http://www.wikidata.org/entity/Q228871|http://www.wikidata.org/entity/Q192021|http://www.wikidata.org/entity/Q177311|http://www.wikidata.org/entity/Q129831|http://www.wikidata.org/entity/Q41396"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Sebastian Gutierrez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19835423"}, "Title": {"type": "literal", "value": "Bestefreunde"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23394645|http://www.wikidata.org/entity/Q1702949"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21517831|http://www.wikidata.org/entity/Q19644769|http://www.wikidata.org/entity/Q19513797|http://www.wikidata.org/entity/Q18543092|http://www.wikidata.org/entity/Q2803266|http://www.wikidata.org/entity/Q2263101|http://www.wikidata.org/entity/Q1755401|http://www.wikidata.org/entity/Q1736008|http://www.wikidata.org/entity/Q1669869|http://www.wikidata.org/entity/Q1271849|http://www.wikidata.org/entity/Q879361|http://www.wikidata.org/entity/Q110455|http://www.wikidata.org/entity/Q78121"}, "Published": {"type": "literal", "value": "2015|2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2014 film by Jonas Grosch, Carlos Val"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6164662"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17180936"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17180936"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13116685|http://www.wikidata.org/entity/Q4901125|http://www.wikidata.org/entity/Q2190510"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Kedar Shinde"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q807818"}, "Title": {"type": "literal", "value": "Barbershop"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2005037"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q691227"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6473264|http://www.wikidata.org/entity/Q2002151|http://www.wikidata.org/entity/Q959052|http://www.wikidata.org/entity/Q918866|http://www.wikidata.org/entity/Q786003|http://www.wikidata.org/entity/Q492327|http://www.wikidata.org/entity/Q370918|http://www.wikidata.org/entity/Q313918|http://www.wikidata.org/entity/Q239464|http://www.wikidata.org/entity/Q173637"}, "Published": {"type": "literal", "value": "2003|2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2002 film by Tim Story"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q179200|http://www.wikidata.org/entity/Q17387250"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6018359"}, "Title": {"type": "literal", "value": "Signora Enrica"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19610488"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19610488"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6067678|http://www.wikidata.org/entity/Q107006|http://www.wikidata.org/entity/Q77665|http://www.wikidata.org/entity/Q8080207|http://www.wikidata.org/entity/Q6852801|http://www.wikidata.org/entity/Q6082171"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Ali \u0130lhan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18401829"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4400034"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4400034"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3015088|http://www.wikidata.org/entity/Q167548"}, "Published": {"type": "literal", "value": "2016|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2015 film by Pavel Ruminov"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61002332"}, "Title": {"type": "literal", "value": "K\u00f6lcs\u00f6nlak\u00e1s"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q443466"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2659732|http://www.wikidata.org/entity/Q939790"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Kata Dob\u00f3"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11791207"}, "Title": {"type": "literal", "value": "Nie panikuj!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9174981"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9174981"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9282182"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Bodo Kox"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14970681"}, "Title": {"type": "literal", "value": "10 pravidel jak sbalit holku"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12028282"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12028282|http://www.wikidata.org/entity/Q1879810|http://www.wikidata.org/entity/Q1140352"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23054723|http://www.wikidata.org/entity/Q12769716|http://www.wikidata.org/entity/Q12058704|http://www.wikidata.org/entity/Q12032655|http://www.wikidata.org/entity/Q12028282|http://www.wikidata.org/entity/Q12022477|http://www.wikidata.org/entity/Q12022294|http://www.wikidata.org/entity/Q11879923|http://www.wikidata.org/entity/Q10853489|http://www.wikidata.org/entity/Q6787760|http://www.wikidata.org/entity/Q555628"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Karel Jan\u00e1k"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15709915"}, "Title": {"type": "literal", "value": "\u0411\u044b\u0441\u0442\u0440\u0435\u0435, \u0447\u0435\u043c \u043a\u0440\u043e\u043b\u0438\u043a\u0438"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4171916"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4494681|http://www.wikidata.org/entity/Q4077949"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4494681|http://www.wikidata.org/entity/Q4254527|http://www.wikidata.org/entity/Q4245104|http://www.wikidata.org/entity/Q4193375|http://www.wikidata.org/entity/Q4157470|http://www.wikidata.org/entity/Q4077949|http://www.wikidata.org/entity/Q2029106"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Dmitriy Dyachenko"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15839083"}, "Title": {"type": "literal", "value": "La mafia uccide solo d\u2019estate"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3904894"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3846260|http://www.wikidata.org/entity/Q3904894"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1993073|http://www.wikidata.org/entity/Q291413|http://www.wikidata.org/entity/Q16487926|http://www.wikidata.org/entity/Q3904894|http://www.wikidata.org/entity/Q3852645|http://www.wikidata.org/entity/Q3712957|http://www.wikidata.org/entity/Q3680061|http://www.wikidata.org/entity/Q3634692"}, "Published": {"type": "literal", "value": "2013|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2013 film directed by Pif"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4019806|http://www.wikidata.org/entity/Q3929491"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q8452990"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15042966"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28804044|http://www.wikidata.org/entity/Q15042966"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q33436049|http://www.wikidata.org/entity/Q33436012|http://www.wikidata.org/entity/Q33435887|http://www.wikidata.org/entity/Q14917610|http://www.wikidata.org/entity/Q12044352|http://www.wikidata.org/entity/Q12044114|http://www.wikidata.org/entity/Q12041042|http://www.wikidata.org/entity/Q12035516|http://www.wikidata.org/entity/Q12033020|http://www.wikidata.org/entity/Q12032493|http://www.wikidata.org/entity/Q12024203|http://www.wikidata.org/entity/Q12024009|http://www.wikidata.org/entity/Q12022549|http://www.wikidata.org/entity/Q11985744|http://www.wikidata.org/entity/Q11985642|http://www.wikidata.org/entity/Q11774384|http://www.wikidata.org/entity/Q10769440|http://www.wikidata.org/entity/Q3563221|http://www.wikidata.org/entity/Q3490854|http://www.wikidata.org/entity/Q32787"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1339864|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Jan Pru\u0161inovsk\u00fd"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7766214"}, "Title": {"type": "literal", "value": "The Stand Up"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5240999"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q403902|http://www.wikidata.org/entity/Q240206|http://www.wikidata.org/entity/Q1189378"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by David Wexler"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1306433"}, "Title": {"type": "literal", "value": "Eine Insel namens Udo"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1901804"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q110569"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2011 film by Markus Sehr"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7112943"}, "Title": {"type": "literal", "value": "Outside Bet"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7396645"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11849729|http://www.wikidata.org/entity/Q915916|http://www.wikidata.org/entity/Q234883|http://www.wikidata.org/entity/Q211283"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Sacha Bennett"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15878944"}, "Title": {"type": "literal", "value": "M.A.N."}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q42315866"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q42315866"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4952999|http://www.wikidata.org/entity/Q2832711|http://www.wikidata.org/entity/Q2629719|http://www.wikidata.org/entity/Q2625699|http://www.wikidata.org/entity/Q2508984|http://www.wikidata.org/entity/Q1235490|http://www.wikidata.org/entity/Q82302"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2009 film directed by Robert Matser"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2605395"}, "Title": {"type": "literal", "value": "Moving McAllister"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2846563"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6780492|http://www.wikidata.org/entity/Q562257|http://www.wikidata.org/entity/Q542810|http://www.wikidata.org/entity/Q446968|http://www.wikidata.org/entity/Q392370|http://www.wikidata.org/entity/Q318231|http://www.wikidata.org/entity/Q213574|http://www.wikidata.org/entity/Q139906|http://www.wikidata.org/entity/Q37628"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Andrew Black"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5102945"}, "Title": {"type": "literal", "value": "Chlorine"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6166319"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q229572"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Jay Alaimo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q45394"}, "Title": {"type": "literal", "value": "The Cabin in the Woods"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q922368"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q922368|http://www.wikidata.org/entity/Q298025"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q54314|http://www.wikidata.org/entity/Q40046|http://www.wikidata.org/entity/Q434572|http://www.wikidata.org/entity/Q352180|http://www.wikidata.org/entity/Q313043|http://www.wikidata.org/entity/Q152773|http://www.wikidata.org/entity/Q144785|http://www.wikidata.org/entity/Q102124|http://www.wikidata.org/entity/Q15288220|http://www.wikidata.org/entity/Q7704857|http://www.wikidata.org/entity/Q3900877|http://www.wikidata.org/entity/Q3013171|http://www.wikidata.org/entity/Q2464295|http://www.wikidata.org/entity/Q2405582|http://www.wikidata.org/entity/Q2240987|http://www.wikidata.org/entity/Q1762270|http://www.wikidata.org/entity/Q1320939|http://www.wikidata.org/entity/Q1069031|http://www.wikidata.org/entity/Q955080|http://www.wikidata.org/entity/Q512751"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1342372|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q471839|http://www.wikidata.org/entity/Q3072049|http://www.wikidata.org/entity/Q224700"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2012 film by Drew Goddard"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q219400|http://www.wikidata.org/entity/Q645478|http://www.wikidata.org/entity/Q179200"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2411031"}, "Title": {"type": "literal", "value": "The Elder Son"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4102539"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4102539|http://www.wikidata.org/entity/Q1706297"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1421824|http://www.wikidata.org/entity/Q451894|http://www.wikidata.org/entity/Q434291|http://www.wikidata.org/entity/Q239415|http://www.wikidata.org/entity/Q235141|http://www.wikidata.org/entity/Q229228"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q192881|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2006 film by Marius Vaisbergas"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q31197355"}, "Title": {"type": "literal", "value": "\u05d4\u05d0\u05d5\u05e6\u05e8 \u05de\u05e2\u05d1\u05e8 \u05dc\u05e0\u05d4\u05e8"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6781975"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12403899"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "82"}, "Description": {"type": "literal", "value": "2016 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3820055"}, "Title": {"type": "literal", "value": "L'uomo in pi\u00f9"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q374678"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q374678"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3972275|http://www.wikidata.org/entity/Q3941338|http://www.wikidata.org/entity/Q3938749|http://www.wikidata.org/entity/Q3899378|http://www.wikidata.org/entity/Q3874482|http://www.wikidata.org/entity/Q3850566|http://www.wikidata.org/entity/Q3804389|http://www.wikidata.org/entity/Q3741928|http://www.wikidata.org/entity/Q3725569|http://www.wikidata.org/entity/Q3681203|http://www.wikidata.org/entity/Q3615988|http://www.wikidata.org/entity/Q3615833|http://www.wikidata.org/entity/Q2849376|http://www.wikidata.org/entity/Q1993073|http://www.wikidata.org/entity/Q603089"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2001 film by Paolo Sorrentino"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q56260843"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27656966"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7246507|http://www.wikidata.org/entity/Q17517127"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "Nepalese film directed by Deepa Shree Niraula"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6690863"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7146964"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7146964"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q724246"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Patrick Kong"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15961712"}, "Title": {"type": "literal", "value": "The Stag"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q30123055"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2655230"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2013 film by John Butler"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q44935"}, "Title": {"type": "literal", "value": "New York, I Love You"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1708588|http://www.wikidata.org/entity/Q1323347|http://www.wikidata.org/entity/Q724208|http://www.wikidata.org/entity/Q716069|http://www.wikidata.org/entity/Q522232|http://www.wikidata.org/entity/Q466320|http://www.wikidata.org/entity/Q319204|http://www.wikidata.org/entity/Q77061|http://www.wikidata.org/entity/Q37876|http://www.wikidata.org/entity/Q13639108|http://www.wikidata.org/entity/Q2638168"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q771104|http://www.wikidata.org/entity/Q724208|http://www.wikidata.org/entity/Q511864|http://www.wikidata.org/entity/Q188726|http://www.wikidata.org/entity/Q77061|http://www.wikidata.org/entity/Q37876|http://www.wikidata.org/entity/Q1708588|http://www.wikidata.org/entity/Q1323347|http://www.wikidata.org/entity/Q3806481"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q220949|http://www.wikidata.org/entity/Q205707|http://www.wikidata.org/entity/Q110379|http://www.wikidata.org/entity/Q44467|http://www.wikidata.org/entity/Q162959|http://www.wikidata.org/entity/Q104067|http://www.wikidata.org/entity/Q95043|http://www.wikidata.org/entity/Q37876|http://www.wikidata.org/entity/Q180942|http://www.wikidata.org/entity/Q181413|http://www.wikidata.org/entity/Q272972|http://www.wikidata.org/entity/Q273208|http://www.wikidata.org/entity/Q233859|http://www.wikidata.org/entity/Q241268|http://www.wikidata.org/entity/Q329700|http://www.wikidata.org/entity/Q360927|http://www.wikidata.org/entity/Q192812|http://www.wikidata.org/entity/Q484615|http://www.wikidata.org/entity/Q184103|http://www.wikidata.org/entity/Q230131|http://www.wikidata.org/entity/Q200405|http://www.wikidata.org/entity/Q189415|http://www.wikidata.org/entity/Q232965|http://www.wikidata.org/entity/Q242550|http://www.wikidata.org/entity/Q533369|http://www.wikidata.org/entity/Q314133|http://www.wikidata.org/entity/Q260184|http://www.wikidata.org/entity/Q614774|http://www.wikidata.org/entity/Q932718|http://www.wikidata.org/entity/Q2397879|http://www.wikidata.org/entity/Q720344"}, "Published": {"type": "literal", "value": "2009|2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q336144|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q860626"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2009 anthology film directed by Fatih Ak\u0131n and 10 others"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5610650"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1321885"}, "Title": {"type": "literal", "value": "Nichts bereuen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q817657"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1605051"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17537081|http://www.wikidata.org/entity/Q1897156|http://www.wikidata.org/entity/Q1733298|http://www.wikidata.org/entity/Q1605051|http://www.wikidata.org/entity/Q1082059|http://www.wikidata.org/entity/Q124451|http://www.wikidata.org/entity/Q75187|http://www.wikidata.org/entity/Q71673|http://www.wikidata.org/entity/Q68928|http://www.wikidata.org/entity/Q58592"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2001 film by Benjamin Quabeck"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q151946"}, "Title": {"type": "literal", "value": "Eight Legged Freaks"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1332531"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4818612|http://www.wikidata.org/entity/Q1332531"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q296577|http://www.wikidata.org/entity/Q294185|http://www.wikidata.org/entity/Q238045|http://www.wikidata.org/entity/Q34436|http://www.wikidata.org/entity/Q6259311|http://www.wikidata.org/entity/Q3099585|http://www.wikidata.org/entity/Q2151597|http://www.wikidata.org/entity/Q1339951|http://www.wikidata.org/entity/Q1190148|http://www.wikidata.org/entity/Q943237|http://www.wikidata.org/entity/Q713640|http://www.wikidata.org/entity/Q453906|http://www.wikidata.org/entity/Q448755|http://www.wikidata.org/entity/Q438537"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q224700|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q1342372|http://www.wikidata.org/entity/Q471839"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2002 American horror-comedy film directed by Ellory Elkayem"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q126399|http://www.wikidata.org/entity/Q622668|http://www.wikidata.org/entity/Q5063029"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2910415"}, "Title": {"type": "literal", "value": "Boog and Elliot's Midnight Bun Run"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6192787|http://www.wikidata.org/entity/Q4773504"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q975652|http://www.wikidata.org/entity/Q320232|http://www.wikidata.org/entity/Q183542|http://www.wikidata.org/entity/Q164782|http://www.wikidata.org/entity/Q125237"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 film by Jill Culton, Anthony Stacchi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1416835"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30763298"}, "Title": {"type": "literal", "value": "Napapiirin sankarit 3"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1261910"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5411720"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11892451|http://www.wikidata.org/entity/Q11222319|http://www.wikidata.org/entity/Q6303995|http://www.wikidata.org/entity/Q3742931|http://www.wikidata.org/entity/Q468517"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2017 Finnish film directed by Tiina Lymi"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11902589"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3208922"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1248032"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12720629"}, "Published": {"type": "literal", "value": "2010|2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Radu Jude"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19824626"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q115106"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q59449118|http://www.wikidata.org/entity/Q1497377"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2016 film by Stefan J\u00e4ger"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28497237"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15070019"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15176485"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3525573"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Alexandre Coffre"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3071502"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3223019"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3479503"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3479503"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3174428|http://www.wikidata.org/entity/Q2926620|http://www.wikidata.org/entity/Q1433258|http://www.wikidata.org/entity/Q1351000|http://www.wikidata.org/entity/Q451817|http://www.wikidata.org/entity/Q280445|http://www.wikidata.org/entity/Q3591048|http://www.wikidata.org/entity/Q3501677|http://www.wikidata.org/entity/Q3421723|http://www.wikidata.org/entity/Q3292402|http://www.wikidata.org/entity/Q3189147"}, "Published": {"type": "literal", "value": "1985"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1985 film by Serge P\u00e9nard"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23070957"}, "Title": {"type": "literal", "value": "\u03a0\u03ad\u03bc\u03c0\u03c4\u03b7 & 12"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16168467"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26690222|http://www.wikidata.org/entity/Q23017549|http://www.wikidata.org/entity/Q20995480|http://www.wikidata.org/entity/Q16168467"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Thanasis Tsaltabasis"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q54850132"}, "Title": {"type": "literal", "value": "Meine teuflisch gute Freundin"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1893857"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2160285|http://www.wikidata.org/entity/Q1893857"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q108942|http://www.wikidata.org/entity/Q106781|http://www.wikidata.org/entity/Q98596|http://www.wikidata.org/entity/Q19958886|http://www.wikidata.org/entity/Q15808026|http://www.wikidata.org/entity/Q2423031|http://www.wikidata.org/entity/Q2020358|http://www.wikidata.org/entity/Q1696765|http://www.wikidata.org/entity/Q1279837|http://www.wikidata.org/entity/Q449665|http://www.wikidata.org/entity/Q111070|http://www.wikidata.org/entity/Q54243771|http://www.wikidata.org/entity/Q28649684|http://www.wikidata.org/entity/Q23561346"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2018 film directed by Marco Petry"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6383085"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21572893"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21572893"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014|2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Rusudan Chkonia"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q631463"}, "Title": {"type": "literal", "value": "\u0928\u094b \u090f\u0928\u094d\u091f\u094d\u0930\u0940"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q652149"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q652149"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q834338|http://www.wikidata.org/entity/Q731969|http://www.wikidata.org/entity/Q313956|http://www.wikidata.org/entity/Q292967|http://www.wikidata.org/entity/Q290438|http://www.wikidata.org/entity/Q158214|http://www.wikidata.org/entity/Q48622|http://www.wikidata.org/entity/Q9543"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "158"}, "Description": {"type": "literal", "value": "2005 film by Anees Bazmee"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1696916"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28936736"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28481177"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Geng Jun"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30738269"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3369703"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3554532"}, "Published": {"type": "literal", "value": "2018|2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Patrick Mille"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2315036"}, "Title": {"type": "literal", "value": "Mister Lonely"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q528949"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q528949"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2935113|http://www.wikidata.org/entity/Q1261093|http://www.wikidata.org/entity/Q1187498|http://www.wikidata.org/entity/Q737693|http://www.wikidata.org/entity/Q353983|http://www.wikidata.org/entity/Q313462|http://www.wikidata.org/entity/Q313044|http://www.wikidata.org/entity/Q310012|http://www.wikidata.org/entity/Q230190|http://www.wikidata.org/entity/Q60306|http://www.wikidata.org/entity/Q44131|http://www.wikidata.org/entity/Q3787526"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "2007 film by Harmony Korine"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q60393|http://www.wikidata.org/entity/Q282967|http://www.wikidata.org/entity/Q3422434|http://www.wikidata.org/entity/Q5448886"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60500172"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3850996"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3850996"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film by Massimiliano Bruno"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3804257"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7533008"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20913456"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11868061"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Ville Jankeri"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4121268"}, "Title": {"type": "literal", "value": "Brasil Animado"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10326217"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3012041|http://www.wikidata.org/entity/Q343293"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2143665|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "78"}, "Description": {"type": "literal", "value": "2011 film directed by Mariana Caltabiano"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q9657461"}, "Title": {"type": "literal", "value": "Billi Pig"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10309289"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2011 film by Jos\u00e9 Eduardo Belmonte"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11772214"}, "Title": {"type": "literal", "value": "V\u00fdlet"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3489129"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3489129"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12024199|http://www.wikidata.org/entity/Q11774157|http://www.wikidata.org/entity/Q5180186|http://www.wikidata.org/entity/Q920040|http://www.wikidata.org/entity/Q734192|http://www.wikidata.org/entity/Q530954|http://www.wikidata.org/entity/Q469601|http://www.wikidata.org/entity/Q440954|http://www.wikidata.org/entity/Q12058898|http://www.wikidata.org/entity/Q12050797"}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2002 film by Alice Nellis"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18434835"}, "Title": {"type": "literal", "value": "Reality"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q453691"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q453691"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15122111|http://www.wikidata.org/entity/Q5387705|http://www.wikidata.org/entity/Q3183404|http://www.wikidata.org/entity/Q448021|http://www.wikidata.org/entity/Q392370|http://www.wikidata.org/entity/Q281621|http://www.wikidata.org/entity/Q236138"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2014 French-Belgian comedy-drama film directed by Mr. Oizo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25394455"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4289477"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4289477"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18907601|http://www.wikidata.org/entity/Q15088731|http://www.wikidata.org/entity/Q4519628|http://www.wikidata.org/entity/Q4506333|http://www.wikidata.org/entity/Q4228271|http://www.wikidata.org/entity/Q2665274|http://www.wikidata.org/entity/Q2642325|http://www.wikidata.org/entity/Q2627377|http://www.wikidata.org/entity/Q2373179|http://www.wikidata.org/entity/Q1081714"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Anna Melikian"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q58814912"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1599672"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Marianna Palka"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24308041"}, "Title": {"type": "literal", "value": "Boundaries"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15215623"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15215623"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21116852|http://www.wikidata.org/entity/Q18719290|http://www.wikidata.org/entity/Q3052377|http://www.wikidata.org/entity/Q1069031|http://www.wikidata.org/entity/Q646724|http://www.wikidata.org/entity/Q428819|http://www.wikidata.org/entity/Q272927|http://www.wikidata.org/entity/Q264840|http://www.wikidata.org/entity/Q210148|http://www.wikidata.org/entity/Q190523|http://www.wikidata.org/entity/Q187003|http://www.wikidata.org/entity/Q109324"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q628165"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2018 film by Shana Feste"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7596772"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7737670"}, "Title": {"type": "literal", "value": "The Great Brain"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q48040644"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7143363|http://www.wikidata.org/entity/Q3080456|http://www.wikidata.org/entity/Q1689414|http://www.wikidata.org/entity/Q1101158"}, "Published": {"type": "literal", "value": "1978"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1978 film directed by Sidney Levin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29384719"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16945545"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q270559"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Ivica Zubak"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1289713"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q793700"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 film directed by Zsolt Bern\u00e1th"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q47462207"}, "Title": {"type": "literal", "value": "Der fast perfekte Mann"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q104726"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1895935|http://www.wikidata.org/entity/Q1871731|http://www.wikidata.org/entity/Q108956|http://www.wikidata.org/entity/Q60687"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Vanessa Jopp"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1418881"}, "Title": {"type": "literal", "value": "Fired Up!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2576503"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2576503"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23701740|http://www.wikidata.org/entity/Q13560453|http://www.wikidata.org/entity/Q3876478|http://www.wikidata.org/entity/Q2629672|http://www.wikidata.org/entity/Q2476674|http://www.wikidata.org/entity/Q1532012|http://www.wikidata.org/entity/Q1153513|http://www.wikidata.org/entity/Q967130|http://www.wikidata.org/entity/Q962221|http://www.wikidata.org/entity/Q926963|http://www.wikidata.org/entity/Q559092|http://www.wikidata.org/entity/Q457488|http://www.wikidata.org/entity/Q447669|http://www.wikidata.org/entity/Q444390|http://www.wikidata.org/entity/Q444146|http://www.wikidata.org/entity/Q441451|http://www.wikidata.org/entity/Q438180|http://www.wikidata.org/entity/Q356637|http://www.wikidata.org/entity/Q309503|http://www.wikidata.org/entity/Q269891|http://www.wikidata.org/entity/Q265099|http://www.wikidata.org/entity/Q263748|http://www.wikidata.org/entity/Q242418|http://www.wikidata.org/entity/Q236537|http://www.wikidata.org/entity/Q235797|http://www.wikidata.org/entity/Q230176|http://www.wikidata.org/entity/Q229349|http://www.wikidata.org/entity/Q229036|http://www.wikidata.org/entity/Q202853|http://www.wikidata.org/entity/Q111691|http://www.wikidata.org/entity/Q4058"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2009 film by Will Gluck"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6141556"}, "Title": {"type": "literal", "value": "Tengo algo que decirte"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5155259"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Ana Torres-\u00c1lvarez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1033497"}, "Title": {"type": "literal", "value": "Speed Zone!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6194719"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2331801"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q508778|http://www.wikidata.org/entity/Q452169|http://www.wikidata.org/entity/Q315123|http://www.wikidata.org/entity/Q312129|http://www.wikidata.org/entity/Q286642|http://www.wikidata.org/entity/Q218532|http://www.wikidata.org/entity/Q193278|http://www.wikidata.org/entity/Q189400|http://www.wikidata.org/entity/Q189067|http://www.wikidata.org/entity/Q131237|http://www.wikidata.org/entity/Q16106236|http://www.wikidata.org/entity/Q7817635|http://www.wikidata.org/entity/Q5292954|http://www.wikidata.org/entity/Q4796868|http://www.wikidata.org/entity/Q3706964|http://www.wikidata.org/entity/Q2237338|http://www.wikidata.org/entity/Q1066454|http://www.wikidata.org/entity/Q930117|http://www.wikidata.org/entity/Q726335|http://www.wikidata.org/entity/Q712457|http://www.wikidata.org/entity/Q546551|http://www.wikidata.org/entity/Q545288|http://www.wikidata.org/entity/Q545172"}, "Published": {"type": "literal", "value": "1989"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1339864|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "1989 film by Jim Drake"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17103727"}, "Title": {"type": "literal", "value": "Menschenliebe"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18562379"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18562379"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22276920"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "78"}, "Description": {"type": "literal", "value": "2010 film by Alexander Tuschinski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16533832"}, "Title": {"type": "literal", "value": "Boys Like Us"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q94281"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q94281"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18179162|http://www.wikidata.org/entity/Q3107837"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film directed by Patric Chiha"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12021585"}, "Title": {"type": "literal", "value": "Indi\u00e1nsk\u00e9 l\u00e9to"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q709032"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q709032"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q31931838|http://www.wikidata.org/entity/Q448921|http://www.wikidata.org/entity/Q299394"}, "Published": {"type": "literal", "value": "1995"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1995 film by Sa\u0161a Gedeon"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16607971"}, "Title": {"type": "literal", "value": "Mis peores amigos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3876520"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Nicol\u00e1s L\u00f3pez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3604731"}, "Title": {"type": "literal", "value": "\u0421\u043e\u043b\u043e\u0432\u0435\u0439-\u0420\u0430\u0437\u0431\u043e\u0439\u043d\u0438\u043a"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55650688"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q140738"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q13218094|http://www.wikidata.org/entity/Q4444774|http://www.wikidata.org/entity/Q1383160|http://www.wikidata.org/entity/Q140738"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21590660|http://www.wikidata.org/entity/Q1200678|http://www.wikidata.org/entity/Q172980|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q53094"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2012 film by Egor Baranov"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4344840"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27914739"}, "Title": {"type": "literal", "value": "\u0644\u0641 \u0648\u062f\u0648\u0631\u0627\u0646"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22928635"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4119541|http://www.wikidata.org/entity/Q591801"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 Egyptian film directed by Khaled Mari"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16830223"}, "Title": {"type": "literal", "value": "100 Pro"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q78367"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q78367"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1872997|http://www.wikidata.org/entity/Q68084"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 film by Simon Verhoeven"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16250934"}, "Title": {"type": "literal", "value": "Los gringos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q428815"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1999"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1999 film by Rob Letterman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q33744736"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28528756"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q33283086"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q33743929|http://www.wikidata.org/entity/Q33283086|http://www.wikidata.org/entity/Q28529218"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 San Diego film Awards Promo directed by Jordan Jacobo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6944150"}, "Title": {"type": "literal", "value": "Mutual Appreciation"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q503951"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q503951"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6318050|http://www.wikidata.org/entity/Q503951"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Andrew Bujalski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q29789642"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27866144"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27866144"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12036658|http://www.wikidata.org/entity/Q10826679|http://www.wikidata.org/entity/Q5180265|http://www.wikidata.org/entity/Q1159229"}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Eva Toulov\u00e1"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q60846263"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q738880"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2019 film directed by Grand Corps Malade"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q14522920"}, "Title": {"type": "literal", "value": "The F Word"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3308160"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22279092"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q218210|http://www.wikidata.org/entity/Q202732|http://www.wikidata.org/entity/Q38119|http://www.wikidata.org/entity/Q20016493|http://www.wikidata.org/entity/Q16238721|http://www.wikidata.org/entity/Q15947080|http://www.wikidata.org/entity/Q4679034|http://www.wikidata.org/entity/Q4678990|http://www.wikidata.org/entity/Q3421719|http://www.wikidata.org/entity/Q1190134|http://www.wikidata.org/entity/Q1189105|http://www.wikidata.org/entity/Q511452|http://www.wikidata.org/entity/Q459945|http://www.wikidata.org/entity/Q459348|http://www.wikidata.org/entity/Q438278|http://www.wikidata.org/entity/Q385995|http://www.wikidata.org/entity/Q292214"}, "Published": {"type": "literal", "value": "2013|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2013 film by Michael Dowse"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17637818"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11663970"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1188862"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2012 film by Choru Han"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q909465"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12213023"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q353690|http://www.wikidata.org/entity/Q170515"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "148"}, "Description": {"type": "literal", "value": "2008 film by Rami Imam"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6648961"}, "Title": {"type": "literal", "value": "Little Athens"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16214275"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q443757|http://www.wikidata.org/entity/Q359488|http://www.wikidata.org/entity/Q275246|http://www.wikidata.org/entity/Q263149|http://www.wikidata.org/entity/Q262218|http://www.wikidata.org/entity/Q1347483|http://www.wikidata.org/entity/Q445638"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q959790|http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Tom Zuber"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3754050"}, "Title": {"type": "literal", "value": "Fuga dal call center"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3741879"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3741879"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3981529|http://www.wikidata.org/entity/Q3899386|http://www.wikidata.org/entity/Q3894369|http://www.wikidata.org/entity/Q3891763|http://www.wikidata.org/entity/Q3870673|http://www.wikidata.org/entity/Q3840387|http://www.wikidata.org/entity/Q3704389"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2009 film by Federico Rizzo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q890214"}, "Title": {"type": "literal", "value": "J'ai toujours r\u00eav\u00e9 d'\u00eatre un gangster"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q970408"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q970408"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3479397|http://www.wikidata.org/entity/Q3093531|http://www.wikidata.org/entity/Q2756117|http://www.wikidata.org/entity/Q2161692|http://www.wikidata.org/entity/Q970408|http://www.wikidata.org/entity/Q961525|http://www.wikidata.org/entity/Q958262|http://www.wikidata.org/entity/Q895091|http://www.wikidata.org/entity/Q694081|http://www.wikidata.org/entity/Q523545|http://www.wikidata.org/entity/Q380045|http://www.wikidata.org/entity/Q274227|http://www.wikidata.org/entity/Q270146|http://www.wikidata.org/entity/Q106555"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "113"}, "Description": {"type": "literal", "value": "2008 film by Samuel Benchetrit"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2986014"}, "Title": {"type": "literal", "value": "Comme des fr\u00e8res"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q139735"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q139735"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1450857"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Hugo G\u00e9lin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27477640"}, "Title": {"type": "literal", "value": "Monsieur et Madame Adelman"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q741655"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q741655"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q139052|http://www.wikidata.org/entity/Q123135|http://www.wikidata.org/entity/Q3037010|http://www.wikidata.org/entity/Q2965785|http://www.wikidata.org/entity/Q1187592|http://www.wikidata.org/entity/Q976460|http://www.wikidata.org/entity/Q741655"}, "Published": {"type": "literal", "value": "2017|2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q1054574"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Nicolas Bedos"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3232650"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23647164"}, "Title": {"type": "literal", "value": "The True Memoirs of an International Assassin"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3176610"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q487379"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q44561"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Jeff Wadlow"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27958381"}, "Title": {"type": "literal", "value": "Telle m\u00e8re, telle fille"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19630141"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19630141"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3501476|http://www.wikidata.org/entity/Q3380851|http://www.wikidata.org/entity/Q693534|http://www.wikidata.org/entity/Q511833|http://www.wikidata.org/entity/Q116314|http://www.wikidata.org/entity/Q115735|http://www.wikidata.org/entity/Q106275|http://www.wikidata.org/entity/Q27704886|http://www.wikidata.org/entity/Q16535251"}, "Published": {"type": "literal", "value": "2017|2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by No\u00e9mie Saglio"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q525894|http://www.wikidata.org/entity/Q913462"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5940355"}, "Title": {"type": "literal", "value": "El a\u00f1o de la garrapata"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12390928"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2004 film by Jorge Coira"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15873873"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2072053"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4417776"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2654088"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Tim Oliehoek"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3207956"}, "Title": {"type": "literal", "value": "La Croisi\u00e8re"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3367704"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3367704"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3591136|http://www.wikidata.org/entity/Q3501708|http://www.wikidata.org/entity/Q3340838|http://www.wikidata.org/entity/Q3218851|http://www.wikidata.org/entity/Q3166616|http://www.wikidata.org/entity/Q3158547|http://www.wikidata.org/entity/Q3142106|http://www.wikidata.org/entity/Q3120166|http://www.wikidata.org/entity/Q3082061|http://www.wikidata.org/entity/Q2934960|http://www.wikidata.org/entity/Q2863227|http://www.wikidata.org/entity/Q2833500|http://www.wikidata.org/entity/Q2832982|http://www.wikidata.org/entity/Q1685364|http://www.wikidata.org/entity/Q759001|http://www.wikidata.org/entity/Q681451|http://www.wikidata.org/entity/Q586054|http://www.wikidata.org/entity/Q510042|http://www.wikidata.org/entity/Q466982|http://www.wikidata.org/entity/Q297100|http://www.wikidata.org/entity/Q291466|http://www.wikidata.org/entity/Q201810"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 French comedy film directed by Pascale Pouzadoux"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2135949"}, "Title": {"type": "literal", "value": "Red Dog"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6438600"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6221055|http://www.wikidata.org/entity/Q3608249|http://www.wikidata.org/entity/Q862208|http://www.wikidata.org/entity/Q563177|http://www.wikidata.org/entity/Q545138|http://www.wikidata.org/entity/Q466150|http://www.wikidata.org/entity/Q235248|http://www.wikidata.org/entity/Q53651"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1257444|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2011 film by Kriv Stenders"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3506769"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11727279"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12035281"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q61690691|http://www.wikidata.org/entity/Q59258153|http://www.wikidata.org/entity/Q22675384|http://www.wikidata.org/entity/Q12857256|http://www.wikidata.org/entity/Q12051006|http://www.wikidata.org/entity/Q12042457|http://www.wikidata.org/entity/Q12025445|http://www.wikidata.org/entity/Q12024951|http://www.wikidata.org/entity/Q12023662|http://www.wikidata.org/entity/Q12016591|http://www.wikidata.org/entity/Q7938803|http://www.wikidata.org/entity/Q730137|http://www.wikidata.org/entity/Q676173"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2007 film by Ji\u0159\u00ed Vejd\u011blek"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19622324"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1217703"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2015 film by Silvio Muccino"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3304113"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1563632"}, "Title": {"type": "literal", "value": "Vollidiot"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2437672"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1082448|http://www.wikidata.org/entity/Q95465"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1284944|http://www.wikidata.org/entity/Q1163512|http://www.wikidata.org/entity/Q1067118|http://www.wikidata.org/entity/Q850007|http://www.wikidata.org/entity/Q583792|http://www.wikidata.org/entity/Q518355|http://www.wikidata.org/entity/Q374812|http://www.wikidata.org/entity/Q364986|http://www.wikidata.org/entity/Q215565|http://www.wikidata.org/entity/Q111879|http://www.wikidata.org/entity/Q111244|http://www.wikidata.org/entity/Q95757|http://www.wikidata.org/entity/Q90869|http://www.wikidata.org/entity/Q88236|http://www.wikidata.org/entity/Q88223|http://www.wikidata.org/entity/Q77027|http://www.wikidata.org/entity/Q70912|http://www.wikidata.org/entity/Q68322|http://www.wikidata.org/entity/Q43763|http://www.wikidata.org/entity/Q1928471|http://www.wikidata.org/entity/Q1910132|http://www.wikidata.org/entity/Q1789365|http://www.wikidata.org/entity/Q1732788|http://www.wikidata.org/entity/Q1331935|http://www.wikidata.org/entity/Q3196793|http://www.wikidata.org/entity/Q2439722|http://www.wikidata.org/entity/Q2020198"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2007 film by Tobias Baumann"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3022994"}, "Title": {"type": "literal", "value": "D\u00edas de f\u00fatbol"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5800361"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6038628|http://www.wikidata.org/entity/Q3326153|http://www.wikidata.org/entity/Q3296435|http://www.wikidata.org/entity/Q3061285|http://www.wikidata.org/entity/Q1220518|http://www.wikidata.org/entity/Q581617|http://www.wikidata.org/entity/Q576436|http://www.wikidata.org/entity/Q349396|http://www.wikidata.org/entity/Q283513|http://www.wikidata.org/entity/Q276652|http://www.wikidata.org/entity/Q275949|http://www.wikidata.org/entity/Q269857"}, "Published": {"type": "literal", "value": "2003"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2003 film by David Serrano de la Pe\u00f1a"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q22000108"}, "Title": {"type": "literal", "value": "The Book of Gabrielle"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17466090"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17466090"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17466090"}, "Published": {"type": "literal", "value": "2017|2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2015 film by Lisa Gornick"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10329335"}, "Title": {"type": "literal", "value": "Meu Passado Me Condena"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16940454"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16940866"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10286900"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "102"}, "Description": {"type": "literal", "value": "2013 film by J\u00falia Rezende"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5571070"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43544067"}, "Title": {"type": "literal", "value": "Dom'z s\u00fct\u00fc"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q102044"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q102044"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film by Neco \u00c7elik"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q11819309"}, "Title": {"type": "literal", "value": "Plan"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9353208"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by S\u0142awomir Pstrong"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27877562"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22928337"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Martin Bourboulon"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q753899"}, "Title": {"type": "literal", "value": "Scott Pilgrim vs. the World"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q522057"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2262850|http://www.wikidata.org/entity/Q712562|http://www.wikidata.org/entity/Q522057"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q461300|http://www.wikidata.org/entity/Q388843|http://www.wikidata.org/entity/Q313705|http://www.wikidata.org/entity/Q313204|http://www.wikidata.org/entity/Q309555|http://www.wikidata.org/entity/Q299324|http://www.wikidata.org/entity/Q237781|http://www.wikidata.org/entity/Q1378842|http://www.wikidata.org/entity/Q1347483|http://www.wikidata.org/entity/Q935167|http://www.wikidata.org/entity/Q232307|http://www.wikidata.org/entity/Q210547|http://www.wikidata.org/entity/Q207873|http://www.wikidata.org/entity/Q67701|http://www.wikidata.org/entity/Q29328|http://www.wikidata.org/entity/Q18938|http://www.wikidata.org/entity/Q14537|http://www.wikidata.org/entity/Q178348|http://www.wikidata.org/entity/Q116636"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2678111|http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "112"}, "Description": {"type": "literal", "value": "2010 American-British-Japanese-Canadian film by Edgar Wright"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4035093"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q524212"}, "Title": {"type": "literal", "value": "You Again"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q525725"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2115130|http://www.wikidata.org/entity/Q1190235|http://www.wikidata.org/entity/Q724088|http://www.wikidata.org/entity/Q508819|http://www.wikidata.org/entity/Q507756|http://www.wikidata.org/entity/Q470153|http://www.wikidata.org/entity/Q434707|http://www.wikidata.org/entity/Q373895|http://www.wikidata.org/entity/Q316712|http://www.wikidata.org/entity/Q272176|http://www.wikidata.org/entity/Q271851|http://www.wikidata.org/entity/Q270664|http://www.wikidata.org/entity/Q231811|http://www.wikidata.org/entity/Q231614|http://www.wikidata.org/entity/Q230131|http://www.wikidata.org/entity/Q178882|http://www.wikidata.org/entity/Q106997|http://www.wikidata.org/entity/Q102124|http://www.wikidata.org/entity/Q10738"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "106"}, "Description": {"type": "literal", "value": "2010 film by Andy Fickman"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q497155"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q41449924"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22279032"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7640760"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film directed by Midhun Manuel Thomas"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3825580"}, "Title": {"type": "literal", "value": "Gordos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q740130"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q740130"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q53843895|http://www.wikidata.org/entity/Q16301316|http://www.wikidata.org/entity/Q11704368|http://www.wikidata.org/entity/Q9077414|http://www.wikidata.org/entity/Q6109724|http://www.wikidata.org/entity/Q6001963|http://www.wikidata.org/entity/Q5984226|http://www.wikidata.org/entity/Q5883024|http://www.wikidata.org/entity/Q5858574|http://www.wikidata.org/entity/Q5695648|http://www.wikidata.org/entity/Q3814531|http://www.wikidata.org/entity/Q2790121|http://www.wikidata.org/entity/Q2742435|http://www.wikidata.org/entity/Q2655070|http://www.wikidata.org/entity/Q747950|http://www.wikidata.org/entity/Q269857"}, "Published": {"type": "literal", "value": "2010|2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "115"}, "Description": {"type": "literal", "value": "2009 film by Daniel S\u00e1nchez Ar\u00e9valo"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q17082304"}, "Title": {"type": "literal", "value": "Someone Marry Barry"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7340458"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7340458"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q934467"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2014 film directed by Rob Pearlstein"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26963223"}, "Title": {"type": "literal", "value": "My Entire High School Sinking Into the Sea"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3016729"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3016729"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q443995|http://www.wikidata.org/entity/Q313705|http://www.wikidata.org/entity/Q288359|http://www.wikidata.org/entity/Q236527|http://www.wikidata.org/entity/Q133050|http://www.wikidata.org/entity/Q7791234|http://www.wikidata.org/entity/Q5902748|http://www.wikidata.org/entity/Q3423441"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Dash Shaw"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30879658"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4215049"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4215049"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2017 film by Roman Karimov"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q434841|http://www.wikidata.org/entity/Q1754271|http://www.wikidata.org/entity/Q2892410"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23759481"}, "Title": {"type": "literal", "value": "Pistas para volver a casa"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11684644"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11684644"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8078416|http://www.wikidata.org/entity/Q6300538|http://www.wikidata.org/entity/Q5483854|http://www.wikidata.org/entity/Q515445"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1200678|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2015 film by Jazm\u00edn Stuart"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4365900"}, "Title": {"type": "literal", "value": "\u041f\u043b\u044e\u0441 \u043e\u0434\u0438\u043d"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4101320"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4312793|http://www.wikidata.org/entity/Q4101320"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4421866|http://www.wikidata.org/entity/Q4159656"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2008 film by Oksana Bychkova"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20979182"}, "Title": {"type": "literal", "value": "Captain Underpants"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5239955"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2624066"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16239393|http://www.wikidata.org/entity/Q5239955|http://www.wikidata.org/entity/Q4241574|http://www.wikidata.org/entity/Q3371986|http://www.wikidata.org/entity/Q912938|http://www.wikidata.org/entity/Q704443|http://www.wikidata.org/entity/Q618352|http://www.wikidata.org/entity/Q328790|http://www.wikidata.org/entity/Q272927|http://www.wikidata.org/entity/Q28717"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1535153|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "89"}, "Description": {"type": "literal", "value": "2017 film by David Soren"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q500088"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q477965"}, "Title": {"type": "literal", "value": "Persepolis"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1890346|http://www.wikidata.org/entity/Q126633"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q126633"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q645928|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "95"}, "Description": {"type": "literal", "value": "2007 animated film by Marjane Satrapi and Vincent Paronnaud"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1320443|http://www.wikidata.org/entity/Q3521465"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20725541"}, "Title": {"type": "literal", "value": "Kartoffelsalat \u2013 Nicht fragen!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21033948"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15851238"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q59485|http://www.wikidata.org/entity/Q19958947|http://www.wikidata.org/entity/Q19286280|http://www.wikidata.org/entity/Q16508914|http://www.wikidata.org/entity/Q15851238|http://www.wikidata.org/entity/Q2165705|http://www.wikidata.org/entity/Q1736848|http://www.wikidata.org/entity/Q1724962|http://www.wikidata.org/entity/Q1600407|http://www.wikidata.org/entity/Q1434162|http://www.wikidata.org/entity/Q1279837|http://www.wikidata.org/entity/Q1065885|http://www.wikidata.org/entity/Q216382|http://www.wikidata.org/entity/Q101159|http://www.wikidata.org/entity/Q98362|http://www.wikidata.org/entity/Q87395"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1747837|http://www.wikidata.org/entity/Q200092|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "81"}, "Description": {"type": "literal", "value": "2015 film by Michael David Pate"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15043355"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7135164"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4765227"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41152319|http://www.wikidata.org/entity/Q7377514|http://www.wikidata.org/entity/Q7135164|http://www.wikidata.org/entity/Q46018"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Parambrata Chatterjee"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23010088"}, "Title": {"type": "literal", "value": "Spider-Man: Homecoming"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18519749"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q342636|http://www.wikidata.org/entity/Q26268915|http://www.wikidata.org/entity/Q26268901|http://www.wikidata.org/entity/Q18519749|http://www.wikidata.org/entity/Q6273224|http://www.wikidata.org/entity/Q5107425"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2469967|http://www.wikidata.org/entity/Q2415122|http://www.wikidata.org/entity/Q2023710|http://www.wikidata.org/entity/Q1239933|http://www.wikidata.org/entity/Q23894602|http://www.wikidata.org/entity/Q21004892|http://www.wikidata.org/entity/Q20630818|http://www.wikidata.org/entity/Q16237562|http://www.wikidata.org/entity/Q7801211|http://www.wikidata.org/entity/Q6832484|http://www.wikidata.org/entity/Q6774445|http://www.wikidata.org/entity/Q5649155|http://www.wikidata.org/entity/Q5526127|http://www.wikidata.org/entity/Q3558573|http://www.wikidata.org/entity/Q2658535|http://www.wikidata.org/entity/Q19958195|http://www.wikidata.org/entity/Q18655744|http://www.wikidata.org/entity/Q1139685|http://www.wikidata.org/entity/Q189489|http://www.wikidata.org/entity/Q181900|http://www.wikidata.org/entity/Q178348|http://www.wikidata.org/entity/Q165219|http://www.wikidata.org/entity/Q138005|http://www.wikidata.org/entity/Q103343|http://www.wikidata.org/entity/Q34460|http://www.wikidata.org/entity/Q716343|http://www.wikidata.org/entity/Q472084|http://www.wikidata.org/entity/Q450219|http://www.wikidata.org/entity/Q295964|http://www.wikidata.org/entity/Q257625|http://www.wikidata.org/entity/Q255651|http://www.wikidata.org/entity/Q191828|http://www.wikidata.org/entity/Q26692028|http://www.wikidata.org/entity/Q26213909|http://www.wikidata.org/entity/Q24034671"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20656232|http://www.wikidata.org/entity/Q2678111|http://www.wikidata.org/entity/Q1535153|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "133"}, "Description": {"type": "literal", "value": "2017 superhero film produced by Marvel Studios and Columbia Pictures"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q186941|http://www.wikidata.org/entity/Q367466"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19308780"}, "Title": {"type": "literal", "value": "Schmidts Katze"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17352993"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17352993"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19277385|http://www.wikidata.org/entity/Q1928471|http://www.wikidata.org/entity/Q1762340|http://www.wikidata.org/entity/Q1503531|http://www.wikidata.org/entity/Q1501266|http://www.wikidata.org/entity/Q1237837|http://www.wikidata.org/entity/Q1078759|http://www.wikidata.org/entity/Q567109|http://www.wikidata.org/entity/Q564095|http://www.wikidata.org/entity/Q125238|http://www.wikidata.org/entity/Q108164|http://www.wikidata.org/entity/Q106553|http://www.wikidata.org/entity/Q100333|http://www.wikidata.org/entity/Q98976|http://www.wikidata.org/entity/Q88570"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2015 German comedy film directed by Marc Schlegel"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10729096"}, "Title": {"type": "literal", "value": "Tomme t\u00f8nner"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22344468|http://www.wikidata.org/entity/Q10729540"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22344468|http://www.wikidata.org/entity/Q10729540"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17114252|http://www.wikidata.org/entity/Q11971676|http://www.wikidata.org/entity/Q10729540|http://www.wikidata.org/entity/Q7710517|http://www.wikidata.org/entity/Q4988538|http://www.wikidata.org/entity/Q4919937|http://www.wikidata.org/entity/Q4753762|http://www.wikidata.org/entity/Q4569518|http://www.wikidata.org/entity/Q2740052|http://www.wikidata.org/entity/Q2669356|http://www.wikidata.org/entity/Q1190263|http://www.wikidata.org/entity/Q707827"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "87"}, "Description": {"type": "literal", "value": "2010 Norwegian film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18152938"}, "Title": {"type": "literal", "value": "Not Cool"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q311078"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2014 film by Shane Dawson"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3005990"}, "Title": {"type": "literal", "value": "Crystal Fairy"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3818280"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3818280"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3818280|http://www.wikidata.org/entity/Q2827359|http://www.wikidata.org/entity/Q309555|http://www.wikidata.org/entity/Q292381"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q191489|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2013 film by Sebasti\u00e1n Silva"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3472324"}, "Title": {"type": "literal", "value": "Nasi Lemak 2.0"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q717075"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q717075"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film directed by Namewee"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q55692831"}, "Title": {"type": "literal", "value": "Tag am Meer"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55692698"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q55692698"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19278419|http://www.wikidata.org/entity/Q1891604"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Moritz Gerber"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3282812"}, "Title": {"type": "literal", "value": "Late Night Shopping"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7427324"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q528276|http://www.wikidata.org/entity/Q509628|http://www.wikidata.org/entity/Q236010|http://www.wikidata.org/entity/Q62510"}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "92"}, "Description": {"type": "literal", "value": "2001 film by Saul Metzstein"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1423820"}, "Title": {"type": "literal", "value": "Komm n\u00e4her"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q104726"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19296775|http://www.wikidata.org/entity/Q1894569|http://www.wikidata.org/entity/Q1619430|http://www.wikidata.org/entity/Q1594410|http://www.wikidata.org/entity/Q1468043|http://www.wikidata.org/entity/Q215565|http://www.wikidata.org/entity/Q105283|http://www.wikidata.org/entity/Q96086|http://www.wikidata.org/entity/Q65511"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2006 film by Vanessa Jopp"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q43529030"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q115106"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Stefan J\u00e4ger"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5028853"}, "Title": {"type": "literal", "value": "Can't Complain"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7326897"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Richard Johnson"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5579097"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q6098281"}, "Title": {"type": "literal", "value": "G.D.O. KaraKedi"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3328043"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8082387"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8082387"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Murat Aslan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4040532"}, "Title": {"type": "literal", "value": "Hellbenders"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3156773"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q493227|http://www.wikidata.org/entity/Q374263|http://www.wikidata.org/entity/Q4488|http://www.wikidata.org/entity/Q935167"}, "Published": {"type": "literal", "value": "2014|2013|2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2012 film by J. T. Petty"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4143320"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4078134"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4078134"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16637794|http://www.wikidata.org/entity/Q4527529|http://www.wikidata.org/entity/Q4494015|http://www.wikidata.org/entity/Q4415046|http://www.wikidata.org/entity/Q4107061|http://www.wikidata.org/entity/Q4077904"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Pavel Bardin"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3592994"}, "Title": {"type": "literal", "value": "\u039d\u03aesos"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20995398"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q53709810|http://www.wikidata.org/entity/Q16329317|http://www.wikidata.org/entity/Q16327662|http://www.wikidata.org/entity/Q12885192|http://www.wikidata.org/entity/Q12881978|http://www.wikidata.org/entity/Q12877458|http://www.wikidata.org/entity/Q12876930|http://www.wikidata.org/entity/Q12875582|http://www.wikidata.org/entity/Q6433527|http://www.wikidata.org/entity/Q3201194"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Christos Dimas"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13380366"}, "Title": {"type": "literal", "value": "Les Gar\u00e7ons et Guillaume, \u00e0 table !"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q388744"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q388744"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q22138692|http://www.wikidata.org/entity/Q21294617|http://www.wikidata.org/entity/Q17521641|http://www.wikidata.org/entity/Q16832022|http://www.wikidata.org/entity/Q14928140|http://www.wikidata.org/entity/Q3574068|http://www.wikidata.org/entity/Q3573721|http://www.wikidata.org/entity/Q3424854|http://www.wikidata.org/entity/Q3422822|http://www.wikidata.org/entity/Q3384713|http://www.wikidata.org/entity/Q3335761|http://www.wikidata.org/entity/Q3134621|http://www.wikidata.org/entity/Q3086545|http://www.wikidata.org/entity/Q3083340|http://www.wikidata.org/entity/Q2925417|http://www.wikidata.org/entity/Q2848242|http://www.wikidata.org/entity/Q456668|http://www.wikidata.org/entity/Q388744|http://www.wikidata.org/entity/Q62676|http://www.wikidata.org/entity/Q57118"}, "Published": {"type": "literal", "value": "2014|2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "85"}, "Description": {"type": "literal", "value": "2013 film by Guillaume Gallienne"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16232068"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q12747830"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16082956|http://www.wikidata.org/entity/Q16082383|http://www.wikidata.org/entity/Q12908937|http://www.wikidata.org/entity/Q12747891|http://www.wikidata.org/entity/Q11141512|http://www.wikidata.org/entity/Q11119903|http://www.wikidata.org/entity/Q11084829|http://www.wikidata.org/entity/Q11039554|http://www.wikidata.org/entity/Q1563211|http://www.wikidata.org/entity/Q1254980|http://www.wikidata.org/entity/Q1253391|http://www.wikidata.org/entity/Q213429"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2014 film directed by Jug Radivojevi\u0107"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5793392"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1592579"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3810042|http://www.wikidata.org/entity/Q1592579|http://www.wikidata.org/entity/Q454079|http://www.wikidata.org/entity/Q23664851|http://www.wikidata.org/entity/Q15429506|http://www.wikidata.org/entity/Q8198107|http://www.wikidata.org/entity/Q7299866|http://www.wikidata.org/entity/Q5923510|http://www.wikidata.org/entity/Q4777014"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 film by Marcel Barrena"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q855284"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q354554"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q354554"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5619623|http://www.wikidata.org/entity/Q704130"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 Chinese film from Ning Hao"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q12178728"}, "Title": {"type": "literal", "value": "Ladrones a Domicilio"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q28028515"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1517341"}, "Title": {"type": "literal", "value": "\u0915\u094d\u092f\u0942\u0901 ! \u0939\u094b \u0917\u092f\u093e \u0928\u093e"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7409513"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q731854"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2575841|http://www.wikidata.org/entity/Q983043|http://www.wikidata.org/entity/Q731854|http://www.wikidata.org/entity/Q466080|http://www.wikidata.org/entity/Q80309|http://www.wikidata.org/entity/Q47059|http://www.wikidata.org/entity/Q9570"}, "Published": {"type": "literal", "value": "2004"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "168"}, "Description": {"type": "literal", "value": "2004 film by Samir Karnik"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3311596"}, "Title": {"type": "literal", "value": "\u00bfPara qu\u00e9 sirve un oso?"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23695803"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6186497|http://www.wikidata.org/entity/Q2602857|http://www.wikidata.org/entity/Q537931|http://www.wikidata.org/entity/Q459348|http://www.wikidata.org/entity/Q230636"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Tom Fern\u00e1ndez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15824242"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1246111"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1246111"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "9"}, "Description": {"type": "literal", "value": "2005 film by Doron Wisotzky"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25477896"}, "Title": {"type": "literal", "value": "Recep \u0130vedik 5"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7813033"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q388027"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q388027"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Togan G\u00f6kbakar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q25437113"}, "Title": {"type": "literal", "value": "Red Dog: True Blue"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6438600"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18581761|http://www.wikidata.org/entity/Q363659|http://www.wikidata.org/entity/Q214223"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "88"}, "Description": {"type": "literal", "value": "2016 film by Kriv Stenders"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2818572"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3570535"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3570535"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16832004|http://www.wikidata.org/entity/Q3570535|http://www.wikidata.org/entity/Q2994803|http://www.wikidata.org/entity/Q2837284|http://www.wikidata.org/entity/Q1187592|http://www.wikidata.org/entity/Q441571|http://www.wikidata.org/entity/Q435925"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "103"}, "Description": {"type": "literal", "value": "2009 film by Xabi Molia"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27996982"}, "Title": {"type": "literal", "value": "Bulgarski Po\u015bcikk"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9166187"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2001"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2001 film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q9390232"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1772792"}, "Title": {"type": "literal", "value": "Brief Interviews with Hideous Men"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q313039"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q313039"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q10879432|http://www.wikidata.org/entity/Q3308101|http://www.wikidata.org/entity/Q1433160|http://www.wikidata.org/entity/Q1319744|http://www.wikidata.org/entity/Q1095834|http://www.wikidata.org/entity/Q1077549|http://www.wikidata.org/entity/Q943589|http://www.wikidata.org/entity/Q816502|http://www.wikidata.org/entity/Q708512|http://www.wikidata.org/entity/Q665532|http://www.wikidata.org/entity/Q629696|http://www.wikidata.org/entity/Q540608|http://www.wikidata.org/entity/Q472282|http://www.wikidata.org/entity/Q428819|http://www.wikidata.org/entity/Q380095|http://www.wikidata.org/entity/Q360426|http://www.wikidata.org/entity/Q355116|http://www.wikidata.org/entity/Q317761|http://www.wikidata.org/entity/Q313039|http://www.wikidata.org/entity/Q310324|http://www.wikidata.org/entity/Q259663|http://www.wikidata.org/entity/Q232371|http://www.wikidata.org/entity/Q83851|http://www.wikidata.org/entity/Q72749|http://www.wikidata.org/entity/Q26231"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "80"}, "Description": {"type": "literal", "value": "2009 film by John Krasinski"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q52151285"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3327868"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "1998"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1998 American comedy film written and directed by Steven Ho"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1617244"}, "Title": {"type": "literal", "value": "Hick"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5262580"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5262580|http://www.wikidata.org/entity/Q4755235"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5230045|http://www.wikidata.org/entity/Q2073496|http://www.wikidata.org/entity/Q974076|http://www.wikidata.org/entity/Q928592|http://www.wikidata.org/entity/Q570006|http://www.wikidata.org/entity/Q529454|http://www.wikidata.org/entity/Q431038|http://www.wikidata.org/entity/Q352012|http://www.wikidata.org/entity/Q230523|http://www.wikidata.org/entity/Q170572|http://www.wikidata.org/entity/Q162959|http://www.wikidata.org/entity/Q28288|http://www.wikidata.org/entity/Q4509"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q1776156|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2011 film by Derick Martini"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q28968015"}, "Title": {"type": "literal", "value": "Mr. Roosevelt"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16231614"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16231614"}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by No\u00ebl Wells"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10275307"}, "Title": {"type": "literal", "value": "Esquece Tudo o que Te Disse"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4777558"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2002"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2002 film by Ant\u00f3nio Ferreira"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q23565532"}, "Title": {"type": "literal", "value": "Ein Scheusal zum Verlieben"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2277288"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2000"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1054574|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "93"}, "Description": {"type": "literal", "value": "2000 film by Sharon von Wietersheim"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q31271511"}, "Title": {"type": "literal", "value": "Vorw\u00e4rts immer!"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1450153"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2017 film by Franziska Meletzky"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q26768815"}, "Title": {"type": "literal", "value": "Y\u00f6sy\u00f6tt\u00f6"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16989960"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1900829"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3377711"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2017 film by Marja Pyykk\u00f6"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2740839"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q45042477"}, "Title": {"type": "literal", "value": "Friedliche Zeiten"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1974092"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1520844"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1452625|http://www.wikidata.org/entity/Q1276098|http://www.wikidata.org/entity/Q113799"}, "Published": {"type": "literal", "value": "2008"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2008 film by Neele Leana Vollmar"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3054309"}, "Title": {"type": "literal", "value": "\u0b87\u0b99\u0bcd\u0b95\u0bbf\u0bb2\u0bc0\u0bb7\u0bcd \u0bb5\u0bbf\u0b99\u0bcd\u0b95\u0bbf\u0bb2\u0bbf\u0bb7\u0bcd"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5527787"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5527787"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7246458|http://www.wikidata.org/entity/Q339896|http://www.wikidata.org/entity/Q304707|http://www.wikidata.org/entity/Q270691|http://www.wikidata.org/entity/Q9570"}, "Published": {"type": "literal", "value": "2013|2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": "133"}, "Description": {"type": "literal", "value": "2012 film by Gauri Shinde"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15136242"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5067759"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5222542"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q842256|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Chai Yee Wei"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q48803062"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q26702988"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2018"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2018 film by Eva Vives"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q13013905"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6630018"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film directed by Worrawech Danuwong"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18786753"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7377749"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16239340"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Yogaraj Bhat"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18693367"}, "Title": {"type": "literal", "value": "Luokkakokous"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23040730"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2015 film by Taneli Mustonen"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q44072803"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1059004"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Haim Tabakman"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4328701"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4219916"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4314368"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1361932|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "91"}, "Description": {"type": "literal", "value": "2012 film directed by Asjot Gevorgovitsj Kesjtsjjan"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q30889904"}, "Title": {"type": "literal", "value": "Lasciati andare"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3749525"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3749525|http://www.wikidata.org/entity/Q3080921"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16560487|http://www.wikidata.org/entity/Q4007672|http://www.wikidata.org/entity/Q3904256|http://www.wikidata.org/entity/Q3838188|http://www.wikidata.org/entity/Q3659538|http://www.wikidata.org/entity/Q1054572|http://www.wikidata.org/entity/Q1041563|http://www.wikidata.org/entity/Q603089|http://www.wikidata.org/entity/Q456850"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "99"}, "Description": {"type": "literal", "value": "2017 movie by Francesco Amato"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3663776"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2481380"}, "Title": {"type": "literal", "value": "Gigante"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q377718"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q377718"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5913061|http://www.wikidata.org/entity/Q658991"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2009 film by Adri\u00e1n Biniez"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4110387"}, "Title": {"type": "literal", "value": "Supervoksen"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q29045110"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q175510"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q41236475|http://www.wikidata.org/entity/Q38052532|http://www.wikidata.org/entity/Q25750334|http://www.wikidata.org/entity/Q12338493|http://www.wikidata.org/entity/Q12327525|http://www.wikidata.org/entity/Q12325623|http://www.wikidata.org/entity/Q12321301|http://www.wikidata.org/entity/Q12320462|http://www.wikidata.org/entity/Q12310008|http://www.wikidata.org/entity/Q12305708|http://www.wikidata.org/entity/Q7169413|http://www.wikidata.org/entity/Q5200983|http://www.wikidata.org/entity/Q4968553|http://www.wikidata.org/entity/Q4938066|http://www.wikidata.org/entity/Q4568552|http://www.wikidata.org/entity/Q728020|http://www.wikidata.org/entity/Q445772|http://www.wikidata.org/entity/Q186501"}, "Published": {"type": "literal", "value": "2006"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q20442589|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2006 Danish comedy-drama directed by Christina Rosendahl"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1891982"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q849343"}, "Title": {"type": "literal", "value": "\u0926\u093f\u0932\u0935\u093e\u0932\u0947 \u0926\u0941\u0932\u094d\u0939\u0928\u093f\u092f\u093e \u0932\u0947 \u091c\u093e\u092f\u0947\u0902\u0917\u0947"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q357608"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6165333|http://www.wikidata.org/entity/Q357608"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7139181|http://www.wikidata.org/entity/Q4791587|http://www.wikidata.org/entity/Q4750942|http://www.wikidata.org/entity/Q3785692|http://www.wikidata.org/entity/Q2721868|http://www.wikidata.org/entity/Q1612623|http://www.wikidata.org/entity/Q560163|http://www.wikidata.org/entity/Q468442|http://www.wikidata.org/entity/Q333443|http://www.wikidata.org/entity/Q157803|http://www.wikidata.org/entity/Q147395|http://www.wikidata.org/entity/Q9535"}, "Published": {"type": "literal", "value": "1995"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "192"}, "Description": {"type": "literal", "value": "1995 film by Aditya Chopra"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1696916"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20001111"}, "Title": {"type": "literal", "value": "Dos amigos y un ladr\u00f3n"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q946048"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6171367|http://www.wikidata.org/entity/Q5775959|http://www.wikidata.org/entity/Q5749344|http://www.wikidata.org/entity/Q4821778"}, "Published": {"type": "literal", "value": "2007"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "86"}, "Description": {"type": "literal", "value": "2007 film by Jaime Lozano"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20022639"}, "Title": {"type": "literal", "value": "Mike and Dave Need Wedding Dates"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q27037598"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q18211784|http://www.wikidata.org/entity/Q6502479|http://www.wikidata.org/entity/Q6443390|http://www.wikidata.org/entity/Q4678957|http://www.wikidata.org/entity/Q3498453|http://www.wikidata.org/entity/Q3288246|http://www.wikidata.org/entity/Q618233|http://www.wikidata.org/entity/Q531195|http://www.wikidata.org/entity/Q464320|http://www.wikidata.org/entity/Q210547|http://www.wikidata.org/entity/Q171525|http://www.wikidata.org/entity/Q131866|http://www.wikidata.org/entity/Q67701|http://www.wikidata.org/entity/Q45229"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q319221|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2016 film by Jake Szymanski"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q17335666"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q15703991"}, "Title": {"type": "literal", "value": "\u0c26\u0c30\u0c41\u0c35\u0c41"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7532267"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3633952|http://www.wikidata.org/entity/Q277665|http://www.wikidata.org/entity/Q19663667|http://www.wikidata.org/entity/Q13551326|http://www.wikidata.org/entity/Q7994331|http://www.wikidata.org/entity/Q7920143|http://www.wikidata.org/entity/Q7672815|http://www.wikidata.org/entity/Q7586456|http://www.wikidata.org/entity/Q7429093|http://www.wikidata.org/entity/Q7296669|http://www.wikidata.org/entity/Q7282980|http://www.wikidata.org/entity/Q6456254|http://www.wikidata.org/entity/Q6347764|http://www.wikidata.org/entity/Q6167685|http://www.wikidata.org/entity/Q5580832|http://www.wikidata.org/entity/Q5454588|http://www.wikidata.org/entity/Q5269357"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q157394"}, "Duration": {"type": "literal", "value": "155"}, "Description": {"type": "literal", "value": "2012 Indian film directed by Siva"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2597963"}, "Title": {"type": "literal", "value": "God of Love"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6702134"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6702134"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5363287"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "18"}, "Description": {"type": "literal", "value": "2010 film by Luke Matheny"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q2590379"}, "Title": {"type": "literal", "value": "The Necessary Death of Charlie Countryman"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15810427"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16208051"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q229410|http://www.wikidata.org/entity/Q229230|http://www.wikidata.org/entity/Q210547|http://www.wikidata.org/entity/Q200405|http://www.wikidata.org/entity/Q180942|http://www.wikidata.org/entity/Q57391|http://www.wikidata.org/entity/Q19190|http://www.wikidata.org/entity/Q6272196|http://www.wikidata.org/entity/Q6159535|http://www.wikidata.org/entity/Q6130454|http://www.wikidata.org/entity/Q3825238|http://www.wikidata.org/entity/Q320052|http://www.wikidata.org/entity/Q294647"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q860626|http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q16950433"}, "Duration": {"type": "literal", "value": "108"}, "Description": {"type": "literal", "value": "2013 film by Fredrik Bond"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q19818418"}, "Title": {"type": "literal", "value": "The Road Within"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19592407"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19592407"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q315855|http://www.wikidata.org/entity/Q272977|http://www.wikidata.org/entity/Q245075|http://www.wikidata.org/entity/Q229572|http://www.wikidata.org/entity/Q227129"}, "Published": {"type": "literal", "value": "2014"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232"}, "Duration": {"type": "literal", "value": "100"}, "Description": {"type": "literal", "value": "2014 film by Gren Wells"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q61610255"}, "Title": {"type": "literal", "value": "Pegasus"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q470841"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21018157"}, "Published": {"type": "literal", "value": "2019"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "98"}, "Description": {"type": "literal", "value": "2019 film directed by Han Han"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q27916745"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q99871"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2020663"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q160305|http://www.wikidata.org/entity/Q90731|http://www.wikidata.org/entity/Q70727"}, "Published": {"type": "literal", "value": "2017"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "90"}, "Description": {"type": "literal", "value": "2017 film by Robert Thalheim"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q18152566"}, "Title": {"type": "literal", "value": "Me & Earl & the Dying Girl"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q489218"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19281586"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1985488|http://www.wikidata.org/entity/Q1933580|http://www.wikidata.org/entity/Q926989|http://www.wikidata.org/entity/Q888721|http://www.wikidata.org/entity/Q362616|http://www.wikidata.org/entity/Q239145|http://www.wikidata.org/entity/Q235519|http://www.wikidata.org/entity/Q171687|http://www.wikidata.org/entity/Q129591|http://www.wikidata.org/entity/Q20676357|http://www.wikidata.org/entity/Q15069963"}, "Published": {"type": "literal", "value": "2015"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q130232|http://www.wikidata.org/entity/Q860626"}, "Duration": {"type": "literal", "value": "105"}, "Description": {"type": "literal", "value": "2015 film by Alfonso Gomez-Rejon"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q7752396"}, "Title": {"type": "literal", "value": "The Motel"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3308288"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": ""}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2975633|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by Michael Kang"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q9357755"}, "Title": {"type": "literal", "value": "The Ape"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q306403"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q306403"}, "Published": {"type": "literal", "value": "2005"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2005 film by James Franco"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q21178818"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24066708"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4536851"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q19917936|http://www.wikidata.org/entity/Q4446501|http://www.wikidata.org/entity/Q4222310|http://www.wikidata.org/entity/Q1695947"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "50"}, "Description": {"type": "literal", "value": "2016 film by Andrey Yakovlev"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4444575"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q1369031"}, "Title": {"type": "literal", "value": "Prom"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6211585"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q24817468"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q242911|http://www.wikidata.org/entity/Q3990695|http://www.wikidata.org/entity/Q3877881|http://www.wikidata.org/entity/Q1058030|http://www.wikidata.org/entity/Q939351|http://www.wikidata.org/entity/Q714133|http://www.wikidata.org/entity/Q457488|http://www.wikidata.org/entity/Q432385|http://www.wikidata.org/entity/Q272261|http://www.wikidata.org/entity/Q269716|http://www.wikidata.org/entity/Q254954|http://www.wikidata.org/entity/Q18043595|http://www.wikidata.org/entity/Q13858351|http://www.wikidata.org/entity/Q6273549|http://www.wikidata.org/entity/Q5244127|http://www.wikidata.org/entity/Q234651"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q859369|http://www.wikidata.org/entity/Q157443|http://www.wikidata.org/entity/Q1146335|http://www.wikidata.org/entity/Q1054574"}, "Duration": {"type": "literal", "value": "104"}, "Description": {"type": "literal", "value": "2011 film by Joe Nussbaum"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q191224|http://www.wikidata.org/entity/Q24817457"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q4369007"}, "Title": {"type": "literal", "value": "\u041f\u043e\u043a\u0430 \u043d\u043e\u0447\u044c \u043d\u0435 \u0440\u0430\u0437\u043b\u0443\u0447\u0438\u0442"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4231887"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4539768|http://www.wikidata.org/entity/Q4424796|http://www.wikidata.org/entity/Q4297949"}, "Published": {"type": "literal", "value": "2012"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2012 film by Boris Khlebnikov"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q16254758"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q2839609"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1396281"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2013 film by Anurag Kashyap"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q16829090"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q24020308"}, "Title": {"type": "literal", "value": "Nacida para ganar"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q6161380"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q203138"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Vicente Villanueva"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5882786"}, "Title": {"type": "literal", "value": "Hollywood Hot Tubs"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q14327504"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3178476"}, "Published": {"type": "literal", "value": "1984"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "1984 film by Chuck Vincent"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q20026853"}, "Title": {"type": "literal", "value": "Keanu"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23761732"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3371986"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q23647219|http://www.wikidata.org/entity/Q20895485|http://www.wikidata.org/entity/Q11835264|http://www.wikidata.org/entity/Q6382703|http://www.wikidata.org/entity/Q3371986|http://www.wikidata.org/entity/Q1319744|http://www.wikidata.org/entity/Q347395|http://www.wikidata.org/entity/Q298694|http://www.wikidata.org/entity/Q272956|http://www.wikidata.org/entity/Q43416|http://www.wikidata.org/entity/Q4491"}, "Published": {"type": "literal", "value": "2016"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188473|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2016 film by Peter Atencio"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q3549719"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15070019"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q15070019"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3587953|http://www.wikidata.org/entity/Q3559680|http://www.wikidata.org/entity/Q3395911|http://www.wikidata.org/entity/Q3340568|http://www.wikidata.org/entity/Q3288347|http://www.wikidata.org/entity/Q3219319|http://www.wikidata.org/entity/Q3190737|http://www.wikidata.org/entity/Q3106155|http://www.wikidata.org/entity/Q3084265|http://www.wikidata.org/entity/Q3026917|http://www.wikidata.org/entity/Q2926691|http://www.wikidata.org/entity/Q2851067|http://www.wikidata.org/entity/Q2378488|http://www.wikidata.org/entity/Q1210548|http://www.wikidata.org/entity/Q239033|http://www.wikidata.org/entity/Q164976"}, "Published": {"type": "literal", "value": "2011"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2011 film by Alexandre Coffre"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q10856056"}, "Title": {"type": "literal", "value": ""}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11552553"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q11552553"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q1138475|http://www.wikidata.org/entity/Q908782"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2009 Japanese film directed by Sh\u016bichi Okita"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q5465558"}, "Title": {"type": "literal", "value": "Foodland"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4679817"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q4679817"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q369977"}, "Published": {"type": "literal", "value": "2010"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": ""}, "Description": {"type": "literal", "value": "2010 film by Adam Smoluk"}, "ProductionCompany": {"type": "literal", "value": ""}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q548978"}, "Title": {"type": "literal", "value": "Movie 43"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q345259|http://www.wikidata.org/entity/Q319204|http://www.wikidata.org/entity/Q219373|http://www.wikidata.org/entity/Q888535|http://www.wikidata.org/entity/Q888178|http://www.wikidata.org/entity/Q717015|http://www.wikidata.org/entity/Q470260|http://www.wikidata.org/entity/Q7612160|http://www.wikidata.org/entity/Q3942954|http://www.wikidata.org/entity/Q1368300|http://www.wikidata.org/entity/Q20656488"}, "Author": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5606156|http://www.wikidata.org/entity/Q888178|http://www.wikidata.org/entity/Q15973457"}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q188492|http://www.wikidata.org/entity/Q185268|http://www.wikidata.org/entity/Q202765|http://www.wikidata.org/entity/Q200768|http://www.wikidata.org/entity/Q193212|http://www.wikidata.org/entity/Q125017|http://www.wikidata.org/entity/Q107249|http://www.wikidata.org/entity/Q48410|http://www.wikidata.org/entity/Q23814|http://www.wikidata.org/entity/Q151168|http://www.wikidata.org/entity/Q178882|http://www.wikidata.org/entity/Q169982|http://www.wikidata.org/entity/Q19794|http://www.wikidata.org/entity/Q14539|http://www.wikidata.org/entity/Q147077|http://www.wikidata.org/entity/Q132616|http://www.wikidata.org/entity/Q129591|http://www.wikidata.org/entity/Q4509|http://www.wikidata.org/entity/Q219373|http://www.wikidata.org/entity/Q428819|http://www.wikidata.org/entity/Q428368|http://www.wikidata.org/entity/Q343564|http://www.wikidata.org/entity/Q329372|http://www.wikidata.org/entity/Q313204|http://www.wikidata.org/entity/Q310322|http://www.wikidata.org/entity/Q303538|http://www.wikidata.org/entity/Q298672|http://www.wikidata.org/entity/Q298368|http://www.wikidata.org/entity/Q296500|http://www.wikidata.org/entity/Q295034|http://www.wikidata.org/entity/Q286022|http://www.wikidata.org/entity/Q269869|http://www.wikidata.org/entity/Q255549|http://www.wikidata.org/entity/Q239453|http://www.wikidata.org/entity/Q236822|http://www.wikidata.org/entity/Q236472|http://www.wikidata.org/entity/Q189438|http://www.wikidata.org/entity/Q4491|http://www.wikidata.org/entity/Q4349|http://www.wikidata.org/entity/Q4484894|http://www.wikidata.org/entity/Q3778264|http://www.wikidata.org/entity/Q3162786|http://www.wikidata.org/entity/Q2468138|http://www.wikidata.org/entity/Q2278533|http://www.wikidata.org/entity/Q1429065|http://www.wikidata.org/entity/Q1411012|http://www.wikidata.org/entity/Q1086790|http://www.wikidata.org/entity/Q1034012|http://www.wikidata.org/entity/Q1033016|http://www.wikidata.org/entity/Q910737|http://www.wikidata.org/entity/Q864408|http://www.wikidata.org/entity/Q723482|http://www.wikidata.org/entity/Q560896|http://www.wikidata.org/entity/Q553516|http://www.wikidata.org/entity/Q529478|http://www.wikidata.org/entity/Q503706|http://www.wikidata.org/entity/Q461954|http://www.wikidata.org/entity/Q440956"}, "Published": {"type": "literal", "value": "2013"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "94"}, "Description": {"type": "literal", "value": "2013 American independent comedy anthology film"}, "ProductionCompany": {"type": "literal", "value": "http://www.wikidata.org/entity/Q7933978"}}, {"Movie": {"type": "uri", "value": "http://www.wikidata.org/entity/Q194669"}, "Title": {"type": "literal", "value": "Next Day Air"}, "Director": {"type": "literal", "value": "http://www.wikidata.org/entity/Q3702688"}, "Author": {"type": "literal", "value": ""}, "Cast": {"type": "literal", "value": "http://www.wikidata.org/entity/Q8049833|http://www.wikidata.org/entity/Q7089885|http://www.wikidata.org/entity/Q1321005|http://www.wikidata.org/entity/Q712964|http://www.wikidata.org/entity/Q314819|http://www.wikidata.org/entity/Q311962|http://www.wikidata.org/entity/Q38875"}, "Published": {"type": "literal", "value": "2009"}, "Genre": {"type": "literal", "value": "http://www.wikidata.org/entity/Q5897543|http://www.wikidata.org/entity/Q2678111|http://www.wikidata.org/entity/Q157443"}, "Duration": {"type": "literal", "value": "84"}, "Description": {"type": "literal", "value": "2009 film by Benny Boom"}, "ProductionCompany": {"type": "literal", "value": ""}}]
\ No newline at end of file